11#ifndef TLAPACK_POTRF_BLOCKED_HH
12#define TLAPACK_POTRF_BLOCKED_HH
65template <TLAPACK_UPLO uplo_t, TLAPACK_SMATRIX matrix_t>
75 const idx_t n = nrows(
A);
76 const idx_t nb =
opts.nb;
91 if (
uplo == Uplo::Upper) {
92 for (idx_t j = 0; j < n; j += nb) {
93 idx_t
jb = min(nb, n - j);
105 "The leading minor of the reported order is not "
107 " and the factorization could not be completed.");
124 for (idx_t j = 0; j < n; j += nb) {
125 idx_t
jb = min(nb, n - j);
137 "The leading minor of the reported order is not "
139 " and the factorization could not be completed.");
162 disable_if_allow_optblas_t<matrix_t> = 0>
168#ifdef TLAPACK_USE_LAPACKPP
172 enable_if_allow_optblas_t<matrix_t> = 0>
176 auto A_ = legacy_matrix(A);
179 const auto& n = A_.n;
181 if constexpr (layout<matrix_t> == Layout::ColMajor) {
182 return ::lapack::potrf((::blas::Uplo)(
Uplo)uplo, n, A_.ptr, A_.ldim);
185 return ::lapack::potrf(
186 ((uplo == Uplo::Lower) ? ::blas::Uplo::Upper : ::blas::
Uplo::
Lower),
constexpr internal::LowerTriangle LOWER_TRIANGLE
Lower Triangle access.
Definition types.hpp:188
constexpr internal::UpperTriangle UPPER_TRIANGLE
Upper Triangle access.
Definition types.hpp:186
constexpr internal::RightSide RIGHT_SIDE
right side
Definition types.hpp:296
constexpr internal::NonUnitDiagonal NON_UNIT_DIAG
The main diagonal is not assumed to consist of 1's.
Definition types.hpp:220
constexpr internal::ConjTranspose CONJ_TRANS
conjugate transpose
Definition types.hpp:264
@ Lower
0 <= i <= m, 0 <= j <= i.
constexpr internal::NoTranspose NO_TRANS
no transpose
Definition types.hpp:260
constexpr internal::LeftSide LEFT_SIDE
left side
Definition types.hpp:294
#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
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
void gemm(Op transA, Op transB, const alpha_t &alpha, const matrixA_t &A, const matrixB_t &B, const beta_t &beta, matrixC_t &C)
General matrix-matrix multiply:
Definition gemm.hpp:61
void trsm(Side side, Uplo uplo, Op trans, Diag diag, const alpha_t &alpha, const matrixA_t &A, matrixB_t &B)
Solve the triangular matrix-vector equation.
Definition trsm.hpp:76
int potrf_blocked(uplo_t uplo, matrix_t &A, const BlockedCholeskyOpts &opts)
Computes the Cholesky factorization of a Hermitian positive definite matrix A using a blocked algorit...
Definition potrf_blocked.hpp:66
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.
Computes the Cholesky factorization of a Hermitian positive definite matrix A using a level-2 algorit...
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
Definition potrf_blocked.hpp:22
size_t nb
Block size.
Definition potrf_blocked.hpp:25
Options for error checking.
Definition exceptionHandling.hpp:76