<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/fft/tests, branch dependabot/pip/gitpython-3.1.14</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 users of `numpy.compat.integer_types`</title>
<updated>2020-08-31T09:13:58+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2020-08-31T09:13:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6e00aaedc40292933c0e8f162d0d4512d6ba350e'/>
<id>6e00aaedc40292933c0e8f162d0d4512d6ba350e</id>
<content type='text'>
Some more Python 2 cleanup
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some more Python 2 cleanup
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: add `norm=forward,backward` to numpy.fft functions (#16476)</title>
<updated>2020-07-12T19:43:30+00:00</updated>
<author>
<name>Chris Vavaliaris</name>
<email>cv1038@wildcats.unh.edu</email>
</author>
<published>2020-07-12T19:43:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=0862be9b58bc6b40e688c3118f5cc91954a7fd13'/>
<id>0862be9b58bc6b40e688c3118f5cc91954a7fd13</id>
<content type='text'>
The kwarg option norm=inverse leads to scaling of the transforms
inverse (opposite) to that of the default option norm=None; i.e. the
forward transform is normalized with 1/n whereas the backward one
with 1. The fft routines and their tests have been modified to
reflect the changes; all tests have been passed successfully.

Closes #16126

* modified _unitary, fft &amp; ifft and their tests; tests passed

* modified rfft &amp; irfft and their tests; tests passed

* modified hfft &amp; ihfft and all tests; all modifications are now done

* correction in ihfft; all 79 fft tests passed successfully

* undo unnecessary docstrings changes made in my previous commits

* use norm=forward kwarg value name

* Update numpy/fft/__init__.py

Co-authored-by: Leo Fang &lt;leofang@bnl.gov&gt;

* add code review suggestions

Co-authored-by: Leo Fang &lt;leofang@bnl.gov&gt;

* add default norm=None alias norm=backward

* streamline private normalization functions

* modify hermitian FFTs

* add review suggestions

Co-authored-by: Leo Fang &lt;leofang@bnl.gov&gt;

* add review suggestions v2 (dict as module const)

* make review suggestions v3

* Apply suggestions from code review

Co-authored-by: Leo Fang &lt;leofang@bnl.gov&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The kwarg option norm=inverse leads to scaling of the transforms
inverse (opposite) to that of the default option norm=None; i.e. the
forward transform is normalized with 1/n whereas the backward one
with 1. The fft routines and their tests have been modified to
reflect the changes; all tests have been passed successfully.

Closes #16126

* modified _unitary, fft &amp; ifft and their tests; tests passed

* modified rfft &amp; irfft and their tests; tests passed

* modified hfft &amp; ihfft and all tests; all modifications are now done

* correction in ihfft; all 79 fft tests passed successfully

* undo unnecessary docstrings changes made in my previous commits

* use norm=forward kwarg value name

* Update numpy/fft/__init__.py

Co-authored-by: Leo Fang &lt;leofang@bnl.gov&gt;

* add code review suggestions

Co-authored-by: Leo Fang &lt;leofang@bnl.gov&gt;

* add default norm=None alias norm=backward

* streamline private normalization functions

* modify hermitian FFTs

* add review suggestions

Co-authored-by: Leo Fang &lt;leofang@bnl.gov&gt;

* add review suggestions v2 (dict as module const)

* make review suggestions v3

* Apply suggestions from code review

Co-authored-by: Leo Fang &lt;leofang@bnl.gov&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: cleanup unused imports; avoid redefinition of imports</title>
<updated>2020-02-06T09:16:23+00:00</updated>
<author>
<name>Mike Taves</name>
<email>mwtoews@gmail.com</email>
</author>
<published>2020-02-04T19:21:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=07bf33fbf5be8143aab037dc65aba3086f8badf6'/>
<id>07bf33fbf5be8143aab037dc65aba3086f8badf6</id>
<content type='text'>
* Cleanup unused imports (F401) of mostly standard Python modules,
  or some internal but unlikely referenced modules
* Where internal imports are potentially used, mark with noqa
* Avoid redefinition of imports (F811)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Cleanup unused imports (F401) of mostly standard Python modules,
  or some internal but unlikely referenced modules
* Where internal imports are potentially used, mark with noqa
* Avoid redefinition of imports (F811)
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove sys.version checks in tests</title>
<updated>2020-01-15T21:19:56+00:00</updated>
<author>
<name>Seth Troisi</name>
<email>sethtroisi@google.com</email>
</author>
<published>2020-01-09T07:49:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1427484e9015e73b7017ee9336ce914a6f15187b'/>
<id>1427484e9015e73b7017ee9336ce914a6f15187b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove implicit inheritance from object class (#15236)</title>
<updated>2020-01-05T05:53:30+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2020-01-05T05:53:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c31cc36a8a814ed4844a2a553454185601914a5a'/>
<id>c31cc36a8a814ed4844a2a553454185601914a5a</id>
<content type='text'>
Inheriting from object was necessary for Python 2 compatibility to use
new-style classes. In Python 3, this is unnecessary as there are no
old-style classes.

Dropping the object is more idiomatic Python.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Inheriting from object was necessary for Python 2 compatibility to use
new-style classes. In Python 3, this is unnecessary as there are no
old-style classes.

Dropping the object is more idiomatic Python.</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove unnecessary 'from __future__ import ...' statements</title>
<updated>2020-01-03T15:48:11+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-08-27T11:36:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ed1e9659f103260a32536b4a7615393e3b1173dc'/>
<id>ed1e9659f103260a32536b4a7615393e3b1173dc</id>
<content type='text'>
As numpy is Python 3 only, these import statements are now unnecessary
and don't alter runtime behavior.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As numpy is Python 3 only, these import statements are now unnecessary
and don't alter runtime behavior.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Better err message for norm</title>
<updated>2019-08-08T16:45:56+00:00</updated>
<author>
<name>Eric Larson</name>
<email>larson.eric.d@gmail.com</email>
</author>
<published>2019-08-08T16:43:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=abf3fe8e3814c41c9a79eac87f5b137a617d1184'/>
<id>abf3fe8e3814c41c9a79eac87f5b137a617d1184</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Incremented _tol my factor of 8.</title>
<updated>2019-08-01T21:48:15+00:00</updated>
<author>
<name>Oleksandr Pavlyk</name>
<email>oleksandr.pavlyk@intel.com</email>
</author>
<published>2019-08-01T21:48:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=42fb36751107d2ffe8af8e0f35a334a1b0d42baf'/>
<id>42fb36751107d2ffe8af8e0f35a334a1b0d42baf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replaced np.sqrt(X.size) with np.sqrt(np.log2(X.size)) per PR review</title>
<updated>2019-08-01T19:24:45+00:00</updated>
<author>
<name>Oleksandr Pavlyk</name>
<email>oleksandr.pavlyk@intel.com</email>
</author>
<published>2019-08-01T19:24:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4c1fd6a9890a7cdec8e381c3a2c64d6140087ef3'/>
<id>4c1fd6a9890a7cdec8e381c3a2c64d6140087ef3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replaced assert_array_almost_equal with assert_allclose</title>
<updated>2019-08-01T16:51:38+00:00</updated>
<author>
<name>Oleksandr Pavlyk</name>
<email>oleksandr.pavlyk@intel.com</email>
</author>
<published>2019-08-01T16:20:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3e0014faa7e72ed3dd690619f03e3417d40a3f28'/>
<id>3e0014faa7e72ed3dd690619f03e3417d40a3f28</id>
<content type='text'>
Relaxed test_fft_with_order for float32.

Infinity norm round-off error of FFT is shown in
G.U. Ramos, "Roundoff Error Analyss of the Fast Fourier Transform,"
Mathematics of Computation, vol. 25, no. 116, Oct. 1971, p. 757

to be bounded by sqrt(N)*K*eps.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Relaxed test_fft_with_order for float32.

Infinity norm round-off error of FFT is shown in
G.U. Ramos, "Roundoff Error Analyss of the Fast Fourier Transform,"
Mathematics of Computation, vol. 25, no. 116, Oct. 1971, p. 757

to be bounded by sqrt(N)*K*eps.
</pre>
</div>
</content>
</entry>
</feed>
