Returns whether the matrix could be represented in a dense form
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(dbcsr_type), | intent(in) | :: | matrix |
matrix |
||
real(kind=real_8), | intent(in) | :: | occ_thresh |
use the mutable and not append-only working structures
FUNCTION dbcsr_may_be_dense(matrix, occ_thresh) RESULT(may_be_dense) !! Returns whether the matrix could be represented in a dense form TYPE(dbcsr_type), INTENT(IN) :: matrix !! matrix REAL(real_8), INTENT(in) :: occ_thresh LOGICAL :: may_be_dense !! use the mutable and not append-only working structures REAL(real_8) :: occ ! --------------------------------------------------------------------------- occ = dbcsr_get_occupation(matrix) may_be_dense = .NOT. (occ .LT. occ_thresh) ! make sure every proc sees the same CALL mp_sum(may_be_dense, dbcsr_mp_group(dbcsr_distribution_mp(matrix%dist))) END FUNCTION dbcsr_may_be_dense