7 lines
217 B
Bash
7 lines
217 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
salloc -N 3 --exclusive \
|
||
|
mpirun --bind-to none -mca btl ^openib -npernode 1 \
|
||
|
numactl --physcpubind 0-39 \
|
||
|
./main -v -t 20 -n 10 8192 8192 8192
|