Skip to content

Commit

Permalink
Example bugfix: run top hat with mpiexec
Browse files Browse the repository at this point in the history
Bugfix purely in example XML: Some of the serial tests and examples have been run without mpiexec, but on some systems running with mpiexec is enforced for any program built using MPI compilers. This commit accordingly prefixes 'mpiexec' to each fluidity command line.
  • Loading branch information
tmbgreaves authored Jul 23, 2017
1 parent 26e484e commit f3e937c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/top_hat/top_hat.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<name>tophat</name>
<owner userid="skramer"/>
<problem_definition length="long" nprocs="1">
<command_line>fluidity -v2 -l top_hat_cg.flml &amp;&amp;
fluidity -v2 -l top_hat_dg.flml &amp;&amp;
fluidity -v2 -l top_hat_cv.flml</command_line>
<command_line>mpiexec fluidity -v2 -l top_hat_cg.flml &amp;&amp;
mpiexec fluidity -v2 -l top_hat_dg.flml &amp;&amp;
mpiexec fluidity -v2 -l top_hat_cv.flml</command_line>
</problem_definition>
<variables>
<variable name="cg_times" language="python">import fluidity_tools
Expand Down

0 comments on commit f3e937c

Please sign in to comment.