Difference between revisions of "Parallel job submission"
From ScientificComputing
Line 64: | Line 64: | ||
== Further readings == | == Further readings == | ||
* [[Parallel computing]] | * [[Parallel computing]] | ||
+ | |||
<table style="width: 100%;"> | <table style="width: 100%;"> |
Revision as of 19:45, 14 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