Octopus
cube.F90
Go to the documentation of this file.
1!! Copyright (C) 2002-2011 M. Marques, A. Castro, A. Rubio,
2!! G. Bertsch, M. Oliveira, J. Alberdi-Rodriguez
3!!
4!! This program is free software; you can redistribute it and/or modify
5!! it under the terms of the GNU General Public License as published by
6!! the Free Software Foundation; either version 2, or (at your option)
7!! any later version.
8!!
9!! This program is distributed in the hope that it will be useful,
10!! but WITHOUT ANY WARRANTY; without even the implied warranty of
11!! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12!! GNU General Public License for more details.
13!!
14!! You should have received a copy of the GNU General Public License
15!! along with this program; if not, write to the Free Software
16!! Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17!! 02110-1301, USA.
18!!
19
20#include "global.h"
21
22module cube_oct_m
23 use accel_oct_m
26 use debug_oct_m
27 use fft_oct_m
28 use global_oct_m
29 use io_oct_m
30 use, intrinsic :: iso_fortran_env
33 use mesh_oct_m
35 use mpi_oct_m
37 use parser_oct_m
38 use pfft_oct_m
40 use space_oct_m
41
42 implicit none
43 private
44 public :: &
45 cube_t, &
47 cube_init, &
54
55 type cube_t
56 ! Components are public by default
57 logical :: parallel_in_domains
58 type(mpi_grp_t) :: mpi_grp
59
60 integer :: rs_n_global(1:3)
61 integer :: fs_n_global(1:3)
62 integer :: rs_n(1:3)
63 integer :: fs_n(1:3)
64 integer :: rs_istart(1:3)
65 integer :: fs_istart(1:3)
66 integer :: center(1:3)
67
68 integer, allocatable :: fs_ifx(:)
69 integer, allocatable :: fs_ify(:)
70 integer, allocatable :: fs_ifz(:)
71
72 real(real64), allocatable :: Lrs(:,:)
73 real(real64), allocatable :: Lfs(:,:)
74
75 integer, allocatable :: np_local(:)
76 integer, allocatable :: xlocal(:)
77 integer, allocatable :: local(:,:)
78 integer, allocatable :: np_local_fs(:)
79 integer, allocatable :: xlocal_fs(:)
80 integer, allocatable :: local_fs(:,:)
81
82
83 type(fft_t), allocatable :: fft
84 logical, private :: has_cube_mapping = .false.
86
87 real(real64) :: spacing(3)
88 ! latt is declared as allocatable as a work-around for a bug in gfortran when invoking the finalizer of latt.
89 type(lattice_vectors_t), allocatable :: latt
90
91 type(mesh_cube_map_t) :: cube_map
92 logical :: cube_map_present = .false.
93 integer :: batch_capacity
94 end type cube_t
95
101 type dimensions_t
102 integer :: start_xyz(1:3)
103 integer :: end_xyz(1:3)
104 end type dimensions_t
105
106contains
107
108 ! ---------------------------------------------------------
109 subroutine cube_init(cube, nn, namespace, space, spacing, coord_system, fft_type, fft_library, dont_optimize, nn_out, &
110 mpi_grp, need_partition, tp_enlarge, blocksize, batch_size, nthreads)
111 type(cube_t), intent(out) :: cube
112 integer, intent(in) :: nn(:)
113 type(namespace_t), intent(in) :: namespace
114 class(space_t), intent(in) :: space
115 real(real64), intent(in) :: spacing(:)
116 class(coordinate_system_t), intent(in) :: coord_system
117 integer, optional, intent(in) :: fft_type
118 integer, optional, intent(in) :: fft_library
119 logical, optional, intent(in) :: dont_optimize
120 integer, optional, intent(out) :: nn_out(3)
122 type(mpi_grp_t), optional, intent(in) :: mpi_grp
123 logical, optional, intent(in) :: need_partition
124 real(real64), optional, intent(in) :: tp_enlarge(3)
127 integer, optional, intent(in) :: blocksize
129 integer, optional, intent(in) :: batch_size
130 ! the batch size for the FFTW and cuFFT solvers
131 integer, optional, intent(in) :: nthreads
132
133 type(MPI_Comm) :: comm
134 integer :: tmp_n(3), fft_type_, optimize_parity(3), fft_library_, nn3d(3)
135 integer :: effdim_fft, my_n(3), idir, idir2
136 logical :: optimize(3)
137 type(mpi_grp_t) :: mpi_grp_
138 real(real64) :: tp_enlarge_(3), lattice_vectors(3, 3)
139 type(space_t) :: cube_space
140
141 push_sub(cube_init)
142
143 assert(all(nn > 0))
144 assert(space%dim <= 3)
145
146 nn3d(1:space%dim) = nn(1:space%dim)
147 nn3d(space%dim+1:3) = 1
148
149 cube%spacing(1:space%dim) = spacing(1:space%dim)
150 cube%spacing(space%dim+1:3) = -m_one
151 cube%batch_capacity = optional_default(batch_size, 1)
153 fft_type_ = optional_default(fft_type, fft_none)
154 tp_enlarge_(:) = (/m_one, m_one, m_one/)
155 if (present(tp_enlarge)) tp_enlarge_(:)=tp_enlarge(:)
157 effdim_fft = min(3, space%dim)
159 mpi_grp_ = mpi_world
160 if (present(mpi_grp)) mpi_grp_ = mpi_grp
162 if (fft_type_ /= fft_none) then
164 if (present(fft_library)) then
165 fft_library_ = fft_library
166 else
167 fft_library_ = fft_default_lib
168 end if
169
170#ifndef HAVE_PFFT
171 if (fft_library_ == fftlib_pfft) then
172 write(message(1),'(a)')'You have selected the PFFT for FFT, but it was not linked.'
173 call messages_fatal(1, namespace=namespace)
174 end if
175#endif
176
177 else
178 fft_library_ = fftlib_none
179 end if
180
181 ! Only FFTW and cuFFT can batch the FFT (howmany > 1); PFFT/NFFT/PNFFT run one transform at a
182 ! time, so a batched cube on those backends is not possible. Callers that requested a batch
183 ! (batch_size > 1) fall back to a per-function loop (see X(poisson_solve_batch)).
184 if (fft_library_ /= fftlib_fftw .and. fft_library_ /= fftlib_accel) then
185 cube%batch_capacity = 1
186 end if
188 ! Note: later we set parallel_in_domains if blocksize is given, too
189 cube%parallel_in_domains = (fft_library_ == fftlib_pfft .or. fft_library_ == fftlib_pnfft)
190 if (present(blocksize)) then
191 assert(present(need_partition).and.need_partition)
192 assert(fft_library_ == fftlib_none)
193 ! For all the different FFT libraries there are strange (?)
194 ! rules about how the decomposition is chosen. What we want
195 ! (for libvdwxc) is a cube parallelized according to the simple
196 ! but contrary rule "just do what I say". Hence the blocksize
197 ! parameter. (Later to be expanded to allow 2D distributions.)
198 cube%rs_n_global = nn3d
199 cube%fs_n_global = nn3d ! not to be used
200 cube%fs_n = cube%fs_n_global ! not to be used
201 cube%fs_istart = 1 ! not to be used
202
203 comm = mpi_grp_%comm
204 cube%parallel_in_domains = (mpi_grp_%size > 1) ! XXX whether comm size > 1
205 call cube_set_blocksize(cube%rs_n_global, blocksize, mpi_grp_%rank, cube%rs_n, cube%rs_istart)
206 else if (fft_library_ == fftlib_none) then
207 cube%rs_n_global = nn3d
208 cube%fs_n_global = nn3d
209 cube%rs_n = cube%rs_n_global
210 cube%fs_n = cube%fs_n_global
211 cube%rs_istart = 1
212 cube%fs_istart = 1
213 comm = mpi_comm_undefined
214 if (present(nn_out)) nn_out(1:3) = nn3d(1:3)
215 else
216 safe_allocate(cube%fft)
217 tmp_n = nn3d
218
219 optimize(1:3) = .false.
220 optimize_parity(1:3) = 0
221 optimize(space%periodic_dim + 1:effdim_fft) = .true.
222 optimize_parity(space%periodic_dim + 1:effdim_fft) = 1
223
224 if (present(dont_optimize)) then
225 if (dont_optimize) optimize = .false.
226 end if
227
228 if (present(tp_enlarge)) call cube_tp_fft_defaults(cube, fft_library_)
229
230 call fft_init(cube%fft, tmp_n, space%dim, fft_type_, fft_library_, optimize, optimize_parity, &
231 comm=comm, mpi_grp = mpi_grp_, use_aligned=.true., howmany=cube%batch_capacity, nthreads=nthreads)
232 if (present(nn_out)) nn_out(1:3) = tmp_n(1:3)
233
234 call fft_get_dims(cube%fft, cube%rs_n_global, cube%fs_n_global, cube%rs_n, cube%fs_n, &
235 cube%rs_istart, cube%fs_istart)
236
237 if (present(tp_enlarge)) then
238 call cube_init_coords(cube, tp_enlarge_, cube%spacing, fft_library_)
239 end if
240
241 if (fft_library_ == fftlib_nfft .or. fft_library_ == fftlib_pnfft) then
242 call fft_init_stage1(cube%fft, namespace, cube%Lrs, cube%rs_n_global)
243 !set local dimensions after stage1 - needed for PNFFT
244 call fft_get_dims(cube%fft, cube%rs_n_global, cube%fs_n_global, cube%rs_n, cube%fs_n, &
245 cube%rs_istart, cube%fs_istart)
246 end if
247
248 end if
249
250 if (.not. allocated(cube%Lrs)) then
251 call cube_init_coords(cube, tp_enlarge_, cube%spacing, fft_library_)
252 end if
253
254 cube%center(1:3) = cube%rs_n_global(1:3)/2 + 1
255
257
258 call mpi_grp_init(cube%mpi_grp, comm)
259
260 ! Initialize mapping only if needed
261 if (present(need_partition) .and. cube%parallel_in_domains) then
262 cube%has_cube_mapping = need_partition
263 else
264 cube%has_cube_mapping = .false.
265 end if
266 if (cube%has_cube_mapping) then
267 call cube_do_mapping(cube, fs = fft_library_ == fftlib_pnfft)
268 end if
269
270 if (cube%parallel_in_domains) call cube_partition_messages_debug(cube, namespace)
271
272 select type (coord_system)
273 class is (affine_coordinates_t)
274 ! We are constructing a lattice vector for the cube
275 ! This differs from the actual lattice vectors if it is not an integer multiple of the spacing
276 ! mesh%idx%ll is "general" in aperiodic directions,
277 ! but "periodic" in periodic directions.
278 my_n(1:space%periodic_dim) = cube%rs_n_global(1:space%periodic_dim) + 1
279 my_n(space%periodic_dim + 1:space%dim) = cube%rs_n_global(space%periodic_dim + 1:space%dim)
280
281 lattice_vectors = m_zero
282 do idir = 1, space%dim
283 do idir2 = 1, space%dim
284 lattice_vectors(idir2, idir) = cube%spacing(idir) * (my_n(idir) - 1) * coord_system%basis%vectors(idir2, idir)
285 end do
286 end do
287 do idir = space%dim + 1, 3
288 lattice_vectors(idir, idir) = m_one
289 end do
290
291 cube_space%dim = 3
292 cube_space%periodic_dim = space%periodic_dim
293 safe_allocate(cube%latt)
294 cube%latt = lattice_vectors_t(namespace, cube_space, lattice_vectors)
295 class default
296 message(1) = "The cube only support affine coordinate systems."
297 call messages_fatal(1, namespace=namespace)
298 end select
299
300 pop_sub(cube_init)
301 end subroutine cube_init
302
303 ! ---------------------------------------------------------
304 subroutine cube_end(cube)
305 type(cube_t), intent(inout) :: cube
306
307 push_sub(cube_end)
308
309 if (allocated(cube%fft)) then
310 call fft_end(cube%fft)
311 safe_deallocate_a(cube%fft)
312 end if
313
314 if (cube%has_cube_mapping) then
315 safe_deallocate_a(cube%np_local)
316 safe_deallocate_a(cube%xlocal)
317 safe_deallocate_a(cube%local)
318
319 safe_deallocate_a(cube%np_local_fs)
320 safe_deallocate_a(cube%xlocal_fs)
321 safe_deallocate_a(cube%local_fs)
322 end if
323
324 if (cube%cube_map_present) then
325 call mesh_cube_map_end(cube%cube_map)
326 end if
327
328 safe_deallocate_a(cube%Lrs)
329 safe_deallocate_a(cube%Lfs)
330
331 safe_deallocate_a(cube%latt)
332 safe_deallocate_a(cube%fs_ifx)
333 safe_deallocate_a(cube%fs_ify)
334 safe_deallocate_a(cube%fs_ifz)
335
336 pop_sub(cube_end)
337 end subroutine cube_end
338
339
353 class(cube_t), intent(inout) :: cube
354
355 integer :: lx, ly, lz
356
358
359 safe_allocate(cube%fs_ifx(1:max(1, cube%fs_n(1))))
360 safe_allocate(cube%fs_ify(1:max(1, cube%fs_n(2))))
361 safe_allocate(cube%fs_ifz(1:max(1, cube%fs_n(3))))
362
363 do lx = 1, cube%fs_n(1)
364 cube%fs_ifx(lx) = pad_feq(cube%fs_istart(1) + lx - 1, cube%rs_n_global(1), .true.)
365 end do
366 do ly = 1, cube%fs_n(2)
367 cube%fs_ify(ly) = pad_feq(cube%fs_istart(2) + ly - 1, cube%rs_n_global(2), .true.)
368 end do
369 do lz = 1, cube%fs_n(3)
370 cube%fs_ifz(lz) = pad_feq(cube%fs_istart(3) + lz - 1, cube%rs_n_global(3), .true.)
371 end do
372
374
376
377
378 ! ---------------------------------------------------------
379 subroutine cube_tp_fft_defaults(cube, fft_library)
380 type(cube_t), intent(inout) :: cube
381 integer, intent(in) :: fft_library
382
383 push_sub(cube_tp_fft_defaults)
384 select case (fft_library)
385 case (fftlib_pnfft)
386 cube%fft%pnfft%set_defaults = .true.
387 cube%fft%pnfft%m = 2
388 cube%fft%pnfft%sigma = 1.1_real64
389
390 case default
391 !do nothing
392 end select
393
394 pop_sub(cube_tp_fft_defaults)
395 end subroutine cube_tp_fft_defaults
396
397
398 ! ---------------------------------------------------------
399 subroutine cube_init_coords(cube, tp_enlarge, spacing, fft_library)
400 type(cube_t), intent(inout) :: cube
401 real(real64), intent(in) :: tp_enlarge(3)
402 real(real64), intent(in) :: spacing(3)
403 integer, intent(in) :: fft_library
404
405 real(real64) :: temp
406 integer :: ii, nn(3), maxn, idim
407
408 push_sub(cube_init_coords)
409
410
411 nn(1:3) = cube%fs_n_global(1:3)
412
413 maxn = maxval(nn)
414 safe_allocate(cube%Lrs(1:maxn, 1:3))
415 cube%Lrs(:,:) = m_zero
416
417 !! Real space coordinates
418 do idim = 1,3
419 if (tp_enlarge(idim) > m_one) then
420 do ii = 2, nn(idim) - 1
421 cube%Lrs(ii, idim) = (ii - int(nn(idim)/2) -1) * spacing(idim)
422 end do
423 cube%Lrs(1, idim) = (-int(nn(idim)/2)) * spacing(idim) * tp_enlarge(idim)
424 cube%Lrs(nn(idim), idim) = (int(nn(idim)/2)) * spacing(idim) * tp_enlarge(idim)
425 else
426 do ii = 1, nn(idim)
427 cube%Lrs(ii, idim) = (ii - int(nn(idim)/2) -1) * spacing(idim)
428 end do
429 end if
430 end do
431
432
433 !! Fourier space coordinates
434 if (fft_library /= fftlib_none) then
435
436 safe_allocate(cube%Lfs(1:maxn, 1:3))
437 cube%Lfs(:,:) = m_zero
438
439 do idim = 1,3
440 temp = m_two * m_pi / (nn(idim) * spacing(idim))
441!temp = M_PI / (nn * spacing(1))
442 do ii = 1, nn(idim)
443 if (fft_library == fftlib_nfft .or. fft_library == fftlib_pnfft) then
444 !The Fourier space is shrunk by the tp_enlarge factor
445 !cube%Lfs(ii, 1:3) = (ii - nn/2 - 1)*temp/tp_enlarge
446!HH NOTE:
447!not sure this is the right general factor
448 cube%Lfs(ii, idim) = (ii - nn(idim)/2 - 1)*temp/tp_enlarge(idim)
449 else
450 cube%Lfs(ii, idim) = pad_feq(ii,nn(idim), .true.) * temp
451 end if
452 end do
453 end do
454 end if
455
456 pop_sub(cube_init_coords)
457 end subroutine cube_init_coords
458
459
460 ! ---------------------------------------------------------
463 logical function cube_global2local(cube, ixyz, lxyz) result(is_here)
464 type(cube_t), intent(in) :: cube
465 integer, intent(in) :: ixyz(3)
466 integer, intent(out) :: lxyz(3)
467
468 lxyz(1) = ixyz(1) - cube%rs_istart(1) + 1
469 lxyz(2) = ixyz(2) - cube%rs_istart(2) + 1
470 lxyz(3) = ixyz(3) - cube%rs_istart(3) + 1
471 is_here = lxyz(1) >= 1 .and. lxyz(1) <= cube%rs_n(1) .and. &
472 lxyz(2) >= 1 .and. lxyz(2) <= cube%rs_n(2) .and. &
473 lxyz(3) >= 1 .and. lxyz(3) <= cube%rs_n(3)
475 end function cube_global2local
476
477
478 ! ---------------------------------------------------------
483 integer function cube_getfftlibrary(cube) result(fft_library)
484 type(cube_t), intent(in) :: cube
485
486 if (allocated(cube%fft)) then
487 fft_library = cube%fft%library
488 else
489 fft_library = fftlib_none
490 end if
491 end function cube_getfftlibrary
492
493 ! ---------------------------------------------------------
495 subroutine cube_do_mapping(cube, fs)
496 type(cube_t), intent(inout) :: cube
497 logical, intent(in) :: fs
498
499 integer :: tmp_local(6), position, process, ix, iy, iz, index
500 integer, allocatable :: local_sizes(:)
501 integer(int64) :: number_points
502
503 push_sub(cube_do_mapping)
504
505 !!BEGIN:gather the local information into a unique vector.
506 !!do a gather in 3d of all the box, into a loop
507 tmp_local(1) = cube%rs_istart(1)
508 tmp_local(2) = cube%rs_istart(2)
509 tmp_local(3) = cube%rs_istart(3)
510 tmp_local(4) = cube%rs_n(1)
511 tmp_local(5) = cube%rs_n(2)
512 tmp_local(6) = cube%rs_n(3)
513
514 if (cube%parallel_in_domains) then
515 safe_allocate(local_sizes(1:6*cube%mpi_grp%size))
516 call profiling_in("CUBE_GAT")
517 call cube%mpi_grp%allgather(tmp_local, 6, mpi_integer, local_sizes, 6, mpi_integer)
518 call profiling_out("CUBE_GAT")
519 else
520 safe_allocate(local_sizes(1:6))
521 local_sizes = tmp_local
522 end if
523
524 call profiling_in("CUBE_MAP")
525
526 safe_allocate(cube%xlocal(1:cube%mpi_grp%size))
527 safe_allocate(cube%np_local(1:cube%mpi_grp%size))
528 ! make sure we do not run into integer overflow here
529 number_points = cube%rs_n_global(1) * cube%rs_n_global(2)
530 number_points = number_points * cube%rs_n_global(3)
531 if (number_points >= huge(0)) then
532 message(1) = "Error: too many points for the normal cube. Please try to use a distributed FFT."
533 call messages_fatal(1)
534 end if
535 safe_allocate(cube%local(1:cube%rs_n_global(1)*cube%rs_n_global(2)*cube%rs_n_global(3), 1:3))
536
537 index = 1
538 do process = 1, cube%mpi_grp%size
539 position = ((process-1)*6)+1
540 if (position == 1) then
541 cube%xlocal(1) = 1
542 cube%np_local(1) = local_sizes(4)*local_sizes(5)*local_sizes(6)
543 else
544 ! calculate the begin index and size of each process
545 cube%xlocal(process) = cube%xlocal(process-1) + cube%np_local(process-1)
546 cube%np_local(process) = local_sizes(position+3)*local_sizes(position+4)*local_sizes(position+5)
547 end if
548
549 ! save the mapping between the global x,y,z and the global index
550 ! and determine which partition the point belongs to
551 do iz = local_sizes(position+2), local_sizes(position+2)+local_sizes(position+5)-1
552 do iy = local_sizes(position+1), local_sizes(position+1)+local_sizes(position+4)-1
553 do ix = local_sizes(position), local_sizes(position)+local_sizes(position+3)-1
554 cube%local(index, 1) = ix
555 cube%local(index, 2) = iy
556 cube%local(index, 3) = iz
557 index = index + 1
558 end do
559 end do
560 end do
561 end do
562
563 call profiling_out("CUBE_MAP")
564
565 if (optional_default(fs,.false.)) then
566
567 tmp_local(1) = cube%fs_istart(1)
568 tmp_local(2) = cube%fs_istart(2)
569 tmp_local(3) = cube%fs_istart(3)
570 tmp_local(4) = cube%fs_n(1)
571 tmp_local(5) = cube%fs_n(2)
572 tmp_local(6) = cube%fs_n(3)
573
574 local_sizes = 0
575 if (cube%parallel_in_domains) then
576 call profiling_in("CUBE_GAT_FS")
577 call cube%mpi_grp%allgather(tmp_local, 6, mpi_integer, local_sizes, 6, mpi_integer)
578 call profiling_out("CUBE_GAT_FS")
579 else
580 local_sizes = tmp_local
581 end if
582
583 call profiling_in("CUBE_MAP_FS")
584
585 safe_allocate(cube%xlocal_fs(1:cube%mpi_grp%size))
586 safe_allocate(cube%np_local_fs(1:cube%mpi_grp%size))
587 ! make sure we do not run into integer overflow here
588 number_points = cube%fs_n_global(1) * cube%fs_n_global(2)
589 number_points = number_points * cube%fs_n_global(3)
590 if (number_points >= huge(0)) then
591 message(1) = "Error: too many points for the normal cube. Please try to use a distributed FFT."
592 call messages_fatal(1)
593 end if
594 safe_allocate(cube%local_fs(1:cube%fs_n_global(1)*cube%fs_n_global(2)*cube%fs_n_global(3), 1:3))
595
596 index = 1
597 do process = 1, cube%mpi_grp%size
598 position = ((process-1)*6)+1
599 if (position == 1) then
600 cube%xlocal_fs(1) = 1
601 cube%np_local_fs(1) = local_sizes(4)*local_sizes(5)*local_sizes(6)
602 else
603 ! calculate the begin index and size of each process
604 cube%xlocal_fs(process) = cube%xlocal_fs(process-1) + cube%np_local_fs(process-1)
605 cube%np_local_fs(process) = local_sizes(position+3)*local_sizes(position+4)*local_sizes(position+5)
606 end if
607
608 ! save the mapping between the global x,y,z and the global index
609 ! and determine which partition the point belongs to
610 do iz = local_sizes(position+2), local_sizes(position+2)+local_sizes(position+5)-1
611 do iy = local_sizes(position+1), local_sizes(position+1)+local_sizes(position+4)-1
612 do ix = local_sizes(position), local_sizes(position)+local_sizes(position+3)-1
613 cube%local_fs(index, 1) = ix
614 cube%local_fs(index, 2) = iy
615 cube%local_fs(index, 3) = iz
616 index = index + 1
617 end do
618 end do
619 end do
620 end do
621
622 call profiling_out("CUBE_MAP_FS")
623
624 end if
625
626
627
628 safe_deallocate_a(local_sizes)
629
630 pop_sub(cube_do_mapping)
631 end subroutine cube_do_mapping
632
633 !!> Given a x, y, z point of the cube, it returns the corresponding process
634 !!
635 !! last_found is used to speed-up the search
636 integer pure function cube_point_to_process(mpi_grp, xyz, part) result(process)
637 type(mpi_grp_t), intent(in) :: mpi_grp
638 integer, intent(in) :: xyz(1:3)
639 type(dimensions_t), intent(in) :: part(:)
640
641 integer :: proc
642 logical :: found
643
644 ! No PUSH/POP because it is a PURE function
645
646 found = .false.
647 do proc = 1, mpi_grp%size
648 !Compare XYZ index
649 if (all(xyz >= part(proc)%start_xyz) .and. all(xyz <= part(proc)%end_xyz)) then
650 process = proc
651 found = .true.
652 exit
653 end if
654 end do
655
656 ! An error message should be raised, if this point is reached
657 if (.not. found) then
658 process = -1
659 end if
660
661 end function cube_point_to_process
662
663 ! Sets a 1D decomposition with fixed-size blocks over the last (least-contiguous) axis.
664 ! Each core will have <blocksize> slices except the last one which will typically have
665 ! less. (In some cases, there can be multiple trailing cores without any slices.)
666 subroutine cube_set_blocksize(rs_n_global, blocksize, rank, rs_n, rs_istart)
667 integer, intent(in) :: rs_n_global(1:3)
668 integer, intent(in) :: blocksize
669 integer, intent(in) :: rank
670 integer, intent(out) :: rs_n(1:3)
671 integer, intent(out) :: rs_istart(1:3)
672
673 integer :: imin, imax
674
675 rs_n = rs_n_global
676 rs_istart = 1
677
678 imin = min(blocksize * rank, rs_n_global(3))
679 imax = min(imin + blocksize, rs_n_global(3))
680 rs_istart(3) = 1 + imin
681 rs_n(3) = imax - imin
682 end subroutine cube_set_blocksize
683
684 ! ---------------------------------------------------------
685 subroutine cube_partition(cube, part)
686 type(cube_t), intent(in) :: cube
687 type(dimensions_t), intent(out) :: part(:)
688
689 integer :: tmp_local(6), position, process
690 integer, allocatable :: local_sizes(:)
691
692 push_sub(cube_partition)
693
694 !!gather the local information into a unique vector.
695 tmp_local(1) = cube%rs_istart(1)
696 tmp_local(2) = cube%rs_istart(2)
697 tmp_local(3) = cube%rs_istart(3)
698 tmp_local(4) = cube%rs_n(1)
699 tmp_local(5) = cube%rs_n(2)
700 tmp_local(6) = cube%rs_n(3)
701
702 if (cube%parallel_in_domains) then
703 safe_allocate(local_sizes(1:6*cube%mpi_grp%size))
704 call cube%mpi_grp%allgather(tmp_local, 6, mpi_integer, local_sizes, 6, mpi_integer)
705 else
706 safe_allocate(local_sizes(1:6))
707 local_sizes(:) = tmp_local(:)
708 end if
709
710 do process = 1, cube%mpi_grp%size
711 position = ((process-1)*6)+1
712
713 part(process)%start_xyz(1) = local_sizes(position)
714 part(process)%start_xyz(2) = local_sizes(position+1)
715 part(process)%start_xyz(3) = local_sizes(position+2)
716 part(process)%end_xyz(1) = local_sizes(position)+local_sizes(position+3)-1
717 part(process)%end_xyz(2) = local_sizes(position+1)+local_sizes(position+4)-1
718 part(process)%end_xyz(3) = local_sizes(position+2)+local_sizes(position+5)-1
719
720 end do
721
722 pop_sub(cube_partition)
723 end subroutine cube_partition
724
725 ! ---------------------------------------------------------
726 subroutine cube_partition_messages_debug(cube, namespace)
727 type(cube_t), intent(in) :: cube
728 type(namespace_t), intent(in) :: namespace
729
730 integer :: nn, ii, jj, kk ! Counters.
731 integer :: ixyz(3) ! Current value of xyz
732 integer :: npart
733 integer :: iunit ! For debug output to files.
734 character(len=3) :: filenum
735 type(dimensions_t), allocatable :: part(:)
736
738
739 if (debug%info) then
740 safe_allocate(part(1:cube%mpi_grp%size))
741 call cube_partition(cube, part)
742
743 if (mpi_world%is_root()) then
744 call io_mkdir('debug/cube_partition', namespace)
745 npart = cube%mpi_grp%size
746
747 ! Debug output. Write points of each partition in a different file.
748 do nn = 1, npart
749
750 write(filenum, '(i3.3)') nn
751
752 iunit = io_open('debug/cube_partition/cube_partition.'//filenum, &
753 namespace, action='write')
754 do kk = 1, cube%rs_n_global(3)
755 do jj = 1, cube%rs_n_global(2)
756 do ii = 1, cube%rs_n_global(1)
757 ixyz(1) = ii
758 ixyz(2) = jj
759 ixyz(3) = kk
760 if (cube_point_to_process(cube%mpi_grp, ixyz, part) == nn) then
761 write(iunit, '(3i8)') ii, jj, kk
762 end if
763 end do
764 end do
765 end do
766 call io_close(iunit)
767 end do
768
769
770 end if
771
772 safe_deallocate_a(part)
773 end if
774
775 call cube%mpi_grp%barrier()
776
778 end subroutine cube_partition_messages_debug
779
780 ! ---------------------------------------------------------
781 subroutine cube_init_cube_map(cube, mesh)
782 type(cube_t), intent(inout) :: cube
783 class(mesh_t), intent(in) :: mesh
784
785 push_sub(cube_init_cube_map)
786
787 call mesh_cube_map_init(cube%cube_map, mesh, mesh%np)
788 cube%cube_map_present = .true.
789
790 pop_sub(cube_init_cube_map)
791 end subroutine cube_init_cube_map
792end module cube_oct_m
793
794
795!! Local Variables:
796!! mode: f90
797!! coding: utf-8
798!! End:
subroutine cube_set_blocksize(rs_n_global, blocksize, rank, rs_n, rs_istart)
Definition: cube.F90:762
subroutine cube_init_fourier_mode_numbers_mapping(cube)
Initialises the mapping between local cube index in Fourier space and global FFT integer frequencies....
Definition: cube.F90:448
subroutine cube_do_mapping(cube, fs)
do the mapping between global and local points of the cube
Definition: cube.F90:591
subroutine, public cube_end(cube)
Definition: cube.F90:400
logical function, public cube_global2local(cube, ixyz, lxyz)
True if global coordinates belong to this process. On output lxyz contains the local coordinates.
Definition: cube.F90:559
subroutine cube_tp_fft_defaults(cube, fft_library)
Definition: cube.F90:475
integer pure function, public cube_point_to_process(mpi_grp, xyz, part)
Definition: cube.F90:732
integer function, public cube_getfftlibrary(cube)
Returns the FFT library of the cube. Possible values are FFTLIB_NONE, FFTLIB_FFTW,...
Definition: cube.F90:579
subroutine, public cube_init(cube, nn, namespace, space, spacing, coord_system, fft_type, fft_library, dont_optimize, nn_out, mpi_grp, need_partition, tp_enlarge, blocksize, batch_size, nthreads)
Definition: cube.F90:206
subroutine cube_init_coords(cube, tp_enlarge, spacing, fft_library)
Definition: cube.F90:495
subroutine, public cube_partition(cube, part)
Definition: cube.F90:781
subroutine, public cube_init_cube_map(cube, mesh)
Definition: cube.F90:877
subroutine cube_partition_messages_debug(cube, namespace)
Definition: cube.F90:822
Fast Fourier Transform module. This module provides a single interface that works with different FFT ...
Definition: fft.F90:120
integer, parameter, public fft_none
global constants
Definition: fft.F90:174
subroutine, public fft_end(this)
Definition: fft.F90:800
integer, public fft_default_lib
Definition: fft.F90:257
pure integer function, public pad_feq(ii, nn, mode)
convert between array index and G-vector
Definition: fft.F90:914
integer, parameter, public fftlib_accel
Definition: fft.F90:179
subroutine, public fft_init(this, nn, dim, type, library, optimize, optimize_parity, comm, mpi_grp, use_aligned, howmany, nthreads)
Definition: fft.F90:412
subroutine, public fft_get_dims(fft, rs_n_global, fs_n_global, rs_n, fs_n, rs_istart, fs_istart)
Definition: fft.F90:888
integer, parameter, public fftlib_nfft
Definition: fft.F90:179
integer, parameter, public fftlib_none
Definition: fft.F90:179
integer, parameter, public fftlib_pnfft
Definition: fft.F90:179
integer, parameter, public fftlib_pfft
Definition: fft.F90:179
integer, parameter, public fftlib_fftw
Definition: fft.F90:179
subroutine, public fft_init_stage1(this, namespace, XX, nn)
Some fft-libraries (only NFFT for the moment) need an additional precomputation stage that depends on...
Definition: fft.F90:758
real(real64), parameter, public m_two
Definition: global.F90:202
real(real64), parameter, public m_zero
Definition: global.F90:200
real(real64), parameter, public m_pi
some mathematical constants
Definition: global.F90:198
real(real64), parameter, public m_one
Definition: global.F90:201
Definition: io.F90:116
subroutine, public mesh_cube_map_end(this)
This module defines the meshes, which are used in Octopus.
Definition: mesh.F90:120
character(len=256), dimension(max_lines), public message
to be output by fatal, warning
Definition: messages.F90:162
subroutine, public messages_fatal(no_lines, only_root_writes, namespace)
Definition: messages.F90:410
type(mpi_comm), parameter, public mpi_comm_undefined
used to indicate a communicator has not been initialized
Definition: mpi.F90:138
type(mpi_grp_t), public mpi_world
Definition: mpi.F90:276
subroutine mpi_grp_init(grp, comm)
Initialize MPI group instance.
Definition: mpi.F90:345
The low level module to work with the PFFT library. http:
Definition: pfft.F90:128
subroutine, public profiling_out(label)
Increment out counter and sum up difference between entry and exit time.
Definition: profiling.F90:631
subroutine, public profiling_in(label, exclude)
Increment in counter and save entry time.
Definition: profiling.F90:554
It is intended to be used within a vector.
Definition: cube.F90:196
This is defined even when running serial.
Definition: mpi.F90:144
int true(void)