Files
suitesparse-downloader/load-env.sh
Carl Pearson 7e68d4f712 initial commit
2021-11-23 07:33:20 -08:00

18 lines
302 B
Bash

#! /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