File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ option(TRITON_TENSORFLOW_INSTALL_EXTRA_DEPS "Install extra dependencies directly
42
42
set (TRITON_TENSORFLOW_LIB_PATHS "" CACHE PATH "Paths to TensorFlow libraries. Multiple paths may be specified by separating them with a semicolon." )
43
43
set (TRITON_TENSORFLOW_INCLUDE_PATHS "" CACHE PATH "Paths to TensorFlow includes. Multiple paths may be specified by separating them with a semicolon." )
44
44
45
+ set (TRITON_REPO_ORGANIZATION "https://github.com/triton-inference-server" CACHE STRING "Git repository to pull from" )
45
46
set (TRITON_BACKEND_REPO_TAG "main" CACHE STRING "Tag for triton-inference-server/backend repo." )
46
47
set (TRITON_CORE_REPO_TAG "main" CACHE STRING "Tag for triton-inference-server/core repo." )
47
48
set (TRITON_COMMON_REPO_TAG "main" CACHE STRING "Tag for triton-inference-server/common repo." )
@@ -82,19 +83,19 @@ include(FetchContent)
82
83
83
84
FetchContent_Declare (
84
85
repo-common
85
- GIT_REPOSITORY https://github.com/triton-inference-server /common.git
86
+ GIT_REPOSITORY ${TRITON_REPO_ORGANIZATION} /common.git
86
87
GIT_TAG ${TRITON_COMMON_REPO_TAG}
87
88
GIT_SHALLOW ON
88
89
)
89
90
FetchContent_Declare (
90
91
repo-core
91
- GIT_REPOSITORY https://github.com/triton-inference-server /core.git
92
+ GIT_REPOSITORY ${TRITON_REPO_ORGANIZATION} /core.git
92
93
GIT_TAG ${TRITON_CORE_REPO_TAG}
93
94
GIT_SHALLOW ON
94
95
)
95
96
FetchContent_Declare (
96
97
repo-backend
97
- GIT_REPOSITORY https://github.com/triton-inference-server /backend.git
98
+ GIT_REPOSITORY ${TRITON_REPO_ORGANIZATION} /backend.git
98
99
GIT_TAG ${TRITON_BACKEND_REPO_TAG}
99
100
GIT_SHALLOW ON
100
101
)
You can’t perform that action at this time.
0 commit comments