Difference between revisions of "Parallel job submission"
From ScientificComputing
Line 64: | Line 64: | ||
== Further readings == | == Further readings == | ||
* [[Parallel computing]] | * [[Parallel computing]] | ||
− | * [https://sis.id.ethz.ch/services/consultingtraining/mpi_openmp_course.html Four-day course in parallel programming with MPI/OpenMP] | + | * [https://sis.id.ethz.ch/services/consultingtraining/mpi_openmp_course.html Four-day course in parallel programming with MPI/OpenMP at ETH] |
== Helper == | == Helper == |
Revision as of 15:23, 12 August 2021
$ export OMP_NUM_THREADS=8 $ bsub -n 8 ./program |
Distributed memory job (MPI)
$ module load gcc/6.3.0 openmpi/4.0.2 $ bsub -n 240 mpirun ./program
|
Examples
Further readings
Helper