<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/core/src/common, branch meson</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>MAINT: remove remaining `NPY_INLINE` usages</title>
<updated>2022-11-27T14:31:40+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@gmail.com</email>
</author>
<published>2022-11-25T17:22:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7a50f23f0d136a737bd8708eb62abd15a861c3bf'/>
<id>7a50f23f0d136a737bd8708eb62abd15a861c3bf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: replace `NPY_INLINE` with `inline`</title>
<updated>2022-11-25T09:51:14+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@gmail.com</email>
</author>
<published>2022-11-25T09:04:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3947b1a023a07a55522de65b4d302339bac2bad7'/>
<id>3947b1a023a07a55522de65b4d302339bac2bad7</id>
<content type='text'>
Closes gh-22100
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes gh-22100
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix issue with broken assert statement in `templ_common.h.src`</title>
<updated>2022-11-12T13:36:09+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@gmail.com</email>
</author>
<published>2022-11-12T13:34:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3a6d29059f8b8c27605ca1d57229040415847a20'/>
<id>3a6d29059f8b8c27605ca1d57229040415847a20</id>
<content type='text'>
assert() only takes one argument.
This was recently introduced, in commit 4156ae260 (gh-21793)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
assert() only takes one argument.
This was recently introduced, in commit 4156ae260 (gh-21793)
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Fix typos found by codespell</title>
<updated>2022-10-07T08:21:11+00:00</updated>
<author>
<name>Dimitri Papadopoulos</name>
<email>3234522+DimitriPapadopoulos@users.noreply.github.com</email>
</author>
<published>2022-10-07T08:00:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8551018184e16dc76cadb05cfaf73985105a3293'/>
<id>8551018184e16dc76cadb05cfaf73985105a3293</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #22325 from seiko2plus/npyv_speedup_neon_vec_init</title>
<updated>2022-09-26T06:26:08+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2022-09-26T06:26:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c27bb662aa75be518f173b24e0f647248310d0ce'/>
<id>c27bb662aa75be518f173b24e0f647248310d0ce</id>
<content type='text'>
SIMD: Improve the performance of NEON vector initializer</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SIMD: Improve the performance of NEON vector initializer</pre>
</div>
</content>
</entry>
<entry>
<title>SIMD: Improve the performance of NEON vector initializer</title>
<updated>2022-09-25T11:23:44+00:00</updated>
<author>
<name>Sayed Adel</name>
<email>seiko@imavr.com</email>
</author>
<published>2022-09-22T12:02:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ee5d890007f8937a49d47cc219cf6013c13bf27f'/>
<id>ee5d890007f8937a49d47cc219cf6013c13bf27f</id>
<content type='text'>
  Using load over stack has a bad impact on the compiler static analysis
  compared with direct compiler initlizer via curly brace which
  is supported by both gcc and clang.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Using load over stack has a bad impact on the compiler static analysis
  compared with direct compiler initlizer via curly brace which
  is supported by both gcc and clang.
</pre>
</div>
</content>
</entry>
<entry>
<title>SIMD: Add new intrinsics to check true cross all vector lanes</title>
<updated>2022-09-19T06:27:21+00:00</updated>
<author>
<name>Sayed Adel</name>
<email>seiko@imavr.com</email>
</author>
<published>2022-09-17T19:43:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6ef4c8bc1459f5d4f548ed87715651c6bc75fc49'/>
<id>6ef4c8bc1459f5d4f548ed87715651c6bc75fc49</id>
<content type='text'>
  npyv_any_##SFX: returns true if any of the elements is not equal to zero
  npyv_all_##SFX: returns true if all elements are not equal to zero
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  npyv_any_##SFX: returns true if any of the elements is not equal to zero
  npyv_all_##SFX: returns true if all elements are not equal to zero
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH, SIMD: Implement new universal intrinsic for max/min operations</title>
<updated>2022-09-17T19:48:43+00:00</updated>
<author>
<name>Sayed Adel</name>
<email>seiko@imavr.com</email>
</author>
<published>2022-09-15T23:06:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a64320839f2dc9988c9fbf043f62a5212bba33d4'/>
<id>a64320839f2dc9988c9fbf043f62a5212bba33d4</id>
<content type='text'>
  max/min that reverse IEC 60559's NaN beahvior(propagates NaNs) for float data types
    npyv_maxn_##SFX
    npyv_minn_##SFX

  max/min reduction for all float and integer vector data types
    npyv_reduce_max_##SFX
    npyv_reduce_min_##SFX

  max/min reduction supports IEC 60559 for float data types
    npyv_reduce_maxp_##SFX
    npyv_reduce_minp_##SFX

  max/min reduction reverse IEC 60559's NaN beahvior(propagates NaNs) for float data types
    npyv_reduce_maxn_##SFX
    npyv_reduce_minn_##SFX

  also, this patch implements new intrinsics to extract the first vector lane:
    npyv_extract0_##SFX
    npyv_extract0_##SFX
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  max/min that reverse IEC 60559's NaN beahvior(propagates NaNs) for float data types
    npyv_maxn_##SFX
    npyv_minn_##SFX

  max/min reduction for all float and integer vector data types
    npyv_reduce_max_##SFX
    npyv_reduce_min_##SFX

  max/min reduction supports IEC 60559 for float data types
    npyv_reduce_maxp_##SFX
    npyv_reduce_minp_##SFX

  max/min reduction reverse IEC 60559's NaN beahvior(propagates NaNs) for float data types
    npyv_reduce_maxn_##SFX
    npyv_reduce_minn_##SFX

  also, this patch implements new intrinsics to extract the first vector lane:
    npyv_extract0_##SFX
    npyv_extract0_##SFX
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Added support for SVML vectorization of power and arctan2</title>
<updated>2022-09-09T19:35:54+00:00</updated>
<author>
<name>Matthew Sterrett</name>
<email>matthew.sterrett@intel.com</email>
</author>
<published>2022-08-18T18:53:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=01c0b76b353ab8451a61461ad213dc99fca5d3c3'/>
<id>01c0b76b353ab8451a61461ad213dc99fca5d3c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TASK: rename macros (from review)</title>
<updated>2022-08-21T16:45:10+00:00</updated>
<author>
<name>mattip</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2022-08-21T16:45:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=25629dd1e1c08d6846e51d39bc265724a7c5ab82'/>
<id>25629dd1e1c08d6846e51d39bc265724a7c5ab82</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
