summaryrefslogtreecommitdiff
path: root/numpy
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
* MAINT: use PyOS_snprintf instead of snprintfChristoph Gohlke2013-06-091-1/+1
* Merge pull request #3243 from seberg/deprecate-non-integer-arguments-newCharles Harris2013-06-0912-414/+387
|\
| * 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-094-14/+15
| * 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-314-5/+5
* | 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
* | Merge pull request #3407 from mrjbq7/doc-fixesCharles Harris2013-06-081-2/+2
|\ \
| * | DOC: fix comments in min and ptp.John Benediktsson2013-06-061-2/+2
* | | Merge pull request #3393 from seberg/clarify-integer-typesCharles Harris2013-06-081-11/+18
|\ \ \
| * | | DOC: Clarify and add C-compatible integer types to list of dtypesSebastian Berg2013-06-041-11/+18
* | | | 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
* | | | MAINT: fix shape mismatch issue in alignment data generatorJulian Taylor2013-06-081-4/+4
* | | | 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
* | | | BUG: import longdouble instead of float128Julian Taylor2013-06-071-3/+3
| |/ / |/| |
* | | TST: fix some function name conflictsJulian Taylor2013-06-054-4/+4
* | | typoargriffing2013-06-051-1/+1
* | | Merge pull request #3387 from WarrenWeckesser/norm-axisnjsmith2013-06-052-51/+209
|\ \ \
| * | | MAINT: linalg: simplify the computation of the svd-based matrix norms, and tw...Warren Weckesser2013-06-051-11/+3
| * | | STY: linalg: some PEP8 clean up.Warren Weckesser2013-06-042-36/+40
| * | | ENH: linalg: allow the 'axis' argument of linalg.norm to be a 2-tuple, in whi...Warren Weckesser2013-06-042-19/+134
| * | | DOC: linalg: Improve the docstring of the new norm function.Warren Weckesser2013-06-021-3/+4
| * | | MAINT: linalg: removed unused imports from linalg.pyWarren Weckesser2013-06-011-5/+4
| * | | ENH: linalg: Add the `axis` keyword to linalg.norm.Warren Weckesser2013-06-012-19/+66
| |/ /
* | | 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
* | BUG: Handle a version string from a custom-built mingw64.mwtoews2013-05-292-1/+2
* | BUG: The npv function in financial.py was incorrectly implemented.bebert2182013-05-292-6/+6
* | Merge pull request #3358 from leonnnn/matrix-typeerrorCharles Harris2013-05-292-2/+15
|\ \
| * | ENH: Fix SyntaxError when matrix() is called with invalid stringLeon Weber2013-05-292-2/+15