![]() |
(git:b77b4be)
|
Functions/Subroutines | |
subroutine, public | cp_cfm_pzpotrf_dlaf (uplo, n, a, ia, ja, desca, info) |
Cholesky factorization using DLA-Future. | |
subroutine, public | cp_cfm_diag_dlaf (matrix, eigenvectors, eigenvalues) |
DLA-Future eigensolver for complex Hermitian matrices. | |
subroutine, public | cp_cfm_diag_gen_dlaf (amatrix, bmatrix, eigenvectors, eigenvalues) |
DLA-Future generalized eigensolver for complex Hermitian matrices. | |
subroutine, public cp_cfm_dlaf_api::cp_cfm_pzpotrf_dlaf | ( | character, intent(in) | uplo, |
integer, intent(in) | n, | ||
complex(kind=dp), dimension(:, :), target | a, | ||
integer, intent(in) | ia, | ||
integer, intent(in) | ja, | ||
integer, dimension(9) | desca, | ||
integer, target | info | ||
) |
Cholesky factorization using DLA-Future.
uplo | ... |
n | Matrix size |
a | Local matrix |
ia | Row index of first row (has to be 1) |
ja | Col index of first column (has to be 1) |
desca | ScaLAPACK matrix descriptor |
info | 0 if factorization completed normally |
Definition at line 42 of file cp_cfm_dlaf_api.F.
subroutine, public cp_cfm_dlaf_api::cp_cfm_diag_dlaf | ( | type(cp_cfm_type), intent(in) | matrix, |
type(cp_cfm_type), intent(in) | eigenvectors, | ||
real(kind=dp), dimension(:), intent(out) | eigenvalues | ||
) |
DLA-Future eigensolver for complex Hermitian matrices.
matrix | ... |
eigenvectors | ... |
eigenvalues | ... |
Definition at line 77 of file cp_cfm_dlaf_api.F.
subroutine, public cp_cfm_dlaf_api::cp_cfm_diag_gen_dlaf | ( | type(cp_cfm_type), intent(in) | amatrix, |
type(cp_cfm_type), intent(in) | bmatrix, | ||
type(cp_cfm_type), intent(in) | eigenvectors, | ||
real(kind=dp), dimension(:), intent(out) | eigenvalues | ||
) |
DLA-Future generalized eigensolver for complex Hermitian matrices.
amatrix | ... |
bmatrix | ... |
eigenvectors | ... |
eigenvalues | ... |
Definition at line 115 of file cp_cfm_dlaf_api.F.