-
Notifications
You must be signed in to change notification settings - Fork 367
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the NVHPC install instructions to the latest and greatest. Fix failing CI (dependency install).
- Loading branch information
Showing
3 changed files
with
33 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Copyright 2021-2022 The AMReX Community | ||
# | ||
# Author: Axel Huebl | ||
# License: BSD-3-Clause-LBNL | ||
|
||
set -eu -o pipefail | ||
|
||
sudo apt-get -qqq update | ||
sudo apt-get install -y \ | ||
build-essential \ | ||
ca-certificates \ | ||
cmake \ | ||
environment-modules \ | ||
gnupg \ | ||
pkg-config \ | ||
wget | ||
|
||
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-21-11 | ||
|
||
# things should reside in /opt/nvidia/hpc_sdk now | ||
|
||
# activation via: | ||
# source /etc/profile.d/modules.sh | ||
# module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/21.11 |
This file was deleted.
Oops, something went wrong.