dbcsr_work_create Subroutine

public subroutine dbcsr_work_create(matrix, nblks_guess, sizedata_guess, n, work_mutable)

Arguments

Type IntentOptional Attributes Name
type(dbcsr_type), intent(inout) :: matrix
integer, intent(in), optional :: nblks_guess
integer, intent(in), optional :: sizedata_guess
integer, intent(in), optional :: n
logical, intent(in), optional :: work_mutable

Source Code

   SUBROUTINE dbcsr_work_create(matrix, nblks_guess, sizedata_guess, n, work_mutable)
      TYPE(dbcsr_type), INTENT(INOUT)                    :: matrix
      INTEGER, INTENT(IN), OPTIONAL                      :: nblks_guess, sizedata_guess, n
      LOGICAL, INTENT(in), OPTIONAL                      :: work_mutable

      CALL dbcsr_work_create_prv(matrix%prv, nblks_guess, sizedata_guess, n, work_mutable)
   END SUBROUTINE dbcsr_work_create