summaryrefslogtreecommitdiff
path: root/numpy/linalg/umath_linalg.c.src
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: fix some compiler warningsJulian Taylor2013-05-251-4/+4
| | | | | implicit declarations, wrong declarations, unused variables and fixes a comparison typo bug in multiarraymodule.c
* Fix segfaultJay Bourque2013-05-141-1/+1
| | | | outer_steps array should be size 4 since op_count can be either 2 or 4
* BLD: Fixes for building on win32 with MSVC 2008Mark Wiebe2013-05-131-1/+1
|
* BUG: linalg: make umath_linalg to track errors from all inner loop iterationsPauli Virtanen2013-04-121-51/+34
| | | | | | | This ensures that the FP invalid flag always reflects the return code from LAPACK. Fixes a bug in 63a8aef81 where umath_linalg raises a warning only if the error occurs in the last iteration of the ufunc inner loop.
* MAINT: move umath_linalg under numpy/linalg and use the same lapack_litePauli Virtanen2013-04-101-0/+4363
Also, link umath_linalg against the system BLAS/LAPACK if available.