Package: lapack / 3.4.1+dfsg-1+deb70u1
Metadata
Package | Version | Patches format |
---|---|---|
lapack | 3.4.1+dfsg-1+deb70u1 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
lapack_testing.patch | (download) |
lapack_testing.py |
4 2 + 2 - 0 ! |
--- |
no_blas_manpages.patch | (download) |
DOCS/Doxyfile_man |
4 2 + 2 - 0 ! |
do not ship blas manpages Those manpages are already in libblas-doc. |
lapacke_no_matgen.patch | (download) |
lapacke/src/Makefile |
2 1 + 1 - 0 ! |
do not include wrappers for matgen functions in liblapacke These functions are not shipped with liblapack. Including wrappers to them in liblapacke makes that shared library unusable. |
recursive.patch | (download) |
src/cgbtrf.f |
5 3 + 2 - 0 ! |
ensure thread safety of functions with large local variables Some LAPACK functions allocate large local variables. The default behavior of gfortran is to allocate such variables statically, instead of using the heap. This makes these functions thread unsafe. The fix consists in declaring these functions as RECURSIVE, to force heap allocation. |