11#ifndef TLAPACK_BLAS_HERK_HH
12#define TLAPACK_BLAS_HERK_HH
61 is_real<alpha_t> && is_real<beta_t>),
63 class T = type_t<matrixC_t>,
64 disable_if_allow_optblas_t<pair<matrixA_t, T>,
66 pair<alpha_t, real_type<T> >,
67 pair<beta_t, real_type<T> > > = 0>
81 const idx_t n = (
trans == Op::NoTrans) ? nrows(
A) : ncols(
A);
82 const idx_t
k = (
trans == Op::NoTrans) ? ncols(
A) : nrows(
A);
86 uplo != Uplo::General);
91 if (
trans == Op::NoTrans) {
92 if (
uplo != Uplo::Lower) {
94 for (idx_t j = 0; j < n; ++j) {
95 for (idx_t i = 0; i < j; ++i)
99 for (idx_t
l = 0;
l <
k; ++
l) {
103 for (idx_t i = 0; i < j; ++i)
111 for (idx_t j = 0; j < n; ++j) {
113 for (idx_t i = j + 1; i < n; ++i)
116 for (idx_t
l = 0;
l <
k; ++
l) {
122 for (idx_t i = j + 1; i < n; ++i)
129 if (
uplo != Uplo::Lower) {
131 for (idx_t j = 0; j < n; ++j) {
132 for (idx_t i = 0; i < j; ++i) {
134 for (idx_t
l = 0;
l <
k; ++
l)
139 for (idx_t
l = 0;
l <
k; ++
l)
146 for (idx_t j = 0; j < n; ++j) {
147 for (idx_t i = j + 1; i < n; ++i) {
149 for (idx_t
l = 0;
l <
k; ++
l)
154 for (idx_t
l = 0;
l <
k; ++
l)
162 if (
uplo == Uplo::General) {
163 for (idx_t j = 0; j < n; ++j) {
164 for (idx_t i = j + 1; i < n; ++i)
170#ifdef TLAPACK_USE_LAPACKPP
189 class T = type_t<matrixC_t>,
190 enable_if_allow_optblas_t<pair<matrixA_t, T>,
192 pair<alpha_t, real_type<T> >,
193 pair<beta_t, real_type<T> > > = 0>
202 auto A_ = legacy_matrix(A);
203 auto C_ = legacy_matrix(C);
206 constexpr Layout L = layout<matrixC_t>;
207 const auto& n = C_.n;
208 const auto& k = (trans == Op::NoTrans) ? A_.n : A_.m;
211 if (alpha == alpha_t(0))
213 "Infs and NaNs in A will not propagate to C on output");
214 if (beta == beta_t(0) && !is_same_v<beta_t, StrongZero>)
217 "Infs and NaNs in C on input will not propagate to C on output");
219 return ::blas::herk((::blas::Layout)L, (::blas::Uplo)uplo,
220 (::blas::Op)trans, n, k, alpha, A_.ptr, A_.ldim,
221 (real_type<T>)beta, C_.ptr, C_.ldim);
Op
Definition types.hpp:227
Uplo
Definition types.hpp:50
constexpr real_type< T > real(const T &x) noexcept
Extends std::real() to real datatypes.
Definition utils.hpp:71
constexpr T conj(const T &x) noexcept
Extends std::conj() to real datatypes.
Definition utils.hpp:100
constexpr real_type< T > imag(const T &x) noexcept
Extends std::imag() to real datatypes.
Definition utils.hpp:86
#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
#define TLAPACK_REAL
Macro for tlapack::concepts::Real compatible with C++17.
Definition concepts.hpp:918
void herk(Uplo uplo, Op trans, const alpha_t &alpha, const matrixA_t &A, const beta_t &beta, matrixC_t &C)
Hermitian rank-k update:
Definition herk.hpp:68
#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