|
subroutine | copyptr_logical1d (alog, name, mem_path, mem_path_copy) |
| Make a copy of a 1-dimensional logical array. More...
|
|
subroutine | copyptr_int1d (aint, name, mem_path, mem_path_copy) |
| Make a copy of a 1-dimensional integer array. More...
|
|
subroutine | copyptr_int2d (aint, name, mem_path, mem_path_copy) |
| Make a copy of a 2-dimensional integer array. More...
|
|
subroutine | copyptr_dbl1d (adbl, name, mem_path, mem_path_copy) |
| Make a copy of a 1-dimensional real array. More...
|
|
subroutine | copyptr_dbl2d (adbl, name, mem_path, mem_path_copy) |
| Make a copy of a 2-dimensional real array. More...
|
|
Definition at line 109 of file MemoryManager.f90.
◆ copyptr_dbl1d()
subroutine memorymanagermodule::mem_copyptr::copyptr_dbl1d |
( |
real(dp), dimension(:), intent(inout), pointer, contiguous |
adbl, |
|
|
character(len=*), intent(in) |
name, |
|
|
character(len=*), intent(in) |
mem_path, |
|
|
character(len=*), intent(in), optional |
mem_path_copy |
|
) |
| |
|
private |
- Parameters
-
[in,out] | adbl | returned copy of 1d real array |
[in] | name | variable name |
[in] | mem_path | path where variable is stored |
[in] | mem_path_copy | optional path where the copy will be stored, if passed then the copy is added to the memory manager |
Definition at line 1861 of file MemoryManager.f90.
1862 real(DP),
dimension(:),
pointer,
contiguous,
intent(inout) :: adbl
1863 character(len=*),
intent(in) :: name
1864 character(len=*),
intent(in) :: mem_path
1865 character(len=*),
intent(in),
optional :: mem_path_copy
1869 type(MemoryType),
pointer :: mt
1870 logical(LGP) :: found
1873 call get_from_memorystore(name, mem_path, mt, found)
1876 if (
present(mem_path_copy))
then
1877 call allocate_dbl1d(adbl,
size(mt%adbl1d), mt%name, mem_path_copy)
1880 allocate (adbl(
size(mt%adbl1d)))
1882 do n = 1,
size(mt%adbl1d)
1883 adbl(n) = mt%adbl1d(n)
◆ copyptr_dbl2d()
subroutine memorymanagermodule::mem_copyptr::copyptr_dbl2d |
( |
real(dp), dimension(:, :), intent(inout), pointer, contiguous |
adbl, |
|
|
character(len=*), intent(in) |
name, |
|
|
character(len=*), intent(in) |
mem_path, |
|
|
character(len=*), intent(in), optional |
mem_path_copy |
|
) |
| |
|
private |
- Parameters
-
[in,out] | adbl | returned copy of 2d real array |
[in] | name | variable name |
[in] | mem_path | path where variable is stored |
[in] | mem_path_copy | optional path where the copy will be stored, if passed then the copy is added to the memory manager |
Definition at line 1889 of file MemoryManager.f90.
1890 real(DP),
dimension(:, :),
pointer,
contiguous,
intent(inout) :: adbl
1891 character(len=*),
intent(in) :: name
1892 character(len=*),
intent(in) :: mem_path
1893 character(len=*),
intent(in),
optional :: mem_path_copy
1897 type(MemoryType),
pointer :: mt
1898 logical(LGP) :: found
1901 integer(I4B) :: ncol
1902 integer(I4B) :: nrow
1904 call get_from_memorystore(name, mem_path, mt, found)
1906 ncol =
size(mt%adbl2d, dim=1)
1907 nrow =
size(mt%adbl2d, dim=2)
1909 if (
present(mem_path_copy))
then
1910 call allocate_dbl2d(adbl, ncol, nrow, mt%name, mem_path_copy)
1913 allocate (adbl(ncol, nrow))
1917 adbl(j, i) = mt%adbl2d(j, i)
◆ copyptr_int1d()
subroutine memorymanagermodule::mem_copyptr::copyptr_int1d |
( |
integer(i4b), dimension(:), intent(inout), pointer, contiguous |
aint, |
|
|
character(len=*), intent(in) |
name, |
|
|
character(len=*), intent(in) |
mem_path, |
|
|
character(len=*), intent(in), optional |
mem_path_copy |
|
) |
| |
|
private |
- Parameters
-
[in,out] | aint | returned copy of 1d integer array |
[in] | name | variable name |
[in] | mem_path | path where variable is stored |
[in] | mem_path_copy | optional path where the copy will be stored, if passed then the copy is added to the memory manager |
Definition at line 1798 of file MemoryManager.f90.
1799 integer(I4B),
dimension(:),
pointer,
contiguous,
intent(inout) :: aint
1800 character(len=*),
intent(in) :: name
1801 character(len=*),
intent(in) :: mem_path
1802 character(len=*),
intent(in),
optional :: mem_path_copy
1806 type(MemoryType),
pointer :: mt
1807 logical(LGP) :: found
1810 call get_from_memorystore(name, mem_path, mt, found)
1813 if (
present(mem_path_copy))
then
1814 call allocate_int1d(aint,
size(mt%aint1d), mt%name, mem_path_copy)
1817 allocate (aint(
size(mt%aint1d)))
1819 do n = 1,
size(mt%aint1d)
1820 aint(n) = mt%aint1d(n)
◆ copyptr_int2d()
subroutine memorymanagermodule::mem_copyptr::copyptr_int2d |
( |
integer(i4b), dimension(:, :), intent(inout), pointer, contiguous |
aint, |
|
|
character(len=*), intent(in) |
name, |
|
|
character(len=*), intent(in) |
mem_path, |
|
|
character(len=*), intent(in), optional |
mem_path_copy |
|
) |
| |
|
private |
- Parameters
-
[in,out] | aint | returned copy of 2d integer array |
[in] | name | variable name |
[in] | mem_path | path where variable is stored |
[in] | mem_path_copy | optional path where the copy will be stored, if passed then the copy is added to the memory manager |
Definition at line 1826 of file MemoryManager.f90.
1827 integer(I4B),
dimension(:, :),
pointer,
contiguous,
intent(inout) :: aint
1828 character(len=*),
intent(in) :: name
1829 character(len=*),
intent(in) :: mem_path
1830 character(len=*),
intent(in),
optional :: mem_path_copy
1834 type(MemoryType),
pointer :: mt
1835 logical(LGP) :: found
1838 integer(I4B) :: ncol
1839 integer(I4B) :: nrow
1841 call get_from_memorystore(name, mem_path, mt, found)
1843 ncol =
size(mt%aint2d, dim=1)
1844 nrow =
size(mt%aint2d, dim=2)
1846 if (
present(mem_path_copy))
then
1847 call allocate_int2d(aint, ncol, nrow, mt%name, mem_path_copy)
1850 allocate (aint(ncol, nrow))
1854 aint(j, i) = mt%aint2d(j, i)
◆ copyptr_logical1d()
subroutine memorymanagermodule::mem_copyptr::copyptr_logical1d |
( |
logical(lgp), dimension(:), intent(inout), pointer, contiguous |
alog, |
|
|
character(len=*), intent(in) |
name, |
|
|
character(len=*), intent(in) |
mem_path, |
|
|
character(len=*), intent(in), optional |
mem_path_copy |
|
) |
| |
|
private |
- Parameters
-
[in,out] | alog | returned copy of 1d logical array |
[in] | name | variable name |
[in] | mem_path | path where variable is stored |
[in] | mem_path_copy | optional path where the copy will be stored, if passed then the copy is added to the memory manager |
Definition at line 1770 of file MemoryManager.f90.
1771 logical(LGP),
dimension(:),
pointer,
contiguous,
intent(inout) :: alog
1772 character(len=*),
intent(in) :: name
1773 character(len=*),
intent(in) :: mem_path
1774 character(len=*),
intent(in),
optional :: mem_path_copy
1778 type(MemoryType),
pointer :: mt
1779 logical(LGP) :: found
1782 call get_from_memorystore(name, mem_path, mt, found)
1785 if (
present(mem_path_copy))
then
1786 call allocate_logical1d(alog,
size(mt%alogical1d), mt%name, mem_path_copy)
1789 allocate (alog(
size(mt%alogical1d)))
1791 do n = 1,
size(mt%alogical1d)
1792 alog(n) = mt%alogical1d(n)
The documentation for this interface was generated from the following file: