diff --git a/.github/workflows/dependencies/install_nvhpc25-9.sh b/.github/workflows/dependencies/install_nvhpc25-11.sh similarity index 91% rename from .github/workflows/dependencies/install_nvhpc25-9.sh rename to .github/workflows/dependencies/install_nvhpc25-11.sh index 4da72a6d1a..7c0d9487b1 100755 --- a/.github/workflows/dependencies/install_nvhpc25-9.sh +++ b/.github/workflows/dependencies/install_nvhpc25-11.sh @@ -17,7 +17,7 @@ sudo apt-get install -y \ echo 'deb [trusted=yes] https://developer.download.nvidia.com/hpc-sdk/ubuntu/amd64 /' | \ sudo tee /etc/apt/sources.list.d/nvhpc.list sudo apt-get update -y -sudo apt-get install -y --no-install-recommends nvhpc-25-9 +sudo apt-get install -y --no-install-recommends nvhpc-25-11 # things should reside in /opt/nvidia/hpc_sdk now diff --git a/.github/workflows/nvidia.yml b/.github/workflows/nvidia.yml index 7d4d98964a..83d69d5f82 100644 --- a/.github/workflows/nvidia.yml +++ b/.github/workflows/nvidia.yml @@ -31,8 +31,8 @@ jobs: cmake --build build --parallel 2 ctest --test-dir build --output-on-failure - tests-nvhpc25-9-nvcc: - name: NVHPC@25.9 + tests-nvhpc25-11-nvcc: + name: NVHPC@25.11 runs-on: ubuntu-24.04 if: github.event.pull_request.draft == false # Catch warnings: @@ -41,11 +41,11 @@ jobs: steps: - uses: actions/checkout@v4 - name: Dependencies - run: .github/workflows/dependencies/install_nvhpc25-9.sh + run: .github/workflows/dependencies/install_nvhpc25-11.sh - name: Build & Install run: | source /etc/profile.d/modules.sh - module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/25.9 + module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/25.11 which nvcc || echo "nvcc not in PATH!" which nvc++ || echo "nvc++ not in PATH!"