10#ifndef TLAPACK_STARPU_POTF2_HH
11#define TLAPACK_STARPU_POTF2_HH
21template <
class uplo_t,
class T>
27 const idx_t n =
A.nrows();
28 const idx_t nx =
A.get_nx();
29 const idx_t ny =
A.get_ny();
32 if (nx < 1 || ny < 1 || n < 1)
return 0;
35 if (nx > 1 || ny > 1) {
42 starpu::insert_task_potrf<uplo_t, T>(
uplo,
A.tile(0, 0));
Class for representing a matrix in StarPU that is split into tiles.
Definition Matrix.hpp:134
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
Computes the Cholesky factorization of a Hermitian positive definite matrix A using a blocked 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
Task insertion functions.