11#ifndef TLAPACK_LEGACY_SYRK_HH
12#define TLAPACK_LEGACY_SYRK_HH
88 template <
typename TA,
typename TC>
101 using internal::create_matrix;
144 for (idx_t j = 0; j < n; ++j)
145 for (idx_t i = 0; i < n; ++i)
149 for (idx_t j = 0; j < n; ++j)
150 for (idx_t i = 0; i < n; ++i)
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
void syrk(Layout layout, Uplo uplo, Op trans, idx_t n, idx_t k, scalar_type< TA, TC > alpha, TA const *A, idx_t lda, scalar_type< TA, TC > beta, TC *C, idx_t ldc)
Symmetric rank-k update:
Definition syrk.hpp:89
Sort the numbers in D in increasing order (if ID = 'I') or in decreasing order (if ID = 'D' ).
Definition arrayTraits.hpp:15
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
Op
Definition types.hpp:227
@ ConjTrans
conjugate transpose
Uplo
Definition types.hpp:50
@ General
0 <= i <= m, 0 <= j <= n.
@ Upper
0 <= i <= j, 0 <= j <= n.
@ Lower
0 <= i <= m, 0 <= j <= i.
constexpr Layout layout
Layout of a matrix or vector.
Definition arrayTraits.hpp:232
Layout
Definition types.hpp:29
@ ColMajor
Column-major layout.
@ RowMajor
Row-major layout.