Skip to content

Commit 3b0b79d

Browse files
committed
Minor fix
1 parent a0c2812 commit 3b0b79d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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.0ext-ubuntu24.04",
3+
"image": "rapidsai/devcontainers:25.12-cpp-gcc13-cuda13.0-ubuntu24.04",
44
"hostRequirements": {
55
"gpu": true
66
},

.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.0ext-ubuntu24.04",
3+
"image": "rapidsai/devcontainers:25.12-cpp-gcc13-cuda13.0-ubuntu24.04",
44
"hostRequirements": {
55
"gpu": true
66
},

.devcontainer/make_devcontainers.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ update_devcontainer() {
4545
local devcontainer_version="$8"
4646

4747
local IMAGE_ROOT="rapidsai/devcontainers:${devcontainer_version}-cpp-"
48-
# Add 'ext' suffix for CUDA 13.0 images
48+
# Add 'ext' suffix only for LLVM compilers with CUDA 13.0
4949
local cuda_suffix=""
50-
if [[ "$cuda_version" == "13.0" ]]; then
50+
if [[ "$cuda_version" == "13.0" && "$compiler_name" == "llvm" ]]; then
5151
cuda_suffix="ext"
5252
fi
5353
local image="${IMAGE_ROOT}${compiler_name}${compiler_version}-cuda${cuda_version}${cuda_suffix}-${os}"

0 commit comments

Comments
 (0)