Skip to content

Commit c780765

Browse files
authored
Fix cuvs-bench docker images in docs (#2003)
Some of the docker image tags in the `cuvs-bench` docs don't exist. This PR updates `rapidsai/cuvs-bench:26.06-cuda12.9-py3.13` (doesn't exist) --> `rapidsai/cuvs-bench:26.06a-cuda12-py3.13` (does exist) Authors: - James Bourbeau (https://github.com/jrbourbeau) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: #2003
1 parent 5776cec commit c780765

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/source/cuvs_bench/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ We provide images for GPU enabled systems, as well as systems without a GPU. The
8484

8585
Nightly images are located in `dockerhub <https://hub.docker.com/r/rapidsai/cuvs-bench/tags>`_.
8686

87-
The following command pulls the nightly container for Python version 3.13, CUDA version 12.9, and cuVS version 26.04:
87+
The following command pulls the nightly container for Python version 3.13, CUDA version 12.9, and cuVS version 26.06:
8888

8989
.. code-block:: bash
9090
@@ -289,7 +289,7 @@ For GPU-enabled systems, the `DATA_FOLDER` variable should be a local folder whe
289289
export DATA_FOLDER=path/to/store/datasets/and/results
290290
docker run --gpus all --rm -it -u $(id -u) \
291291
-v $DATA_FOLDER:/data/benchmarks \
292-
rapidsai/cuvs-bench:26.06-cuda12.9-py3.13 \
292+
rapidsai/cuvs-bench:26.06a-cuda12-py3.13 \
293293
"--dataset deep-image-96-angular" \
294294
"--normalize" \
295295
"--algorithms cuvs_cagra,cuvs_ivf_pq --batch-size 10 -k 10" \
@@ -302,7 +302,7 @@ Usage of the above command is as follows:
302302
* - Argument
303303
- Description
304304

305-
* - `rapidsai/cuvs-bench:26.06-cuda12.9-py3.13`
305+
* - `rapidsai/cuvs-bench:26.06a-cuda12-py3.13`
306306
- Image to use. See "Docker" section for links to lists of available tags.
307307

308308
* - `"--dataset deep-image-96-angular"`
@@ -331,7 +331,7 @@ The container arguments in the above section also be used for the CPU-only conta
331331
export DATA_FOLDER=path/to/store/datasets/and/results
332332
docker run --rm -it -u $(id -u) \
333333
-v $DATA_FOLDER:/data/benchmarks \
334-
rapidsai/cuvs-bench-cpu:26.04a-py3.13 \
334+
rapidsai/cuvs-bench-cpu:26.06a-py3.13 \
335335
"--dataset deep-image-96-angular" \
336336
"--normalize" \
337337
"--algorithms hnswlib --batch-size 10 -k 10" \
@@ -349,7 +349,7 @@ All of the `cuvs-bench` images contain the Conda packages, so they can be used d
349349
--entrypoint /bin/bash \
350350
--workdir /data/benchmarks \
351351
-v $DATA_FOLDER:/data/benchmarks \
352-
rapidsai/cuvs-bench:26.06-cuda12.9-py3.13
352+
rapidsai/cuvs-bench:26.06a-cuda12-py3.13
353353
354354
This will drop you into a command line in the container, with the `cuvs-bench` python package ready to use, as described in the `Running the benchmarks`_ section above:
355355

0 commit comments

Comments
 (0)