We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb35484 commit 9c8ec78Copy full SHA for 9c8ec78
RELEASE_NOTES.rst
@@ -5,7 +5,10 @@ Release notes for NumExpr 2.10 series
5
Changes from 2.10.0 to 2.10.1
6
-----------------------------
7
8
-* **Under development.**
+- The default number of 'safe' threads has been upgraded to 16 (instead of
9
+ previous 8). That means that if your CPU has > 16 cores, the default is
10
+ to use 16. You can always override this with the "NUMEXPR_MAX_THREADS"
11
+ environment variable.
12
13
Changes from 2.9.0 to 2.10.0
14
----------------------------
numexpr/tests/test_numexpr.py
@@ -41,7 +41,7 @@
41
42
double = np.double
43
long = int
44
-MAX_THREADS = 8
+MAX_THREADS = 16
45
46
47
class test_numexpr(TestCase):
0 commit comments