41 lines
1.6 KiB
Bash
Executable File
41 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
salloc -N 2 --exclusive \
|
|
mpirun --bind-to none -mca btl ^openib -npernode 1 \
|
|
numactl --physcpubind 0-39 \
|
|
./main -v -p 0 -d 1 -s 1 16 16 8 8 16 8 8
|
|
|
|
# load distribution to devices
|
|
salloc -N 1 --exclusive \
|
|
mpirun --bind-to none -mca btl ^openib -npernode 1 \
|
|
numactl --physcpubind 0-39 \
|
|
./main -v -p 0 -d 1 -s 1 13 7 121 41 47 1 17
|
|
|
|
# load distribution to nodes
|
|
salloc -N 2 --exclusive \
|
|
mpirun --bind-to none -mca btl ^openib -npernode 1 \
|
|
numactl --physcpubind 0-39 \
|
|
./main -v -p 0 -d 1 -s 1 1 7 121 41 47 1 17
|
|
|
|
# load distribution to nodes and devices
|
|
salloc -N 2 --exclusive \
|
|
mpirun --bind-to none -mca btl ^openib -npernode 1 \
|
|
numactl --physcpubind 0-39 \
|
|
./main -v -p 0 -d 1 -s 1 3 7 121 41 47 1 17
|
|
|
|
salloc -N 1 --exclusive \
|
|
mpirun --bind-to none -mca btl ^openib -npernode 1 \
|
|
numactl --physcpubind 0-39 \
|
|
./main -v -p 0 -d 1 -s 1 3 7 121 41 47 1 17
|
|
|
|
salloc -N 1 --exclusive \
|
|
mpirun --bind-to none -mca btl ^openib -npernode 1 \
|
|
numactl --physcpubind 0-39 \
|
|
./main -v -p 0 -d 1 -s 1 16 16 129 16 21 9 7
|
|
|
|
salloc -N 2 --exclusive \
|
|
mpirun --bind-to none -mca btl ^openib -npernode 1 \
|
|
numactl --physcpubind 0-39 \
|
|
./main -v -p 0 -d 1 -s 1 13 7 121 41 47 1 17
|
|
|