Skip to content

Commit 7b87172

Browse files
committed
Merge branch-25.02 into branch-25.04
2 parents 6e62e7e + 1eb52c7 commit 7b87172

File tree

6 files changed

+21
-17
lines changed

6 files changed

+21
-17
lines changed

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
"context": "${localWorkspaceFolder}/.devcontainer",
44
"dockerfile": "${localWorkspaceFolder}/.devcontainer/Dockerfile",
55
"args": {
6-
"CUDA": "12.5",
6+
"CUDA": "12.8",
77
"PYTHON_PACKAGE_MANAGER": "conda",
88
"BASE": "rapidsai/devcontainers:25.04-cpp-mambaforge-ubuntu22.04"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.04-cuda12.5-conda"
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.04-cuda12.8-conda"
1515
],
1616
"hostRequirements": {"gpu": "optional"},
1717
"features": {
@@ -20,7 +20,7 @@
2020
"overrideFeatureInstallOrder": [
2121
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"
2222
],
23-
"initializeCommand": ["/bin/bash", "-c", "mkdir -m 0755 -p ${localWorkspaceFolder}/../.{aws,cache,config,conda/pkgs,conda/${localWorkspaceFolderBasename}-cuda12.5-envs}"],
23+
"initializeCommand": ["/bin/bash", "-c", "mkdir -m 0755 -p ${localWorkspaceFolder}/../.{aws,cache,config,conda/pkgs,conda/${localWorkspaceFolderBasename}-cuda12.8-envs}"],
2424
"postAttachCommand": ["/bin/bash", "-c", "if [ ${CODESPACES:-false} = 'true' ]; then . devcontainer-utils-post-attach-command; . rapids-post-attach-command; fi"],
2525
"workspaceFolder": "/home/coder",
2626
"workspaceMount": "source=${localWorkspaceFolder},target=/home/coder/cuml,type=bind,consistency=consistent",
@@ -29,7 +29,7 @@
2929
"source=${localWorkspaceFolder}/../.cache,target=/home/coder/.cache,type=bind,consistency=consistent",
3030
"source=${localWorkspaceFolder}/../.config,target=/home/coder/.config,type=bind,consistency=consistent",
3131
"source=${localWorkspaceFolder}/../.conda/pkgs,target=/home/coder/.conda/pkgs,type=bind,consistency=consistent",
32-
"source=${localWorkspaceFolder}/../.conda/${localWorkspaceFolderBasename}-cuda12.5-envs,target=/home/coder/.conda/envs,type=bind,consistency=consistent"
32+
"source=${localWorkspaceFolder}/../.conda/${localWorkspaceFolderBasename}-cuda12.8-envs,target=/home/coder/.conda/envs,type=bind,consistency=consistent"
3333
],
3434
"customizations": {
3535
"vscode": {

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
"context": "${localWorkspaceFolder}/.devcontainer",
44
"dockerfile": "${localWorkspaceFolder}/.devcontainer/Dockerfile",
55
"args": {
6-
"CUDA": "12.5",
6+
"CUDA": "12.8",
77
"PYTHON_PACKAGE_MANAGER": "pip",
8-
"BASE": "rapidsai/devcontainers:25.04-cpp-cuda12.5-ucx1.17.0-openmpi-ubuntu22.04"
8+
"BASE": "rapidsai/devcontainers:25.04-cpp-cuda12.8-ucx1.18.0-openmpi-ubuntu22.04"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.04-cuda12.5-pip"
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.04-cuda12.8-pip"
1515
],
1616
"hostRequirements": {"gpu": "optional"},
1717
"features": {
1818
"ghcr.io/rapidsai/devcontainers/features/cuda:25.4": {
19-
"version": "12.5",
19+
"version": "12.8",
2020
"installcuBLAS": true,
2121
"installcuSOLVER": true,
2222
"installcuRAND": true,
@@ -28,15 +28,15 @@
2828
"ghcr.io/rapidsai/devcontainers/features/cuda",
2929
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"
3030
],
31-
"initializeCommand": ["/bin/bash", "-c", "mkdir -m 0755 -p ${localWorkspaceFolder}/../.{aws,cache,config/pip,local/share/${localWorkspaceFolderBasename}-cuda12.5-venvs}"],
31+
"initializeCommand": ["/bin/bash", "-c", "mkdir -m 0755 -p ${localWorkspaceFolder}/../.{aws,cache,config/pip,local/share/${localWorkspaceFolderBasename}-cuda12.8-venvs}"],
3232
"postAttachCommand": ["/bin/bash", "-c", "if [ ${CODESPACES:-false} = 'true' ]; then . devcontainer-utils-post-attach-command; . rapids-post-attach-command; fi"],
3333
"workspaceFolder": "/home/coder",
3434
"workspaceMount": "source=${localWorkspaceFolder},target=/home/coder/cuml,type=bind,consistency=consistent",
3535
"mounts": [
3636
"source=${localWorkspaceFolder}/../.aws,target=/home/coder/.aws,type=bind,consistency=consistent",
3737
"source=${localWorkspaceFolder}/../.cache,target=/home/coder/.cache,type=bind,consistency=consistent",
3838
"source=${localWorkspaceFolder}/../.config,target=/home/coder/.config,type=bind,consistency=consistent",
39-
"source=${localWorkspaceFolder}/../.local/share/${localWorkspaceFolderBasename}-cuda12.5-venvs,target=/home/coder/.local/share/venvs,type=bind,consistency=consistent"
39+
"source=${localWorkspaceFolder}/../.local/share/${localWorkspaceFolderBasename}-cuda12.8-venvs,target=/home/coder/.local/share/venvs,type=bind,consistency=consistent"
4040
],
4141
"customizations": {
4242
"vscode": {

.github/workflows/pr.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
204204
with:
205205
arch: '["amd64"]'
206-
cuda: '["12.5"]'
206+
cuda: '["12.8"]'
207207
extra-repo-deploy-key: CUMLPRIMS_SSH_PRIVATE_DEPLOY_KEY
208208
build_command: |
209209
sccache -z;

conda/environments/all_cuda-125_arch-x86_64.yaml conda/environments/all_cuda-128_arch-x86_64.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies:
1414
- cuda-nvcc
1515
- cuda-profiler-api
1616
- cuda-python>=12.6.2,<13.0a0
17-
- cuda-version=12.5
17+
- cuda-version=12.8
1818
- cudf==25.4.*,>=0.0.0a0
1919
- cupy>=12.0.0
2020
- cuvs==25.4.*,>=0.0.0a0
@@ -75,4 +75,4 @@ dependencies:
7575
- treelite==4.3.0
7676
- umap-learn==0.5.6
7777
- xgboost>=2.1.0
78-
name: all_cuda-125_arch-x86_64
78+
name: all_cuda-128_arch-x86_64

conda/environments/cpp_all_cuda-125_arch-x86_64.yaml conda/environments/cpp_all_cuda-128_arch-x86_64.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
- cuda-cudart-dev
1313
- cuda-nvcc
1414
- cuda-profiler-api
15-
- cuda-version=12.5
15+
- cuda-version=12.8
1616
- cxx-compiler
1717
- fmt>=11.0.2,<12
1818
- gcc_linux-64=13.*
@@ -28,4 +28,4 @@ dependencies:
2828
- ninja
2929
- spdlog>=1.14.1,<1.15
3030
- sysroot_linux-64==2.28
31-
name: cpp_all_cuda-125_arch-x86_64
31+
name: cpp_all_cuda-128_arch-x86_64

dependencies.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ files:
33
all:
44
output: conda
55
matrix:
6-
cuda: ["11.8", "12.5"]
6+
cuda: ["11.8", "12.8"]
77
arch: [x86_64]
88
includes:
99
- common_build
@@ -30,7 +30,7 @@ files:
3030
cpp_all:
3131
output: conda
3232
matrix:
33-
cuda: ["11.8", "12.5"]
33+
cuda: ["11.8", "12.8"]
3434
arch: [x86_64]
3535
includes:
3636
- common_build
@@ -310,6 +310,10 @@ dependencies:
310310
cuda: "12.5"
311311
packages:
312312
- cuda-version=12.5
313+
- matrix:
314+
cuda: "12.8"
315+
packages:
316+
- cuda-version=12.8
313317
cuda:
314318
specific:
315319
- output_types: conda

0 commit comments

Comments
 (0)