diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2016-02-05 22:47:22 +0100 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2016-03-17 13:15:04 +0100 |
commit | 19655d1d80f299bd76982d485b74aa8b4b0018d6 (patch) | |
tree | 29df4716651895d27f7e5cd57c76af0767bf9021 /doc | |
parent | 1429c606643d1ad305e710c4a31cb6f398d04c53 (diff) | |
download | numpy-19655d1d80f299bd76982d485b74aa8b4b0018d6.tar.gz |
ENH: Unlock the GIL for gufuncs
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.12.0-notes.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/release/1.12.0-notes.rst b/doc/release/1.12.0-notes.rst index 38e5e4338..319ea2e6a 100644 --- a/doc/release/1.12.0-notes.rst +++ b/doc/release/1.12.0-notes.rst @@ -145,6 +145,11 @@ masked out when the reduce method was used. The new identity is -1, which should work properly on twos complement machines as all bits will be set to one. +Generalized Ufuncs will now unlock the GIL +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Generalized Ufuncs, including most of the linalg module, will now unlock +the Python global interpreter lock. + Changes ======= |