11#ifndef TLAPACK_POTRF_HH
12#define TLAPACK_POTRF_HH
77template <TLAPACK_UPLO uplo_t, TLAPACK_MATRIX matrix_t>
84 opts.variant == PotrfVariant::Recursive ||
85 opts.variant == PotrfVariant::Level2 ||
86 opts.variant == PotrfVariant::RightLooking);
89 if (opts.variant == PotrfVariant::Blocked)
91 else if (opts.variant == PotrfVariant::Recursive)
92 return potrf2(uplo, A, opts);
93 else if (opts.variant == PotrfVariant::Level2)
94 return potf2(uplo, A);
int potrf2(uplo_t uplo, matrix_t &A, const EcOpts &opts={})
Computes the Cholesky factorization of a Hermitian positive definite matrix A using the recursive alg...
Definition potrf2.hpp:73
int potrf_rl(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_right_looking.hpp:61
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
int potrf(uplo_t uplo, matrix_t &A, const PotrfOpts &opts={})
Computes the Cholesky factorization of a Hermitian positive definite matrix A.
Definition potrf.hpp:78
Computes the Cholesky factorization of a Hermitian positive definite matrix A using a level-2 algorit...
PotrfVariant
Variants of the algorithm to compute the Cholesky factorization.
Definition potrf.hpp:23
Computes the Cholesky factorization of a Hermitian positive definite matrix A using the recursive alg...
Computes the Cholesky factorization of a Hermitian positive definite matrix A using a blocked algorit...
Computes the Cholesky factorization of a Hermitian positive definite matrix A using the right-looking...
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
Options for error checking.
Definition exceptionHandling.hpp:76
Options struct for potrf()
Definition potrf.hpp:31