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
I have tried with the following environment variables:
keys = [
"OMP_NUM_THREADS",
"MKL_NUM_THREADS",
"NUMEXPR_NUM_THREADS",
"OPENBLAS_NUM_THREADS",
"VECLIB_MAXIMUM_THREADS",
]
for key in keys:
my_env[key] = str(num_procs)
os.environ[key] = str(num_procs)
but apparently, none of them actually limits the nr of procs spawned by dpnp. What am I missing, how can I limit them to investigate performance effects?
The text was updated successfully, but these errors were encountered:
I have tried with the following environment variables:
but apparently, none of them actually limits the nr of procs spawned by dpnp. What am I missing, how can I limit them to investigate performance effects?
The text was updated successfully, but these errors were encountered: