-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
Tools/machines/marconi-cineca/marconi_cpu_warpx.profile.example
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,19 @@ | ||
# required dependencies | ||
module load profile/base | ||
module load cmake/3.23.3 | ||
module load gnu/6.1.0 | ||
module load zlib/1.2.8--gnu--6.1.0 | ||
module load openmpi/1-10.3--gnu--6.1.0 | ||
|
||
# optional: for Python bindings or libEnsemble | ||
module load python/3.9.4 | ||
|
||
if [ -d "$HOME/sw/venvs/warpx" ] | ||
then | ||
source $HOME/sw/venvs/warpx/bin/activate | ||
fi | ||
|
||
# compiler environment hints | ||
export CXX=$(which g++) | ||
export CC=$(which gcc) | ||
export FC=$(which gfortran) |