| 25 | |
| 26 | template <typename T> |
| 27 | inline void AInvBt (ngbla::FlatMatrix<T> a, ngbla::FlatMatrix<T> b) |
| 28 | { |
| 29 | // static Timer t("LapackAinvBt"); |
| 30 | // RegionTimer reg(t); |
| 31 | LapackAInvBt (a, b, 'N'); |
| 32 | } |
| 33 | |
| 34 | // b <-- b A^{-1} |
| 35 | inline void AInvBt (ngbla::FlatMatrix<double> a, ngbla::FlatMatrix<double> b) |
no test coverage detected