For reasons I described earlier, I need to use LAPACKs dgesvd and zgesvd methods in Python instead of the ones wrapped in numpy.
Someone pointed out, that I could use f2py, to create my own python package. The trouble is, that, dgesdd in lapack calls a bunch of other methods like dbdsqr, dgelqf and also some BLAS routines, and I don't know, how I should proceed about that.
Can anyone point out, what would be the propper way of creating a dgesvd python module without having to recompile the whole lapack library ?
Thanks a lot Mischa