Charles Bouillaguet
Charles Bouillaguet
malb said: "Ironically, M4RI does not have an implementation of asymptotically fast and in-place matrix inversion. However, once TRTRI is implemented, we can implement this easily by computing PLE +...
I think that inversion of triangular matrix is implemented (with reduction to multiplication).
@malb said: "some code might be inlined reside in headers, so an application might need the SIMD flags?"
My own opinion: compare with the GMP. You don't have to use fancy compile flags, you just have to do `-lgmp` at link-time. Ideally, M4RI should be the same. We...
[matops.txt](https://github.com/malb/m4ri/files/7186389/matops.txt) The attached file matops.c contains a variety of matrix multiplication routines by Emmanuel Thomé. Many of these routines do considerably better than we do. The file says LGPL but...
We should also look at CADO-NFS (linear algebra step), where there might be more up-to-date code.
Dear all, I have been investigating the same issues (but I am a C programmer). In any case, you should probably take a look at https://github.com/cbouilla/minpack-1.1 Short versions: using LAPACK...
> Is it okay (in terms of licenses) if we take a peek at your C routines, and port the changes directly into the Fortran version maintained here? Sure, go...