Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
#!/bin/bash

module swap PrgEnv-cray PrgEnv-gnu
module load freefem/4.7
module list
echo "running $@"
$@
Info

In the above example, the software environment is set by loading some installed modules on Shaheen. However, this can be replaced by sourcing a conda environment, if your software was installed in your project directory using conda package manager.

SLURM jobscripts

There are two scripts needed in this workflow

...