File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
.github/workflows/frontier Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ gpus=`rocm-smi --showid | awk '{print $1}' | grep -Eo '[0-9]+' | uniq | tr '\n'
44ngpus=` echo " $gpus " | tr -d ' [:space:]' | wc -c`
55
66if [ " $job_device " == " gpu" ]; then
7- ./mfc.sh test -a - -rdma-mpi --max-attempts 3 -j $ngpus -- -c frontier
7+ ./mfc.sh test --rdma-mpi --max-attempts 3 -j $ngpus -- -c frontier
88else
9- ./mfc.sh test -a - -max-attempts 3 -j 32 -- -c frontier
9+ ./mfc.sh test --max-attempts 3 -j 32 -- -c frontier
1010fi
Original file line number Diff line number Diff line change 1313from ..common import format_list_to_string , file_dump_yaml
1414
1515from . import queues , input
16-
17-
16+
1817def __validate_job_options () -> None :
1918 if not ARG ("mpi" ) and any ({ARG ("nodes" ) > 1 , ARG ("tasks_per_node" ) > 1 }):
2019 raise MFCException ("RUN: Cannot run on more than one rank with --no-mpi." )
You can’t perform that action at this time.
0 commit comments