SimCenter Forum

SimCenter Training => Programming Bootcamp => Topic started by: youcan on August 18, 2020, 03:32:21 AM

Title: Openmp on multiple cores/nodes
Post by: youcan on August 18, 2020, 03:32:21 AM
Just out of curiosity, if I assign multiple cores/nodes to a slurm job which will use openmp, can openmp evenly distribute the threads among those cores/nodes for me? Thanks.
Title: Re: Openmp on multiple cores/nodes
Post by: fmk on August 18, 2020, 05:00:57 AM
while MPI jobs can run on multiple nodes and single nodes avail to rn on either shared memory or distributed memory machines), openmp jobs are limited to running on a single node. they are shared memory applications.
Title: Re: Openmp on multiple cores/nodes
Post by: youcan on August 18, 2020, 02:19:34 PM
Thanks!