| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(dbcsr_type), | intent(in) | :: | matrix | |||
| type(dbcsr_type), | intent(inout) | :: | redist | |||
| logical, | intent(in), | optional | :: | keep_sparsity | ||
| logical, | intent(in), | optional | :: | summation |
SUBROUTINE dbcsr_complete_redistribute(matrix, redist, keep_sparsity, summation) TYPE(dbcsr_type), INTENT(IN) :: matrix TYPE(dbcsr_type), INTENT(INOUT) :: redist LOGICAL, INTENT(IN), OPTIONAL :: keep_sparsity, summation CALL dbcsr_complete_redistribute_prv(matrix%prv, redist%prv, keep_sparsity, summation) END SUBROUTINE dbcsr_complete_redistribute