Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to RAPIDS-Triton 24.10 #414

Merged
merged 1 commit into from
Nov 21, 2024
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
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
Loading