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, 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
131 integer,
optional,
intent(in) :: nthreads
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
144 assert(space%dim <= 3)
146 nn3d(1:space%dim) = nn(1:space%dim)
147 nn3d(space%dim+1:3) = 1
149 cube%spacing(1:space%dim) = spacing(1:space%dim)
150 cube%spacing(space%dim+1:3) = -
m_one
155 if (
present(tp_enlarge)) tp_enlarge_(:)=tp_enlarge(:)
157 effdim_fft = min(3, space%dim)
160 if (
present(mpi_grp)) mpi_grp_ = mpi_grp
164 if (
present(fft_library))
then
165 fft_library_ = fft_library
172 write(
message(1),
'(a)')
'You have selected the PFFT for FFT, but it was not linked.'
185 cube%batch_capacity = 1
190 if (
present(blocksize))
then
191 assert(
present(need_partition).and.need_partition)
198 cube%rs_n_global = nn3d
199 cube%fs_n_global = nn3d
200 cube%fs_n = cube%fs_n_global
204 cube%parallel_in_domains = (mpi_grp_%size > 1)
205 call cube_set_blocksize(cube%rs_n_global, blocksize, mpi_grp_%rank, cube%rs_n, cube%rs_istart)
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
214 if (
present(nn_out)) nn_out(1:3) = nn3d(1:3)
216 safe_allocate(cube%fft)
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
224 if (
present(dont_optimize))
then
225 if (dont_optimize) optimize = .false.
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)
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)
237 if (
present(tp_enlarge))
then
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)
250 if (.not.
allocated(cube%Lrs))
then
254 cube%center(1:3) = cube%rs_n_global(1:3)/2 + 1
261 if (
present(need_partition) .and. cube%parallel_in_domains)
then
262 cube%has_cube_mapping = need_partition
264 cube%has_cube_mapping = .false.
266 if (cube%has_cube_mapping)
then
272 select type (coord_system)
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)
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)
287 do idir = space%dim + 1, 3
288 lattice_vectors(idir, idir) =
m_one
292 cube_space%periodic_dim = space%periodic_dim
293 safe_allocate(cube%latt)
296 message(1) =
"The cube only support affine coordinate systems."
305 type(
cube_t),
intent(inout) :: cube
309 if (
allocated(cube%fft))
then
311 safe_deallocate_a(cube%fft)
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)
319 safe_deallocate_a(cube%np_local_fs)
320 safe_deallocate_a(cube%xlocal_fs)
321 safe_deallocate_a(cube%local_fs)
324 if (cube%cube_map_present)
then
328 safe_deallocate_a(cube%Lrs)
329 safe_deallocate_a(cube%Lfs)
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)
353 class(
cube_t),
intent(inout) :: cube
355 integer :: lx, ly, lz
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))))
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.)
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.)
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.)
380 type(
cube_t),
intent(inout) :: cube
381 integer,
intent(in) :: fft_library
384 select case (fft_library)
386 cube%fft%pnfft%set_defaults = .
true.
388 cube%fft%pnfft%sigma = 1.1_real64
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
406 integer :: ii, nn(3), maxn, idim
411 nn(1:3) = cube%fs_n_global(1:3)
414 safe_allocate(cube%Lrs(1:maxn, 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)
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)
427 cube%Lrs(ii, idim) = (ii - int(nn(idim)/2) -1) * spacing(idim)
436 safe_allocate(cube%Lfs(1:maxn, 1:3))
440 temp =
m_two *
m_pi / (nn(idim) * spacing(idim))
448 cube%Lfs(ii, idim) = (ii - nn(idim)/2 - 1)*temp/tp_enlarge(idim)
450 cube%Lfs(ii, idim) =
pad_feq(ii,nn(idim), .
true.) * temp
464 type(
cube_t),
intent(in) :: cube
465 integer,
intent(in) :: ixyz(3)
466 integer,
intent(out) :: lxyz(3)
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)
484 type(
cube_t),
intent(in) :: cube
486 if (
allocated(cube%fft))
then
487 fft_library = cube%fft%library
496 type(
cube_t),
intent(inout) :: cube
497 logical,
intent(in) :: fs
499 integer :: tmp_local(6), position, process, ix, iy, iz, index
500 integer,
allocatable :: local_sizes(:)
501 integer(int64) :: number_points
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)
514 if (cube%parallel_in_domains)
then
515 safe_allocate(local_sizes(1:6*cube%mpi_grp%size))
517 call cube%mpi_grp%allgather(tmp_local, 6, mpi_integer, local_sizes, 6, mpi_integer)
520 safe_allocate(local_sizes(1:6))
521 local_sizes = tmp_local
526 safe_allocate(cube%xlocal(1:cube%mpi_grp%size))
527 safe_allocate(cube%np_local(1:cube%mpi_grp%size))
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."
535 safe_allocate(cube%local(1:cube%rs_n_global(1)*cube%rs_n_global(2)*cube%rs_n_global(3), 1:3))
538 do process = 1, cube%mpi_grp%size
539 position = ((process-1)*6)+1
540 if (position == 1)
then
542 cube%np_local(1) = local_sizes(4)*local_sizes(5)*local_sizes(6)
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)
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
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)
575 if (cube%parallel_in_domains)
then
577 call cube%mpi_grp%allgather(tmp_local, 6, mpi_integer, local_sizes, 6, mpi_integer)
580 local_sizes = tmp_local
585 safe_allocate(cube%xlocal_fs(1:cube%mpi_grp%size))
586 safe_allocate(cube%np_local_fs(1:cube%mpi_grp%size))
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."
594 safe_allocate(cube%local_fs(1:cube%fs_n_global(1)*cube%fs_n_global(2)*cube%fs_n_global(3), 1:3))
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)
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)
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
628 safe_deallocate_a(local_sizes)
636 integer pure function cube_point_to_process(mpi_grp, xyz, part) result(process)
638 integer,
intent(in) :: xyz(1:3)
647 do proc = 1, mpi_grp%size
649 if (all(xyz >= part(proc)%start_xyz) .and. all(xyz <= part(proc)%end_xyz))
then
657 if (.not. found)
then
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)
673 integer :: imin, imax
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
686 type(
cube_t),
intent(in) :: cube
689 integer :: tmp_local(6), position, process
690 integer,
allocatable :: local_sizes(:)
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)
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)
706 safe_allocate(local_sizes(1:6))
707 local_sizes(:) = tmp_local(:)
710 do process = 1, cube%mpi_grp%size
711 position = ((process-1)*6)+1
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
727 type(
cube_t),
intent(in) :: cube
728 type(namespace_t),
intent(in) :: namespace
730 integer :: nn, ii, jj, kk
734 character(len=3) :: filenum
740 safe_allocate(part(1:cube%mpi_grp%size))
743 if (mpi_world%is_root())
then
744 call io_mkdir(
'debug/cube_partition', namespace)
745 npart = cube%mpi_grp%size
750 write(filenum,
'(i3.3)') nn
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)
761 write(iunit,
'(3i8)') ii, jj, kk
772 safe_deallocate_a(part)
775 call cube%mpi_grp%barrier()
782 type(
cube_t),
intent(inout) :: cube
783 class(mesh_t),
intent(in) :: mesh
787 call mesh_cube_map_init(cube%cube_map, mesh, mesh%np)
788 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 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, 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)
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 ...
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_init(this, nn, dim, type, library, optimize, optimize_parity, comm, mpi_grp, use_aligned, howmany, nthreads)
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.