Skip to content

Commit 900d536

Browse files
committed
Merge remote-tracking branch 'origin/main' into mwittwer/normalize_nvidia_user_ownership
# Conflicts: # build.py
2 parents b771d7e + 6328853 commit 900d536

29 files changed

Lines changed: 516 additions & 754 deletions

File tree

CMakeLists.txt

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
1+
# Copyright 2020-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
22
#
33
# Redistribution and use in source and binary forms, with or without
44
# modification, are permitted provided that the following conditions
@@ -166,22 +166,9 @@ if (OPENSSL_ROOT_DIR)
166166
set(_CMAKE_ARGS_OPENSSL_ROOT_DIR "-DOPENSSL_ROOT_DIR:PATH=${OPENSSL_ROOT_DIR}")
167167
endif()
168168

169-
# Location where protobuf-config.cmake will be installed varies by
170-
# platform
171-
if (WIN32)
172-
set(_FINDPACKAGE_PROTOBUF_CONFIG_DIR "${TRITON_THIRD_PARTY_INSTALL_PREFIX}/protobuf/cmake")
173-
else()
174-
set(_FINDPACKAGE_PROTOBUF_CONFIG_DIR "${TRITON_THIRD_PARTY_INSTALL_PREFIX}/protobuf/${LIB_DIR}/cmake/protobuf")
175-
endif()
169+
set(_FINDPACKAGE_PROTOBUF_CONFIG_DIR "${TRITON_THIRD_PARTY_INSTALL_PREFIX}/protobuf/${LIB_DIR}/cmake/protobuf")
176170

177-
# Triton with Opentelemetry is not supported on Windows
178-
# FIXME: add location for Windows, when support is added
179-
# JIRA DLIS-4786
180-
if (WIN32)
181-
set(_FINDPACKAGE_OPENTELEMETRY_CONFIG_DIR "")
182-
else()
183-
set(_FINDPACKAGE_OPENTELEMETRY_CONFIG_DIR "${TRITON_THIRD_PARTY_INSTALL_PREFIX}/opentelemetry-cpp/${LIB_DIR}/cmake/opentelemetry-cpp")
184-
endif()
171+
set(_FINDPACKAGE_OPENTELEMETRY_CONFIG_DIR "${TRITON_THIRD_PARTY_INSTALL_PREFIX}/opentelemetry-cpp/${LIB_DIR}/cmake/opentelemetry-cpp")
185172

186173
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
187174
set(TRITON_INSTALL_PREFIX ${CMAKE_CURRENT_BINARY_DIR}/install)
@@ -202,7 +189,7 @@ endif() # TRITON_ENABLE_HTTP || TRITON_ENABLE_METRICS || TRITON_ENABLE_SAGEMAKER
202189
if(${TRITON_ENABLE_GRPC})
203190
set(TRITON_DEPENDS ${TRITON_DEPENDS} grpc)
204191
endif() # TRITON_ENABLE_GRPC
205-
if(NOT WIN32 AND ${TRITON_ENABLE_TRACING})
192+
if(${TRITON_ENABLE_TRACING})
206193
set(TRITON_DEPENDS ${TRITON_DEPENDS} opentelemetry-cpp)
207194
endif() # TRITON_ENABLE_TRACING
208195

Dockerfile.sdk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#
3030

3131
# Base image on the minimum Triton container
32-
ARG BASE_IMAGE=nvcr.io/nvidia/tritonserver:26.04-py3-min
32+
ARG BASE_IMAGE=nvcr.io/nvidia/tritonserver:26.05-py3-min
3333

3434
ARG TRITON_CLIENT_REPO_SUBDIR=clientrepo
3535
ARG TRITON_REPO_ORGANIZATION=http://github.com/triton-inference-server

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929

3030
>[!WARNING]
3131
>You are currently on the `main` branch which tracks under-development progress
32-
>towards the next release. The current release is version [2.68.0](https://github.com/triton-inference-server/server/releases/latest)
33-
>and corresponds to the 26.04 container release on NVIDIA GPU Cloud (NGC).
32+
>towards the next release. The current release is version [2.69.0](https://github.com/triton-inference-server/server/releases/latest)
33+
>and corresponds to the 26.05 container release on NVIDIA GPU Cloud (NGC).
3434
3535
# Triton Inference Server
3636

@@ -90,16 +90,16 @@ Inference Server with the
9090

9191
```bash
9292
# Step 1: Create the example model repository
93-
git clone -b r26.04 https://github.com/triton-inference-server/server.git
93+
git clone -b r26.05 https://github.com/triton-inference-server/server.git
9494
cd server/docs/examples
9595
./fetch_models.sh
9696

9797
# Step 2: Launch triton from the NGC Triton container
98-
docker run --gpus=1 --rm --net=host -v ${PWD}/model_repository:/models nvcr.io/nvidia/tritonserver:26.04-py3 tritonserver --model-repository=/models --model-control-mode explicit --load-model densenet_onnx
98+
docker run --gpus=1 --rm --net=host -v ${PWD}/model_repository:/models nvcr.io/nvidia/tritonserver:26.05-py3 tritonserver --model-repository=/models --model-control-mode explicit --load-model densenet_onnx
9999

100100
# Step 3: Sending an Inference Request
101101
# In a separate console, launch the image_client example from the NGC Triton SDK container
102-
docker run -it --rm --net=host nvcr.io/nvidia/tritonserver:26.04-py3-sdk /workspace/install/bin/image_client -m densenet_onnx -c 3 -s INCEPTION /workspace/images/mug.jpg
102+
docker run -it --rm --net=host nvcr.io/nvidia/tritonserver:26.05-py3-sdk /workspace/install/bin/image_client -m densenet_onnx -c 3 -s INCEPTION /workspace/images/mug.jpg
103103

104104
# Inference should return the following
105105
Image '/workspace/images/mug.jpg':

0 commit comments

Comments
 (0)