Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions features/src/nvhpc/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "NVHPC SDK",
"id": "nvhpc",
"version": "26.6.0",
"version": "26.6.1",
"description": "A feature to install the NVHPC SDK",
"options": {
"version": {
"type": "string",
"proposals": [
"26.3",
"26.1",
"25.11",
"25.9",
Expand All @@ -30,7 +31,7 @@
"22.9",
"22.7"
],
"default": "26.1",
"default": "26.3",
"description": "Version of NVHPC SDK to install."
}
},
Expand Down
2 changes: 1 addition & 1 deletion features/test/nvhpc/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module list 1>&2

# Feature-specific tests
# The 'check' command comes from the dev-container-features-test-lib.
check "version" bash -c "echo '$NVHPC_VERSION' | grep '26.1'"
check "version" bash -c "echo '$NVHPC_VERSION' | grep '26.3'"
check "installed" stat /opt/nvidia/hpc_sdk
check "nvcc exists and is on path" which nvcc
check "nvc++ exists and is on path" which nvc++
Expand Down
4 changes: 2 additions & 2 deletions matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ x-llvm-20: &llvm_20 { name: "llvm", version: "20" }
x-llvm-21: &llvm_21 { name: "llvm", version: "21" }
x-llvm-env: &llvm_env { CC: "clang", CXX: "clang++", CUDAHOSTCXX: "clang++" }

x-nvhpc-prev: &nvhpc_prev { name: "nvhpc", version: "25.11" }
x-nvhpc-curr: &nvhpc_curr { name: "nvhpc", version: "26.1" }
x-nvhpc-prev: &nvhpc_prev { name: "nvhpc", version: "26.1" }
x-nvhpc-curr: &nvhpc_curr { name: "nvhpc", version: "26.3" }

x-nvhpc-env: &nvhpc_env { CC: "nvc", CXX: "nvc++", CUDAHOSTCXX: "nvc++" }

Expand Down
Loading