Skip to content

Commit a527d8e

Browse files
authored
rapids-24.08 (#241)
* update rapids * updates release notes
1 parent 770d2c2 commit a527d8e

File tree

9 files changed

+29
-11
lines changed

9 files changed

+29
-11
lines changed

.github/workflows/docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
RAPIDS_VER:
30-
- 24.06
30+
- 24.08
3131
name: Build Docker images
3232
runs-on: ubuntu-latest
3333
permissions:

conda/rsc_rapids_24.04.yml conda/rsc_rapids_24.08.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ channels:
55
- conda-forge
66
- bioconda
77
dependencies:
8-
- rapids=24.04
8+
- rapids=24.08
99
- python=3.11
10-
- cuda-version=11.8
10+
- cuda-version=12.5
1111
- cudnn
1212
- cutensor
1313
- cusparselt

docker/Dockerfile.deps

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG CUDA_VER=11.8.0
1+
ARG CUDA_VER=12.5.0
22
ARG LINUX_VER=ubuntu22.04
33

44
FROM nvidia/cuda:${CUDA_VER}-base-${LINUX_VER}

docker/docker-push.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -euxo pipefail
33

44
docker_account=scverse
5-
rapids_version=24.06
5+
rapids_version=24.08
66
grep -v -- '- rapids-singlecell' conda/rsc_rapids_${rapids_version}.yml > rsc_rapids.yml
77
docker build -t rapids-singlecell-deps:latest -f docker/Dockerfile.deps .
88
rm rsc_rapids.yml

docs/Installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
## Conda
33
The easiest way to install *rapids-singlecell* is to use one of the *yaml* file provided in the [conda](https://github.com/scverse/rapids_singlecell/tree/main/conda) folder. These *yaml* files install everything needed to run the example notebooks and get you started.
44
```
5-
conda env create -f conda/rsc_rapids_24.06.yml
5+
conda env create -f conda/rsc_rapids_24.06.yml #default CUDA-11.8
66
# or
7-
mamba env create -f conda/rsc_rapids_24.04.yml
7+
mamba env create -f conda/rsc_rapids_24.08.yml #default CUDA-12.5
88
```
99
## PyPI
1010
As of version 0.4.0 *rapids-singlecell* is now on PyPI.

docs/release-notes/0.10.8.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 0.10.8 {small}`the future`
1+
### 0.10.8 {small}`2024-08-09`
22

33
```{rubric} Features
44
```
@@ -16,3 +16,6 @@
1616

1717
```{rubric} Misc
1818
```
19+
* updates tests to run on rapids-24.08 {pr}`241` {smaller}`S Dicks`
20+
* updates docker to on rapids-24.08 {pr}`241` {smaller}`S Dicks`
21+
* updates docker to run with cuda-12 {pr}`241` {smaller}`S Dicks`

docs/release-notes/0.10.9.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
### 0.10.8 {small}`the future`
2+
3+
```{rubric} Features
4+
```
5+
6+
```{rubric} Performance
7+
```
8+
9+
```{rubric} Bug fixes
10+
```
11+
12+
```{rubric} Misc
13+
```

docs/release-notes/index.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
# Release notes
44

5-
## Version 0.10.0#
5+
## Version 0.10.0
6+
```{include} /release-notes/0.10.9.md
7+
```
68
```{include} /release-notes/0.10.8.md
79
```
810
```{include} /release-notes/0.10.7.md

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ dependencies = [
2626
]
2727

2828
[project.optional-dependencies]
29-
rapids11 = ["cudf-cu11==24.6.*", "cuml-cu11==24.6.*", "cugraph-cu11==24.6.*"]
30-
rapids12 = ["cudf-cu12==24.6.*", "cuml-cu12==24.6.*", "cugraph-cu12==24.6.*"]
29+
rapids11 = ["cudf-cu11==24.8.*", "cuml-cu11==24.8.*", "cugraph-cu11==24.8.*"]
30+
rapids12 = ["cudf-cu12==24.8.*", "cuml-cu12==24.8.*", "cugraph-cu12==24.8.*"]
3131
doc = [
3232
"sphinx>=4.5.0",
3333
"sphinx-copybutton",

0 commit comments

Comments
 (0)