Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #14153 from IntelPython/expf-strided-test | Charles Harris | 2019-07-29 | 1 | -3/+3 |
|\ | | | | | TST: Allow fuss in testing strided/non-strided exp/log loops | ||||
| * | Allow fuss in testing strided/non-strided exp/log loops | Oleksandr Pavlyk | 2019-07-29 | 1 | -3/+3 |
| | | | | | | | | | | | | | | This is related to: https://github.com/numpy/numpy/issues/14087 https://github.com/numpy/numpy/pull/14091 | ||||
* | | BUG: avx2_scalef_ps must be static | Oleksandr Pavlyk | 2019-07-29 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #14144 from eric-wieser/fix-14142-spinoff | Charles Harris | 2019-07-28 | 1 | -3/+1 |
|\ | | | | | BUG: Remove stray print that causes a SystemError on python 3.7 due to an exception being in flight | ||||
| * | BUG: Remove stray print that causes a SystemError on python 3.7 due to an ↵ | Eric Wieser | 2019-07-28 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | exception being in flight We shouldn't be reporting errors via print anyway Related to gh-14142 | ||||
* | | Merge pull request #14143 from eric-wieser/fix-14077 | Charles Harris | 2019-07-28 | 1 | -1/+4 |
|\ \ | | | | | | | BUG: Fix DeprecationWarning in python 3.8 due to implicit conversion to int | ||||
| * | | BUG: Fix DeprecationWarning in python 3.8 due to implicit conversion to int | Eric Wieser | 2019-07-28 | 1 | -1/+4 |
| |/ | | | | | | | | | | | Since `total_seconds` returns a python `float`, its easiest to convert to a C float and do the int conversion there Fixes gh-14077 | ||||
* | | BLD: Added missing gcd/lcm definitions to npy_math (#14121) | Seth Troisi | 2019-07-28 | 1 | -26/+43 |
|/ | |||||
* | Merge pull request #14089 from Carreau/no-setuppy | Ralf Gommers | 2019-07-25 | 1 | -1/+1 |
|\ | | | | | DOC: Use `pip install .` where possible instead of calling setup.py | ||||
| * | Doc: Use `pip install .` where possible instead of calling setup.py | Matthias Bussonnier | 2019-07-23 | 1 | -1/+1 |
| | | | | | | | | pip will itself call setup.py install with the rights options. | ||||
* | | MAINT: import time: avoid repeated textwrap function dispatch instantiation | Mark Harfouche | 2019-07-25 | 1 | -7/+13 |
| | | | | | | | | Avoid the repeated call of `dedent` when a single call is enough. This micro-optimizes the import time from around 100ms (or slightly above) by 4-6 ms. (PR: gh-14095) | ||||
* | | Merge pull request #14124 from Harmon758/equality-check-fix | Sebastian Berg | 2019-07-25 | 1 | -1/+1 |
|\ \ | | | | | | | MAINT: Use equality instead of identity check with literal | ||||
| * | | MAINT: Use equality instead of identity check with literal | Harmon | 2019-07-25 | 1 | -1/+1 |
| | | | | | | | | | Resolves #14123 | ||||
* | | | Merge pull request #14122 from charris/mark-validation-tests-xfail | Charles Harris | 2019-07-25 | 1 | -1/+1 |
|\ \ \ | |/ / |/| | | MAINT: Mark umath accuracy test xfail. | ||||
| * | | MAINT: Mark umath accuracy test xfail. | Charles Harris | 2019-07-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | The current tests fail in the manylinux1 environment used to build the release wheels, so mark as xfail for now. | ||||
* | | | MAINT: Change the type of error raised in set_printoptions (gh-13899) | Kexuan Sun | 2019-07-25 | 2 | -5/+7 |
| | | | | | | | | | | | | Previously an incorrect ``threshold`` raised ``ValueError``; it now raises ``TypeError`` for non-numeric types and ``ValueError`` for ``nan`` values. | ||||
* | | | BUG: initialize variable that is passed by pointer | Christoph Gohlke | 2019-07-24 | 1 | -1/+2 |
|/ / | | | | | The variable 'no_castable_output' is passed by a pointer to the 'ufunc_loop_matches' function in which its value is read. | ||||
* | | Merge pull request #14106 from cgohlke/patch-1 | Sebastian Berg | 2019-07-24 | 1 | -2/+0 |
|\ \ | | | | | | | MAINT: remove duplicate variable assignments | ||||
| * | | MAINT: remove duplicate variable assignments | Christoph Gohlke | 2019-07-24 | 1 | -2/+0 |
| | | | |||||
* | | | Merge pull request #14091 from IntelPython/update-test-ufunc-noncontiguous | Charles Harris | 2019-07-24 | 1 | -1/+14 |
|\ \ \ | |/ / |/| | | MAINT: adjustments to test_ufunc_noncontigous | ||||
| * | | MAINT: Remove unused import. | Charles Harris | 2019-07-24 | 1 | -1/+1 |
| | | | | | | | | | Remove import of assert_array_almost_equal_nulp. | ||||
| * | | Addressed PR feedback | Oleksandr Pavlyk | 2019-07-24 | 1 | -11/+15 |
| | | | | | | | | | | | | | | | | | | Changes to avoid 'common_type' magic per PR. Reduced 4*eps to 2*eps. | ||||
| * | | MAINT: adjustments to test_ufunc_noncontigous | Oleksandr Pavlyk | 2019-07-23 | 1 | -1/+10 |
| |/ | |||||
* | | Merge pull request #14048 from r-devulap/transcendental-accuracy-tests | Charles Harris | 2019-07-24 | 7 | -8/+1787 |
|\ \ | | | | | | | BUG, TEST: Adding validation test suite to validate float32 exp | ||||
| * | | MAINT: Correct spelling. | Charles Harris | 2019-07-24 | 1 | -1/+1 |
| | | | | | | | | | archictures -> architectures | ||||
| * | | TEST: xfail if not x86_64 and linux | Raghuveer Devulapalli | 2019-07-23 | 1 | -5/+5 |
| | | | |||||
| * | | TEST: disable float32 exp/log/sin/cos validation in ARM and 32-bit windows | Raghuveer Devulapalli | 2019-07-22 | 3 | -3/+30 |
| | | | |||||
| * | | TEST: adding validation test suite for float32 log, sin and cos | Raghuveer Devulapalli | 2019-07-20 | 6 | -4/+1550 |
| | | | |||||
| * | | BUG: fixing bug where AVX expf does not output denormals | Raghuveer Devulapalli | 2019-07-18 | 1 | -6/+48 |
| | | | |||||
| * | | TEST: Adding tests to verify accuracy of math functions | Raghuveer Devulapalli | 2019-07-17 | 2 | -0/+164 |
| | | | |||||
* | | | DOC: fix documentation of i and j for tri. | hvy | 2019-07-24 | 1 | -1/+1 |
| |/ |/| | |||||
* | | Merge pull request #14072 from kritisingh1/dep2 | Sebastian Berg | 2019-07-23 | 1 | -7/+1 |
|\ \ | | | | | | | DEP: Deprecate full and economic modes for linalg.qr | ||||
| * | | DEP: Deprecate full and economic modes for linalg.qr | kritisingh1 | 2019-07-22 | 1 | -7/+1 |
| | | | |||||
* | | | Merge pull request #14060 from sethtroisi/cversion_py | Charles Harris | 2019-07-23 | 1 | -6/+5 |
|\ \ \ | | | | | | | | | DOC: Update cversions.py links and wording | ||||
| * | | | DOC: Update cversions.py links and wording | Seth Troisi | 2019-07-18 | 1 | -6/+5 |
| | | | | |||||
* | | | | Add blank line above doctest for intersect1d | Jackie Leng | 2019-07-23 | 1 | -0/+1 |
| | | | | |||||
* | | | | Merge pull request #14063 from luispedro/fix_save_duck_check | Charles Harris | 2019-07-22 | 2 | -2/+40 |
|\ \ \ \ | | | | | | | | | | | BUG: Fix file-like object check when saving arrays | ||||
| * | | | | TST Test file-like object detection in save/load | Luis Pedro Coelho | 2019-07-20 | 1 | -0/+38 |
| | | | | | |||||
| * | | | | BUG: Fix file-like object check when saving arrays | Luis Pedro Coelho | 2019-07-20 | 1 | -2/+2 |
| | |/ / | |/| | | | | | | | | | | For writing arrays, only the ``write`` method is necessary. | ||||
* | | | | Merge pull request #13964 from colinsnyder/add-recfunctions | Charles Harris | 2019-07-22 | 2 | -44/+44 |
|\ \ \ \ | | | | | | | | | | | BUG, DOC: add new recfunctions to `__all__` | ||||
| * | | | | fixed unstructured_to_structured in recfunctions | Colin Snyder | 2019-07-20 | 2 | -7/+13 |
| | | | | | |||||
| * | | | | Removed unnecessary decorators and dispatcher functions | Colin Snyder | 2019-07-15 | 1 | -15/+0 |
| | | | | | |||||
| * | | | | exported correct functions and made private the rest | Colin Snyder | 2019-07-14 | 2 | -30/+34 |
| | | | | | |||||
| * | | | | add new recfunctions to __all__ | Colin Snyder | 2019-07-10 | 1 | -11/+16 |
| | | | | | |||||
* | | | | | Merge pull request #14074 from r-devulap/builtin-avx512-fix | Charles Harris | 2019-07-22 | 2 | -3/+5 |
|\ \ \ \ \ | | | | | | | | | | | | | BUG: fix build issue on icc 2016 | ||||
| * | | | | | BUG: fix build issue on icc 2016 | Raghuveer Devulapalli | 2019-07-22 | 2 | -3/+5 |
| | |/ / / | |/| | | | | | | | | | | | | | Test if compiler supports _builtin_supports("avx512f") before calling it | ||||
* | | | | | Merge pull request #14036 from kritisingh1/dep1 | Sebastian Berg | 2019-07-21 | 1 | -27/+6 |
|\ \ \ \ \ | |/ / / / |/| | | | | DEP: Raise warnings for deprecated functions PyArray_As1D, PyArray_As2D | ||||
| * | | | | DEP: Raise warnings for deprecated C functions - PyArray_As1D, PyArray_As2D | kritisingh1 | 2019-07-21 | 1 | -27/+6 |
| | | | | | |||||
* | | | | | BUG: Fix incorrect GIL release in array.nonzero (#13930) | Gary Gurlaskie | 2019-07-17 | 2 | -2/+58 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added checks to array.nonzero to ensure GIL is not released if it is needed. Closes gh-13753 | ||||
* | | | | | DEP: Speed up WarnOnWrite deprecation in buffer interface | Sebastian Berg | 2019-07-16 | 2 | -15/+37 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a buffer interface does not request a writeable buffer, simply pass a read-only one when the warn on write flag is set. This is to give an easier way forward with avoiding the deprecation warnings: Simply do not ask for a writeable buffer. It will break code that expects writeable buffers but does not ask for them specifically a bit harder than would be nice. But since such code probably should ask for it specifically, this is likely fine (an RC release has to find out). The main reason for this is, that this way it plays very will with cython, which requests writeable buffers explicitly and if declared `const` is happy about read-only (so that using `const` is the best way to avoid the warning and makes code cleaner). Closes gh-13929, gh-13974 |