10#ifndef TLAPACK_LEGACY_POTRS_HH
11#define TLAPACK_LEGACY_POTRS_HH
24 template <
class uplo_t,
typename T>
33 using internal::create_matrix;
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
int potrs(uplo_t uplo, idx_t n, idx_t nrhs, const T *A, idx_t lda, T *B, idx_t ldb)
Apply the Cholesky factorization to solve a linear system.
Definition potrs.hpp:25
Apply the Cholesky factorization to solve a linear system.
Sort the numbers in D in increasing order (if ID = 'I') or in decreasing order (if ID = 'D' ).
Definition arrayTraits.hpp:15
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
@ Upper
0 <= i <= j, 0 <= j <= n.
@ Lower
0 <= i <= m, 0 <= j <= i.