(De)Allocate vectors and arrays. More...
Data Types | |
interface | mpalloc |
allocate array More... | |
interface | mpdealloc |
deallocate array More... | |
Public Member Functions | |
subroutine | mpallocdvec (array, length, text) |
allocate (1D) double precision array | |
subroutine | mpallocfvec (array, length, text) |
allocate (1D) single precision array | |
subroutine | mpallocivec (array, length, text) |
allocate (1D) integer array | |
subroutine | mpallocfarr (array, rows, cols, text) |
allocate (2D) single precision array | |
subroutine | mpallociarr (array, rows, cols, text) |
allocate (2D) integer array | |
subroutine | mpalloclarr (array, rows, cols, text) |
allocate (2D) large integer array | |
subroutine | mpalloclist (array, length, text) |
allocate (1D) list item array | |
subroutine | mpalloccvec (array, length, text) |
allocate (1D) character array | |
subroutine | mpalloccheck (ifail, numwords, text) |
check allocation | |
subroutine | mpdeallocdvec (array) |
deallocate (1D) double precision array | |
subroutine | mpdeallocfvec (array) |
deallocate (1D) single precision array | |
subroutine | mpdeallocivec (array) |
deallocate (1D) integer array | |
subroutine | mpdeallocfarr (array) |
allocate (2D) single precision array | |
subroutine | mpdeallociarr (array) |
allocate (2D) integer array | |
subroutine | mpdealloclarr (array) |
deallocate (2D) large integer array | |
subroutine | mpdealloclist (array) |
deallocate (1D) list item array | |
subroutine | mpdealloccvec (array) |
deallocate (1D) character array | |
subroutine | mpdealloccheck (ifail, numwords) |
check deallocation | |
Public Attributes | |
INTEGER(kind=large) | numwordsalloc = 0 |
current dynamic memory allocation (words) | |
INTEGER(kind=large) | maxwordsalloc = 0 |
peak dynamic memory allocation (words) | |
INTEGER | nummpalloc = 0 |
number of dynamic allocations | |
INTEGER | nummpdealloc = 0 |
number of dynamic deallocations | |
INTEGER | printflagalloc = 0 |
print flag for dynamic allocations |
(De)Allocate vectors and arrays.
Definition at line 7 of file mpdalc.f90.
subroutine mpdalc::mpalloccheck | ( | INTEGER, intent(in) | ifail, |
INTEGER(kind=large), intent(in) | numwords, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
check allocation
Definition at line 123 of file mpdalc.f90.
subroutine mpdalc::mpalloccvec | ( | CHARACTER, dimension(:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | length, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (1D) character array
Definition at line 112 of file mpdalc.f90.
subroutine mpdalc::mpallocdvec | ( | DOUBLE PRECISION, dimension(:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | length, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (1D) double precision array
Definition at line 32 of file mpdalc.f90.
subroutine mpdalc::mpallocfarr | ( | REAL, dimension(:,:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | rows, | ||
INTEGER(kind=large), intent(in) | cols, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (2D) single precision array
Definition at line 65 of file mpdalc.f90.
subroutine mpdalc::mpallocfvec | ( | REAL, dimension(:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | length, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (1D) single precision array
Definition at line 43 of file mpdalc.f90.
subroutine mpdalc::mpallociarr | ( | INTEGER, dimension(:,:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | rows, | ||
INTEGER(kind=large), intent(in) | cols, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (2D) integer array
Definition at line 77 of file mpdalc.f90.
subroutine mpdalc::mpallocivec | ( | INTEGER, dimension(:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | length, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (1D) integer array
Definition at line 54 of file mpdalc.f90.
subroutine mpdalc::mpalloclarr | ( | INTEGER(kind=large), dimension(:,:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | rows, | ||
INTEGER(kind=large), intent(in) | cols, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (2D) large integer array
Definition at line 89 of file mpdalc.f90.
subroutine mpdalc::mpalloclist | ( | TYPE(listItem), dimension(:), intent(inout), allocatable | array, |
INTEGER(kind=large), intent(in) | length, | ||
CHARACTER (LEN=*), intent(in) | text | ||
) |
allocate (1D) list item array
Definition at line 101 of file mpdalc.f90.
subroutine mpdalc::mpdealloccheck | ( | INTEGER, intent(in) | ifail, |
INTEGER(kind=large), intent(in) | numwords | ||
) |
check deallocation
Definition at line 232 of file mpdalc.f90.
subroutine mpdalc::mpdealloccvec | ( | CHARACTER, dimension(:), intent(inout), allocatable | array | ) |
deallocate (1D) character array
Definition at line 221 of file mpdalc.f90.
subroutine mpdalc::mpdeallocdvec | ( | DOUBLE PRECISION, dimension(:), intent(inout), allocatable | array | ) |
deallocate (1D) double precision array
Definition at line 144 of file mpdalc.f90.
subroutine mpdalc::mpdeallocfarr | ( | REAL, dimension(:,:), intent(inout), allocatable | array | ) |
allocate (2D) single precision array
Definition at line 177 of file mpdalc.f90.
subroutine mpdalc::mpdeallocfvec | ( | REAL, dimension(:), intent(inout), allocatable | array | ) |
deallocate (1D) single precision array
Definition at line 155 of file mpdalc.f90.
subroutine mpdalc::mpdeallociarr | ( | INTEGER, dimension(:,:), intent(inout), allocatable | array | ) |
allocate (2D) integer array
Definition at line 188 of file mpdalc.f90.
subroutine mpdalc::mpdeallocivec | ( | INTEGER, dimension(:), intent(inout), allocatable | array | ) |
deallocate (1D) integer array
Definition at line 166 of file mpdalc.f90.
subroutine mpdalc::mpdealloclarr | ( | INTEGER(kind=large), dimension(:,:), intent(inout), allocatable | array | ) |
deallocate (2D) large integer array
Definition at line 199 of file mpdalc.f90.
subroutine mpdalc::mpdealloclist | ( | TYPE(listItem), dimension(:), intent(inout), allocatable | array | ) |
deallocate (1D) list item array
Definition at line 210 of file mpdalc.f90.
INTEGER(kind=large) mpdalc::maxwordsalloc = 0 |
peak dynamic memory allocation (words)
Definition at line 13 of file mpdalc.f90.
INTEGER mpdalc::nummpalloc = 0 |
number of dynamic allocations
Definition at line 14 of file mpdalc.f90.
INTEGER mpdalc::nummpdealloc = 0 |
number of dynamic deallocations
Definition at line 15 of file mpdalc.f90.
INTEGER(kind=large) mpdalc::numwordsalloc = 0 |
current dynamic memory allocation (words)
Definition at line 12 of file mpdalc.f90.
INTEGER mpdalc::printflagalloc = 0 |
print flag for dynamic allocations
Definition at line 16 of file mpdalc.f90.