11#ifndef TLAPACK_LEGACY_TRSV_HH
12#define TLAPACK_LEGACY_TRSV_HH
79 template <
typename TA,
typename TX>
90 using internal::create_matrix;
94 layout != Layout::RowMajor);
97 trans != Op::ConjTrans);
109 if (
layout == Layout::RowMajor) {
110 uplo = (
uplo == Uplo::Lower ? Uplo::Upper : Uplo::Lower);
111 if (
trans == Op::NoTrans)
121 for (idx_t i = 0; i < n; ++i)
133 for (idx_t i = 0; i < n; ++i)
constexpr Layout layout
Layout of a matrix or vector.
Definition arrayTraits.hpp:232
Diag
Definition types.hpp:197
Op
Definition types.hpp:227
Uplo
Definition types.hpp:50
Layout
Definition types.hpp:29
constexpr T conj(const T &x) noexcept
Extends std::conj() to real datatypes.
Definition utils.hpp:100
constexpr auto diag(T &A, int diagIdx=0) noexcept
Get the Diagonal of an Eigen Matrix.
Definition eigen.hpp:576
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
void trsv(Layout layout, Uplo uplo, Op trans, Diag diag, idx_t n, TA const *A, idx_t lda, TX *x, int_t incx)
Solve the triangular matrix-vector equation.
Definition trsv.hpp:80
#define tlapack_expr_with_vector(x, TX, n, X, incx, expr)
Creates a vector object and executes an expression with it.
Definition utils.hpp:68
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