Skip to content

Commit

Permalink
Update to RAPIDS-Triton 24.10 (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
wphicks authored and hcho3 committed Nov 21, 2024
1 parent 5533dfc commit 1c5728e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ else()
##############################################################################
# - Prepare rapids-cmake -----------------------------------------------------
file(DOWNLOAD
https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-24.04/RAPIDS.cmake
https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-24.10/RAPIDS.cmake
${CMAKE_BINARY_DIR}/RAPIDS.cmake)
include(${CMAKE_BINARY_DIR}/RAPIDS.cmake)
include(rapids-cmake)
Expand All @@ -97,7 +97,7 @@ else()
set(BACKEND_FOLDER "/opt/tritonserver/backends" CACHE STRING "Triton backend folder path")
# Specify *minimum* version for all RAPIDS dependencies
# Some RAPIDS deps may have later versions
set(RAPIDS_DEPENDENCIES_VERSION "24.04" CACHE STRING "RAPIDS projects dependencies version")
set(RAPIDS_DEPENDENCIES_VERSION "24.10" CACHE STRING "RAPIDS projects dependencies version")
option(TRITON_FIL_USE_TREELITE_STATIC "Link Treelite statically in libtriton_fil.so and cuml++.so" ON)


Expand Down
2 changes: 1 addition & 1 deletion conda/environments/triton_benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ dependencies:
- pip:
- tritonclient[all]
- protobuf
- git+https://github.com/rapidsai/rapids-triton.git@branch-24.04#subdirectory=python
- git+https://github.com/rapidsai/rapids-triton.git@branch-24.10#subdirectory=python
2 changes: 1 addition & 1 deletion conda/environments/triton_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ dependencies:
- pip:
- tritonclient[all]
- protobuf
- git+https://github.com/rapidsai/rapids-triton.git@branch-24.04#subdirectory=python
- git+https://github.com/rapidsai/rapids-triton.git@branch-24.10#subdirectory=python
4 changes: 2 additions & 2 deletions ops/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ RUN conda run --no-capture-output -n triton_test \

FROM wheel-install-${USE_CLIENT_WHEEL} as conda-test
RUN conda run --no-capture-output -n triton_test \
pip install git+https://github.com/rapidsai/rapids-triton.git@branch-24.04#subdirectory=python
pip install git+https://github.com/rapidsai/rapids-triton.git@branch-24.10#subdirectory=python
RUN conda-pack --ignore-missing-files -n triton_test -o /tmp/env.tar \
&& mkdir /conda/test/ \
&& cd /conda/test/ \
Expand Down Expand Up @@ -150,7 +150,7 @@ ENV TRITON_ENABLE_GPU=$TRITON_ENABLE_GPU

# Specify *minimum* version for all RAPIDS dependencies
# Some RAPIDS deps may have later versions
ARG RAPIDS_DEPENDENCIES_VERSION=24.04
ARG RAPIDS_DEPENDENCIES_VERSION=24.10
ENV RAPIDS_DEPENDENCIES_VERSION=$RAPIDS_DEPENDENCIES_VERSION

ARG TRITON_FIL_USE_TREELITE_STATIC=ON
Expand Down

0 comments on commit 1c5728e

Please sign in to comment.