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 am finding that running numpy.convolve with versions >= 1.14.6 automatically launches the job on all available CPUs/threads. Is this bug? This is not the behavior for numpy <= 1.14.5.
convolve calls correlate which uses dot underneath to do the heavy lifting for large arrays. By default this will use a thread for each CPU. You may be interested in the joblib/threadpoolctl package which allows you to control this.
I am finding that running numpy.convolve with versions >= 1.14.6 automatically launches the job on all available CPUs/threads. Is this bug? This is not the behavior for numpy <= 1.14.5.
Reproducing code example:
Numpy/Python version information:
('1.14.6', '2.7.12 (default, Nov 12 2018, 14:36:49) \n[GCC 5.4.0 20160609]')
The text was updated successfully, but these errors were encountered: