Hello all,
I am running my model with cmdstanpy in python 3.8 on ubuntu with reduce_sum
.
I use 88 out of 128 cpus available (threads_per_chain=88
), but I am getting the following warnings before the model starts running:
INFO:numexpr.utils:Note: detected 128 virtual cores but NumExpr set to maximum of 64, check "NUMEXPR_MAX_THREADS" environment variable.
INFO:numexpr.utils:Note: NumExpr detected 128 cores but "NUMEXPR_MAX_THREADS" not set, so enforcing safe limit of 8.
INFO:numexpr.utils:NumExpr defaulting to 8 threads.
Even if I declare os.environ["NUMEXPR_MAX_THREADS"] = "88"
, I still get the warnings.
However, when I hit htop
, I see 88 cores working, and not 8 as stated above.
Can I just ignore these messages?
Thanks!