Skip to content

Commit 9c8ec78

Browse files
committed
Document the upgrade to 16 threads as the new 'safe' default
1 parent fb35484 commit 9c8ec78

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

RELEASE_NOTES.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ Release notes for NumExpr 2.10 series
55
Changes from 2.10.0 to 2.10.1
66
-----------------------------
77

8-
* **Under development.**
8+
- 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.
912

1013
Changes from 2.9.0 to 2.10.0
1114
----------------------------

numexpr/tests/test_numexpr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
double = np.double
4343
long = int
44-
MAX_THREADS = 8
44+
MAX_THREADS = 16
4545

4646

4747
class test_numexpr(TestCase):

0 commit comments

Comments
 (0)