You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@dili5 We have examples of parallel code in the anuga_core/examples/parallel directory.
For instance to run on 3 cores use:
mpiexec -np 3 python -u run_parallel_tsunami.py
The -u helps to flush the print buffers and so makes for cleaner output during the simulation.
Note that in a parallel script, you first create your standard domain on process 0, and then distribute that sequential domain to a parallel domain which has instances on all the processes.
Hello, Professor:
The text was updated successfully, but these errors were encountered: