11#ifndef TLAPACK_LEGACY_GER_HH
12#define TLAPACK_LEGACY_GER_HH
67 template <
typename TA,
typename TX,
typename TY>
79 using internal::create_matrix;
80 using internal::create_rowmajor_matrix;
85 layout != Layout::RowMajor);
95 if (
layout == Layout::ColMajor) {
99 tlapack_expr_with_2vectors(
x_,
TX, m,
x,
incx,
y_,
TY, n,
y,
incy,
106 tlapack_expr_with_2vectors(
x_,
TX, m,
x,
incx,
y_,
TY, n,
y,
incy,
constexpr Layout layout
Layout of a matrix or vector.
Definition arrayTraits.hpp:232
Layout
Definition types.hpp:29
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
void ger(Layout layout, idx_t m, 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)
General matrix rank-1 update:
Definition ger.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