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'
4
4
ngpus=` echo " $gpus " | tr -d ' [:space:]' | wc -c`
5
5
6
6
if [ " $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
8
8
else
9
- ./mfc.sh test -a - -max-attempts 3 -j 32 -- -c frontier
9
+ ./mfc.sh test --max-attempts 3 -j 32 -- -c frontier
10
10
fi
Original file line number Diff line number Diff line change 13
13
from ..common import format_list_to_string , file_dump_yaml
14
14
15
15
from . import queues , input
16
-
17
-
16
+
18
17
def __validate_job_options () -> None :
19
18
if not ARG ("mpi" ) and any ({ARG ("nodes" ) > 1 , ARG ("tasks_per_node" ) > 1 }):
20
19
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