11#ifndef TLAPACK_LEGACY_GEMV_HH
12#define TLAPACK_LEGACY_GEMV_HH
86 template <
typename TA,
typename TX,
typename TY>
100 using internal::create_matrix;
105 layout != Layout::RowMajor);
107 trans != Op::ConjTrans);
115 if (m == 0 || n == 0 ||
121 if (
layout == Layout::RowMajor) {
124 if (
trans == Op::NoTrans)
133 const idx_t
lenx = ((
trans == Op::NoTrans) ? n : m);
134 const idx_t
leny = ((
trans == Op::NoTrans) ? m : n);
139 for (idx_t i = 0; i <
lenx; ++i)
141 for (idx_t i = 0; i <
leny; ++i)
153 else for (idx_t i = 0; i <
leny; ++i)
y_[i] *=
158 x_,
TX,
lenx,
x,
incx,
y_,
TY,
leny,
y,
incy,
168 for (idx_t i = 0; i <
lenx; ++i)
170 for (idx_t i = 0; i <
leny; ++i)
constexpr Layout layout
Layout of a matrix or vector.
Definition arrayTraits.hpp:232
Op
Definition types.hpp:227
Layout
Definition types.hpp:29
constexpr T conj(const T &x) noexcept
Extends std::conj() to real datatypes.
Definition utils.hpp:100
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
void gemv(Layout layout, Op trans, idx_t m, idx_t n, scalar_type< TA, TX, TY > alpha, TA const *A, idx_t lda, TX const *x, int_t incx, scalar_type< TA, TX, TY > beta, TY *y, int_t incy)
General matrix-vector multiply:
Definition gemv.hpp:87
#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
#define tlapack_expr_with_2vectors(x, TX, n, X, incx, y, TY, m, Y, incy, expr)
Creates two vector objects and executes an expression with them.
Definition utils.hpp:33
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