summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* test sse1 optimizationqiyu82020-06-091-1/+2
* test sse1 optimizeqiyu82020-06-081-1/+1
* simd optimize contig_stride0_outcontig_twoqiyu82020-06-051-6/+40
* optimize using sse2qiyu82020-06-051-0/+32
* Merge pull request #15162 from seberg/reduce-axes-tryMatti Picus2020-06-0410-595/+479
|\
| * BUG: The reduction output must not cause the input to be broadcastSebastian Berg2020-05-302-1/+15
| * MAINT: Address review comments related to NPY_ITER_REDUCTION_AXISSebastian Berg2020-05-304-11/+11
| * DOC: Slightly improve error message on incorrectly shaped reductionsSebastian Berg2020-05-111-7/+9
| * BUG,MAINT: Simplify reduction result creation using reduce axisSebastian Berg2020-05-113-387/+160
| * BUG: Avoid incorrect broadcasts on non-core outputs in gufuncsSebastian Berg2020-05-112-6/+22
| * MAINT: Use reduction axis marker for einsumSebastian Berg2020-05-111-4/+2
| * ENH: Allow specifying reduction axis in nditer/NpyIterSebastian Berg2020-05-112-12/+92
| * MAINT: Simplify strides and axis check in npyiter_new_temp_arraySebastian Berg2020-05-112-64/+75
| * MAINT: Simplify signature of npyiter_replace_axisdataSebastian Berg2020-05-111-13/+11
| * MAINT: (nditer) move duplicated reduce axis check into helper funcSebastian Berg2020-05-111-54/+43
| * MAINT: Simplify undoing of iter-axis-perm in nditerSebastian Berg2020-05-113-54/+57
* | Merge pull request #16468 from scivision/gcc10Sebastian Berg2020-06-041-1/+2
|\ \
| * | BUG: gcc >= 10: correctly compare major versionMichael Hirsch2020-06-021-1/+2
* | | Merge pull request #15666 from rossbar/enh/poly_strMatti Picus2020-06-047-26/+497
|\ \ \
| * | | DOC: Update poly class refguide printing.Ross Barnowski2020-05-152-3/+26
| * | | STY: Move comment outside of try/except.Ross Barnowski2020-05-131-3/+3
| * | | Handle TypeError in _generate_str for coefs.Ross Barnowski2020-05-132-7/+54
| * | | ENH: Improved __str__, __format__ for polynomialsRoss Barnowski2020-05-075-23/+424
* | | | Merge pull request #16389 from seberg/hardcode-scalar-buffersMatti Picus2020-06-0412-30/+215
|\ \ \ \
| * | | | ENH: Hardcode buffer handling for simple scalarsSebastian Berg2020-05-3111-30/+182
| * | | | BENCH: Add simple scalar math benchmarksSebastian Berg2020-05-261-0/+33
* | | | | MAINT: Chain some exceptions. (#16418)Zuhair Ali-Khan2020-06-044-12/+14
* | | | | DOC: NEP for C style guide (#16430)bjnath2020-06-042-210/+263
* | | | | Merge pull request #16485 from seberg/gufunc-output-broadcasts-inputsMatti Picus2020-06-042-3/+22
|\ \ \ \ \
| * | | | | BUG: Fix result when a gufunc output broadcasts the inputs.Sebastian Berg2020-06-022-3/+22
* | | | | | Merge pull request #16471 from mattip/mingw32Charles Harris2020-06-021-2/+2
|\ \ \ \ \ \
| * | | | | | BUG: fix PATH from reviewmattip2020-06-021-1/+1
| * | | | | | BLD: install mingw32 v7.3.0 for win32mattip2020-06-011-1/+1
| | |_|_|/ / | |/| | | |
* | | | | | Merge pull request #16474 from eric-wieser/tidy-piecewiseMatti Picus2020-06-021-8/+6
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | MAINT: use zip instead of range in piecewiseEric Wieser2020-06-011-8/+6
* | | | | | Merge pull request #16465 from bjnath/dev_workflow_link_fixRalf Gommers2020-06-012-11/+11
|\ \ \ \ \ \
| * | | | | | DOC: Fix development_workflow linksBen Nathanson2020-06-012-11/+11
* | | | | | | Merge pull request #16464 from numpy/dependabot/pip/hypothesis-5.16.0Sebastian Berg2020-06-011-1/+1
|\ \ \ \ \ \ \
| * | | | | | | MAINT: Bump hypothesis from 5.15.1 to 5.16.0dependabot/pip/hypothesis-5.16.0dependabot-preview[bot]2020-06-011-1/+1
* | | | | | | | Merge pull request #16463 from sethtroisi/tst_filter_filteredSebastian Berg2020-06-011-3/+16
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
| * | | | | | | DOC: Improve assert_warns docstring with exampleSeth Troisi2020-06-011-3/+16
* | | | | | | | ENH: ARM Neon implementation with intrinsic for np.argmax. (#16375)Chunlin2020-06-012-1/+34
* | | | | | | | ENH: Use AVX-512 for np.frexp and np.ldexp (#16371)Raghuveer Devulapalli2020-05-316-8/+272
* | | | | | | | Merge pull request #16306 from seberg/troubleshooting-fix-envCharles Harris2020-05-311-4/+2
|\ \ \ \ \ \ \ \
| * | | | | | | | DOC: Fix troubleshooting code snippet when env vars are emptySebastian Berg2020-05-201-4/+2
* | | | | | | | | Merge pull request #15886 from eric-wieser/deprecate-shape-NoneSebastian Berg2020-05-315-14/+40
|\ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / |/| | | | | | | |
| * | | | | | | | DEP: Deprecate passing shape=None to mean shape=()Eric Wieser2020-05-315-14/+40
|/ / / / / / / /
* | | | | | | | ENH: Use AVX-512 for np.isnan, np.infinite, np.isinf and np.signbit (#16334)Raghuveer Devulapalli2020-05-318-10/+173
* | | | | | | | TST: Add tests for PyArray_IntpConverter (gh-16454)Eric Wieser2020-05-312-0/+48
* | | | | | | | Merge pull request #16447 from rgommers/make-showCharles Harris2020-05-311-1/+6
|\ \ \ \ \ \ \ \