Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions programs/qws/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ case "$system" in
make -j 8 fugaku_benchmark= omp=1 compiler=fujitsu_native rdma= mpi=1 powerapi= SYSLIBS=
;;
MiyabiG)
### QWSはNeoverse版やGPU版はないので汎用版としてとりあえずarch=skylakeを指定している
make -j 8 fugaku_benchmark= omp=1 compiler=openmpi-gnu arch=skylake rdma= mpi=1 powerapi=
module purge
module load nvidia/26.3 nv-hpcx/26.3
make -j 8 fugaku_benchmark= omp=1 compiler=nvhpc-hpcx arch=grace rdma= mpi=1 powerapi=
;;
MiyabiC)
make -j 8 fugaku_benchmark= omp=1 compiler=intel arch=skylake rdma= mpi=1 powerapi=
Expand Down
8 changes: 7 additions & 1 deletion programs/qws/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,13 @@ case "$system" in
mpirun -n 1 --bind-to core --map-by ppr:1:node:PE=12 ./main "${qws_case0_args[@]}" > CASE0
print_results CASE0 CASE0 1 >> ../results/result
;;
MiyabiG|MiyabiC)
MiyabiG)
module purge
module load nvidia/26.3 nv-hpcx/26.3
mpirun -n 1 --bind-to core --map-by ppr:1:node:PE=72 ./main "${qws_case0_args[@]}" > CASE0
print_results CASE0 CASE0 1 >> ../results/result
;;
MiyabiC)
mpirun -n 1 ./main "${qws_case0_args[@]}" > CASE0
print_results CASE0 CASE0 1 >> ../results/result
;;
Expand Down
Loading