summaryrefslogtreecommitdiff
path: root/numpy/core/src/umath/loops.c.src
AgeCommit message (Expand)AuthorFilesLines
2017-12-25MAINT: Fix loop and simd sign-compare warnings.Charles Harris1-6/+10
2017-12-12ENH: Add gcd and lcm ufuncsEric Wieser1-0/+30
2017-10-19BUG: add.reduce gives wrong results for arrays with funny stridesAllan Haldane1-48/+45
2017-08-07BUG: The NAT deprecation warning should not be given for every single valueSebastian Berg1-20/+26
2017-08-03BUG: Fix true_divide when dtype=np.float64 specified.Charles Harris1-10/+0
2017-06-02MAINT: Do not produce warnings in fmin/fmax functionsEric Wieser1-0/+3
2017-05-08Merge pull request #9063 from shoyer/divmodEric Wieser1-0/+66
2017-05-07ENH: add np.divmod ufuncStephan Hoyer1-0/+66
2017-05-07ENH: Add isnat functionSebastian Berg1-0/+9
2017-04-30ENH: add np.positive ufunc and use it for ndarray.__pos__Stephan Hoyer1-0/+33
2017-03-27MAINT: restore auto-vectorization of inplace operationsJulian Taylor1-4/+35
2017-03-07BUG: Don't signal FP exceptions in np.absoluteJames Cowgill1-0/+1
2017-01-16BUG: fix wrong future nat warning and equiv type logic errorJulian Taylor1-1/+1
2016-11-23DEP: Make np.equal and np.not_equal ignore object identity.Charles Harris1-44/+2
2016-10-20ENH: Power ufunc raises error for integer to negative integer powers.Charles Harris1-14/+12
2016-10-07BUG: integer 0 to a negative power should error.Eric Moore1-1/+10
2016-09-25Merge pull request #7980 from juliantaylor/avx-runtimeJulian Taylor1-22/+49
2016-09-15BUG: Clear signaling NaN exceptionsPedro Lacerda1-0/+3
2016-09-01ENH: add inplace cases to fast ufunc loop macrosJulian Taylor1-30/+45
2016-08-27ENH: add some AVX2 optimized integer ufunc loopsJulian Taylor1-22/+49
2016-05-19BUG: one to any power is still 1. Broken edgecase for int arraysEric Moore1-0/+4
2016-04-05numpy.power(0, 0) should return 1Loïc Estève1-4/+4
2016-03-31BUG: don't use pow for integer power ufunc loops.Eric Moore1-3/+23
2016-02-18ENH: Make numpy ufuncs compatible with Python divmod.Charles Harris1-15/+10
2016-01-18DEP: Emit FutureWarning for NAT comparisons.Charles Harris1-3/+41
2016-01-16Revert "Merge pull request #7001 from shoyer/NaT-comparison"Charles Harris1-23/+3
2016-01-15BUG: Make divmod behave better under roundoff error.Charles Harris1-7/+2
2016-01-14TST, ENH: make all comparisons with NaT falseStephan Hoyer1-3/+23
2016-01-10ENH: vectorize isinf, isfinite and signbitJulian Taylor1-4/+1
2015-11-16ENH: use prefetching for summationJulian Taylor1-0/+4
2015-10-08MAINT: Remove single file compilation support.Charles Harris1-2/+0
2015-09-28Merge pull request #6269 from yashmehrotra/depr-pyobject_compareCharles Harris1-24/+25
2015-09-29MAINT: Deprecated PyObject_Compare in favor of PyObject_RichCompareBool. Fixe...Yash Mehrotra1-24/+25
2015-09-01BUG: fix timedelta arithmetic with invalid values or NaTsAntoine Pitrou1-7/+19
2015-08-14Merge pull request #5830 from jaimefrio/frompyfunc_cleanupCharles Harris1-18/+17
2015-07-01Add tests for leading NaT values, and fix np.min() bugAntoine Pitrou1-19/+10
2015-06-21MAINT: Mark deprecation warning with a date and Numpy version.Charles Harris1-0/+3
2015-05-03MANT: cleanup logic in PyUFunc_On_OmJaime Fernandez1-18/+17
2015-05-03BUG: Fix segfault in frompyfunc with nout=0Jaime Fernandez1-1/+12
2014-10-11ENH: allow auto vectorization of integer loopsJulian Taylor1-85/+97
2014-09-24ENH: faster (branchless) logical_xorLars Buitinck1-8/+8
2014-07-09MAINT: Add frexp and ldexp to npymath and generate their ufuncsEric Moore1-18/+10
2014-06-26BUG: fix some memory leaks found by cpycheckerJulian Taylor1-0/+3
2014-05-25ENH: speed-up minimum, maximum and xor for bool dtypejaimefrio1-26/+0
2014-05-04MAINT: Comparison deprecation followup fixesSebastian Berg1-7/+18
2014-05-04DEP: Deprecate identity check in comparisons (not just removing)Sebastian Berg1-3/+36
2014-05-04FIX: Make object comparison ufuncs not include identity checkSebastian Berg1-1/+10
2014-03-27ENH: write integer compare loops in way the compiler can vectorize themJulian Taylor1-5/+50
2014-03-05ENH: vectorize isnanJulian Taylor1-3/+8
2014-02-27ENH: vectorize negative with sseJulian Taylor1-3/+5