File tree Expand file tree Collapse file tree 6 files changed +18
-13
lines changed
L0_pytorch_python_runtime Expand file tree Collapse file tree 6 files changed +18
-13
lines changed Original file line number Diff line number Diff line change @@ -276,11 +276,11 @@ ARG NVIDIA_BUILD_ID
276276ENV NVIDIA_TRITON_SERVER_SDK_VERSION=${NVIDIA_TRITON_SERVER_SDK_VERSION}
277277ENV NVIDIA_BUILD_ID=${NVIDIA_BUILD_ID}
278278
279- ENV PATH /workspace/install/bin:${PATH}
280- ENV LD_LIBRARY_PATH /workspace/install/lib:${LD_LIBRARY_PATH}
279+ ENV PATH= /workspace/install/bin:${PATH}
280+ ENV LD_LIBRARY_PATH= /workspace/install/lib:${LD_LIBRARY_PATH}
281281
282282# DLIS-3631: Needed to run Perf Analyzer CI tests correctly
283- ENV LD_LIBRARY_PATH /opt/hpcx/ompi/lib:${LD_LIBRARY_PATH}
283+ ENV LD_LIBRARY_PATH= /opt/hpcx/ompi/lib:${LD_LIBRARY_PATH}
284284
285285# Set TCMALLOC_RELEASE_RATE for users setting LD_PRELOAD with tcmalloc
286- ENV TCMALLOC_RELEASE_RATE 200
286+ ENV TCMALLOC_RELEASE_RATE= 200
Original file line number Diff line number Diff line change 11#! /bin/bash
2- # Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+ # Copyright (c) 2022-2024 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33#
44# Redistribution and use in source and binary forms, with or without
55# modification, are permitted provided that the following conditions
2727
2828# Set up test files based on installation instructions
2929# https://github.com/bytedeco/javacpp-presets/blob/master/tritonserver/README.md
30+ TRITON_REPO_ORGANIZATION=${TRITON_REPO_ORGANIZATION:= " https://github.com/triton-inference-server" }
3031JAVACPP_BRANCH=${JAVACPP_BRANCH:= " https://github.com/bytedeco/javacpp-presets.git" }
3132JAVACPP_BRANCH_TAG=${JAVACPP_BRANCH_TAG:= " master" }
3233set -e
33- git clone --single-branch --depth=1 -b ${TRITON_CLIENT_REPO_TAG} https://github.com/triton-inference-server /client.git
34+ git clone --single-branch --depth=1 -b ${TRITON_CLIENT_REPO_TAG} ${TRITON_REPO_ORGANIZATION} /client.git
3435source client/src/java-api-bindings/scripts/install_dependencies_and_build.sh -b $PWD --javacpp-branch ${JAVACPP_BRANCH} --javacpp-tag ${JAVACPP_BRANCH_TAG} --keep-build-dependencies
3536cd ..
3637
Original file line number Diff line number Diff line change 11#! /bin/bash
2- # Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+ # Copyright (c) 2022-2024 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33#
44# Redistribution and use in source and binary forms, with or without
55# modification, are permitted provided that the following conditions
4141# Models
4242DATADIR=/data/inferenceserver/${REPO_VERSION}
4343MODEL_REPO=` pwd` /models
44+ TRITON_REPO_ORGANIZATION=${TRITON_REPO_ORGANIZATION:= " https://github.com/triton-inference-server" }
4445JAVACPP_BRANCH=${JAVACPP_BRANCH:= " https://github.com/bytedeco/javacpp-presets.git" }
4546JAVACPP_BRANCH_TAG=${JAVACPP_BRANCH_TAG:= " master" }
4647
5657# Set up test files based on installation instructions
5758# https://github.com/bytedeco/javacpp-presets/blob/master/tritonserver/README.md
5859set -e
59- git clone --single-branch --depth=1 -b ${TRITON_CLIENT_REPO_TAG} https://github.com/triton-inference-server /client.git
60+ git clone --single-branch --depth=1 -b ${TRITON_CLIENT_REPO_TAG} ${TRITON_REPO_ORGANIZATION} /client.git
6061source client/src/java-api-bindings/scripts/install_dependencies_and_build.sh -b $PWD --javacpp-branch ${JAVACPP_BRANCH} --javacpp-tag ${JAVACPP_BRANCH_TAG} --keep-build-dependencies
6162cd ..
6263
Original file line number Diff line number Diff line change 11#! /bin/bash
2- # Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+ # Copyright (c) 2022-2024 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33#
44# Redistribution and use in source and binary forms, with or without
55# modification, are permitted provided that the following conditions
4040
4141# Models
4242DATADIR=/data/inferenceserver/${REPO_VERSION}
43+ TRITON_REPO_ORGANIZATION=${TRITON_REPO_ORGANIZATION:= " https://github.com/triton-inference-server" }
4344JAVACPP_BRANCH=${JAVACPP_BRANCH:= " https://github.com/bytedeco/javacpp-presets.git" }
4445JAVACPP_BRANCH_TAG=${JAVACPP_BRANCH_TAG:= " master" }
4546
4647# Set up test files based on installation instructions
4748# https://github.com/bytedeco/javacpp-presets/blob/master/tritonserver/README.md
4849set -e
49- git clone --single-branch --depth=1 -b ${TRITON_CLIENT_REPO_TAG} https://github.com/triton-inference-server /client.git
50+ git clone --single-branch --depth=1 -b ${TRITON_CLIENT_REPO_TAG} ${TRITON_REPO_ORGANIZATION} /client.git
5051source client/src/java-api-bindings/scripts/install_dependencies_and_build.sh -b $PWD --javacpp-branch ${JAVACPP_BRANCH} --javacpp-tag ${JAVACPP_BRANCH_TAG} --keep-build-dependencies
5152cd ..
5253
Original file line number Diff line number Diff line change 11#! /bin/bash
2- # Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+ # Copyright (c) 2022-2024 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33#
44# Redistribution and use in source and binary forms, with or without
55# modification, are permitted provided that the following conditions
@@ -37,10 +37,11 @@ if [ -z "$REPO_VERSION" ]; then
3737 exit 1
3838fi
3939
40+ TRITON_REPO_ORGANIZATION=${TRITON_REPO_ORGANIZATION:= " https://github.com/triton-inference-server" }
4041JAVACPP_BRANCH=${JAVACPP_BRANCH:= " https://github.com/bytedeco/javacpp-presets.git" }
4142JAVACPP_BRANCH_TAG=${JAVACPP_BRANCH_TAG:= " master" }
4243set -e
43- git clone --single-branch --depth=1 -b ${TRITON_CLIENT_REPO_TAG} https://github.com/triton-inference-server /client.git
44+ git clone --single-branch --depth=1 -b ${TRITON_CLIENT_REPO_TAG} ${TRITON_REPO_ORGANIZATION} /client.git
4445source client/src/java-api-bindings/scripts/install_dependencies_and_build.sh -b $PWD --javacpp-branch ${JAVACPP_BRANCH} --javacpp-tag ${JAVACPP_BRANCH_TAG} --keep-build-dependencies
4546cd ..
4647
Original file line number Diff line number Diff line change 4040
4141export CUDA_VISIBLE_DEVICES=0
4242
43+ TRITON_REPO_ORGANIZATION=${TRITON_REPO_ORGANIZATION:= " https://github.com/triton-inference-server" }
4344DATA_DIR=/data/inferenceserver/${REPO_VERSION}
4445IMAGE_DIR=" /opt/tritonserver/qa/images"
4546SERVER=/opt/tritonserver/bin/tritonserver
@@ -50,7 +51,7 @@ source ../common/util.sh
5051if [ ! -f " $BACKENDS /pytorch/pb_exec_env_model.py.tar.gz" ]; then
5152 PYTORCH_BACKEND_REPO_TAG=${PYTORCH_BACKEND_REPO_TAG:= " main" }
5253 rm -rf pytorch_backend
53- git clone --single-branch --depth=1 -b $PYTORCH_BACKEND_REPO_TAG https://github.com/triton-inference-server /pytorch_backend
54+ git clone --single-branch --depth=1 -b $PYTORCH_BACKEND_REPO_TAG ${TRITON_REPO_ORGANIZATION} /pytorch_backend
5455 (cd pytorch_backend/tools && \
5556 ./gen_pb_exec_env.sh && \
5657 mv pb_exec_env_model.py.tar.gz $BACKENDS /pytorch)
You can’t perform that action at this time.
0 commit comments