Skip to content

Commit 800d43a

Browse files
committed
[TRTLLM-9080][infra] upgrade tritonserver DLFW 25.10
Signed-off-by: ZhanruiSunCh <184402041+ZhanruiSunCh@users.noreply.github.com>
1 parent 1c19fd6 commit 800d43a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

docker/Dockerfile.multi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
ARG BASE_IMAGE=nvcr.io/nvidia/pytorch
33
ARG TRITON_IMAGE=nvcr.io/nvidia/tritonserver
44
ARG BASE_TAG=25.10-py3
5-
# [TODO] Update to NVIDIA Triton 25.10 when it's available
6-
ARG TRITON_BASE_TAG=25.09-py3
5+
ARG TRITON_BASE_TAG=25.10-py3
76
ARG DEVEL_IMAGE=devel
87

98
FROM ${BASE_IMAGE}:${BASE_TAG} AS base

jenkins/Build.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ def runLLMBuild(pipeline, buildFlags, tarName, is_linux_x86_64)
454454
def llmPath = sh (script: "realpath ${LLM_ROOT}",returnStdout: true).trim()
455455
// TODO: Remove after the cmake version is upgraded to 3.31.8
456456
// Get triton tag from docker/dockerfile.multi
457-
def tritonShortTag = "r25.09"
457+
def tritonShortTag = "r25.10"
458458
sh "cd ${LLM_ROOT}/triton_backend/inflight_batcher_llm && mkdir build && cd build && cmake .. -DTRTLLM_DIR=${llmPath} -DTRITON_COMMON_REPO_TAG=${tritonShortTag} -DTRITON_CORE_REPO_TAG=${tritonShortTag} -DTRITON_THIRD_PARTY_REPO_TAG=${tritonShortTag} -DTRITON_BACKEND_REPO_TAG=${tritonShortTag} -DUSE_CXX11_ABI=ON && make -j${buildJobs} install"
459459

460460
// Step 3: packaging wheels into tarfile

jenkins/L0_Test.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1527,7 +1527,7 @@ def launchTestListCheck(pipeline)
15271527
sh "tar -zxf ${tarName}"
15281528
def llmPath = sh (script: "realpath .", returnStdout: true).trim()
15291529
def llmSrc = "${llmPath}/TensorRT-LLM/src"
1530-
sh "NVIDIA_TRITON_SERVER_VERSION=25.09 LLM_ROOT=${llmSrc} LLM_BACKEND_ROOT=${llmSrc}/triton_backend python3 ${llmSrc}/scripts/check_test_list.py --l0 --qa --waive"
1530+
sh "NVIDIA_TRITON_SERVER_VERSION=25.10 LLM_ROOT=${llmSrc} LLM_BACKEND_ROOT=${llmSrc}/triton_backend python3 ${llmSrc}/scripts/check_test_list.py --l0 --qa --waive"
15311531
} catch (InterruptedException e) {
15321532
throw e
15331533
} catch (Exception e) {

0 commit comments

Comments
 (0)