File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ set(TRITON_ONNX_TENSORRT_REPO_TAG "" CACHE STRING "Tag for onnx-tensorrt repo")
105
105
set (TRT_VERSION "" CACHE STRING "TRT version for this build." )
106
106
set (TRITON_ONNXRUNTIME_LIB_PATHS "" CACHE PATH "Paths to ONNXRuntime libraries" )
107
107
108
+ set (TRITON_REPO_ORGANIZATION "https://github.com/triton-inference-server" CACHE STRING "Git repository to pull from" )
108
109
set (TRITON_BACKEND_REPO_TAG "main" CACHE STRING "Tag for triton-inference-server/backend repo" )
109
110
set (TRITON_CORE_REPO_TAG "main" CACHE STRING "Tag for triton-inference-server/core repo" )
110
111
set (TRITON_COMMON_REPO_TAG "main" CACHE STRING "Tag for triton-inference-server/common repo" )
@@ -179,19 +180,19 @@ include(FetchContent)
179
180
180
181
FetchContent_Declare(
181
182
repo-common
182
- GIT_REPOSITORY https://github.com/triton-inference-server /common.git
183
+ GIT_REPOSITORY ${TRITON_REPO_ORGANIZATION} /common.git
183
184
GIT_TAG ${TRITON_COMMON_REPO_TAG}
184
185
GIT_SHALLOW ON
185
186
)
186
187
FetchContent_Declare(
187
188
repo-core
188
- GIT_REPOSITORY https://github.com/triton-inference-server /core.git
189
+ GIT_REPOSITORY ${TRITON_REPO_ORGANIZATION} /core.git
189
190
GIT_TAG ${TRITON_CORE_REPO_TAG}
190
191
GIT_SHALLOW ON
191
192
)
192
193
FetchContent_Declare(
193
194
repo-backend
194
- GIT_REPOSITORY https://github.com/triton-inference-server /backend.git
195
+ GIT_REPOSITORY ${TRITON_REPO_ORGANIZATION} /backend.git
195
196
GIT_TAG ${TRITON_BACKEND_REPO_TAG}
196
197
GIT_SHALLOW ON
197
198
)
You can’t perform that action at this time.
0 commit comments