Difference between revisions of "Parallel job submission"
From ScientificComputing
Line 64: | Line 64: | ||
== Further readings == | == Further readings == | ||
* [[Parallel computing]] | * [[Parallel computing]] | ||
+ | |||
+ | == Helper == | ||
+ | * [https://scicomp.ethz.ch/lsf_submission_line_advisor/ LSF Submission Line Advisor] | ||
Revision as of 08:32, 18 June 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