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
Hi! Sorry to bother you with this question, but i'm very curious why does including your package in an empty script spawn 15 threads on my computer.
`import pywt
while(True):
print("running")`
Your work is great, and it functions as expected. Thank you very much!
The text was updated successfully, but these errors were encountered:
That looks unrelated to PyWavelets. I'm guessing all it is is import numpy as np, and this is the OpenBLAS thread server. Can you please check if just importing numpy reproduces it? If so, it's known and harmless.
Thanks for the quick answer! Replacing pywt with numpy only created 8 threads.
I'm not worried about harmful code getting executed, rather i'm thinking about the reserved threads on a aws server.
I'm not sure, nothing else beyond numpy and standard library modules should be imported. You can try export OPENBLAS_NUM_THREADS=1 to see if that makes a difference. PyWavelets itself shouldn't be doing anything thread-related.
Hi! Sorry to bother you with this question, but i'm very curious why does including your package in an empty script spawn 15 threads on my computer.
`import pywt
while(True):
print("running")`
Your work is great, and it functions as expected. Thank you very much!
The text was updated successfully, but these errors were encountered: