-
Notifications
You must be signed in to change notification settings - Fork 19
/
alloc.F90
229 lines (176 loc) · 5.93 KB
/
alloc.F90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
!=======================================================================
! This is part of the 2DECOMP&FFT library
!
! 2DECOMP&FFT is a software framework for general-purpose 2D (pencil)
! decomposition. It also implements a highly scalable distributed
! three-dimensional Fast Fourier Transform (FFT).
!
! Copyright (C) 2009-2012 Ning Li, the Numerical Algorithms Group (NAG)
!
!=======================================================================
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Utility routine to help allocate 3D arrays
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! X-pencil real arrays
subroutine alloc_x_real(var, decomp, opt_global)
implicit none
real(mytype), allocatable, dimension(:,:,:) :: var
TYPE(DECOMP_INFO), intent(IN) :: decomp
logical, intent(IN), optional :: opt_global
logical :: global
integer :: alloc_stat, errorcode
if (present(opt_global)) then
global = opt_global
else
global = .false.
end if
if (global) then
allocate(var(decomp%xst(1):decomp%xen(1), &
decomp%xst(2):decomp%xen(2), decomp%xst(3):decomp%xen(3)), &
stat=alloc_stat)
else
allocate(var(decomp%xsz(1),decomp%xsz(2),decomp%xsz(3)), &
stat=alloc_stat)
end if
if (alloc_stat /= 0) then
errorcode = 8
call decomp_2d_abort(errorcode, &
'Memory allocation failed when creating new arrays')
end if
return
end subroutine alloc_x_real
! X-pencil complex arrays
subroutine alloc_x_complex(var, decomp, opt_global)
implicit none
complex(mytype), allocatable, dimension(:,:,:) :: var
TYPE(DECOMP_INFO), intent(IN) :: decomp
logical, intent(IN), optional :: opt_global
logical :: global
integer :: alloc_stat, errorcode
if (global) then
allocate(var(decomp%xst(1):decomp%xen(1), &
decomp%xst(2):decomp%xen(2), decomp%xst(3):decomp%xen(3)), &
stat=alloc_stat)
else
allocate(var(decomp%xsz(1),decomp%xsz(2),decomp%xsz(3)), &
stat=alloc_stat)
end if
if (alloc_stat /= 0) then
errorcode = 8
call decomp_2d_abort(errorcode, &
'Memory allocation failed when creating new arrays')
end if
return
end subroutine alloc_x_complex
! Y-pencil real arrays
subroutine alloc_y_real(var, decomp, opt_global)
implicit none
real(mytype), allocatable, dimension(:,:,:) :: var
TYPE(DECOMP_INFO), intent(IN) :: decomp
logical, intent(IN), optional :: opt_global
logical :: global
integer :: alloc_stat, errorcode
if (present(opt_global)) then
global = opt_global
else
global = .false.
end if
if (global) then
allocate(var(decomp%yst(1):decomp%yen(1), &
decomp%yst(2):decomp%yen(2), decomp%yst(3):decomp%yen(3)), &
stat=alloc_stat)
else
allocate(var(decomp%ysz(1),decomp%ysz(2),decomp%ysz(3)), &
stat=alloc_stat)
end if
if (alloc_stat /= 0) then
errorcode = 8
call decomp_2d_abort(errorcode, &
'Memory allocation failed when creating new arrays')
end if
return
end subroutine alloc_y_real
! Y-pencil complex arrays
subroutine alloc_y_complex(var, decomp, opt_global)
implicit none
complex(mytype), allocatable, dimension(:,:,:) :: var
TYPE(DECOMP_INFO), intent(IN) :: decomp
logical, intent(IN), optional :: opt_global
logical :: global
integer :: alloc_stat, errorcode
if (present(opt_global)) then
global = opt_global
else
global = .false.
end if
if (global) then
allocate(var(decomp%yst(1):decomp%yen(1), &
decomp%yst(2):decomp%yen(2), decomp%yst(3):decomp%yen(3)), &
stat=alloc_stat)
else
allocate(var(decomp%ysz(1),decomp%ysz(2),decomp%ysz(3)), &
stat=alloc_stat)
end if
if (alloc_stat /= 0) then
errorcode = 8
call decomp_2d_abort(errorcode, &
'Memory allocation failed when creating new arrays')
end if
return
end subroutine alloc_y_complex
! Z-pencil real arrays
subroutine alloc_z_real(var, decomp, opt_global)
implicit none
real(mytype), allocatable, dimension(:,:,:) :: var
TYPE(DECOMP_INFO), intent(IN) :: decomp
logical, intent(IN), optional :: opt_global
logical :: global
integer :: alloc_stat, errorcode
if (present(opt_global)) then
global = opt_global
else
global = .false.
end if
if (global) then
allocate(var(decomp%zst(1):decomp%zen(1), &
decomp%zst(2):decomp%zen(2), decomp%zst(3):decomp%zen(3)), &
stat=alloc_stat)
else
allocate(var(decomp%zsz(1),decomp%zsz(2),decomp%zsz(3)), &
stat=alloc_stat)
end if
if (alloc_stat /= 0) then
errorcode = 8
call decomp_2d_abort(errorcode, &
'Memory allocation failed when creating new arrays')
end if
return
end subroutine alloc_z_real
! Z-pencil complex arrays
subroutine alloc_z_complex(var, decomp, opt_global)
implicit none
complex(mytype), allocatable, dimension(:,:,:) :: var
TYPE(DECOMP_INFO), intent(IN) :: decomp
logical, intent(IN), optional :: opt_global
logical :: global
integer :: alloc_stat, errorcode
if (present(opt_global)) then
global = opt_global
else
global = .false.
end if
if (global) then
allocate(var(decomp%zst(1):decomp%zen(1), &
decomp%zst(2):decomp%zen(2), decomp%zst(3):decomp%zen(3)), &
stat=alloc_stat)
else
allocate(var(decomp%zsz(1),decomp%zsz(2),decomp%zsz(3)), &
stat=alloc_stat)
end if
if (alloc_stat /= 0) then
errorcode = 8
call decomp_2d_abort(errorcode, &
'Memory allocation failed when creating new arrays')
end if
return
end subroutine alloc_z_complex