11#ifndef TLAPACK_BLAS_SYMV_HH
12#define TLAPACK_BLAS_SYMV_HH
45 class T = type_t<vectorY_t>,
46 disable_if_allow_optblas_t<pair<matrixA_t, T>,
49 pair<beta_t, T> > = 0>
63 const idx_t n = nrows(
A);
72 for (idx_t i = 0; i < n; ++i)
75 if (
uplo == Uplo::Upper) {
78 for (idx_t j = 0; j < n; ++j) {
81 for (idx_t i = 0; i < j; ++i) {
83 sum +=
A(i, j) *
x[i];
91 for (idx_t j = 0; j < n; ++j) {
94 for (idx_t i = j + 1; i < n; ++i) {
96 sum +=
A(i, j) *
x[i];
103#ifdef TLAPACK_USE_LAPACKPP
110 class T = type_t<vectorY_t>,
111 enable_if_allow_optblas_t<pair<matrixA_t, T>,
114 pair<beta_t, T> > = 0>
123 auto A_ = legacy_matrix(A);
124 auto x_ = legacy_vector(x);
125 auto y_ = legacy_vector(y);
128 constexpr Layout L = layout<matrixA_t>;
129 const auto& n = A_.n;
132 if (alpha == alpha_t(0))
134 -2,
"Infs and NaNs in A or x will not propagate to y on output");
135 if (beta == beta_t(0) && !is_same_v<beta_t, StrongZero>)
138 "Infs and NaNs in y on input will not propagate to y on output");
140 return ::blas::symv((::blas::Layout)L, (::blas::Uplo)uplo, n, alpha, A_.ptr,
141 A_.ldim, x_.ptr, x_.inc, (T)beta, y_.ptr, y_.inc);
Uplo
Definition types.hpp:50
#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 symv(Uplo uplo, const alpha_t &alpha, const matrixA_t &A, const vectorX_t &x, const beta_t &beta, vectorY_t &y)
Symmetric matrix-vector multiply:
Definition symv.hpp:50
#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::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