summaryrefslogtreecommitdiff
path: root/numpy/core/include/numpy/ufuncobject.h
Commit message (Expand)AuthorAgeFilesLines
* ENH: Allow compiling compatibly to old NumPy versionsSebastian Berg2023-04-041-2/+4
* BUG: Fix build of third-party extensions with Py_LIMITED_APILeo Singer2022-01-131-1/+5
* MAINT: Remove Python <3.8 support from CSebastian Berg2021-11-071-4/+1
* MAINT: Standardize header guards,Charles Harris2021-09-051-4/+4
* DOC: Doc fixes based on Matti's and Marten's reviewsSebastian Berg2021-07-221-4/+3
* MAINT: Refactor UFunc core to use NEP 43 style dispatching/promotionSebastian Berg2021-07-221-0/+7
* MAINT: Align masked with normal ufunc loopsSebastian Berg2021-06-211-29/+6
* DOC: Fixup comments based on review and remove TODOSebastian Berg2021-03-231-1/+1
* ENH: Optimize and cleanup ufunc calls and ufunc CheckOverridesSebastian Berg2021-03-231-1/+5
* MAINT: Const qualify UFunc inner loops (gh-15355)Kai Striega2020-01-211-2/+2
* [DOC] Remove unused/deprecated functionskritisingh12019-07-151-12/+0
* BUG: reference cycle in np.vectorize (#11977)Matti Picus2019-01-091-2/+6
* ENH: Allow ufunc.identity to be any python objectEric Wieser2018-11-121-1/+8
* Merge pull request #11175 from mhvk/gufunc-signature-modification2Matti Picus2018-10-191-0/+23
|\
| * MAINT: formatting, remove version, rework flagsmattip2018-10-111-6/+4
| * ENH: increment and use NPY_API_VERSION in PyUFuncObject->versionmattip2018-10-071-24/+18
| * MAINT: refactor inner loop in testmattip2018-09-161-16/+22
| * MAINT: make PyUFuncObject.version a const intmattip2018-09-131-1/+3
| * MAINT: Use flags instead of flexible_dims argument.Marten van Kerkwijk2018-07-171-4/+14
| * ENH: test, document, implement flexible signature.mattip2018-07-171-2/+8
| * ENH: convert reserved field to version, set new version to 1mattip2018-07-171-2/+4
| * ENH: Add frozen dimensions to gufunc signaturesjaimefrio2018-07-171-0/+5
* | MAINT: remove macro, platforms that defined it will now fail to buildmattip2018-10-101-16/+0
|/
* DOC: Clarify C-API for generalized ufuncs.mattip2018-05-281-1/+1
* ENH: Spelling fixesVille Skyttä2017-05-091-1/+1
* ENH: Add identity for bitwise_and.Charles Harris2016-03-031-3/+9
* MAINT: cleanup dead code/arguments/fields from ufuncsNathaniel J. Smith2015-10-011-24/+6
* MAINT: const correctness and minor fixes to C codeLars Buitinck2014-06-101-2/+2
* ENH: avoid expensive clears in fenv functionsJulian Taylor2013-11-061-125/+24
* ENH: merge UFUNC_ERR_DEFAULT2 variable into UFUNC_ERR_DEFAULTJulian Taylor2013-10-221-4/+1
* BUG: Fix UFUNC_CHECK_STATUS to work on both 32 and 64 bit Windows.Charles Harris2013-09-071-1/+12
* BUG: fix windows fpu flag check for mixed x87 and sse instructionsJulian Taylor2013-09-061-1/+5
* MAINT: fix compilation issue gh-3443.jmozmoz2013-06-161-2/+2
* Add support for structured array ufuncsJay Bourque2013-05-141-0/+2
* Fix formatting issuesJay Bourque2013-05-061-1/+1
* This change allows ufunc operand flags to be set in addition to thejayvius2013-05-061-0/+14
* API: Restore ability to not use semicolons.Travis E. Oliphant2012-06-281-2/+2
* Remove maskna API from ndarray, and all (and only) the code supporting itNathaniel J. Smith2012-06-161-1/+3
* ENH: ufunc: Add a mask dtype parameter to the masked ufunc loop selectorMark Wiebe2011-08-271-0/+1
* ENH: umath: Switch PyUFunc_Reduce to call PyArray_ReduceWrapper to simplify codeMark Wiebe2011-08-271-5/+11
* ENH: umath: Add checking for reorderable ufuncs, add PyArray_ReduceWrapper to...Mark Wiebe2011-08-271-0/+17
* ENH: ufunc: Separate type resolution from loop selectionMark Wiebe2011-08-271-62/+117
* ENH: missingdata: Got masked element-wise ufuncs working in preliminary fashionMark Wiebe2011-08-271-2/+2
* STY: Remove trailing whitespaceMark Wiebe2011-07-261-2/+2
* ENH: umath: Write the function to call the masked inner loopMark Wiebe2011-07-061-3/+5
* ENH: umath: Implement the default type resolution for masked loopsMark Wiebe2011-07-061-1/+2
* ENH: missingdata: Move getting the masked ufunc inner loop to a different fun...Mark Wiebe2011-07-061-4/+20
* ENH: missingdata: Add a mechanism to get masked versions of ufunc inner loopsMark Wiebe2011-07-061-1/+18
* BUG: dtype: Cleanups and fix parsing datetime dtypes with an endian specifierMark Wiebe2011-06-161-1/+2
* ENH: Generalize ufunc type resolution to be a replaceable functionMark Wiebe2011-05-251-1/+42