11#ifndef TLAPACK_BLAS_TRMV_HH
12#define TLAPACK_BLAS_TRMV_HH
58 class T = type_t<vectorX_t>,
59 disable_if_allow_optblas_t<pair<matrixA_t, T>, pair<vectorX_t, T> > = 0>
68 const idx_t n = nrows(
A);
79 if (
trans == Op::NoTrans) {
81 if (
uplo == Uplo::Upper) {
83 for (idx_t j = 0; j < n; ++j) {
86 for (idx_t i = 0; i < j; ++i)
87 x[i] +=
x[j] *
A(i, j);
93 for (idx_t j = n - 1; j != idx_t(-1); --j) {
95 for (idx_t i = n - 1; i >= j + 1; --i)
96 x[i] +=
x[j] *
A(i, j);
101 else if (
trans == Op::Conj) {
103 if (
uplo == Uplo::Upper) {
105 for (idx_t j = 0; j < n; ++j) {
108 for (idx_t i = 0; i < j; ++i)
115 for (idx_t j = n - 1; j != idx_t(-1); --j) {
117 for (idx_t i = n - 1; i >= j + 1; --i)
123 else if (
trans == Op::Trans) {
128 if (
uplo == Uplo::Upper) {
130 for (idx_t j = n - 1; j != idx_t(-1); --j) {
133 for (idx_t i = j - 1; i != idx_t(-1); --i)
134 tmp +=
A(i, j) *
x[i];
140 for (idx_t j = 0; j < n; ++j) {
143 for (idx_t i = j + 1; i < n; ++i)
144 tmp +=
A(i, j) *
x[i];
155 if (
uplo == Uplo::Upper) {
157 for (idx_t j = n - 1; j != idx_t(-1); --j) {
160 for (idx_t i = j - 1; i != idx_t(-1); --i)
167 for (idx_t j = 0; j < n; ++j) {
170 for (idx_t i = j + 1; i < n; ++i)
178#ifdef TLAPACK_USE_LAPACKPP
183 class T = type_t<vectorX_t>,
184 enable_if_allow_optblas_t<pair<matrixA_t, T>, pair<vectorX_t, T> > = 0>
185void trmv(
Uplo uplo,
Op trans,
Diag diag,
const matrixA_t& A, vectorX_t& x)
188 auto A_ = legacy_matrix(A);
189 auto x_ = legacy_vector(x);
192 constexpr Layout L = layout<matrixA_t>;
193 const auto& n = A_.n;
195 if (trans != Op::Conj)
196 ::blas::trmv((::blas::Layout)L, (::blas::Uplo)uplo, (::blas::Op)trans,
197 (::blas::Diag)diag, n, A_.ptr, A_.ldim, x_.ptr, x_.inc);
200 ::blas::trmv((::blas::Layout)L, (::blas::Uplo)uplo, ::blas::Op::NoTrans,
201 (::blas::Diag)diag, n, A_.ptr, A_.ldim, x_.ptr, x_.inc);
Diag
Definition types.hpp:197
Op
Definition types.hpp:227
Uplo
Definition types.hpp:50
constexpr T conj(const T &x) noexcept
Extends std::conj() to real datatypes.
Definition utils.hpp:100
#define TLAPACK_LEGACY_VECTOR
Macro for tlapack::concepts::LegacyVector compatible with C++17.
Definition concepts.hpp:954
#define TLAPACK_LEGACY_MATRIX
Macro for tlapack::concepts::LegacyMatrix compatible with C++17.
Definition concepts.hpp:951
#define TLAPACK_VECTOR
Macro for tlapack::concepts::Vector compatible with C++17.
Definition concepts.hpp:906
#define TLAPACK_MATRIX
Macro for tlapack::concepts::Matrix compatible with C++17.
Definition concepts.hpp:896
constexpr auto diag(T &A, int diagIdx=0) noexcept
Get the Diagonal of an Eigen Matrix.
Definition eigen.hpp:576
void conjugate(vector_t &x)
Conjugates a vector.
Definition conjugate.hpp:24
void trmv(Uplo uplo, Op trans, Diag diag, const matrixA_t &A, vectorX_t &x)
Triangular matrix-vector multiply:
Definition trmv.hpp:60
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
Concept for types that represent tlapack::Diag.
Concept for types that represent tlapack::Op.
Concept for types that represent tlapack::Uplo.
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