<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/runtests.py, branch dependabot/pip/gitpython-3.1.14</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>MAINT: Replaced master with main</title>
<updated>2021-03-07T05:48:25+00:00</updated>
<author>
<name>Ganesh Kathiresan</name>
<email>ganesh3597@gmail.com</email>
</author>
<published>2021-03-07T05:32:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=eb9bc0e8e564f39c7f9167b731ed12b21f5205a7'/>
<id>eb9bc0e8e564f39c7f9167b731ed12b21f5205a7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH, MAINT: Added runtest options | Added unified diff</title>
<updated>2021-03-07T05:48:24+00:00</updated>
<author>
<name>Ganesh Kathiresan</name>
<email>ganesh3597@gmail.com</email>
</author>
<published>2021-02-22T16:16:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=11cfa1c942ce2ed3d0e08ab50eb1612bb51ec60e'/>
<id>11cfa1c942ce2ed3d0e08ab50eb1612bb51ec60e</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 #17736 from seiko2plus/issue_17716</title>
<updated>2020-12-16T19:55:52+00:00</updated>
<author>
<name>Matti Picus</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2020-12-16T19:55:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=d7a75e8e8fefc433cf6e5305807d5f3180954273'/>
<id>d7a75e8e8fefc433cf6e5305807d5f3180954273</id>
<content type='text'>
BUG, Benchmark: fix passing optimization build options to asv</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BUG, Benchmark: fix passing optimization build options to asv</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Fix passing build options when `--debug-info` is enabled</title>
<updated>2020-12-08T21:44:40+00:00</updated>
<author>
<name>Sayed Adel</name>
<email>seiko@imavr.com</email>
</author>
<published>2020-12-08T19:05:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=3df3da1420418a41884be39a71c31a873d765800'/>
<id>3df3da1420418a41884be39a71c31a873d765800</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG, Benchmark: fix passing optimization build options to asv</title>
<updated>2020-11-09T01:34:54+00:00</updated>
<author>
<name>Sayed Adel</name>
<email>seiko@imavr.com</email>
</author>
<published>2020-11-09T01:32:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=11728e8a3cf967455aacc36e2d2237745b07c1e7'/>
<id>11728e8a3cf967455aacc36e2d2237745b07c1e7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Expose the NumPy C SIMD vectorization interface "NPYV" to Python</title>
<updated>2020-10-27T11:46:58+00:00</updated>
<author>
<name>Sayed Adel</name>
<email>seiko@imavr.com</email>
</author>
<published>2020-07-08T07:27:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=cb3efe8e03b53dbab457a99be1a48384312abe16'/>
<id>cb3efe8e03b53dbab457a99be1a48384312abe16</id>
<content type='text'>
  '_simd' is a new module to bring the NumPy C SIMD vectorization interface "NPYV"

  The module is designed to be extremely flexible so that it can accommodate any kind
  intrinsics, also to generate a python interface almost similar to the C interface.

  The main purpose of this module is to test NPYV intrinsics in python,
  but still can be used as an effective solution in designing SIMD kernels.

  Also add a new command-line argument `--simd-test` to control of targeted CPU features
  for the `_simd` module.

Co-authored-by: Matti Picus &lt;matti.picus@gmail.com&gt;
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  '_simd' is a new module to bring the NumPy C SIMD vectorization interface "NPYV"

  The module is designed to be extremely flexible so that it can accommodate any kind
  intrinsics, also to generate a python interface almost similar to the C interface.

  The main purpose of this module is to test NPYV intrinsics in python,
  but still can be used as an effective solution in designing SIMD kernels.

  Also add a new command-line argument `--simd-test` to control of targeted CPU features
  for the `_simd` module.

Co-authored-by: Matti Picus &lt;matti.picus@gmail.com&gt;
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Pass optimizations arguments to asv build</title>
<updated>2020-09-11T21:12:04+00:00</updated>
<author>
<name>Sayed Adel</name>
<email>seiko@imavr.com</email>
</author>
<published>2020-09-10T13:31:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=96be6959f970f56fda1c4dfe38db3eabc807f7a6'/>
<id>96be6959f970f56fda1c4dfe38db3eabc807f7a6</id>
<content type='text'>
  This patch allows passing `-j`, `--cpu-baseline`, `--cpu-dispatch` and `--disable-optimization`
  to ASV build when argument `--bench-compare` is used.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  This patch allows passing `-j`, `--cpu-baseline`, `--cpu-dispatch` and `--disable-optimization`
  to ASV build when argument `--bench-compare` is used.
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Fix the path to `mypy.ini`</title>
<updated>2020-09-07T21:16:50+00:00</updated>
<author>
<name>Bas van Beek</name>
<email>b.f.van.beek@vu.nl</email>
</author>
<published>2020-09-07T21:16:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=ba35907d202f66a35fb460ef7a6c01e0e2631f81'/>
<id>ba35907d202f66a35fb460ef7a6c01e0e2631f81</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: use sysconfig not distutils.sysconfig where possible</title>
<updated>2020-09-02T12:44:35+00:00</updated>
<author>
<name>mattip</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2020-09-02T12:44:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=42f9d02a249103fd024241a17ba5896fd2e18bff'/>
<id>42f9d02a249103fd024241a17ba5896fd2e18bff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: allow running mypy through runtests.py</title>
<updated>2020-08-20T19:25:37+00:00</updated>
<author>
<name>Josh Wilson</name>
<email>person142@users.noreply.github.com</email>
</author>
<published>2020-08-20T19:19:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=8e0b47524dd93cca23ad730304bb80c19cd65f15'/>
<id>8e0b47524dd93cca23ad730304bb80c19cd65f15</id>
<content type='text'>
Currently running mypy with the NumPy stubs configured requires
either:

- Installing NumPy
- Adding the source directory to MYPYPATH and linking to the mypy.ini

Both options are somewhat inconvenient, so add a `--mypy` option to
runtests that handles setting things up for you.

This will also be useful in the future for any typing codegen since it
will ensure the project is built before type checking.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently running mypy with the NumPy stubs configured requires
either:

- Installing NumPy
- Adding the source directory to MYPYPATH and linking to the mypy.ini

Both options are somewhat inconvenient, so add a `--mypy` option to
runtests that handles setting things up for you.

This will also be useful in the future for any typing codegen since it
will ensure the project is built before type checking.
</pre>
</div>
</content>
</entry>
</feed>
