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

rapids-24.08 #241

Merged
merged 2 commits into from
Aug 9, 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
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
RAPIDS_VER:
- 24.06
- 24.08
name: Build Docker images
runs-on: ubuntu-latest
permissions:
Expand Down
4 changes: 2 additions & 2 deletions conda/rsc_rapids_24.04.yml → conda/rsc_rapids_24.08.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ channels:
- conda-forge
- bioconda
dependencies:
- rapids=24.04
- rapids=24.08
- python=3.11
- cuda-version=11.8
- cuda-version=12.5
- cudnn
- cutensor
- cusparselt
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.deps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG CUDA_VER=11.8.0
ARG CUDA_VER=12.5.0
ARG LINUX_VER=ubuntu22.04

FROM nvidia/cuda:${CUDA_VER}-base-${LINUX_VER}
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -euxo pipefail

docker_account=scverse
rapids_version=24.06
rapids_version=24.08
grep -v -- '- rapids-singlecell' conda/rsc_rapids_${rapids_version}.yml > rsc_rapids.yml
docker build -t rapids-singlecell-deps:latest -f docker/Dockerfile.deps .
rm rsc_rapids.yml
Expand Down
4 changes: 2 additions & 2 deletions docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
## Conda
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.
```
conda env create -f conda/rsc_rapids_24.06.yml
conda env create -f conda/rsc_rapids_24.06.yml #default CUDA-11.8
# or
mamba env create -f conda/rsc_rapids_24.04.yml
mamba env create -f conda/rsc_rapids_24.08.yml #default CUDA-12.5
```
## PyPI
As of version 0.4.0 *rapids-singlecell* is now on PyPI.
Expand Down
5 changes: 4 additions & 1 deletion docs/release-notes/0.10.8.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 0.10.8 {small}`the future`
### 0.10.8 {small}`2024-08-09`

```{rubric} Features
```
Expand All @@ -16,3 +16,6 @@

```{rubric} Misc
```
* updates tests to run on rapids-24.08 {pr}`241` {smaller}`S Dicks`
* updates docker to on rapids-24.08 {pr}`241` {smaller}`S Dicks`
* updates docker to run with cuda-12 {pr}`241` {smaller}`S Dicks`
13 changes: 13 additions & 0 deletions docs/release-notes/0.10.9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
### 0.10.8 {small}`the future`

```{rubric} Features
```

```{rubric} Performance
```

```{rubric} Bug fixes
```

```{rubric} Misc
```
4 changes: 3 additions & 1 deletion docs/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

# Release notes

## Version 0.10.0#
## Version 0.10.0
```{include} /release-notes/0.10.9.md
```
```{include} /release-notes/0.10.8.md
```
```{include} /release-notes/0.10.7.md
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ dependencies = [
]

[project.optional-dependencies]
rapids11 = ["cudf-cu11==24.6.*", "cuml-cu11==24.6.*", "cugraph-cu11==24.6.*"]
rapids12 = ["cudf-cu12==24.6.*", "cuml-cu12==24.6.*", "cugraph-cu12==24.6.*"]
rapids11 = ["cudf-cu11==24.8.*", "cuml-cu11==24.8.*", "cugraph-cu11==24.8.*"]
rapids12 = ["cudf-cu12==24.8.*", "cuml-cu12==24.8.*", "cugraph-cu12==24.8.*"]
doc = [
"sphinx>=4.5.0",
"sphinx-copybutton",
Expand Down
Loading