Skip to content

Commit e3dcc39

Browse files
authored
Apply suggestions from code review
1 parent 1a6d0ea commit e3dcc39

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

features/test/_global/cpp_llvm_cuda_nvhpc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ check "gitlab-cli version" glab --version
4141
# Check CUDA
4242
check "CUDA version" bash -c "echo '$CUDA_VERSION' | grep '12.9.0'";
4343
check "CUDA major version" bash -c "echo '$CUDA_VERSION_MAJOR' | grep '12'";
44-
check "CUDA minor version" bash -c "echo '$CUDA_VERSION_MINOR' | grep '8'";
44+
check "CUDA minor version" bash -c "echo '$CUDA_VERSION_MINOR' | grep '9'";
4545
check "CUDA patch version" bash -c "echo '$CUDA_VERSION_PATCH' | grep '0'";
4646
check "installed" stat /usr/local/cuda-12.9 /usr/local/cuda;
4747
check "nvcc exists and is on path" which nvcc;

features/test/_global/cuda_rust.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ source dev-container-features-test-lib;
4242
# Check CUDA
4343
check "CUDA version" bash -c "echo '$CUDA_VERSION' | grep '12.9.0'";
4444
check "CUDA major version" bash -c "echo '$CUDA_VERSION_MAJOR' | grep '12'";
45-
check "CUDA minor version" bash -c "echo '$CUDA_VERSION_MINOR' | grep '8'";
45+
check "CUDA minor version" bash -c "echo '$CUDA_VERSION_MINOR' | grep '9'";
4646
check "CUDA patch version" bash -c "echo '$CUDA_VERSION_PATCH' | grep '0'";
4747
check "installed" stat /usr/local/cuda-12.9 /usr/local/cuda;
4848
check "nvcc exists and is on path" which nvcc;

features/test/cuda/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ source dev-container-features-test-lib
1919
# The 'check' command comes from the dev-container-features-test-lib.
2020
check "CUDA version" bash -c "echo '$CUDA_VERSION' | grep '12.9.0'";
2121
check "CUDA major version" bash -c "echo '$CUDA_VERSION_MAJOR' | grep '12'";
22-
check "CUDA minor version" bash -c "echo '$CUDA_VERSION_MINOR' | grep '8'";
22+
check "CUDA minor version" bash -c "echo '$CUDA_VERSION_MINOR' | grep '9'";
2323
check "CUDA patch version" bash -c "echo '$CUDA_VERSION_PATCH' | grep '0'";
2424
check "installed" stat /usr/local/cuda-12.9 /usr/local/cuda
2525
check "nvcc exists and is on path" which nvcc

0 commit comments

Comments
 (0)