Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.sdk
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ARG TRITON_ENABLE_GPU=ON
ARG JAVA_BINDINGS_MAVEN_VERSION=3.8.4
ARG JAVA_BINDINGS_JAVACPP_PRESETS_TAG=1.5.8
# DCGM version to install for Model Analyzer
ARG DCGM_VERSION=4.5.2-1
ARG DCGM_VERSION=4.5.3-1

ARG NVIDIA_TRITON_SERVER_SDK_VERSION=unknown
ARG NVIDIA_BUILD_ID=unknown
Expand Down
8 changes: 4 additions & 4 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@
#

DEFAULT_TRITON_VERSION_MAP = {
"release_version": "2.67.0",
"triton_container_version": "26.03",
"release_version": "2.68.0",
"triton_container_version": "26.04dev",
"upstream_container_version": "26.03",
"ort_version": "1.24.2",
"ort_version": "1.24.4",
"ort_openvino_version": "2026.0.0",
"standalone_openvino_version": "2026.0.0",
"dcgm_version": "4.5.2-1",
"dcgm_version": "4.5.3-1",
"vllm_version": "0.16.0",
"rhel_py_version": "3.12.3",
}
Expand Down
4 changes: 2 additions & 2 deletions compose.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# Copyright 2021-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright 2021-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -298,7 +298,7 @@ def create_argmap(images, skip_pull):
dcgm_ver = re.search("DCGM_VERSION=([\S]{4,}) ", vars)
dcgm_version = ""
if dcgm_ver is None:
dcgm_version = "4.4.0-1"
dcgm_version = "4.5.3-1"
log(
"WARNING: DCGM version not found from image, installing the earlierst version {}".format(
dcgm_version
Expand Down
Loading