Skip to content

Commit

Permalink
Document the upgrade to 16 threads as the new 'safe' default
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed May 31, 2024
1 parent fb35484 commit 9c8ec78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ Release notes for NumExpr 2.10 series
Changes from 2.10.0 to 2.10.1
-----------------------------

* **Under development.**
- The default number of 'safe' threads has been upgraded to 16 (instead of
previous 8). That means that if your CPU has > 16 cores, the default is
to use 16. You can always override this with the "NUMEXPR_MAX_THREADS"
environment variable.

Changes from 2.9.0 to 2.10.0
----------------------------
Expand Down
2 changes: 1 addition & 1 deletion numexpr/tests/test_numexpr.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

double = np.double
long = int
MAX_THREADS = 8
MAX_THREADS = 16


class test_numexpr(TestCase):
Expand Down

0 comments on commit 9c8ec78

Please sign in to comment.