summaryrefslogtreecommitdiff
path: root/numpy/core
Commit message (Expand)AuthorAgeFilesLines
* BUG: fix non-swapping strided copies in GetStridedCopySwapJulian Taylor2013-06-111-3/+3
* ENH: enable unaligned loads on x86Julian Taylor2013-06-101-4/+2
* ENH: properly fix unaligned load of complex typesJulian Taylor2013-06-102-17/+4
* Merge pull request #3243 from seberg/deprecate-non-integer-arguments-newCharles Harris2013-06-099-411/+384
|\
| * MAINT: Disallow np.bool_ being used as integerSebastian Berg2013-06-092-1/+14
| * MAINT: Minor style fix and integer conversion optimizationsSebastian Berg2013-06-091-12/+12
| * STY: Style fixes for integer deprecation changesSebastian Berg2013-06-092-12/+13
| * MAINT: Use warnings context manager instead of doing it by handSebastian Berg2013-06-091-12/+11
| * DOC: Add integer deprecations to release notesSebastian Berg2013-06-091-2/+2
| * MAINT: Create new function PyArray_IntpFromIndexSequenceSebastian Berg2013-05-312-7/+26
| * STY: style and small doc fixes for integer deprecationsSebastian Berg2013-05-312-4/+7
| * TST: Rework test_deprecations.py and add new tests.Sebastian Berg2013-05-312-108/+192
| * MAINT: Remove non-integer deprecations which are now in PyIntAsIntpSebastian Berg2013-05-313-108/+8
| * API: Deprecate __index__ for ndim > 0Sebastian Berg2013-05-311-0/+6
| * API: Deprecating the use of non-integers for indices argumentsSebastian Berg2013-05-311-185/+133
| * MAINT: adept divisions for truedivideSebastian Berg2013-05-311-2/+2
* | TST: expected behaviour of .copy()David Warde-Farley2013-06-081-0/+24
* | BUG: copy.(deep)copy should preserve F-contiguityDavid Warde-Farley2013-06-082-4/+21
* | MAINT: move simd functions to new file simd.inc.srcJulian Taylor2013-06-084-124/+205
* | MAINT: remove duplicate vtype templateJulian Taylor2013-06-081-1/+0
* | MAINT: use @vpre@ for simd sqrt intrinsic prefixJulian Taylor2013-06-081-4/+4
* | MAINT: make the simd function signature more specificJulian Taylor2013-06-081-29/+28
* | ENH: Vectorize float absolute operation with sse2Julian Taylor2013-06-082-5/+76
* | MAINT: move vectorized sqrt to own static functionJulian Taylor2013-06-081-19/+34
* | TST: fix some function name conflictsJulian Taylor2013-06-052-2/+2
* | TST: linalg: loosen the requirements of some tests in test_blasdot.py. Addre...Warren Weckesser2013-06-041-9/+9
* | BUG: fix typo on npy_config.h include guardJulian Taylor2013-06-032-2/+1
* | BUG: fix memory leak and double execution in dotJulian Taylor2013-05-311-1/+3
* | MAINT: use npy_is_aligned in a few more placesJulian Taylor2013-05-292-4/+5
* | BUG: check alignment before loading the dataJulian Taylor2013-05-291-26/+30
* | MAINT: move byteswap macros to inlines in headerJulian Taylor2013-05-293-32/+82
* | MAINT: remove duplicated array extent calculationJulian Taylor2013-05-282-30/+12
* | ENH: implement may_share_memory in CJulian Taylor2013-05-282-1/+31
* | BUG: fix leak and possible null dereferenceJulian Taylor2013-05-271-1/+1
* | BUG: set filename to None for memmaps of unnamed filesJulian Taylor2013-05-252-2/+12
* | Merge pull request #3341 from juliantaylor/sse2-sqrtCharles Harris2013-05-2510-178/+356
|\ \
| * | MAINT: use sse header macros for einsum sse activationJulian Taylor2013-05-252-3/+7
| * | ENH: vectorize sqrt ufunc using SSE2Julian Taylor2013-05-259-176/+350
* | | MAINT: fix some compiler warningsJulian Taylor2013-05-2512-13/+15
* | | Merge pull request #3324 from nouiz/prio_cmpseberg2013-05-233-40/+194
|\ \ \ | |/ / |/| |
| * | code clean up. Remove code that was never executed.Frederic2013-05-231-14/+2
| * | updated the comment.Frederic2013-05-171-6/+4
| * | use assert function instead of python keywordFrederic2013-05-171-42/+42
| * | Move computation inside an if to speed it up.Frederic2013-05-161-36/+35
| * | remove comparison not needed as this is check above and we break in that case.Frederic2013-05-161-4/+2
| * | fix comment style.Frederic2013-05-161-6/+10
| * | reorder code to remove not needed computation in some cases.Frederic2013-05-161-5/+19
| * | Add test for the array_priority for comparison function.Frederic2013-05-151-0/+146
| * | Commit from @seberg to make comparison use respect __array_priority__Frederic2013-05-152-2/+9
| * | Revert "Make comparison function (gt, ge, ...) respect __array_priority__."Frederic2013-05-151-44/+0