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
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nvidia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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!"
Expand Down
Loading