Advertisement
Guest User

Untitled

a guest
May 20th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.36 KB | None | 0 0
  1. #!/bin/bash
  2. #SBATCH --nodes=1
  3. #SBATCH --tasks-per-node=1
  4. #SBATCH --cpus-per-task=28
  5. #SBATCH -p tornado
  6. #SBATCH -t 00:05:00
  7. #SBATCH -J jobname
  8. #SBATCH -o jobname-%j.out
  9. #SBATCH -e jobname-%j.err
  10. if [ -f /etc/profile.d/modules-basis.sh ]; then
  11. source /etc/profile.d/modules-basis.sh
  12. fi
  13. module purge
  14. module load mpi/openmpi/2.1.0/gcc/6.3.0
  15. mpiexec ./makefile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement