summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-12-25 21:19:15 -0700
committerGitHub <noreply@github.com>2017-12-25 21:19:15 -0700
commit03852477aeb9acdf7fd86ee698b2d65cc6d5e412 (patch)
tree2025c319136817695651d3e396b0ddc2d5ea3191 /doc
parent59084fa132c244c0ae622cae8f7a58a363eaa7e8 (diff)
parentbcf949bc3dfb873c09a37dbcfaaf018124d5517d (diff)
downloadpython-numpy-03852477aeb9acdf7fd86ee698b2d65cc6d5e412.tar.gz
python-numpy-03852477aeb9acdf7fd86ee698b2d65cc6d5e412.tar.bz2
python-numpy-03852477aeb9acdf7fd86ee698b2d65cc6d5e412.zip
Merge pull request #10251 from VictorRodriguez/develop
ENH: Enable AVX2/AVX512 support to numpy
Diffstat (limited to 'doc')
-rw-r--r--doc/release/1.15.0-notes.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/release/1.15.0-notes.rst b/doc/release/1.15.0-notes.rst
index a24156ea0..3b4313659 100644
--- a/doc/release/1.15.0-notes.rst
+++ b/doc/release/1.15.0-notes.rst
@@ -85,6 +85,11 @@ As a result, ``np.ma.mr_`` now works correctly on the ``masked`` constant.
This means it takes all the same arguments, making more code written for
ndarray work for masked array too.
+Enable AVX2/AVX512 at compile time
+-------------------------------------------------------------
+Change to simd.inc.src to use AVX2 or AVX512 at compile time. Solving the gap
+that if compile numpy for avx2 (or 512) with -march=native, still get the SSE
+code for the simd functions even though rest of the code gets AVX2.
Changes
=======