-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nvidia-triton-client] Create a new port (#163)
* [nvidia-triton-client] create a new port * [nvidia-triton-client] update baseline * ci test: nvidia-triton-client
- Loading branch information
Showing
6 changed files
with
255 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
diff --git a/src/c++/CMakeLists.txt b/src/c++/CMakeLists.txt | ||
index f49f17d..c22afff 100644 | ||
--- a/src/c++/CMakeLists.txt | ||
+++ b/src/c++/CMakeLists.txt | ||
@@ -51,19 +51,7 @@ endif() | ||
# | ||
# Dependencies | ||
# | ||
-include(FetchContent) | ||
- | ||
-FetchContent_Declare( | ||
- repo-common | ||
- GIT_REPOSITORY https://github.com/triton-inference-server/common.git | ||
- GIT_TAG ${TRITON_COMMON_REPO_TAG} | ||
- GIT_SHALLOW ON | ||
-) | ||
- | ||
-FetchContent_Declare( | ||
- googletest | ||
- URL https://github.com/google/googletest/archive/9406a60c7839052e4944ea4dbc8344762a89f9bd.zip | ||
-) | ||
+find_package(TritonCommon CONFIG REQUIRED) | ||
|
||
if(TRITON_ENABLE_CC_GRPC OR TRITON_ENABLE_PERF_ANALYZER) | ||
set(TRITON_COMMON_ENABLE_PROTOBUF ON) | ||
@@ -87,7 +75,6 @@ endif() | ||
if(TRITON_ENABLE_TESTS OR TRITON_ENABLE_PERF_ANALYZER) | ||
FetchContent_MakeAvailable(googletest) | ||
endif() | ||
-FetchContent_MakeAvailable(repo-common) | ||
|
||
if(TRITON_ENABLE_TESTS) | ||
include_directories( | ||
diff --git a/src/c++/library/CMakeLists.txt b/src/c++/library/CMakeLists.txt | ||
index cdee03e..688e75a 100644 | ||
--- a/src/c++/library/CMakeLists.txt | ||
+++ b/src/c++/library/CMakeLists.txt | ||
@@ -96,17 +96,15 @@ if(TRITON_ENABLE_CC_GRPC OR TRITON_ENABLE_PERF_ANALYZER) | ||
grpc-client-library EXCLUDE_FROM_ALL OBJECT | ||
${REQUEST_SRCS} ${REQUEST_HDRS} | ||
) | ||
- add_dependencies( | ||
- grpc-client-library | ||
- grpc-service-library proto-library | ||
- ) | ||
+ target_link_libraries( | ||
+ grpc-client-library PRIVATE | ||
+ TritonCommon::grpc-service-library TritonCommon::proto-library | ||
+ ) | ||
|
||
# libgrpcclient_static.a | ||
add_library( | ||
grpcclient_static STATIC | ||
$<TARGET_OBJECTS:grpc-client-library> | ||
- $<TARGET_OBJECTS:grpc-service-library> | ||
- $<TARGET_OBJECTS:proto-library> | ||
) | ||
add_library( | ||
TritonClient::grpcclient_static ALIAS grpcclient_static | ||
@@ -122,6 +120,8 @@ if(TRITON_ENABLE_CC_GRPC OR TRITON_ENABLE_PERF_ANALYZER) | ||
grpcclient_static | ||
PRIVATE gRPC::grpc++ | ||
PRIVATE gRPC::grpc | ||
+ PRIVATE TritonCommon::grpc-service-library | ||
+ PRIVATE TritonCommon::proto-library | ||
PUBLIC protobuf::libprotobuf | ||
PUBLIC Threads::Threads | ||
) | ||
@@ -129,8 +129,6 @@ if(TRITON_ENABLE_CC_GRPC OR TRITON_ENABLE_PERF_ANALYZER) | ||
# libgrpcclient.so | ||
add_library( | ||
grpcclient SHARED | ||
- $<TARGET_OBJECTS:grpc-service-library> | ||
- $<TARGET_OBJECTS:proto-library> | ||
$<TARGET_OBJECTS:grpc-client-library> | ||
) | ||
add_library( | ||
@@ -150,6 +148,8 @@ if(TRITON_ENABLE_CC_GRPC OR TRITON_ENABLE_PERF_ANALYZER) | ||
grpcclient | ||
PRIVATE gRPC::grpc++ | ||
PRIVATE gRPC::grpc | ||
+ PRIVATE TritonCommon::grpc-service-library | ||
+ PRIVATE TritonCommon::proto-library | ||
PUBLIC protobuf::libprotobuf | ||
PUBLIC Threads::Threads | ||
) | ||
@@ -174,8 +174,8 @@ if(TRITON_ENABLE_CC_GRPC OR TRITON_ENABLE_PERF_ANALYZER) | ||
PUBLIC | ||
$<INSTALL_INTERFACE:include> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> | ||
- $<TARGET_PROPERTY:proto-library,INCLUDE_DIRECTORIES> | ||
- $<TARGET_PROPERTY:grpc-service-library,INCLUDE_DIRECTORIES> | ||
+ $<TARGET_PROPERTY:TritonCommon::proto-library,INCLUDE_DIRECTORIES> | ||
+ $<TARGET_PROPERTY:TritonCommon::grpc-service-library,INCLUDE_DIRECTORIES> | ||
PRIVATE | ||
${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
@@ -286,7 +286,7 @@ if(TRITON_ENABLE_CC_HTTP OR TRITON_ENABLE_PERF_ANALYZER) | ||
target_link_libraries( | ||
http-client-library | ||
PUBLIC | ||
- triton-common-json # from repo-common | ||
+ TritonCommon::triton-common-json # from repo-common | ||
) | ||
|
||
# libhttpclient_static.a | ||
@@ -300,7 +300,7 @@ if(TRITON_ENABLE_CC_HTTP OR TRITON_ENABLE_PERF_ANALYZER) | ||
|
||
target_link_libraries( | ||
httpclient_static | ||
- PRIVATE triton-common-json | ||
+ PRIVATE TritonCommon::triton-common-json | ||
PUBLIC CURL::libcurl | ||
PUBLIC Threads::Threads | ||
) | ||
@@ -332,7 +332,7 @@ if(TRITON_ENABLE_CC_HTTP OR TRITON_ENABLE_PERF_ANALYZER) | ||
|
||
target_link_libraries( | ||
httpclient | ||
- PRIVATE triton-common-json | ||
+ PRIVATE TritonCommon::triton-common-json | ||
PUBLIC CURL::libcurl | ||
PUBLIC Threads::Threads | ||
) | ||
diff --git a/src/c++/library/CMakeLists.txt b/src/c++/library/CMakeLists.txt | ||
index 688e75a..34cbb7e 100644 | ||
--- a/src/c++/library/CMakeLists.txt | ||
+++ b/src/c++/library/CMakeLists.txt | ||
@@ -240,14 +240,14 @@ if(TRITON_ENABLE_CC_GRPC OR TRITON_ENABLE_PERF_ANALYZER) | ||
${CMAKE_CURRENT_BINARY_DIR}/../../third-party/absl/include/ | ||
${CMAKE_CURRENT_BINARY_DIR}/../../third-party/protobuf/include/ | ||
${CMAKE_CURRENT_BINARY_DIR}/../../third-party/re2/include/ | ||
- DESTINATION include | ||
+ DESTINATION include/triton | ||
) | ||
endif() | ||
|
||
install( | ||
FILES | ||
${CMAKE_CURRENT_SOURCE_DIR}/grpc_client.h | ||
- DESTINATION include | ||
+ DESTINATION include/triton | ||
) | ||
endif() # TRITON_ENABLE_CC_GRPC OR TRITON_ENABLE_PERF_ANALYZER | ||
|
||
@@ -391,7 +391,7 @@ if(TRITON_ENABLE_CC_HTTP OR TRITON_ENABLE_PERF_ANALYZER) | ||
install( | ||
FILES | ||
${CMAKE_CURRENT_SOURCE_DIR}/http_client.h | ||
- DESTINATION include | ||
+ DESTINATION include/triton | ||
) | ||
endif() # TRITON_ENABLE_CC_HTTP OR TRITON_ENABLE_PERF_ANALYZER | ||
|
||
@@ -400,7 +400,7 @@ if(TRITON_ENABLE_CC_HTTP OR TRITON_ENABLE_CC_GRPC OR TRITON_ENABLE_PERF_ANALYZER | ||
FILES | ||
${CMAKE_CURRENT_SOURCE_DIR}/common.h | ||
${CMAKE_CURRENT_SOURCE_DIR}/ipc.h | ||
- DESTINATION include | ||
+ DESTINATION include/triton | ||
) | ||
|
||
include(GNUInstallDirs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO triton-inference-server/client | ||
REF 24c1ff7969e4f8f9e31a5c98237b6c1b5972bfca | ||
SHA512 11ccd99ac862cd102879a2491c3e679c3876d95dc294ace46e1f29ef2f74e1b1e8cb2df32d6e47841eb1e060d3e3a99fece036c5275cf84ed84e61ae233c552d | ||
HEAD_REF main | ||
PATCHES | ||
fix-cmake.patch | ||
) | ||
|
||
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS | ||
FEATURES | ||
gpu TRITON_ENABLE_GPU | ||
) | ||
|
||
vcpkg_cmake_configure( | ||
SOURCE_PATH "${SOURCE_PATH}/src/c++" | ||
OPTIONS | ||
-DTRITON_MIN_CXX_STANDARD=17 | ||
-DTRITON_USE_THIRD_PARTY=OFF | ||
-DTRITON_ENABLE_CC_HTTP=ON | ||
-DTRITON_ENABLE_CC_GRPC=ON | ||
-DTRITON_ENABLE_EXAMPLES=OFF | ||
-DTRITON_ENABLE_TESTS=OFF | ||
-DTRITON_ENABLE_ZLIB=OFF | ||
-DTRITON_ENABLE_PERF_ANALYZER=OFF | ||
) | ||
vcpkg_cmake_install() | ||
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/TritonClient PACKAGE_NAME TritonClient) | ||
vcpkg_copy_pdbs() | ||
|
||
file(REMOVE_RECURSE | ||
"${CURRENT_PACKAGES_DIR}/debug/include" | ||
"${CURRENT_PACKAGES_DIR}/debug/share" | ||
) | ||
|
||
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"name": "nvidia-triton-client", | ||
"version-date": "2023-01-23", | ||
"description": "Triton Python, C++ and Java client libraries, and GRPC-generated client examples for go, java and scala.", | ||
"homepage": "https://github.com/triton-inference-server/client", | ||
"license": "BSD-3-Clause", | ||
"dependencies": [ | ||
"curl", | ||
{ | ||
"name": "grpc", | ||
"host": true, | ||
"features": [ | ||
"codegen" | ||
] | ||
}, | ||
"nvidia-triton-common", | ||
"nvidia-triton-core", | ||
{ | ||
"name": "protobuf", | ||
"host": true | ||
}, | ||
"rapidjson", | ||
{ | ||
"name": "vcpkg-cmake", | ||
"host": true | ||
}, | ||
{ | ||
"name": "vcpkg-cmake-config", | ||
"host": true | ||
} | ||
], | ||
"features": { | ||
"gpu": { | ||
"description": "Enable GPU support in libraries", | ||
"dependencies": [ | ||
"cuda" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"versions": [ | ||
{ | ||
"git-tree": "2a3116ed7860138368e337debefb0232bb32f737", | ||
"version-date": "2023-01-23", | ||
"port-version": 0 | ||
} | ||
] | ||
} |