Skip to content

How to start your simulation

giadarol edited this page May 13, 2016 · 7 revisions

PyPARIS provides three different executables to run simulations with different parallelization modes:

  1. To run in parallel without MPI (python multiprocessing):

    ../multiprocexec.py -n 3 sim_class=Simulation.Simulation

  2. To run serial:

    ../serialexec.py sim_class=Simulation.Simulation

  3. To run with MPI:

    mpiexec -n 4 ../withmpi.py sim_class=Simulation.Simulation

Clone this wiki locally