-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhw5.slurm
More file actions
17 lines (14 loc) · 4.14 KB
/
hw5.slurm
File metadata and controls
17 lines (14 loc) · 4.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
#SBATCH --job-name=poisson
#SBATCH --output=slurm.out
#SBATCH --error=slurm.err
#SBATCH --partition=high_mem
#SBATCH --qos=short+
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=1
#SBATCH --time=00:55:00
#SBATCH --mem=10G
#SBATCH --exclusive
unset I_MPI_PMI_LIBRARY
export I_MPI_JOB_RESPECT_PROCESS_PLACEMENT=0
mpirun ./poisson 32 1.0e-6 50000