dbcsr_row_block_offsets Function

public function dbcsr_row_block_offsets(matrix) result(row_blk_offsets)

Arguments

Type IntentOptional Attributes Name
type(dbcsr_type), intent(in) :: matrix

Return Value integer, DIMENSION(:), POINTER, CONTIGUOUS


Source Code

   FUNCTION dbcsr_row_block_offsets(matrix) RESULT(row_blk_offsets)
      TYPE(dbcsr_type), INTENT(IN)                       :: matrix
      INTEGER, DIMENSION(:), POINTER, CONTIGUOUS         :: row_blk_offsets

      row_blk_offsets => array_data(matrix%row_blk_offset)
   END FUNCTION dbcsr_row_block_offsets