11#ifndef TLAPACK_LEGACY_HER_HH
12#define TLAPACK_LEGACY_HER_HH
63 template <
typename TA,
typename TX>
73 using internal::create_matrix;
78 layout != Layout::RowMajor);
88 if (
layout == Layout::RowMajor) {
89 uplo = (
uplo == Uplo::Lower ? Uplo::Upper : Uplo::Lower);
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 her(Layout layout, Uplo uplo, idx_t n, real_type< TA, TX > alpha, TX const *x, int_t incx, TA *A, idx_t lda)
Hermitian matrix rank-1 update:
Definition her.hpp:64
#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