You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@jhamman recently noticed that he was oversaturating Cheyenne when running with -n 36. It was determined that OpenMP was at least part of the issue. It appears that something in MetSim uses it under the hood.
It seems that if OpenMP is available on the system MetSim will attempt to make use of it. We should do a quick check in the driver if the environment variable OMP_NUM_THREADS is unset or if it is greater than 1. If the variable is unset, the library defaults to use OMP_NUM_THREADS = #processors.
The text was updated successfully, but these errors were encountered:
@jhamman recently noticed that he was oversaturating Cheyenne when running with
-n 36
. It was determined that OpenMP was at least part of the issue. It appears that something in MetSim uses it under the hood.It seems that if OpenMP is available on the system MetSim will attempt to make use of it. We should do a quick check in the driver if the environment variable
OMP_NUM_THREADS
is unset or if it is greater than 1. If the variable is unset, the library defaults to useOMP_NUM_THREADS = #processors
.The text was updated successfully, but these errors were encountered: