Skip to content

Commit 08db515

Browse files
authored
Provide 25.03 version bump (#424)
* Provide 25.03 version bump * Fix build
1 parent 42b33d2 commit 08db515

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

CMakeLists.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ set(TRITON_BACKEND_REPO_TAG "main" CACHE STRING "Tag for triton-inference-server
2727

2828
# Specify *minimum* version for all RAPIDS dependencies
2929
# Some RAPIDS deps may have later versions
30-
set(RAPIDS_DEPENDENCIES_VERSION "24.10" CACHE STRING "RAPIDS projects dependencies version")
30+
set(RAPIDS_DEPENDENCIES_VERSION "25.02" CACHE STRING "RAPIDS projects dependencies version")
3131
set(RAPIDS_TRITON_REPO_PATH "https://github.com/rapidsai/rapids-triton.git" CACHE STRING "Git repository to pull rapids_triton from")
3232
set(RAPIDS_TRITON_REPO_TAG "branch-${RAPIDS_DEPENDENCIES_VERSION}" CACHE STRING "Tag for rapidsai/rapids-triton repo")
3333

3434
if(TRITON_FIL_DOCKER_BUILD)
35-
project(RAPIDS_TRITON_BACKEND VERSION 25.01.00)
36-
set(TRITON_BUILD_CONTAINER "nvcr.io/nvidia/tritonserver:25.01-py3" CACHE STRING "Build image for Dockerized builds")
37-
set(TRITON_BUILD_CONTAINER_VERSION "25.01" CACHE STRING "Triton version for Dockerized builds")
35+
project(RAPIDS_TRITON_BACKEND VERSION 25.02.00)
36+
set(TRITON_BUILD_CONTAINER "nvcr.io/nvidia/tritonserver:25.02-py3" CACHE STRING "Build image for Dockerized builds")
37+
set(TRITON_BUILD_CONTAINER_VERSION "25.02" CACHE STRING "Triton version for Dockerized builds")
3838

3939
add_custom_command(
4040
OUTPUT fil/libtriton_fil.so $<$<BOOL:${TRITON_ENABLE_GPU}>:fil/libcuml++.so>
@@ -83,7 +83,7 @@ else()
8383
##############################################################################
8484
# - Prepare rapids-cmake -----------------------------------------------------
8585
file(DOWNLOAD
86-
https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-24.10/RAPIDS.cmake
86+
https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-25.02/RAPIDS.cmake
8787
${CMAKE_BINARY_DIR}/RAPIDS.cmake)
8888
include(${CMAKE_BINARY_DIR}/RAPIDS.cmake)
8989
include(rapids-cmake)
@@ -123,9 +123,9 @@ else()
123123

124124
if(TRITON_ENABLE_GPU)
125125
rapids_cuda_init_architectures(RAPIDS_TRITON_BACKEND)
126-
project(RAPIDS_TRITON_BACKEND VERSION 22.10.00 LANGUAGES CXX CUDA)
126+
project(RAPIDS_TRITON_BACKEND VERSION 25.03.00 LANGUAGES CXX CUDA)
127127
else()
128-
project(RAPIDS_TRITON_BACKEND VERSION 22.10.00 LANGUAGES CXX)
128+
project(RAPIDS_TRITON_BACKEND VERSION 25.03.00 LANGUAGES CXX)
129129
endif()
130130

131131
##############################################################################

cmake/thirdparty/get_cuml.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ endfunction()
5555
# Change pinned tag here to test a commit in CI
5656
# To use a different RAFT locally, set the CMake variable
5757
# CPM_raft_SOURCE=/path/to/local/raft
58-
find_and_configure_cuml(VERSION 24.12
58+
find_and_configure_cuml(VERSION 25.02
5959
FORK rapidsai
60-
PINNED_TAG feature/fil-backend-r25.01
60+
PINNED_TAG branch-25.02
6161
USE_TREELITE_STATIC ${TRITON_FIL_USE_TREELITE_STATIC}
6262
)

conda/environments/triton_benchmark.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ channels:
44
- nvidia
55
- rapidsai
66
dependencies:
7-
- cuda-version=11.8
8-
- cudf=24.12
7+
- cuda-version=12.8
8+
- cudf=25.02
99
- libcusolver
1010
- libcusparse
1111
- matplotlib

conda/environments/triton_test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ channels:
55
- rapidsai
66
dependencies:
77
- aws-sdk-cpp
8-
- clang-tools=11.1.0
9-
- cuda-version=11.8
10-
- cudf=24.12
11-
- cuml=24.12
8+
- clang-tools=19.1.7
9+
- cuda-version=12.8
10+
- cudf=25.02
11+
- cuml=25.02
1212
- flake8
1313
- hypothesis
1414
- lightgbm

conda/environments/triton_test_no_client.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ channels:
55
- rapidsai
66
dependencies:
77
- aws-sdk-cpp
8-
- clang-tools=11.1.0
9-
- cuda-version=11.8
10-
- cudf=24.12
11-
- cuml=24.12
8+
- clang-tools=19.1.7
9+
- cuda-version=12.8
10+
- cudf=25.02
11+
- cuml=25.02
1212
- flake8
1313
- hypothesis
1414
- lightgbm

ops/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Arguments for controlling build details
44
###########################################################################################
55
# Version of Triton to use
6-
ARG TRITON_VERSION=25.01
6+
ARG TRITON_VERSION=25.02
77
# Base container image
88
ARG BASE_IMAGE=nvcr.io/nvidia/tritonserver:${TRITON_VERSION}-py3
99
# Whether or not to enable GPU build
@@ -63,7 +63,7 @@ RUN conda run --no-capture-output -n triton_test \
6363

6464
FROM wheel-install-${USE_CLIENT_WHEEL} as conda-test
6565
RUN conda run --no-capture-output -n triton_test \
66-
pip install git+https://github.com/rapidsai/rapids-triton.git@branch-24.10#subdirectory=python
66+
pip install git+https://github.com/rapidsai/rapids-triton.git@branch-25.02#subdirectory=python
6767
RUN conda-pack --ignore-missing-files -n triton_test -o /tmp/env.tar \
6868
&& mkdir /conda/test/ \
6969
&& cd /conda/test/ \

scripts/environment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ channels:
44
- nvidia
55
- rapidsai
66
dependencies:
7-
- cuda-version=11.8
8-
- cuml=24.12
7+
- cuda-version=12.8
8+
- cuml=25.02
99
- python
1010
- scikit-learn>=1.5
1111
- treelite>=4.3

0 commit comments

Comments
 (0)