diff --git a/context/test_notebooks.py b/context/test_notebooks.py index 6487745f..a740c3af 100755 --- a/context/test_notebooks.py +++ b/context/test_notebooks.py @@ -33,6 +33,8 @@ 'cuspatial/nyc_taxi_years_correlation.ipynb', # context on skip zipcodes: https://github.com/rapidsai/cuspatial/issues/1426 'cuspatial/ZipCodes_Stops_PiP_cuSpatial.ipynb', + # context on this being skipped: https://github.com/rapidsai/docker/pull/728#issuecomment-2631146036 + 'cuspatial/trajectory_clustering.ipynb', ] diff --git a/cuvs-bench/README.md b/cuvs-bench/README.md index 161839dd..5bae5656 100644 --- a/cuvs-bench/README.md +++ b/cuvs-bench/README.md @@ -36,7 +36,7 @@ export DATA_FOLDER=path/to/store/results/and/data docker run --gpus all --rm -it \ -v $DATA_FOLDER:/home/rapids/benchmarks \ -u $(id -u) \ - rapidsai/cuvs-bench:25.02a-cuda12.5-py3.12 \ + rapidsai/cuvs-bench:25.02a-cuda12.8-py3.12 \ "--dataset deep-image-96-angular" \ "--normalize" \ "--algorithms cuvs_cagra" \ @@ -47,7 +47,7 @@ Where: - `DATA_FOLDER=path/to/store/results/and/data`: Results and datasets will be written to this host folder. - `-u $(id -u)`: This flag allows the container to use the host user for permissions -- `rapidsai/cuvs-bench:25.02a-cuda12.5-py3.12`: Image to use, either `cuvs-bench` or `cuvs-bench-datasets`, cuVS version, CUDA version, and Python version. +- `rapidsai/cuvs-bench:25.02a-cuda12.8-py3.12`: Image to use, either `cuvs-bench` or `cuvs-bench-datasets`, cuVS version, CUDA version, and Python version. - "--dataset deep-image-96-angular": Dataset name(s). See https://docs.rapids.ai/api/cuvs/nightly/cuvs_bench for more details. - "--normalize": Whether to normalize the dataset, leave string empty ("") to not normalize. - "--algorithms cuvs_cagra": What algorithm(s) to use as a ; separated list, as well as any other argument to pass to `cuvs_bench.run`. @@ -74,7 +74,7 @@ export DATA_FOLDER=path/to/store/results/and/data docker run --gpus all --rm -it \ -v $DATA_FOLDER:/home/rapids/benchmarks \ -u $(id -u) \ - rapidsai/cuvs-bench:25.02a-cuda12.5-py3.12 \ + rapidsai/cuvs-bench:25.02a-cuda12.8-py3.12 \ --entrypoint /bin/bash ``` diff --git a/dockerhub-readme.md b/dockerhub-readme.md index ec3a710f..284ee1a8 100644 --- a/dockerhub-readme.md +++ b/dockerhub-readme.md @@ -39,7 +39,7 @@ There are two types: The tag naming scheme for RAPIDS images incorporates key platform details into the tag as shown below: ``` -25.02-cuda12.5-py3.12 +25.02-cuda12.8-py3.12 ^ ^ ^ | | Python version | | @@ -48,7 +48,7 @@ The tag naming scheme for RAPIDS images incorporates key platform details into t RAPIDS version ``` -**Note: Nightly builds of the images have the RAPIDS version appended with an `a` (ie `25.02a-cuda12.5-py3.12`)** +**Note: Nightly builds of the images have the RAPIDS version appended with an `a` (ie `25.02a-cuda12.8-py3.12`)** ## Usage @@ -81,7 +81,7 @@ $ docker run \ -e EXTRA_CONDA_PACKAGES="jq" \ -e EXTRA_PIP_PACKAGES="beautifulsoup4" \ -p 8888:8888 \ - rapidsai/notebooks:25.02-cuda12.5-py3.12 + rapidsai/notebooks:25.02-cuda12.8-py3.12 ``` ### Bind Mounts @@ -106,7 +106,7 @@ $ docker run \ --gpus all \ --shm-size=1g --ulimit memlock=-1 --ulimit stack=67108864 \ -v $(pwd)/environment.yml:/home/rapids/environment.yml \ - rapidsai/base:25.02-cuda12.5-py3.12 + rapidsai/base:25.02-cuda12.8-py3.12 ``` ### Use JupyterLab to Explore the Notebooks diff --git a/matrix-test.yaml b/matrix-test.yaml index 5652c7ad..2d221fc0 100644 --- a/matrix-test.yaml +++ b/matrix-test.yaml @@ -3,11 +3,11 @@ pull-request: - { CUDA_VER: '11.8', ARCH: 'amd64', PYTHON_VER: '3.10', GPU: 'v100', DRIVER: 'earliest' } - { CUDA_VER: '12.0', ARCH: 'arm64', PYTHON_VER: '3.11', GPU: 'a100', DRIVER: 'latest' } - - { CUDA_VER: '12.5', ARCH: 'amd64', PYTHON_VER: '3.12', GPU: 'v100', DRIVER: 'latest' } + - { CUDA_VER: '12.8', ARCH: 'amd64', PYTHON_VER: '3.12', GPU: 'v100', DRIVER: 'latest' } branch: - { CUDA_VER: '11.8', ARCH: 'amd64', PYTHON_VER: '3.10', GPU: 'v100', DRIVER: 'earliest' } - { CUDA_VER: '11.8', ARCH: 'amd64', PYTHON_VER: '3.10', GPU: 'v100', DRIVER: 'latest' } - { CUDA_VER: '12.0', ARCH: 'amd64', PYTHON_VER: '3.11', GPU: 'v100', DRIVER: 'latest' } - { CUDA_VER: '12.0', ARCH: 'arm64', PYTHON_VER: '3.11', GPU: 'a100', DRIVER: 'latest' } - - { CUDA_VER: '12.5', ARCH: 'amd64', PYTHON_VER: '3.12', GPU: 'v100', DRIVER: 'latest' } - - { CUDA_VER: '12.5', ARCH: 'arm64', PYTHON_VER: '3.12', GPU: 'a100', DRIVER: 'latest' } + - { CUDA_VER: '12.8', ARCH: 'amd64', PYTHON_VER: '3.12', GPU: 'v100', DRIVER: 'latest' } + - { CUDA_VER: '12.8', ARCH: 'arm64', PYTHON_VER: '3.12', GPU: 'a100', DRIVER: 'latest' } diff --git a/matrix.yaml b/matrix.yaml index 78a41b44..184d132e 100644 --- a/matrix.yaml +++ b/matrix.yaml @@ -1,7 +1,7 @@ -CUDA_VER: # Should be `..` (e.g. `12.5.1`) +CUDA_VER: # Should be `..` (e.g. `12.8.0`) - "11.8.0" - "12.0.1" - - "12.5.1" + - "12.8.0" PYTHON_VER: - "3.10" - "3.11"