30 use,
intrinsic :: iso_fortran_env
57 logical :: parallel_in_domains
58 type(mpi_grp_t) :: mpi_grp
60 integer :: rs_n_global(1:3)
61 integer :: fs_n_global(1:3)
64 integer :: rs_istart(1:3)
65 integer :: fs_istart(1:3)
66 integer :: center(1:3)
68 integer,
allocatable :: fs_ifx(:)
69 integer,
allocatable :: fs_ify(:)
70 integer,
allocatable :: fs_ifz(:)
72 real(real64),
allocatable :: Lrs(:,:)
73 real(real64),
allocatable :: Lfs(:,:)
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(:,:)
83 type(fft_t),
allocatable :: fft
84 logical,
private :: has_cube_mapping = .false.
87 real(real64) :: spacing(3)
89 type(lattice_vectors_t),
allocatable :: latt
91 type(mesh_cube_map_t) :: cube_map
92 logical :: cube_map_present = .false.
93 integer :: batch_capacity
102 integer :: start_xyz(1:3)
103 integer :: end_xyz(1:3)
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)
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
132 type(MPI_Comm) :: comm
133 integer :: tmp_n(3), fft_type_, optimize_parity(3), fft_library_, nn3d(3)
134 integer :: effdim_fft, my_n(3), idir, idir2
135 logical :: optimize(3)
136 type(mpi_grp_t) :: mpi_grp_
137 real(real64) :: tp_enlarge_(3), lattice_vectors(3, 3)
138 type(space_t) :: cube_space
143 assert(space%dim <= 3)
145 nn3d(1:space%dim) = nn(1:space%dim)
146 nn3d(space%dim+1:3) = 1
148 cube%spacing(1:space%dim) = spacing(1:space%dim)
149 cube%spacing(space%dim+1:3) = -
m_one
154 if (
present(tp_enlarge)) tp_enlarge_(:)=tp_enlarge(:)
156 effdim_fft = min(3, space%dim)
159 if (
present(mpi_grp)) mpi_grp_ = mpi_grp
163 if (
present(fft_library))
then
164 fft_library_ = fft_library
171 write(
message(1),
'(a)')
'You have selected the PFFT for FFT, but it was not linked.'
184 cube%batch_capacity = 1
189 if (
present(blocksize))
then
190 assert(
present(need_partition).and.need_partition)
197 cube%rs_n_global = nn3d
198 cube%fs_n_global = nn3d
199 cube%fs_n = cube%fs_n_global
203 cube%parallel_in_domains = (mpi_grp_%size > 1)
206 cube%rs_n_global = nn3d
207 cube%fs_n_global = nn3d
208 cube%rs_n = cube%rs_n_global
209 cube%fs_n = cube%fs_n_global
213 if (
present(nn_out)) nn_out(1:3) = nn3d(1:3)
215 safe_allocate(cube%fft)
218 optimize(1:3) = .false.
219 optimize_parity(1:3) = 0
220 optimize(space%periodic_dim + 1:effdim_fft) = .
true.
221 optimize_parity(space%periodic_dim + 1:effdim_fft) = 1
223 if (
present(dont_optimize))
then
224 if (dont_optimize) optimize = .false.
229 call fft_init(cube%fft, tmp_n, space%dim, fft_type_, fft_library_, optimize, optimize_parity, &
230 comm=comm, mpi_grp = mpi_grp_, use_aligned=.
true., howmany=cube%batch_capacity)
231 if (
present(nn_out)) nn_out(1:3) = tmp_n(1:3)
233 call fft_get_dims(cube%fft, cube%rs_n_global, cube%fs_n_global, cube%rs_n, cube%fs_n, &
234 cube%rs_istart, cube%fs_istart)
236 if (
present(tp_enlarge))
then
243 call fft_get_dims(cube%fft, cube%rs_n_global, cube%fs_n_global, cube%rs_n, cube%fs_n, &
244 cube%rs_istart, cube%fs_istart)
249 if (.not.
allocated(cube%Lrs))
then
253 cube%center(1:3) = cube%rs_n_global(1:3)/2 + 1
260 if (
present(need_partition) .and. cube%parallel_in_domains)
then
261 cube%has_cube_mapping = need_partition
263 cube%has_cube_mapping = .false.
265 if (cube%has_cube_mapping)
then
271 select type (coord_system)
277 my_n(1:space%periodic_dim) = cube%rs_n_global(1:space%periodic_dim) + 1
278 my_n(space%periodic_dim + 1:space%dim) = cube%rs_n_global(space%periodic_dim + 1:space%dim)
281 do idir = 1, space%dim
282 do idir2 = 1, space%dim
283 lattice_vectors(idir2, idir) = cube%spacing(idir) * (my_n(idir) - 1) * coord_system%basis%vectors(idir2, idir)
286 do idir = space%dim + 1, 3
287 lattice_vectors(idir, idir) =
m_one
291 cube_space%periodic_dim = space%periodic_dim
292 safe_allocate(cube%latt)
295 message(1) =
"The cube only support affine coordinate systems."
304 type(
cube_t),
intent(inout) :: cube
308 if (
allocated(cube%fft))
then
310 safe_deallocate_a(cube%fft)
313 if (cube%has_cube_mapping)
then
314 safe_deallocate_a(cube%np_local)
315 safe_deallocate_a(cube%xlocal)
316 safe_deallocate_a(cube%local)
318 safe_deallocate_a(cube%np_local_fs)
319 safe_deallocate_a(cube%xlocal_fs)
320 safe_deallocate_a(cube%local_fs)
323 if (cube%cube_map_present)
then
327 safe_deallocate_a(cube%Lrs)
328 safe_deallocate_a(cube%Lfs)
330 safe_deallocate_a(cube%latt)
331 safe_deallocate_a(cube%fs_ifx)
332 safe_deallocate_a(cube%fs_ify)
333 safe_deallocate_a(cube%fs_ifz)
352 class(
cube_t),
intent(inout) :: cube
354 integer :: lx, ly, lz
358 safe_allocate(cube%fs_ifx(1:max(1, cube%fs_n(1))))
359 safe_allocate(cube%fs_ify(1:max(1, cube%fs_n(2))))
360 safe_allocate(cube%fs_ifz(1:max(1, cube%fs_n(3))))
362 do lx = 1, cube%fs_n(1)
363 cube%fs_ifx(lx) =
pad_feq(cube%fs_istart(1) + lx - 1, cube%rs_n_global(1), .
true.)
365 do ly = 1, cube%fs_n(2)
366 cube%fs_ify(ly) =
pad_feq(cube%fs_istart(2) + ly - 1, cube%rs_n_global(2), .
true.)
368 do lz = 1, cube%fs_n(3)
369 cube%fs_ifz(lz) =
pad_feq(cube%fs_istart(3) + lz - 1, cube%rs_n_global(3), .
true.)
379 type(
cube_t),
intent(inout) :: cube
380 integer,
intent(in) :: fft_library
383 select case (fft_library)
385 cube%fft%pnfft%set_defaults = .
true.
387 cube%fft%pnfft%sigma = 1.1_real64
399 type(
cube_t),
intent(inout) :: cube
400 real(real64),
intent(in) :: tp_enlarge(3)
401 real(real64),
intent(in) :: spacing(3)
402 integer,
intent(in) :: fft_library
405 integer :: ii, nn(3), maxn, idim
410 nn(1:3) = cube%fs_n_global(1:3)
413 safe_allocate(cube%Lrs(1:maxn, 1:3))
418 if (tp_enlarge(idim) >
m_one)
then
419 do ii = 2, nn(idim) - 1
420 cube%Lrs(ii, idim) = (ii - int(nn(idim)/2) -1) * spacing(idim)
422 cube%Lrs(1, idim) = (-int(nn(idim)/2)) * spacing(idim) * tp_enlarge(idim)
423 cube%Lrs(nn(idim), idim) = (int(nn(idim)/2)) * spacing(idim) * tp_enlarge(idim)
426 cube%Lrs(ii, idim) = (ii - int(nn(idim)/2) -1) * spacing(idim)
435 safe_allocate(cube%Lfs(1:maxn, 1:3))
439 temp =
m_two *
m_pi / (nn(idim) * spacing(idim))
447 cube%Lfs(ii, idim) = (ii - nn(idim)/2 - 1)*temp/tp_enlarge(idim)
449 cube%Lfs(ii, idim) =
pad_feq(ii,nn(idim), .
true.) * temp
463 type(
cube_t),
intent(in) :: cube
464 integer,
intent(in) :: ixyz(3)
465 integer,
intent(out) :: lxyz(3)
467 lxyz(1) = ixyz(1) - cube%rs_istart(1) + 1
468 lxyz(2) = ixyz(2) - cube%rs_istart(2) + 1
469 lxyz(3) = ixyz(3) - cube%rs_istart(3) + 1
470 is_here = lxyz(1) >= 1 .and. lxyz(1) <= cube%rs_n(1) .and. &
471 lxyz(2) >= 1 .and. lxyz(2) <= cube%rs_n(2) .and. &
472 lxyz(3) >= 1 .and. lxyz(3) <= cube%rs_n(3)
483 type(
cube_t),
intent(in) :: cube
485 if (
allocated(cube%fft))
then
486 fft_library = cube%fft%library
495 type(
cube_t),
intent(inout) :: cube
496 logical,
intent(in) :: fs
498 integer :: tmp_local(6), position, process, ix, iy, iz, index
499 integer,
allocatable :: local_sizes(:)
500 integer(int64) :: number_points
506 tmp_local(1) = cube%rs_istart(1)
507 tmp_local(2) = cube%rs_istart(2)
508 tmp_local(3) = cube%rs_istart(3)
509 tmp_local(4) = cube%rs_n(1)
510 tmp_local(5) = cube%rs_n(2)
511 tmp_local(6) = cube%rs_n(3)
513 if (cube%parallel_in_domains)
then
514 safe_allocate(local_sizes(1:6*cube%mpi_grp%size))
516 call cube%mpi_grp%allgather(tmp_local, 6, mpi_integer, local_sizes, 6, mpi_integer)
519 safe_allocate(local_sizes(1:6))
520 local_sizes = tmp_local
525 safe_allocate(cube%xlocal(1:cube%mpi_grp%size))
526 safe_allocate(cube%np_local(1:cube%mpi_grp%size))
528 number_points = cube%rs_n_global(1) * cube%rs_n_global(2)
529 number_points = number_points * cube%rs_n_global(3)
530 if (number_points >= huge(0))
then
531 message(1) =
"Error: too many points for the normal cube. Please try to use a distributed FFT."
534 safe_allocate(cube%local(1:cube%rs_n_global(1)*cube%rs_n_global(2)*cube%rs_n_global(3), 1:3))
537 do process = 1, cube%mpi_grp%size
538 position = ((process-1)*6)+1
539 if (position == 1)
then
541 cube%np_local(1) = local_sizes(4)*local_sizes(5)*local_sizes(6)
544 cube%xlocal(process) = cube%xlocal(process-1) + cube%np_local(process-1)
545 cube%np_local(process) = local_sizes(position+3)*local_sizes(position+4)*local_sizes(position+5)
550 do iz = local_sizes(position+2), local_sizes(position+2)+local_sizes(position+5)-1
551 do iy = local_sizes(position+1), local_sizes(position+1)+local_sizes(position+4)-1
552 do ix = local_sizes(position), local_sizes(position)+local_sizes(position+3)-1
553 cube%local(index, 1) = ix
554 cube%local(index, 2) = iy
555 cube%local(index, 3) = iz
566 tmp_local(1) = cube%fs_istart(1)
567 tmp_local(2) = cube%fs_istart(2)
568 tmp_local(3) = cube%fs_istart(3)
569 tmp_local(4) = cube%fs_n(1)
570 tmp_local(5) = cube%fs_n(2)
571 tmp_local(6) = cube%fs_n(3)
574 if (cube%parallel_in_domains)
then
576 call cube%mpi_grp%allgather(tmp_local, 6, mpi_integer, local_sizes, 6, mpi_integer)
579 local_sizes = tmp_local
584 safe_allocate(cube%xlocal_fs(1:cube%mpi_grp%size))
585 safe_allocate(cube%np_local_fs(1:cube%mpi_grp%size))
587 number_points = cube%fs_n_global(1) * cube%fs_n_global(2)
588 number_points = number_points * cube%fs_n_global(3)
589 if (number_points >= huge(0))
then
590 message(1) =
"Error: too many points for the normal cube. Please try to use a distributed FFT."
593 safe_allocate(cube%local_fs(1:cube%fs_n_global(1)*cube%fs_n_global(2)*cube%fs_n_global(3), 1:3))
596 do process = 1, cube%mpi_grp%size
597 position = ((process-1)*6)+1
598 if (position == 1)
then
599 cube%xlocal_fs(1) = 1
600 cube%np_local_fs(1) = local_sizes(4)*local_sizes(5)*local_sizes(6)
603 cube%xlocal_fs(process) = cube%xlocal_fs(process-1) + cube%np_local_fs(process-1)
604 cube%np_local_fs(process) = local_sizes(position+3)*local_sizes(position+4)*local_sizes(position+5)
609 do iz = local_sizes(position+2), local_sizes(position+2)+local_sizes(position+5)-1
610 do iy = local_sizes(position+1), local_sizes(position+1)+local_sizes(position+4)-1
611 do ix = local_sizes(position), local_sizes(position)+local_sizes(position+3)-1
612 cube%local_fs(index, 1) = ix
613 cube%local_fs(index, 2) = iy
614 cube%local_fs(index, 3) = iz
627 safe_deallocate_a(local_sizes)
635 integer pure function cube_point_to_process(mpi_grp, xyz, part) result(process)
637 integer,
intent(in) :: xyz(1:3)
646 do proc = 1, mpi_grp%size
648 if (all(xyz >= part(proc)%start_xyz) .and. all(xyz <= part(proc)%end_xyz))
then
656 if (.not. found)
then
666 integer,
intent(in) :: rs_n_global(1:3)
667 integer,
intent(in) :: blocksize
668 integer,
intent(in) :: rank
669 integer,
intent(out) :: rs_n(1:3)
670 integer,
intent(out) :: rs_istart(1:3)
672 integer :: imin, imax
677 imin = min(blocksize * rank, rs_n_global(3))
678 imax = min(imin + blocksize, rs_n_global(3))
679 rs_istart(3) = 1 + imin
680 rs_n(3) = imax - imin
685 type(
cube_t),
intent(in) :: cube
688 integer :: tmp_local(6), position, process
689 integer,
allocatable :: local_sizes(:)
694 tmp_local(1) = cube%rs_istart(1)
695 tmp_local(2) = cube%rs_istart(2)
696 tmp_local(3) = cube%rs_istart(3)
697 tmp_local(4) = cube%rs_n(1)
698 tmp_local(5) = cube%rs_n(2)
699 tmp_local(6) = cube%rs_n(3)
701 if (cube%parallel_in_domains)
then
702 safe_allocate(local_sizes(1:6*cube%mpi_grp%size))
703 call cube%mpi_grp%allgather(tmp_local, 6, mpi_integer, local_sizes, 6, mpi_integer)
705 safe_allocate(local_sizes(1:6))
706 local_sizes(:) = tmp_local(:)
709 do process = 1, cube%mpi_grp%size
710 position = ((process-1)*6)+1
712 part(process)%start_xyz(1) = local_sizes(position)
713 part(process)%start_xyz(2) = local_sizes(position+1)
714 part(process)%start_xyz(3) = local_sizes(position+2)
715 part(process)%end_xyz(1) = local_sizes(position)+local_sizes(position+3)-1
716 part(process)%end_xyz(2) = local_sizes(position+1)+local_sizes(position+4)-1
717 part(process)%end_xyz(3) = local_sizes(position+2)+local_sizes(position+5)-1
726 type(
cube_t),
intent(in) :: cube
727 type(namespace_t),
intent(in) :: namespace
729 integer :: nn, ii, jj, kk
733 character(len=3) :: filenum
739 safe_allocate(part(1:cube%mpi_grp%size))
742 if (mpi_world%is_root())
then
743 call io_mkdir(
'debug/cube_partition', namespace)
744 npart = cube%mpi_grp%size
749 write(filenum,
'(i3.3)') nn
751 iunit = io_open(
'debug/cube_partition/cube_partition.'//filenum, &
752 namespace, action=
'write')
753 do kk = 1, cube%rs_n_global(3)
754 do jj = 1, cube%rs_n_global(2)
755 do ii = 1, cube%rs_n_global(1)
760 write(iunit,
'(3i8)') ii, jj, kk
771 safe_deallocate_a(part)
774 call cube%mpi_grp%barrier()
781 type(
cube_t),
intent(inout) :: cube
782 class(mesh_t),
intent(in) :: mesh
786 call mesh_cube_map_init(cube%cube_map, mesh, mesh%np)
787 cube%cube_map_present = .
true.
subroutine cube_set_blocksize(rs_n_global, blocksize, rank, rs_n, rs_istart)
subroutine cube_init_fourier_mode_numbers_mapping(cube)
Initialises the mapping between local cube index in Fourier space and global FFT integer frequencies....
subroutine cube_do_mapping(cube, fs)
do the mapping between global and local points of the cube
subroutine, public cube_end(cube)
logical function, public cube_global2local(cube, ixyz, lxyz)
True if global coordinates belong to this process. On output lxyz contains the local coordinates.
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)
subroutine cube_tp_fft_defaults(cube, fft_library)
integer pure function, public cube_point_to_process(mpi_grp, xyz, part)
integer function, public cube_getfftlibrary(cube)
Returns the FFT library of the cube. Possible values are FFTLIB_NONE, FFTLIB_FFTW,...
subroutine cube_init_coords(cube, tp_enlarge, spacing, fft_library)
subroutine, public cube_partition(cube, part)
subroutine, public cube_init_cube_map(cube, mesh)
subroutine cube_partition_messages_debug(cube, namespace)
Fast Fourier Transform module. This module provides a single interface that works with different FFT ...
subroutine, public fft_init(this, nn, dim, type, library, optimize, optimize_parity, comm, mpi_grp, use_aligned, howmany)
integer, parameter, public fft_none
global constants
subroutine, public fft_end(this)
integer, public fft_default_lib
pure integer function, public pad_feq(ii, nn, mode)
convert between array index and G-vector
integer, parameter, public fftlib_accel
subroutine, public fft_get_dims(fft, rs_n_global, fs_n_global, rs_n, fs_n, rs_istart, fs_istart)
integer, parameter, public fftlib_nfft
integer, parameter, public fftlib_none
integer, parameter, public fftlib_pnfft
integer, parameter, public fftlib_pfft
integer, parameter, public fftlib_fftw
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...
real(real64), parameter, public m_two
real(real64), parameter, public m_zero
real(real64), parameter, public m_pi
some mathematical constants
real(real64), parameter, public m_one
subroutine, public mesh_cube_map_end(this)
This module defines the meshes, which are used in Octopus.
character(len=256), dimension(max_lines), public message
to be output by fatal, warning
subroutine, public messages_fatal(no_lines, only_root_writes, namespace)
type(mpi_comm), parameter, public mpi_comm_undefined
used to indicate a communicator has not been initialized
type(mpi_grp_t), public mpi_world
subroutine mpi_grp_init(grp, comm)
Initialize MPI group instance.
The low level module to work with the PFFT library. http:
subroutine, public profiling_out(label)
Increment out counter and sum up difference between entry and exit time.
subroutine, public profiling_in(label, exclude)
Increment in counter and save entry time.
It is intended to be used within a vector.
This is defined even when running serial.