11#ifndef TLAPACK_POTF2_HH
12#define TLAPACK_POTF2_HH
57 disable_if_allow_optblas_t<matrix_t> = 0>
68 const idx_t n = nrows(
A);
77 if (
uplo == Uplo::Upper) {
79 for (idx_t j = 0; j < n; ++j) {
91 "The leading minor of order j+1 is not positive definite,"
92 " and the factorization could not be completed.");
102 for (idx_t i = 0; i < j; ++i)
105 for (idx_t i = 0; i < j; ++i)
115 for (idx_t j = 0; j < n; ++j) {
127 "The leading minor of order j+1 is not positive definite,"
128 " and the factorization could not be completed.");
138 for (idx_t i = 0; i < j; ++i)
141 for (idx_t i = 0; i < j; ++i)
153#ifdef TLAPACK_USE_LAPACKPP
157 enable_if_allow_optblas_t<matrix_t> = 0>
158int potf2(uplo_t uplo, matrix_t& A)
161 auto A_ = legacy_matrix(A);
164 const auto& n = A_.n;
166 if constexpr (layout<matrix_t> == Layout::ColMajor) {
167 return ::lapack::potf2((::blas::Uplo)(
Uplo)uplo, n, A_.ptr, A_.ldim);
170 return ::lapack::potf2(
171 ((uplo == Uplo::Lower) ? ::blas::Uplo::Upper : ::blas::
Uplo::
Lower),
constexpr internal::Transpose TRANSPOSE
transpose
Definition types.hpp:262
@ Lower
0 <= i <= m, 0 <= j <= i.
constexpr internal::NoTranspose NO_TRANS
no transpose
Definition types.hpp:260
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
#define TLAPACK_UPLO
Macro for tlapack::concepts::Uplo compatible with C++17.
Definition concepts.hpp:942
#define TLAPACK_SMATRIX
Macro for tlapack::concepts::SliceableMatrix compatible with C++17.
Definition concepts.hpp:899
#define TLAPACK_LEGACY_MATRIX
Macro for tlapack::concepts::LegacyMatrix compatible with C++17.
Definition concepts.hpp:951
auto dot(const vectorX_t &x, const vectorY_t &y)
Definition dot.hpp:32
void scal(const alpha_t &alpha, vector_t &x)
Scale vector by constant, .
Definition scal.hpp:30
void gemv(Op trans, const alpha_t &alpha, const matrixA_t &A, const vectorX_t &x, const beta_t &beta, vectorY_t &y)
General matrix-vector multiply:
Definition gemv.hpp:57
int potf2(uplo_t uplo, matrix_t &A)
Computes the Cholesky factorization of a Hermitian positive definite matrix A using a level-2 algorit...
Definition potf2.hpp:58
#define tlapack_check(cond)
Throw an error if cond is false.
Definition exceptionHandling.hpp:98
#define tlapack_error(info, detailedInfo)
Error handler.
Definition exceptionHandling.hpp:142
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