10#ifndef TLAPACK_GETRI_UXLI_HH
11#define TLAPACK_GETRI_UXLI_HH
28template <
class T, TLAPACK_SMATRIX matrix_t>
45template <TLAPACK_SMATRIX matrix_t, TLAPACK_WORKSPACE work_t>
53 const idx_t n = ncols(
A);
62 for (idx_t j = n - idx_t(1); j != idx_t(-1); j--) {
64 if (
A(j, j) == T(0))
return j + 1;
67 A(j, j) = T(1) /
A(j, j);
72 auto l21 = tlapack::slice(
A,
range(j + 1, n), j);
73 auto u12 = tlapack::slice(
A, j,
range(j + 1, n));
74 auto w = tlapack::slice(
W,
range(0, n - j - 1));
114template <TLAPACK_SMATRIX matrix_t>
124 std::vector<T>
work_;
constexpr internal::Transpose TRANSPOSE
transpose
Definition types.hpp:262
constexpr internal::NoTranspose NO_TRANS
no transpose
Definition types.hpp:260
int getri_uxli(matrix_t &A)
getri computes inverse of a general n-by-n matrix A by solving for X in the following equation
Definition getri_uxli.hpp:115
auto dotu(const vectorX_t &x, const vectorY_t &y)
Definition dotu.hpp:32
void copy(const vectorX_t &x, vectorY_t &y)
Copy vector, .
Definition copy.hpp:31
void gemv(Op trans, const alpha_t &alpha, const matrixA_t &A, const vectorX_t &x, const beta_t &beta, vectorY_t &y)
General matrix-vector multiply:
Definition gemv.hpp:57
int getri_uxli_work(matrix_t &A, work_t &work)
getri computes inverse of a general n-by-n matrix A by solving for X in the following equation Work...
Definition getri_uxli.hpp:46
#define tlapack_check(cond)
Throw an error if cond is false.
Definition exceptionHandling.hpp:98
constexpr WorkInfo getri_uxli_worksize(const matrix_t &A)
Worspace query of getri()
Definition getri_uxli.hpp:29
typename traits::real_type_traits< Types..., int >::type real_type
The common real type of the list of types.
Definition scalar_type_traits.hpp:113
Output information in the workspace query.
Definition workspace.hpp:16