11#ifndef TLAPACK_LEGACY_SYR2_HH
12#define TLAPACK_LEGACY_SYR2_HH
69 template <
typename TA,
typename TX,
typename TY>
81 using internal::create_matrix;
86 layout != Layout::RowMajor);
97 if (
layout == Layout::RowMajor) {
98 uplo = (
uplo == Uplo::Lower ? Uplo::Upper : Uplo::Lower);
104 tlapack_expr_with_2vectors(
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 syr2(Layout layout, Uplo uplo, idx_t n, scalar_type< TA, TX, TY > alpha, TX const *x, int_t incx, TY const *y, int_t incy, TA *A, idx_t lda)
Symmetric matrix rank-2 update:
Definition syr2.hpp:70
#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