11#ifndef TLAPACK_LEGACY_SYMV_HH
12#define TLAPACK_LEGACY_SYMV_HH
72 template <
typename TA,
typename TX,
typename TY>
85 using internal::create_matrix;
90 layout != Layout::RowMajor);
101 if (
layout == Layout::RowMajor) {
102 uplo = (
uplo == Uplo::Lower ? Uplo::Upper : Uplo::Lower);
113 else for (idx_t i = 0; i < n; ++i)
y_[i] *=
beta);
117 x_,
TX, n,
x,
incx,
y_,
TY, n,
y,
incy,
constexpr Layout layout
Layout of a matrix or vector.
Definition arrayTraits.hpp:232
Uplo
Definition types.hpp:50
Layout
Definition types.hpp:29
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
void symv(Layout layout, Uplo uplo, 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)
Symmetric matrix-vector multiply:
Definition symv.hpp:73
#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