Skip to content

Commit a0c2812

Browse files
committed
Updates
1 parent 37f641c commit a0c2812

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

.devcontainer/cuda13.0-gcc13/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"shutdownAction": "stopContainer",
3-
"image": "rapidsai/devcontainers:25.12-cpp-gcc13-cuda13.0-ubuntu24.04",
3+
"image": "rapidsai/devcontainers:25.12-cpp-gcc13-cuda13.0ext-ubuntu24.04",
44
"hostRequirements": {
55
"gpu": true
66
},

.devcontainer/cuda13.0-llvm18/devcontainer.json renamed to .devcontainer/cuda13.0-llvm20/devcontainer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"shutdownAction": "stopContainer",
3-
"image": "rapidsai/devcontainers:25.12-cpp-llvm18-cuda13.0-ubuntu24.04",
3+
"image": "rapidsai/devcontainers:25.12-cpp-llvm20-cuda13.0ext-ubuntu24.04",
44
"hostRequirements": {
55
"gpu": true
66
},
@@ -14,10 +14,10 @@
1414
"SCCACHE_BUCKET": "rapids-sccache-devs",
1515
"AWS_ROLE_ARN": "arn:aws:iam::279114543810:role/nv-gha-token-sccache-devs",
1616
"HISTFILE": "${containerWorkspaceFolder}/.cache/._bash_history",
17-
"DEVCONTAINER_NAME": "cuda13.0-llvm18",
17+
"DEVCONTAINER_NAME": "cuda13.0-llvm20",
1818
"CUCO_CUDA_VERSION": "13.0",
1919
"CUCO_HOST_COMPILER": "llvm",
20-
"CUCO_HOST_COMPILER_VERSION": "18"
20+
"CUCO_HOST_COMPILER_VERSION": "20"
2121
},
2222
"workspaceFolder": "/home/coder/${localWorkspaceFolderBasename}",
2323
"workspaceMount": "source=${localWorkspaceFolder},target=/home/coder/${localWorkspaceFolderBasename},type=bind,consistency=consistent",
@@ -38,5 +38,5 @@
3838
}
3939
}
4040
},
41-
"name": "cuda13.0-llvm18"
41+
"name": "cuda13.0-llvm20"
4242
}

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"shutdownAction": "stopContainer",
3-
"image": "rapidsai/devcontainers:25.12-cpp-gcc13-cuda13.0-ubuntu24.04",
3+
"image": "rapidsai/devcontainers:25.12-cpp-gcc13-cuda13.0ext-ubuntu24.04",
44
"hostRequirements": {
55
"gpu": true
66
},

.devcontainer/make_devcontainers.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,12 @@ update_devcontainer() {
4545
local devcontainer_version="$8"
4646

4747
local IMAGE_ROOT="rapidsai/devcontainers:${devcontainer_version}-cpp-"
48-
local image="${IMAGE_ROOT}${compiler_name}${compiler_version}-cuda${cuda_version}-${os}"
48+
# Add 'ext' suffix for CUDA 13.0 images
49+
local cuda_suffix=""
50+
if [[ "$cuda_version" == "13.0" ]]; then
51+
cuda_suffix="ext"
52+
fi
53+
local image="${IMAGE_ROOT}${compiler_name}${compiler_version}-cuda${cuda_version}${cuda_suffix}-${os}"
4954

5055
jq --arg image "$image" --arg name "$name" \
5156
--arg cuda_version "$cuda_version" --arg compiler_name "$compiler_name" \

ci/matrix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ pull_request:
4848
- {cuda: *cuda_12_9, os: 'ubuntu24.04', cpu: 'amd64', compiler: {name: 'gcc', version: '13', exe: 'g++'}, gpu_build_archs: '80,90', std: [17], jobs: ['build']}
4949
- {cuda: *cuda_12_0, os: 'ubuntu20.04', cpu: 'amd64', compiler: {name: 'llvm', version: '14', exe: 'clang++'}, gpu_build_archs: '70', std: [17], jobs: ['build']}
5050
- {cuda: *cuda_12_9, os: 'ubuntu22.04', cpu: 'amd64', compiler: {name: 'llvm', version: '18', exe: 'clang++'}, gpu_build_archs: '90', std: [17], jobs: ['build']}
51-
- {cuda: *cuda_13_0, os: 'ubuntu24.04', cpu: 'amd64', compiler: {name: 'gcc', version: '13', exe: 'g++'}, gpu_build_archs: '70', std: [17], jobs: ['build', 'test']}
51+
- {cuda: *cuda_13_0, os: 'ubuntu24.04', cpu: 'amd64', compiler: {name: 'gcc', version: '13', exe: 'g++'}, gpu_build_archs: '80', std: [17], jobs: ['build', 'test']}
5252
- {cuda: *cuda_13_0, os: 'ubuntu24.04', cpu: 'amd64', compiler: {name: 'gcc', version: '13', exe: 'g++'}, gpu_build_archs: '80,90', std: [17], jobs: ['build']}
53-
- {cuda: *cuda_13_0, os: 'ubuntu24.04', cpu: 'amd64', compiler: {name: 'llvm', version: '18', exe: 'clang++'}, gpu_build_archs: '90', std: [17], jobs: ['build']}
53+
- {cuda: *cuda_13_0, os: 'ubuntu24.04', cpu: 'amd64', compiler: {name: 'llvm', version: '20', exe: 'clang++'}, gpu_build_archs: '90', std: [17], jobs: ['build']}

0 commit comments

Comments
 (0)