Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 6a16fd6

Browse files
committed
DOC v25.04 Updates [skip ci]
1 parent 549f77b commit 6a16fd6

File tree

18 files changed

+108
-108
lines changed

18 files changed

+108
-108
lines changed

.devcontainer/cuda11.8-conda/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"args": {
66
"CUDA": "11.8",
77
"PYTHON_PACKAGE_MANAGER": "conda",
8-
"BASE": "rapidsai/devcontainers:25.02-cpp-cuda11.8-mambaforge-ubuntu22.04"
8+
"BASE": "rapidsai/devcontainers:25.04-cpp-cuda11.8-mambaforge-ubuntu22.04"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.02-cuda11.8-conda"
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.04-cuda11.8-conda"
1515
],
1616
"hostRequirements": {"gpu": "optional"},
1717
"features": {
18-
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.2": {}
18+
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.4": {}
1919
},
2020
"overrideFeatureInstallOrder": [
2121
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"

.devcontainer/cuda11.8-pip/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"args": {
66
"CUDA": "11.8",
77
"PYTHON_PACKAGE_MANAGER": "pip",
8-
"BASE": "rapidsai/devcontainers:25.02-cpp-cuda11.8-ubuntu22.04"
8+
"BASE": "rapidsai/devcontainers:25.04-cpp-cuda11.8-ubuntu22.04"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.02-cuda11.8-pip"
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.04-cuda11.8-pip"
1515
],
1616
"hostRequirements": {"gpu": "optional"},
1717
"features": {
18-
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.2": {}
18+
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.4": {}
1919
},
2020
"overrideFeatureInstallOrder": [
2121
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"

.devcontainer/cuda12.5-conda/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"args": {
66
"CUDA": "12.5",
77
"PYTHON_PACKAGE_MANAGER": "conda",
8-
"BASE": "rapidsai/devcontainers:25.02-cpp-mambaforge-ubuntu22.04"
8+
"BASE": "rapidsai/devcontainers:25.04-cpp-mambaforge-ubuntu22.04"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.02-cuda12.5-conda"
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.04-cuda12.5-conda"
1515
],
1616
"hostRequirements": {"gpu": "optional"},
1717
"features": {
18-
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.2": {}
18+
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.4": {}
1919
},
2020
"overrideFeatureInstallOrder": [
2121
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"

.devcontainer/cuda12.5-pip/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"args": {
66
"CUDA": "12.5",
77
"PYTHON_PACKAGE_MANAGER": "pip",
8-
"BASE": "rapidsai/devcontainers:25.02-cpp-cuda12.5-ubuntu22.04"
8+
"BASE": "rapidsai/devcontainers:25.04-cpp-cuda12.5-ubuntu22.04"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.02-cuda12.5-pip"
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.04-cuda12.5-pip"
1515
],
1616
"hostRequirements": {"gpu": "optional"},
1717
"features": {
18-
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.2": {}
18+
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.4": {}
1919
},
2020
"overrideFeatureInstallOrder": [
2121
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"

.github/workflows/build.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ concurrency:
2828
jobs:
2929
cpp-build:
3030
secrets: inherit
31-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.02
31+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.04
3232
with:
3333
build_type: ${{ inputs.build_type || 'branch' }}
3434
branch: ${{ inputs.branch }}
@@ -37,7 +37,7 @@ jobs:
3737
python-build:
3838
needs: [cpp-build]
3939
secrets: inherit
40-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
40+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.04
4141
with:
4242
build_type: ${{ inputs.build_type || 'branch' }}
4343
branch: ${{ inputs.branch }}
@@ -46,7 +46,7 @@ jobs:
4646
upload-conda:
4747
needs: [cpp-build, python-build]
4848
secrets: inherit
49-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.02
49+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.04
5050
with:
5151
build_type: ${{ inputs.build_type || 'branch' }}
5252
branch: ${{ inputs.branch }}
@@ -56,7 +56,7 @@ jobs:
5656
if: github.ref_type == 'branch'
5757
needs: python-build
5858
secrets: inherit
59-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.02
59+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
6060
with:
6161
arch: "amd64"
6262
branch: ${{ inputs.branch }}
@@ -68,7 +68,7 @@ jobs:
6868
sha: ${{ inputs.sha }}
6969
wheel-build-libcuspatial:
7070
secrets: inherit
71-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
71+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
7272
with:
7373
# build for every combination of arch and CUDA version, but only for the latest Python
7474
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
@@ -80,7 +80,7 @@ jobs:
8080
wheel-publish-libcuspatial:
8181
needs: wheel-build-libcuspatial
8282
secrets: inherit
83-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02
83+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.04
8484
with:
8585
build_type: ${{ inputs.build_type || 'branch' }}
8686
branch: ${{ inputs.branch }}
@@ -91,7 +91,7 @@ jobs:
9191
wheel-build-cuspatial:
9292
needs: wheel-publish-libcuspatial
9393
secrets: inherit
94-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
94+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
9595
with:
9696
build_type: ${{ inputs.build_type || 'branch' }}
9797
branch: ${{ inputs.branch }}
@@ -101,7 +101,7 @@ jobs:
101101
wheel-publish-cuspatial:
102102
needs: wheel-build-cuspatial
103103
secrets: inherit
104-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02
104+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.04
105105
with:
106106
build_type: ${{ inputs.build_type || 'branch' }}
107107
branch: ${{ inputs.branch }}
@@ -111,7 +111,7 @@ jobs:
111111
package-type: python
112112
wheel-build-cuproj:
113113
secrets: inherit
114-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
114+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
115115
with:
116116
build_type: ${{ inputs.build_type || 'branch' }}
117117
branch: ${{ inputs.branch }}
@@ -121,7 +121,7 @@ jobs:
121121
wheel-publish-cuproj:
122122
needs: wheel-build-cuproj
123123
secrets: inherit
124-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02
124+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.04
125125
with:
126126
build_type: ${{ inputs.build_type || 'branch' }}
127127
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- wheel-tests-cuproj
3030
- devcontainer
3131
secrets: inherit
32-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.02
32+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.04
3333
if: always()
3434
with:
3535
needs: ${{ toJSON(needs) }}
@@ -47,7 +47,7 @@ jobs:
4747
repo: cuspatial
4848
changed-files:
4949
secrets: inherit
50-
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.02
50+
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.04
5151
with:
5252
files_yaml: |
5353
test_cpp:
@@ -77,46 +77,46 @@ jobs:
7777
- '!notebooks/**'
7878
checks:
7979
secrets: inherit
80-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.02
80+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.04
8181
with:
8282
enable_check_generated_files: false
8383
conda-cpp-build:
8484
needs: checks
8585
secrets: inherit
86-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.02
86+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.04
8787
with:
8888
build_type: pull-request
8989
conda-cpp-checks:
9090
needs: conda-cpp-build
9191
secrets: inherit
92-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.02
92+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.04
9393
with:
9494
build_type: pull-request
9595
enable_check_symbols: true
9696
conda-cpp-tests:
9797
needs: [conda-cpp-build, changed-files]
9898
secrets: inherit
99-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.02
99+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.04
100100
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
101101
with:
102102
build_type: pull-request
103103
conda-python-build:
104104
needs: conda-cpp-build
105105
secrets: inherit
106-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
106+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.04
107107
with:
108108
build_type: pull-request
109109
conda-python-tests:
110110
needs: [conda-python-build, changed-files]
111111
secrets: inherit
112-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02
112+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
113113
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
114114
with:
115115
build_type: pull-request
116116
conda-notebook-tests:
117117
needs: [conda-python-build, changed-files]
118118
secrets: inherit
119-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.02
119+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
120120
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks
121121
with:
122122
build_type: pull-request
@@ -127,7 +127,7 @@ jobs:
127127
docs-build:
128128
needs: conda-python-build
129129
secrets: inherit
130-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.02
130+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
131131
with:
132132
build_type: pull-request
133133
node_type: "gpu-v100-latest-1"
@@ -137,7 +137,7 @@ jobs:
137137
wheel-build-libcuspatial:
138138
needs: checks
139139
secrets: inherit
140-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
140+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
141141
with:
142142
# build for every combination of arch and CUDA version, but only for the latest Python
143143
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
@@ -146,36 +146,36 @@ jobs:
146146
wheel-build-cuspatial:
147147
needs: [checks, wheel-build-libcuspatial]
148148
secrets: inherit
149-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
149+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
150150
with:
151151
build_type: pull-request
152152
script: ci/build_wheel_cuspatial.sh
153153
wheel-tests-cuspatial:
154154
needs: [wheel-build-cuspatial, changed-files]
155155
secrets: inherit
156-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
156+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04
157157
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
158158
with:
159159
build_type: pull-request
160160
script: ci/test_wheel_cuspatial.sh
161161
wheel-build-cuproj:
162162
needs: checks
163163
secrets: inherit
164-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
164+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
165165
with:
166166
build_type: pull-request
167167
script: ci/build_wheel_cuproj.sh
168168
wheel-tests-cuproj:
169169
needs: [wheel-build-cuspatial, wheel-build-cuproj, changed-files]
170170
secrets: inherit
171-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
171+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04
172172
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
173173
with:
174174
build_type: pull-request
175175
script: ci/test_wheel_cuproj.sh
176176
devcontainer:
177177
secrets: inherit
178-
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.02
178+
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.04
179179
with:
180180
arch: '["amd64"]'
181181
cuda: '["12.5"]'

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
conda-cpp-checks:
1818
secrets: inherit
19-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.02
19+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.04
2020
with:
2121
build_type: nightly
2222
branch: ${{ inputs.branch }}
@@ -25,23 +25,23 @@ jobs:
2525
enable_check_symbols: true
2626
conda-cpp-tests:
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.02
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.04
2929
with:
3030
build_type: nightly
3131
branch: ${{ inputs.branch }}
3232
date: ${{ inputs.date }}
3333
sha: ${{ inputs.sha }}
3434
conda-python-tests:
3535
secrets: inherit
36-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02
36+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
3737
with:
3838
build_type: nightly
3939
branch: ${{ inputs.branch }}
4040
date: ${{ inputs.date }}
4141
sha: ${{ inputs.sha }}
4242
wheel-tests-cuspatial:
4343
secrets: inherit
44-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
44+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04
4545
with:
4646
build_type: nightly
4747
branch: ${{ inputs.branch }}
@@ -50,7 +50,7 @@ jobs:
5050
script: ci/test_wheel_cuspatial.sh
5151
wheel-tests-cuproj:
5252
secrets: inherit
53-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
53+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04
5454
with:
5555
build_type: nightly
5656
branch: ${{ inputs.branch }}

.github/workflows/trigger-breaking-change-alert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
trigger-notifier:
1313
if: contains(github.event.pull_request.labels.*.name, 'breaking')
1414
secrets: inherit
15-
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.02
15+
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.04
1616
with:
1717
sender_login: ${{ github.event.sender.login }}
1818
sender_avatar: ${{ github.event.sender.avatar_url }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ An example command from the Release Selector:
112112
docker run --gpus all --pull always --rm -it \
113113
--shm-size=1g --ulimit memlock=-1 --ulimit stack=67108864 \
114114
-p 8888:8888 -p 8787:8787 -p 8786:8786 \
115-
nvcr.io/nvidia/rapidsai/notebooks:25.02-cuda11.8-py3.12
115+
nvcr.io/nvidia/rapidsai/notebooks:25.04-cuda11.8-py3.12
116116
```
117117

118118
### Install with Conda
@@ -124,7 +124,7 @@ cuSpatial can be installed with conda from the rapidsai channel:
124124

125125
```shell
126126
conda install -c rapidsai -c conda-forge -c nvidia \
127-
cuspatial=25.02 python=3.12 cudatoolkit=11.8
127+
cuspatial=25.04 python=3.12 cudatoolkit=11.8
128128
```
129129
We also provide nightly Conda packages built from the HEAD of our latest development branch.
130130

@@ -154,7 +154,7 @@ To build and install cuSpatial from source please see the [build documentation](
154154
If you find cuSpatial useful in your published work, please consider citing the repository.
155155

156156
```bibtex
157-
@misc{cuspatial:25.02,
157+
@misc{cuspatial:25.04,
158158
author = {{NVIDIA Corporation}},
159159
title = {cuSpatial: GPU-Accelerated Geospatial and Spatiotemporal Algorithms},
160160
year = {2023},

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
25.02.00
1+
25.04.00

0 commit comments

Comments
 (0)