diff --git a/.github/workflows/phoenix/bench.sh b/.github/workflows/phoenix/bench.sh index 4fc99cc1f..0bcab20b8 100644 --- a/.github/workflows/phoenix/bench.sh +++ b/.github/workflows/phoenix/bench.sh @@ -13,3 +13,5 @@ if ["$job_device" == "gpu"]; then else ./mfc.sh bench --mem 1 -j $(nproc) -o "$job_slug.yaml" -- -c phoenix $device_opts -n $n_ranks fi + +sleep 10 diff --git a/src/simulation/m_bubbles.fpp b/src/simulation/m_bubbles.fpp index b7b249139..07fd608e6 100644 --- a/src/simulation/m_bubbles.fpp +++ b/src/simulation/m_bubbles.fpp @@ -1,6 +1,6 @@ !> !! @file m_bubbles.f90 -!! @brief Contains module m_bubbles +!! @brief Contains module m_bubbles #:include 'macros.fpp' diff --git a/toolchain/templates/phoenix.mako b/toolchain/templates/phoenix.mako index a43805586..270530511 100644 --- a/toolchain/templates/phoenix.mako +++ b/toolchain/templates/phoenix.mako @@ -40,15 +40,15 @@ echo % if not mpi: (set -x; ${profiler} "${target.get_install_binpath(case)}") % else: - (set -x; srun \ - % if engine == 'interactive': - --nodes ${nodes} --ntasks-per-node ${tasks_per_node} \ - --cpus-per-task 1 \ - % if gpu: - --gpus-per-task 1 --gpu-bind closest \ - % endif + (set -x; srun \ + % if engine == 'interactive': + --nodes ${nodes} --ntasks-per-node ${tasks_per_node} \ + --cpus-per-task 1 \ + % if gpu: + --gpus-per-task 1 --gpu-bind closest \ % endif - ${profiler} "${target.get_install_binpath(case)}") + % endif + ${profiler} "${target.get_install_binpath(case)}") % endif ${helpers.run_epilogue(target)}