Advertisement
Guest User

Untitled

a guest
Jun 24th, 2020
538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #!/bin/bash
  2. #
  3. # Abvove line specifies which shell should process the
  4. # shell commands
  5. # SLURM directives start with #SBATCH
  6.  
  7. # In this job an MPI program is started.
  8. # This job will run on two nodes, 16 processes on each node,
  9. # making a total of 36 processes.
  10.  
  11. #SBATCH -N 16
  12. #SBATCH --ntasks-per-node=36
  13. #SBATCH --partition=shared
  14. #SBATCH -t 10:59:59
  15.  
  16. srun /nfs/home/6/sanjeevis/dns/lb3d/src/lbe -f input-default
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement