initial commit

This commit is contained in:
Carl Pearson
2021-11-23 07:33:20 -08:00
commit 7e68d4f712
7 changed files with 210 additions and 0 deletions

17
load-env.sh Normal file
View File

@@ -0,0 +1,17 @@
#! /bin/bash
host=`hostname`
if [[ "$NERSC_HOST" == cori ]]; then
echo \$NERSC_HOST matched cori
module load cray-python/3.8.5.0
which python
elif [[ "$NERSC_HOST" == perlmutter ]]; then
echo \$NERSC_HOST matched perlmutter
module load cray-python/3.9.4.1
which python
fi