2022-10-04 13:56:31 +09:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-10-04 23:22:22 +09:00
|
|
|
srun --nodes=1 --exclusive --partition=shpc22 ./main -m naive -n 1 1
|
|
|
|
srun --nodes=1 --exclusive --partition=shpc22 ./main -m naive -n 1 3
|
|
|
|
srun --nodes=1 --exclusive --partition=shpc22 ./main -m naive -n 1 11
|
|
|
|
srun --nodes=1 --exclusive --partition=shpc22 ./main -m naive -n 1 4097
|
|
|
|
srun --nodes=1 --exclusive --partition=shpc22 ./main -m naive -n 1 1000000
|
|
|
|
srun --nodes=1 --exclusive --partition=shpc22 ./main -m fma -n 1 1
|
|
|
|
srun --nodes=1 --exclusive --partition=shpc22 ./main -m fma -n 1 3
|
|
|
|
srun --nodes=1 --exclusive --partition=shpc22 ./main -m fma -n 1 11
|
|
|
|
srun --nodes=1 --exclusive --partition=shpc22 ./main -m fma -n 1 4097
|
|
|
|
srun --nodes=1 --exclusive --partition=shpc22 ./main -m fma -n 1 1000000
|