11#ifndef TLAPACK_BLAS_SYR2K_HH
12#define TLAPACK_BLAS_SYR2K_HH
58 class T = type_t<matrixC_t>,
59 disable_if_allow_optblas_t<pair<matrixA_t, T>,
63 pair<beta_t, T> > = 0>
78 const idx_t n = (
trans == Op::NoTrans) ? nrows(
A) : ncols(
A);
79 const idx_t
k = (
trans == Op::NoTrans) ? ncols(
A) : nrows(
A);
83 uplo != Uplo::General);
89 if (
trans == Op::NoTrans) {
90 if (
uplo != Uplo::Lower) {
92 for (idx_t j = 0; j < n; ++j) {
93 for (idx_t i = 0; i <= j; ++i)
96 for (idx_t
l = 0;
l <
k; ++
l) {
99 for (idx_t i = 0; i <= j; ++i)
105 for (idx_t j = 0; j < n; ++j) {
106 for (idx_t i = j; i < n; ++i)
109 for (idx_t
l = 0;
l <
k; ++
l) {
112 for (idx_t i = j; i < n; ++i)
121 if (
uplo != Uplo::Lower) {
123 for (idx_t j = 0; j < n; ++j) {
124 for (idx_t i = 0; i <= j; ++i) {
127 for (idx_t
l = 0;
l <
k; ++
l) {
136 for (idx_t j = 0; j < n; ++j) {
137 for (idx_t i = j; i < n; ++i) {
140 for (idx_t
l = 0;
l <
k; ++
l) {
150 if (
uplo == Uplo::General) {
151 for (idx_t j = 0; j < n; ++j) {
152 for (idx_t i = j + 1; i < n; ++i)
158#ifdef TLAPACK_USE_LAPACKPP
178 class T = type_t<matrixC_t>,
179 enable_if_allow_optblas_t<pair<matrixA_t, T>,
183 pair<beta_t, T> > = 0>
193 auto A_ = legacy_matrix(A);
194 auto B_ = legacy_matrix(B);
195 auto C_ = legacy_matrix(C);
198 constexpr Layout L = layout<matrixC_t>;
199 const auto& n = C_.n;
200 const auto& k = (trans == Op::NoTrans) ? A_.n : A_.m;
203 if (alpha == alpha_t(0))
205 -3,
"Infs and NaNs in A or B will not propagate to C on output");
206 if (beta == beta_t(0) && !is_same_v<beta_t, StrongZero>)
209 "Infs and NaNs in C on input will not propagate to C on output");
211 return ::blas::syr2k((::blas::Layout)L, (::blas::Uplo)uplo,
212 (::blas::Op)trans, n, k, alpha, A_.ptr, A_.ldim,
213 B_.ptr, B_.ldim, (T)beta, C_.ptr, C_.ldim);
Op
Definition types.hpp:227
Uplo
Definition types.hpp:50
#define TLAPACK_SCALAR
Macro for tlapack::concepts::Scalar compatible with C++17.
Definition concepts.hpp:915
#define TLAPACK_LEGACY_MATRIX
Macro for tlapack::concepts::LegacyMatrix compatible with C++17.
Definition concepts.hpp:951
#define TLAPACK_MATRIX
Macro for tlapack::concepts::Matrix compatible with C++17.
Definition concepts.hpp:896
void syr2k(Uplo uplo, Op trans, const alpha_t &alpha, const matrixA_t &A, const matrixB_t &B, const beta_t &beta, matrixC_t &C)
Symmetric rank-k update:
Definition syr2k.hpp:64
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
#define tlapack_warning(info, detailedInfo)
Warning handler.
Definition exceptionHandling.hpp:156
Concept for types that represent tlapack::Op.
Concept for types that represent tlapack::Uplo.
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
Strong zero type.
Definition StrongZero.hpp:43