|
| 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 110 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 1862 of file MemoryManager.f90.
1863 real(DP),
dimension(:),
pointer,
contiguous,
intent(inout) :: adbl
1864 character(len=*),
intent(in) :: name
1865 character(len=*),
intent(in) :: mem_path
1866 character(len=*),
intent(in),
optional :: mem_path_copy
1870 type(MemoryType),
pointer :: mt
1871 logical(LGP) :: found
1874 call get_from_memorystore(name, mem_path, mt, found)
1877 if (
present(mem_path_copy))
then
1878 call allocate_dbl1d(adbl,
size(mt%adbl1d), mt%name, mem_path_copy)
1881 allocate (adbl(
size(mt%adbl1d)))
1883 do n = 1,
size(mt%adbl1d)
1884 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 1890 of file MemoryManager.f90.
1891 real(DP),
dimension(:, :),
pointer,
contiguous,
intent(inout) :: adbl
1892 character(len=*),
intent(in) :: name
1893 character(len=*),
intent(in) :: mem_path
1894 character(len=*),
intent(in),
optional :: mem_path_copy
1898 type(MemoryType),
pointer :: mt
1899 logical(LGP) :: found
1902 integer(I4B) :: ncol
1903 integer(I4B) :: nrow
1905 call get_from_memorystore(name, mem_path, mt, found)
1907 ncol =
size(mt%adbl2d, dim=1)
1908 nrow =
size(mt%adbl2d, dim=2)
1910 if (
present(mem_path_copy))
then
1911 call allocate_dbl2d(adbl, ncol, nrow, mt%name, mem_path_copy)
1914 allocate (adbl(ncol, nrow))
1918 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 1799 of file MemoryManager.f90.
1800 integer(I4B),
dimension(:),
pointer,
contiguous,
intent(inout) :: aint
1801 character(len=*),
intent(in) :: name
1802 character(len=*),
intent(in) :: mem_path
1803 character(len=*),
intent(in),
optional :: mem_path_copy
1807 type(MemoryType),
pointer :: mt
1808 logical(LGP) :: found
1811 call get_from_memorystore(name, mem_path, mt, found)
1814 if (
present(mem_path_copy))
then
1815 call allocate_int1d(aint,
size(mt%aint1d), mt%name, mem_path_copy)
1818 allocate (aint(
size(mt%aint1d)))
1820 do n = 1,
size(mt%aint1d)
1821 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 1827 of file MemoryManager.f90.
1828 integer(I4B),
dimension(:, :),
pointer,
contiguous,
intent(inout) :: aint
1829 character(len=*),
intent(in) :: name
1830 character(len=*),
intent(in) :: mem_path
1831 character(len=*),
intent(in),
optional :: mem_path_copy
1835 type(MemoryType),
pointer :: mt
1836 logical(LGP) :: found
1839 integer(I4B) :: ncol
1840 integer(I4B) :: nrow
1842 call get_from_memorystore(name, mem_path, mt, found)
1844 ncol =
size(mt%aint2d, dim=1)
1845 nrow =
size(mt%aint2d, dim=2)
1847 if (
present(mem_path_copy))
then
1848 call allocate_int2d(aint, ncol, nrow, mt%name, mem_path_copy)
1851 allocate (aint(ncol, nrow))
1855 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 1771 of file MemoryManager.f90.
1772 logical(LGP),
dimension(:),
pointer,
contiguous,
intent(inout) :: alog
1773 character(len=*),
intent(in) :: name
1774 character(len=*),
intent(in) :: mem_path
1775 character(len=*),
intent(in),
optional :: mem_path_copy
1779 type(MemoryType),
pointer :: mt
1780 logical(LGP) :: found
1783 call get_from_memorystore(name, mem_path, mt, found)
1786 if (
present(mem_path_copy))
then
1787 call allocate_logical1d(alog,
size(mt%alogical1d), mt%name, mem_path_copy)
1790 allocate (alog(
size(mt%alogical1d)))
1792 do n = 1,
size(mt%alogical1d)
1793 alog(n) = mt%alogical1d(n)
The documentation for this interface was generated from the following file: