FastLapackInterface
separates workspace allocation and actual
running for some Lapack algorithms:
The API follows the Base julia LAPACK
definitions and should thus be very transparent.
There is also a unified interface which returns the right Workspace
to be used with a given
LAPACK
function.
e.g.
A = [1.2 2.3
6.2 3.3]
ws = Workspace(LAPACK.getrf!, A)
decompose!(ws, A)
A similar API exists for the above decompositions. For more information and examples please see the documentation.