9 lines
245 B
Bash
9 lines
245 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
: ${NODES:=2}
|
||
|
|
||
|
salloc -N $NODES --exclusive \
|
||
|
mpirun --bind-to none -mca btl ^openib -npernode 1 \
|
||
|
numactl --physcpubind 0-39 \
|
||
|
./main -v -n 5 -p 2 -d 2 -s 256 487 256 128 3 8 8
|