Difference between revisions of "Parallel job submission"
From ScientificComputing
Line 59: | Line 59: | ||
== Examples == | == Examples == | ||
− | + | * [[openMP hello world in C]] | |
− | + | * [[MPI hello world in C]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Revision as of 11:30, 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