Skip to content

Commit

Permalink
Add python 3.11 build to GPU CI (#376)
Browse files Browse the repository at this point in the history
* Add python 3.11 build to GPU CI

* Switch to `cupy-cuda11x`

Previously CuPy built a wheel for each CUDA `X.Y` version. However the
CuPy team later transitioned to CUDA Compatibility, which allows a wheel
build to only focus on CUDA major version. So switch to that wheel here.

---------

Co-authored-by: jakirkham <jakirkham@gmail.com>
  • Loading branch information
charlesbluca and jakirkham authored May 21, 2024
1 parent 8393093 commit 3f4dbd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions continuous_integration/gpuci/axis.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
PYTHON_VER:
- "3.9"
- "3.10"
- "3.11"

CUDA_VER:
- "11.8.0"
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/gpuci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ rapids-logger "Activate conda env"
conda activate dask_image

rapids-logger "Install cupy"
python -m pip install cupy-cuda112 -f https://pip.cupy.dev/pre
python -m pip install cupy-cuda11x -f https://pip.cupy.dev/pre

rapids-logger "Install dask-image"
python -m pip install .
Expand Down

0 comments on commit 3f4dbd2

Please sign in to comment.