Skip to content

Commit b56c395

Browse files
committed
Update to 26.06.00
1 parent b82a349 commit b56c395

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ ARG LINUX_DISTRO_VER=22.04
77
ARG LINUX_VER=${LINUX_DISTRO}${LINUX_DISTRO_VER}
88
ARG MINIFORGE_VER=notset
99
ARG PYTHON_VER=notset
10-
ARG RAPIDS_VER=26.04
10+
ARG RAPIDS_VER=26.06
1111

1212
# Gather dependency information
1313
FROM python:${PYTHON_VER} AS dependencies
1414
ARG CPU_ARCH=notset
1515
ARG CUDA_VER=notset
1616
ARG PYTHON_VER=notset
1717
ARG RAPIDS_BRANCH="main"
18-
ARG RAPIDS_VER=26.04
18+
ARG RAPIDS_VER=26.06
1919
ARG YQ_VER=notset
2020

2121
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]
@@ -122,7 +122,7 @@ EOF
122122
FROM miniforge-cuda AS base
123123
ARG CUDA_VER=notset
124124
ARG PYTHON_VER=notset
125-
ARG RAPIDS_VER=26.04
125+
ARG RAPIDS_VER=26.06
126126

127127
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]
128128

@@ -249,7 +249,7 @@ LABEL com.nvidia.workbench.application.jupyterlab.webapp.url-cmd="jupyter lab li
249249
LABEL com.nvidia.workbench.cuda-version="$CUDA_VER"
250250
LABEL com.nvidia.workbench.description="RAPIDS with CUDA ${CUDA_VER}"
251251
LABEL com.nvidia.workbench.entrypoint-script="/home/rapids/entrypoint.sh"
252-
LABEL com.nvidia.workbench.image-version="26.04.00"
252+
LABEL com.nvidia.workbench.image-version="26.06.00"
253253
LABEL com.nvidia.workbench.labels="cuda${CUDA_VER}"
254254
LABEL com.nvidia.workbench.name="RAPIDS with CUDA ${CUDA_VER}"
255255
LABEL com.nvidia.workbench.os-distro-release="$LINUX_DISTRO_VER"

cuvs-bench/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export DATA_FOLDER=path/to/store/results/and/data
3535
docker run --gpus all --rm -it \
3636
-v $DATA_FOLDER:/home/rapids/benchmarks \
3737
-u $(id -u) \
38-
rapidsai/cuvs-bench:26.04a-cuda13-py3.13 \
38+
rapidsai/cuvs-bench:26.06a-cuda13-py3.13 \
3939
"--dataset deep-image-96-angular" \
4040
"--normalize" \
4141
"--algorithms cuvs_cagra" \
@@ -46,7 +46,7 @@ Where:
4646

