7 lines
230 B
Bash
7 lines
230 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
salloc -N 2 --exclusive \
|
||
|
mpirun --bind-to none -mca btl ^openib -npernode 1 \
|
||
|
numactl --physcpubind 0-39 \
|
||
|
./main -d 1 -p 0 -s 1 -n 1 32 64 256 256 64 16 16
|