<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/random/src/distributions, branch doc/user-guide-default-rng</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>PERF: Use exponentials in place of inversion</title>
<updated>2021-03-22T17:13:07+00:00</updated>
<author>
<name>Kevin Sheppard</name>
<email>kevin.k.sheppard@gmail.com</email>
</author>
<published>2021-03-22T12:28:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=d4a270640b451636c76cb7cff52cc5a1a8a12b6c'/>
<id>d4a270640b451636c76cb7cff52cc5a1a8a12b6c</id>
<content type='text'>
Use exponentials rather than generating exponentials via inversion
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use exponentials rather than generating exponentials via inversion
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Use lop1p to improve numerical precision</title>
<updated>2021-03-17T14:25:41+00:00</updated>
<author>
<name>Kevin Sheppard</name>
<email>kevin.k.sheppard@gmail.com</email>
</author>
<published>2021-03-17T10:46:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=4572e12e199c2032c159121ae9afd12c3d3d5a5a'/>
<id>4572e12e199c2032c159121ae9afd12c3d3d5a5a</id>
<content type='text'>
Use log1p(-x) instead of log(1 - x)
Seperate legacy version from current

closes #17020
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use log1p(-x) instead of log(1 - x)
Seperate legacy version from current

closes #17020
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: np.random: Use log1p to improve precision</title>
<updated>2021-03-17T09:52:02+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2020-08-06T09:59:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=398b01f346116e7974ef9bacf0a2b29f1b3492e4'/>
<id>398b01f346116e7974ef9bacf0a2b29f1b3492e4</id>
<content type='text'>
This reduces the number of cases when floating point precision makes the argument to `log` become `0`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reduces the number of cases when floating point precision makes the argument to `log` become `0`
</pre>
</div>
</content>
</entry>
<entry>
<title>CLN: Move to legacy function</title>
<updated>2021-02-26T18:42:51+00:00</updated>
<author>
<name>Kevin Sheppard</name>
<email>kevin.k.sheppard@gmail.com</email>
</author>
<published>2021-02-26T18: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=aa529592b33262bb9fdd73df3b493a3d3cf2e392'/>
<id>aa529592b33262bb9fdd73df3b493a3d3cf2e392</id>
<content type='text'>
Avoid conditional compilation and move old version to legacy_vonmises
Small clean up
Additional comments
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Avoid conditional compilation and move old version to legacy_vonmises
Small clean up
Additional comments
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Prevent RandomState from changing</title>
<updated>2021-02-26T14:50:28+00:00</updated>
<author>
<name>Kevin Sheppard</name>
<email>kevin.k.sheppard@gmail.com</email>
</author>
<published>2021-02-26T13:04:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=79c30300390c267bacb5297f36c1e9605bca8f2c'/>
<id>79c30300390c267bacb5297f36c1e9605bca8f2c</id>
<content type='text'>
Apply vonmises fix only to Generator
Add tests for correctness

closes #17378
closes #17275
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Apply vonmises fix only to Generator
Add tests for correctness

closes #17378
closes #17275
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed style and added check for bounds in [-pi,pi] interval.</title>
<updated>2021-02-26T11:35:53+00:00</updated>
<author>
<name>Raúl Montón Pinillos</name>
<email>raul_m_p@me.com</email>
</author>
<published>2020-09-26T21:27:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=f26a7d202a7136c0750356f7ec6c148d67a5927e'/>
<id>f26a7d202a7136c0750356f7ec6c148d67a5927e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed Von Mises distribution for big values of kappa by falling back to a normal distribution (which the von mises distribution converges to).</title>
<updated>2021-02-26T11:35:53+00:00</updated>
<author>
<name>Raúl Montón Pinillos</name>
<email>raul_m_p@me.com</email>
</author>
<published>2020-09-26T17:37:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=b16dc4ad63ca02e5a3d88689fddc48159d297abd'/>
<id>b16dc4ad63ca02e5a3d88689fddc48159d297abd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Correct code producing warnings</title>
<updated>2021-02-18T16:39:36+00:00</updated>
<author>
<name>Kevin Sheppard</name>
<email>kevin.k.sheppard@gmail.com</email>
</author>
<published>2021-02-17T11:05:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=e2467e463d7f0c7fe01ef33311d007f7182a0cf7'/>
<id>e2467e463d7f0c7fe01ef33311d007f7182a0cf7</id>
<content type='text'>
Cast to avoid warnings
Correct function
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Cast to avoid warnings
Correct function
</pre>
</div>
</content>
</entry>
<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: 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>
</feed>
