7 lines
214 B
Bash
7 lines
214 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
salloc -N 2 --exclusive \
|
||
|
mpirun --bind-to none -mca btl ^openib -npernode 1 \
|
||
|
numactl --physcpubind 0-31 \
|
||
|
./main -t 32 -n 10 4096 4096 4096
|