11#ifndef TLAPACK_BLAS_SYMM_HH
12#define TLAPACK_BLAS_SYMM_HH
55 class T = type_t<matrixC_t>,
56 disable_if_allow_optblas_t<pair<matrixA_t, T>,
60 pair<beta_t, T> > = 0>
75 const idx_t m = nrows(
B);
76 const idx_t n = ncols(
B);
81 uplo != Uplo::General);
87 if (
side == Side::Left) {
88 if (
uplo != Uplo::Lower) {
90 for (idx_t j = 0; j < n; ++j) {
91 for (idx_t i = 0; i < m; ++i) {
96 for (idx_t
k = 0;
k < i; ++
k) {
107 for (idx_t j = 0; j < n; ++j) {
108 for (idx_t i = m - 1; i != idx_t(-1); --i) {
113 for (idx_t
k = i + 1;
k < m; ++
k) {
127 if (
uplo != Uplo::Lower) {
129 for (idx_t j = 0; j < n; ++j) {
132 for (idx_t i = 0; i < m; ++i)
136 for (idx_t
k = 0;
k < j; ++
k) {
138 for (idx_t i = 0; i < m; ++i)
142 for (idx_t
k = j + 1;
k < n; ++
k) {
144 for (idx_t i = 0; i < m; ++i)
151 for (idx_t j = 0; j < n; ++j) {
154 for (idx_t i = 0; i < m; ++i)
158 for (idx_t
k = 0;
k < j; ++
k) {
160 for (idx_t i = 0; i < m; ++i)
164 for (idx_t
k = j + 1;
k < n; ++
k) {
166 for (idx_t i = 0; i < m; ++i)
174#ifdef TLAPACK_USE_LAPACKPP
194 class T = type_t<matrixC_t>,
195 enable_if_allow_optblas_t<pair<matrixA_t, T>,
199 pair<beta_t, T> > = 0>
209 auto A_ = legacy_matrix(A);
210 auto B_ = legacy_matrix(B);
211 auto C_ = legacy_matrix(C);
214 constexpr Layout L = layout<matrixC_t>;
215 const auto& m = C_.m;
216 const auto& n = C_.n;
219 if (alpha == alpha_t(0))
221 -3,
"Infs and NaNs in A or B will not propagate to C on output");
222 if (beta == beta_t(0) && !is_same_v<beta_t, StrongZero>)
225 "Infs and NaNs in C on input will not propagate to C on output");
227 return ::blas::symm((::blas::Layout)L, (::blas::Side)side,
228 (::blas::Uplo)uplo, m, n, alpha, A_.ptr, A_.ldim,
229 B_.ptr, B_.ldim, (T)beta, C_.ptr, C_.ldim);
Side
Definition types.hpp:271
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 symm(Side side, Uplo uplo, const alpha_t &alpha, const matrixA_t &A, const matrixB_t &B, const beta_t &beta, matrixC_t &C)
Symmetric matrix-matrix multiply:
Definition symm.hpp:61
#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::Side.
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