4747
- `DATA_FOLDER=path/to/store/results/and/data`: Results and datasets will be written to this host folder.
4848
- `-u $(id -u)`: This flag allows the container to use the host user for permissions
49-
- `rapidsai/cuvs-bench:26.04a-cuda13-py3.13`: Image to use, `cuvs-bench`, cuVS version, CUDA version, and Python version.
49+
- `rapidsai/cuvs-bench:26.06a-cuda13-py3.13`: Image to use, `cuvs-bench`, cuVS version, CUDA version, and Python version.
5050
- "--dataset deep-image-96-angular": Dataset name(s). See https://docs.rapids.ai/api/cuvs/nightly/cuvs_bench for more details.
5151
- "--normalize": Whether to normalize the dataset, leave string empty ("") to not normalize.
5252
- "--algorithms cuvs_cagra": What algorithm(s) to use as a ; separated list, as well as any other argument to pass to `cuvs_bench.run`.
@@ -59,7 +59,7 @@ export DATA_FOLDER=path/to/store/results/and/data
5959
docker run all --rm -it \
6060
-v $DATA_FOLDER:/home/rapids/benchmarks \
6161
-u $(id -u) \
62-
rapidsai/cuvs-bench-cpu:26.04a-py3.13 \
62+
rapidsai/cuvs-bench-cpu:26.06a-py3.13 \
6363
"--dataset deep-image-96-angular" \
6464
"--normalize" \
6565
"--algorithms cuvs_cagra" \
@@ -73,7 +73,7 @@ export DATA_FOLDER=path/to/store/results/and/data
7373
docker run --gpus all --rm -it \
7474
-v $DATA_FOLDER:/home/rapids/benchmarks \
7575
-u $(id -u) \
76-
rapidsai/cuvs-bench:26.04a-cuda13-py3.13 \
76+
rapidsai/cuvs-bench:26.06a-cuda13-py3.13 \
7777
--entrypoint /bin/bash
7878
```
7979

cuvs-bench/cpu/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
ARG MINIFORGE_VER=notset
55
ARG PYTHON_VER=notset
6-
ARG RAPIDS_VER=26.04
6+
ARG RAPIDS_VER=26.06
77

88
FROM condaforge/miniforge3:${MINIFORGE_VER} AS cuvs-bench-cpu
99
ARG PYTHON_VER=notset
10-
ARG RAPIDS_VER=26.04
10+
ARG RAPIDS_VER=26.06
1111

1212
COPY condarc /opt/conda/.condarc
1313

cuvs-bench/gpu/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG CUDA_VER=notset
55
ARG LINUX_VER=notset
66
ARG MINIFORGE_VER=notset
77
ARG PYTHON_VER=notset
8-
ARG RAPIDS_VER=26.04
8+
ARG RAPIDS_VER=26.06
99

1010
# --- begin 'rapidsai/miniforge-cuda' --- #
1111
FROM condaforge/miniforge3:${MINIFORGE_VER} AS miniforge-upstream
@@ -59,7 +59,7 @@ EOF
5959

6060
FROM miniforge-cuda AS cuvs-bench
6161
ARG CUDA_VER=notset
62-
ARG RAPIDS_VER=26.04
62+
ARG RAPIDS_VER=26.06
6363

6464
COPY condarc /opt/conda/.condarc
6565

dockerhub-readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Visit [rapids.ai](https://rapids.ai) for more information.
88

99
**NOTE:** Review our [system requirements](https://docs.rapids.ai/install#system-req) to ensure you have a compatible system!
1010

11-
### Current Version - RAPIDS v26.04
11+
### Current Version - RAPIDS v26.06
1212

1313
RAPIDS Libraries included in the images:
1414

@@ -39,7 +39,7 @@ There are two types:
3939
The tag naming scheme for RAPIDS images incorporates key platform details into the tag as shown below:
4040

4141
```text
42-
26.04-cuda13-py3.13
42+
26.06-cuda13-py3.13
4343
^ ^ ^
4444
| | Python version
4545
| |
@@ -48,7 +48,7 @@ The tag naming scheme for RAPIDS images incorporates key platform details into t
4848
RAPIDS version
4949
```
5050

51-
**Note: Nightly builds of the images have the RAPIDS version appended with an `a` (ie `26.04a-cuda13-py3.13`)**
51+
**Note: Nightly builds of the images have the RAPIDS version appended with an `a` (ie `26.06a-cuda13-py3.13`)**
5252

5353
**Note on CUDA versioning**:
5454
- **RAPIDS 25.12 and later**: CUDA version tags are major-only (e.g., `cuda12`, `cuda13`).
@@ -86,7 +86,7 @@ $ docker run \
8686
-e EXTRA_CONDA_PACKAGES="jq" \
8787
-e EXTRA_PIP_PACKAGES="beautifulsoup4" \
8888
-p 8888:8888 \
89-
rapidsai/notebooks:26.04-cuda13-py3.13
89+
rapidsai/notebooks:26.06-cuda13-py3.13
9090
```
9191

9292
### Bind Mounts
@@ -111,7 +111,7 @@ $ docker run \
111111
--gpus all \
112112
--shm-size=1g --ulimit memlock=-1 --ulimit stack=67108864 \
113113
-v $(pwd)/environment.yml:/home/rapids/environment.yml \
114-
rapidsai/base:26.04-cuda13-py3.13
114+
rapidsai/base:26.06-cuda13-py3.13
115115
```
116116

117117
### Use JupyterLab to Explore the Notebooks

tests/container-canary/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Install `container-canary` following the instructions in that project's repo.
99
Run the tests against a built image, the same way they're run in CI.
1010

1111
```shell
12-
IMAGE_URI="rapidsai/notebooks:26.04a-cuda13-py3.13"
12+
IMAGE_URI="rapidsai/notebooks:26.06a-cuda13-py3.13"
1313

1414
ci/run-validation-checks.sh \
1515
--dask-scheduler \

0 commit comments

Comments
 (0)