...
Codeblock | ||||
---|---|---|---|---|
| ||||
#SBATCH --nodes=1
#SBATCH --partition=cpu-clx:test
./hello.bin |
Codeblock | ||||
---|---|---|---|---|
| ||||
#SBATCH --nodes=1 #SBATCH --partition=standard96cpu-clx:test export OMP_PROC_BIND=spread export OMP_NUM_THREADS=96 ./hello.bin |
...
Codeblock | ||||
---|---|---|---|---|
| ||||
#SBATCH --nodes=1 #SBATCH --partition=standard96cpu-clx:test export OMP_PROC_BIND=spread export OMP_NUM_THREADS=48 ./hello.bin |
...
Codeblock | ||||
---|---|---|---|---|
| ||||
#SBATCH --nodes=1 #SBATCH --partition=standard96cpu-clx:test export OMP_PROC_BIND=spread export OMP_NUM_THREADS=192 ./hello.bin |
...
Codeblock | ||||
---|---|---|---|---|
| ||||
#SBATCH --nodes=2 #SBATCH --partition=standard96cpu-clx:test module load impi/2019.5 export SLURM_CPU_BIND=none export OMP_PROC_BIND=spread export OMP_NUM_THREADS=48 mpirun -ppn 2 \ -np 1 ./code1.bin : -np 1 ./code2.bin : -np 1 ./code3.bin : -np 1 ./code4.bin |
...