11#ifndef TLAPACK_BLAS_HER2_HH
12#define TLAPACK_BLAS_HER2_HH
45 class T = type_t<matrixA_t>,
46 disable_if_allow_optblas_t<pair<alpha_t, T>,
49 pair<vectorY_t, T> > = 0>
62 const idx_t n = nrows(
A);
70 if (
uplo == Uplo::Upper) {
71 for (idx_t j = 0; j < n; ++j) {
74 for (idx_t i = 0; i < j; ++i)
82 for (idx_t j = 0; j < n; ++j) {
88 for (idx_t i = j + 1; i < n; ++i)
94#ifdef TLAPACK_USE_LAPACKPP
100 class T = type_t<matrixA_t>,
101 enable_if_allow_optblas_t<pair<alpha_t, T>,
104 pair<vectorY_t, T> > = 0>
112 auto A_ = legacy_matrix(A);
113 auto x_ = legacy_vector(x);
114 auto y_ = legacy_vector(y);
117 constexpr Layout L = layout<matrixA_t>;
118 const auto& n = A_.n;
120 return ::blas::her2((::blas::Layout)L, (::blas::Uplo)uplo, n, alpha, x_.ptr,
121 x_.inc, y_.ptr, y_.inc, A_.ptr, A_.ldim);
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_VECTOR
Macro for tlapack::concepts::LegacyVector compatible with C++17.
Definition concepts.hpp:954
#define TLAPACK_LEGACY_MATRIX
Macro for tlapack::concepts::LegacyMatrix compatible with C++17.
Definition concepts.hpp:951
#define TLAPACK_VECTOR
Macro for tlapack::concepts::Vector compatible with C++17.
Definition concepts.hpp:906
#define TLAPACK_MATRIX
Macro for tlapack::concepts::Matrix compatible with C++17.
Definition concepts.hpp:896
void her2(Uplo uplo, const alpha_t &alpha, const vectorX_t &x, const vectorY_t &y, matrixA_t &A)
Hermitian matrix rank-2 update:
Definition her2.hpp:50
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
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