summaryrefslogtreecommitdiff
path: root/numpy/linalg/lapack_lite/f2c_lapack.c
Commit message (Collapse)AuthorAgeFilesLines
* Revert "MAINT: fix typo in f2c_lapack.c"Rohit Goswami2022-10-161-1/+1
| | | | This reverts commit 5d6b8b0d5658418919fbaef0e843655262291dbc.
* MAINT: fix typo in f2c_lapack.cIkko Ashimine2022-10-161-1/+1
| | | inifinity -> infinity
* GEN: regenerate lapack_litePauli Virtanen2020-01-141-3/+3
|
* BUG: Align type definition with generated lapack (#10477)xoviat2018-02-161-8/+0
| | | | | | | | | | | | | | | | | | | | | | * Align type definitions * Regenerate sources * Replace BytesIO * Consolidate executables * Create directories on PY2 * Revise step name * Consolidate directory creation * Don't catch makedirs errors * Revise step name * Add header source
* ENH: Rebuild all of lapack_lite from 3.2.2Eric Wieser2017-03-251-51/+913
|
* MAINT: Split up the lapack_lite files more sensiblyEric Wieser2017-03-021-0/+797
Also uses this splitting as an excuse to ditch the _lite suffix, in favor of a f2c_ prefix for all generated files. Before: * `zlapack_lite.c` - Functions for the `complex128` type. * `dlapack_lite.c` - Every other lapack function After: * `f2c_z_lapack.c` - Functions for the `complex128` type. * `f2c_c_lapack.c` - Functions for the `complex64` type. * `f2c_d_lapack.c` - Functions for the `float64` type. * `f2c_s_lapack.c` - Functions for the `float32` type. * `f2c_lapack.c` - Every other lapack function