summaryrefslogtreecommitdiff
path: root/numpy/core/src/umath
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #5599 from pitrou/refleak_ufunc2Julian Taylor2015-02-231-2/+0
|\
| * BUG: Fix a reference leak in ufunc type resolution.Antoine Pitrou2015-02-231-2/+0
* | Merge pull request #5242 from juliantaylor/fix-ufunc-subok-outJulian Taylor2014-10-291-6/+9
|\ \
| * | BUG: fix not returning out array from ufuncs with subok=False setJulian Taylor2014-10-281-6/+9
| |/
* | Merge pull request #5088 from juliantaylor/not-fixJulian Taylor2014-09-241-1/+1
|\ \
| * | BUG: fix wrong error checks of PyBytes_AsStringAndSizeJulian Taylor2014-09-191-1/+1
| |/
* | Merge pull request #4891 from juliantaylor/reduce-float-axisJulian Taylor2014-07-181-2/+2
|\ \
| * | DEP: deprecate float as axis argument to reductionsJulian Taylor2014-07-171-2/+2
| |/
* | BUG: add missing elementsize alignment check for simd reductionsJulian Taylor2014-07-161-1/+3
* | BUG: fix buffer overflow in data array of ldexp and frexpJulian Taylor2014-07-051-5/+5
* | Merge pull request #4801 from larsmans/c-fixesJulian Taylor2014-06-302-49/+49
|\ \
| * | MAINT: const correctness and minor fixes to C codeLars Buitinck2014-06-102-49/+49
* | | BUG: fix some memory leaks found by cpycheckerJulian Taylor2014-06-262-6/+8
|/ /
* | BLD: workaround msvc being stupidJulian Taylor2014-06-091-7/+11
|/
* BUG: Avoid double iterator deallocation in `ufunc_object.c`jaimefrio2014-06-041-2/+1
* ENH: speed-up minimum, maximum and xor for bool dtypejaimefrio2014-05-253-2788/+5
* Merge pull request #4626 from cowlicks/ufunc-override-methodsJulian Taylor2014-05-151-7/+31
|\
| * BUG: Fix and add ufunc override capabilities to ufunc methods.Blake Griffith2014-05-091-7/+31
* | MAINT: Comparison deprecation followup fixesSebastian Berg2014-05-041-7/+18
* | DEP: Deprecate identity check in comparisons (not just removing)Sebastian Berg2014-05-041-3/+36
* | FIX: Make object comparison ufuncs not include identity checkSebastian Berg2014-05-041-1/+10
|/
* ENH: intern the constant python stringsJulian Taylor2014-04-011-7/+7
* ENH: write integer compare loops in way the compiler can vectorize themJulian Taylor2014-03-271-5/+50
* Merge pull request #4483 from meltingwax/meltingwax/2469Charles Harris2014-03-161-1/+1
|\
| * BUG: Fix commutativity of {dot,multiply,inner}(scalar, matrix_of_objs)Daniel da Silva2014-03-141-1/+1
* | Merge pull request #4475 from juliantaylor/gil-releaseCharles Harris2014-03-111-54/+18
|\ \
| * | MAINT: add NPY_BEGIN_THREAD_NDITER and remove unnecessary needs_api checksJulian Taylor2014-03-111-54/+18
* | | BUG: add missing gufunc failure return values and missing malloc fail checkJulian Taylor2014-03-111-0/+7
|/ /
* | ENH: vectorize isnanJulian Taylor2014-03-052-17/+39
* | MAINT: remove some duplication in vectorized compare codeJulian Taylor2014-03-051-36/+22
* | BUG: fix double bool compares not being set to 0x1Julian Taylor2014-03-051-3/+6
* | ENH: improve vectorization of float comparisonsJulian Taylor2014-03-041-60/+68
* | Merge pull request #4400 from charris/fix-ufunc-documentionCharles Harris2014-03-011-6/+90
|\ \ | |/ |/|
| * DOC: Document ldexp and frexp.Charles Harris2014-02-281-6/+90
* | ENH: vectorize negative with sseJulian Taylor2014-02-272-17/+34
|/
* MAINT: fix a bunch of compiler warningsJulian Taylor2014-02-222-4/+10
* BUG: fix initialized half sumJulian Taylor2014-02-181-6/+5
* DEP: Deprecate boolean `-` operationsSebastian Berg2014-02-122-2/+51
* BUG: fix use of capi without gil in ufunc.atJulian Taylor2014-02-091-1/+10
* MAINT: silence some build warnings due to missing NO_IMPORT_ARRAYRalf Gommers2014-01-191-1/+2
* MAINT: fix build warnings in test_rational.c.srcRalf Gommers2014-01-191-2/+3
* MAINT: remove unused variables from einsum.c.src and loops.c.srcRalf Gommers2014-01-191-1/+1
* ENH: avoid more thread save/restores for small iteration countsJulian Taylor2014-01-141-4/+4
* Merge pull request #4061 from larsmans/c-fixesJulian Taylor2014-01-121-1/+0
|\
| * MAINT: umath: get rid of "statement with no effect" warningLars Buitinck2014-01-121-1/+0
* | BUG: Ensure signed division of stride for pairwise sumJulian Taylor2013-12-231-3/+3
* | Merge pull request #4058 from juliantaylor/intern-stringsseberg2013-12-033-29/+64
|\ \
| * | ENH: skip redundant checking of subok keyword in _find_array_prepareJulian Taylor2013-11-261-5/+10
| * | ENH: intern some commonly used strings in umath moduleJulian Taylor2013-11-263-25/+55
| |/
* | ENH: also use pairwise summation for half and complex typesJulian Taylor2013-12-021-35/+146