forked from cupy/cupy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cupy#8970 from jakirkham/use_rapids_25.02
Fix `cupyx.scipy.spatial.distance`'s `cdist` for RAPIDS 24.12 compatibility
- Loading branch information
1 parent
f5e36bf
commit d7313aa
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
ARG BASE_IMAGE="rapidsai/base:25.02a-cuda12.5-py3.11" | ||
ARG BASE_IMAGE="rapidsai/base:25.02-cuda12.8-py3.11" | ||
FROM ${BASE_IMAGE} | ||
|
||
USER root | ||
|
||
RUN export DEBIAN_FRONTEND=noninteractive && \ | ||
apt-get -qqy update && \ | ||
apt-get -qqy install build-essential cuda-toolkit-12-5 ccache git curl | ||
apt-get -qqy install build-essential cuda-toolkit-12-8 ccache git curl | ||
|
||
ENV CUDA_PATH "/usr/local/cuda" | ||
ENV PATH "/usr/lib/ccache:${PATH}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters