<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/random/src, branch build_test</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: precompute log(2.0 * M_PI) in `random_loggam' (gh-16237)</title>
<updated>2020-05-19T13:39:37+00:00</updated>
<author>
<name>Elia Franzella</name>
<email>eliafranzella@live.it</email>
</author>
<published>2020-05-19T13:39:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=d329a66dbb9710aefd03cce6a8b0f46da51490ca'/>
<id>d329a66dbb9710aefd03cce6a8b0f46da51490ca</id>
<content type='text'>
Most compilers should optimize it, but it doesn't hurt to inline and has a better name
now.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Most compilers should optimize it, but it doesn't hurt to inline and has a better name
now.</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove unused file</title>
<updated>2020-05-12T21:39:47+00:00</updated>
<author>
<name>Kevin Sheppard</name>
<email>kevin.k.sheppard@gmail.com</email>
</author>
<published>2020-05-05T10:40:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=f7d740c99f31ed2ec826ef7d459b016a556aa178'/>
<id>f7d740c99f31ed2ec826ef7d459b016a556aa178</id>
<content type='text'>
Remove unused file containing the old polynomial representation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove unused file containing the old polynomial representation.
</pre>
</div>
</content>
</entry>
<entry>
<title>REF: Refactor jump code</title>
<updated>2020-05-12T21:39:47+00:00</updated>
<author>
<name>Kevin Sheppard</name>
<email>kevin.k.sheppard@gmail.com</email>
</author>
<published>2020-05-05T08:42:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=b79be4888136c43805307c0151068089c68dd43c'/>
<id>b79be4888136c43805307c0151068089c68dd43c</id>
<content type='text'>
Refactor polynomial to be unsigned long array
Remove unused code
Fix md5 calculation on BE
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Refactor polynomial to be unsigned long array
Remove unused code
Fix md5 calculation on BE
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Correct loop order in MT19937 jump</title>
<updated>2020-05-12T21:39:47+00:00</updated>
<author>
<name>Kevin Sheppard</name>
<email>kevin.k.sheppard@gmail.com</email>
</author>
<published>2020-05-04T16:52:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=3bc2c0daee4f72b3c2decb470b4d0dd4941ce5f9'/>
<id>3bc2c0daee4f72b3c2decb470b4d0dd4941ce5f9</id>
<content type='text'>
Use the original loop order instead of an inverted order

closes #15394
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use the original loop order instead of an inverted order

closes #15394
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: random: Add assert() statements.</title>
<updated>2020-04-26T21:19:05+00:00</updated>
<author>
<name>Warren Weckesser</name>
<email>warren.weckesser@gmail.com</email>
</author>
<published>2020-04-26T20:54:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=1ded86d35efcc6516083840497b558247b263cfb'/>
<id>1ded86d35efcc6516083840497b558247b263cfb</id>
<content type='text'>
Assert that an invalid value (2**n-1 for n = 8, 16, 32, 64) has not
been passed to the Lemire function.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Assert that an invalid value (2**n-1 for n = 8, 16, 32, 64) has not
been passed to the Lemire function.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: random: Generator.integers(2**32) always returned 0.</title>
<updated>2020-04-26T20:43:03+00:00</updated>
<author>
<name>Warren Weckesser</name>
<email>warren.weckesser@gmail.com</email>
</author>
<published>2020-04-25T16:28:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=e8b84012463927a1fc9c5a236ce7c4ab4a7effaa'/>
<id>e8b84012463927a1fc9c5a236ce7c4ab4a7effaa</id>
<content type='text'>
When the input to Generator.integers was 2**32, the value 2**32-1
was being passed as the `rng` argument to the 32-bit Lemire method,
but that method requires `rng` be strictly less then 2**32-1.

The fix was to handle 2**32-1 by calling next_uint32 directly.
This also works for the legacy code without changing the stream
of random integers from `randint`.

Closes gh-16066.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When the input to Generator.integers was 2**32, the value 2**32-1
was being passed as the `rng` argument to the 32-bit Lemire method,
but that method requires `rng` be strictly less then 2**32-1.

The fix was to handle 2**32-1 by calling next_uint32 directly.
This also works for the legacy code without changing the stream
of random integers from `randint`.

Closes gh-16066.
</pre>
</div>
</content>
</entry>
<entry>
<title>BLD: use 0.3.7 release version, add dependency on libgfortran5</title>
<updated>2020-01-17T07:27:38+00:00</updated>
<author>
<name>mattip</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2020-01-13T19:09:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=879d0e43a0509641084a4286bf3159f1d54180d8'/>
<id>879d0e43a0509641084a4286bf3159f1d54180d8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos, via a Levenshtein-style corrector</title>
<updated>2019-12-19T08:39:59+00:00</updated>
<author>
<name>Brian Wignall</name>
<email>brianwignall@gmail.com</email>
</author>
<published>2019-12-19T08:39:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=0c2a5eb42c0cddf6844880f1494ddf7765bf9c7b'/>
<id>0c2a5eb42c0cddf6844880f1494ddf7765bf9c7b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>API, DOC: change names to multivariate_hypergeometric, improve docs</title>
<updated>2019-12-04T06:52:49+00:00</updated>
<author>
<name>mattip</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2019-12-04T05:59:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=47fbdc1f8c9ed7ec79dfc7cdbb1affd453e84997'/>
<id>47fbdc1f8c9ed7ec79dfc7cdbb1affd453e84997</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>API: revert changes to standard_t, cauchy</title>
<updated>2019-11-30T07:01:59+00:00</updated>
<author>
<name>mattip</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2019-11-30T07:01:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=2b791a5906a2243b4e0a3318bd460b2062416fb9'/>
<id>2b791a5906a2243b4e0a3318bd460b2062416fb9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
