dbcsr_reserve_blocks Subroutine

public subroutine dbcsr_reserve_blocks(matrix, rows, cols, blk_pointers)

Arguments

Type IntentOptional Attributes Name
type(dbcsr_type), intent(inout) :: matrix
integer, intent(in), DIMENSION(:) :: rows
integer, intent(in), DIMENSION(:) :: cols
integer, intent(in), optional, DIMENSION(:) :: blk_pointers

Source Code

   SUBROUTINE dbcsr_reserve_blocks(matrix, rows, cols, blk_pointers)
      TYPE(dbcsr_type), INTENT(INOUT)                    :: matrix
      INTEGER, DIMENSION(:), INTENT(IN)                  :: rows, cols
      INTEGER, DIMENSION(:), INTENT(IN), OPTIONAL        :: blk_pointers

      CALL dbcsr_reserve_blocks_prv(matrix%prv, rows, cols, blk_pointers)
   END SUBROUTINE dbcsr_reserve_blocks