Difference between revisions of "Parallel job submission"
From ScientificComputing
Line 62: | Line 62: | ||
* [[MPI hello world in C]] | * [[MPI hello world in C]] | ||
+ | == Further readings == | ||
+ | * [[Parallel computing]] | ||
<table style="width: 100%;"> | <table style="width: 100%;"> |
Revision as of 21: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
|