We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 944aa2f commit d987bdbCopy full SHA for d987bdb
1 file changed
toolchain/templates/hipergator.mako
@@ -48,10 +48,19 @@ echo
48
% if not mpi:
49
(set -x; ${profiler} "${target.get_install_binpath(case)}")
50
% else:
51
+ % if gpu_enabled:
52
(set -x; ${profiler} \
- /apps/compilers/nvhpc/25.9/Linux_x86_64/25.9/comm_libs/mpi/bin/mpirun -np ${nodes*tasks_per_node} \
53
+ /apps/compilers/nvhpc/25.9/Linux_x86_64/25.9/comm_libs/mpi/bin/mpirun \
54
+ -np ${nodes*tasks_per_node} \
55
--bind-to none \
56
"${target.get_install_binpath(case)}")
57
+ % else:
58
+ (set -x; ${profiler} \
59
+ mpirun \
60
61
+ --bind-to none \
62
+ "${target.get_install_binpath(case)}")
63
+ % endif
64
% endif
65
66
${helpers.run_epilogue(target)}
0 commit comments