Distributing Cython based extensions using LAPACK
If I have understood the question correctly, you could make use of SciPy’s Cython wrappers for BLAS and LAPACK routines. These wrappers are documented here: BLAS LAPACK As the documentation states, you are responsible for checking that any arrays that you pass to these functions are aligned correctly for the Fortran routines. You can simply … Read more