30 use,
intrinsic :: iso_fortran_env
60 logical :: parallel_in_domains
61 type(mpi_grp_t) :: mpi_grp
63 integer :: rs_n_global(1:3)
64 integer :: fs_n_global(1:3)
67 integer :: rs_istart(1:3)
68 integer :: fs_istart(1:3)
69 integer :: center(1:3)
71 real(real64),
allocatable :: Lrs(:,:)
72 real(real64),
allocatable :: Lfs(:,:)
74 integer,
allocatable :: np_local(:)
75 integer,
allocatable :: xlocal(:)
76 integer,
allocatable :: local(:,:)
77 integer,
allocatable :: np_local_fs(:)
78 integer,
allocatable :: xlocal_fs(:)
79 integer,
allocatable :: local_fs(:,:)
82 type(fft_t),
allocatable :: fft
83 logical,
private :: has_cube_mapping = .false.
86 real(real64) :: spacing(3)
88 type(lattice_vectors_t),
allocatable :: latt
90 type(mesh_cube_map_t) :: cube_map
91 logical :: cube_map_present = .false.
92 integer :: batch_capacity
95 integer :: batch_axis = 1
104 integer :: start_xyz(1:3)
105 integer :: end_xyz(1:3)
111 subroutine cube_init(cube, nn, namespace, space, spacing, coord_system, fft_type, fft_library, dont_optimize, nn_out, &
112 mpi_grp, need_partition, tp_enlarge, blocksize, batch_size, batch_axis)
113 type(cube_t),
intent(out) :: cube
114 integer,
intent(in) :: nn(:)
115 type(namespace_t),
intent(in) :: namespace
116 class(space_t),
intent(in) :: space
117 real(real64),
intent(in) :: spacing(:)
118 class(coordinate_system_t),
intent(in) :: coord_system
119 integer,
optional,
intent(in) :: fft_type
120 integer,
optional,
intent(in) :: fft_library
121 logical,
optional,
intent(in) :: dont_optimize
122 integer,
optional,
intent(out) :: nn_out(3)
124 type(mpi_grp_t),
optional,
intent(in) :: mpi_grp
125 logical,
optional,
intent(in) :: need_partition
126 real(real64),
optional,
intent(in) :: tp_enlarge(3)
129 integer,
optional,
intent(in) :: blocksize
131 integer,
optional,
intent(in) :: batch_size
133 integer,
optional,
intent(in) :: batch_axis
136 type(MPI_Comm) :: comm
137 integer :: tmp_n(3), fft_type_, optimize_parity(3), fft_library_, nn3d(3)
138 integer :: effdim_fft, my_n(3), idir, idir2
139 logical :: optimize(3)
140 type(mpi_grp_t) :: mpi_grp_
141 real(real64) :: tp_enlarge_(3), lattice_vectors(3, 3)
142 type(space_t) :: cube_space
147 assert(space%dim <= 3)
149 nn3d(1:space%dim) = nn(1:space%dim)
150 nn3d(space%dim+1:3) = 1
152 cube%spacing(1:space%dim) = spacing(1:space%dim)
153 cube%spacing(space%dim+1:3) = -
m_one
157 assert(cube%batch_axis == 1 .or. cube%batch_axis == 4)
161 if (
present(tp_enlarge)) tp_enlarge_(:)=tp_enlarge(:)
163 effdim_fft = min(3, space%dim)
166 if (
present(mpi_grp)) mpi_grp_ = mpi_grp
170 if (
present(fft_library))
then
171 fft_library_ = fft_library
178 write(
message(1),
'(a)')
'You have selected the PFFT for FFT, but it was not linked.'
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)
204 call cube_set_blocksize(cube%rs_n_global, blocksize, mpi_grp_%rank, cube%rs_n, cube%rs_istart)
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 batch_axis=cube%batch_axis)
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
255 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)
339 type(
cube_t),
intent(inout) :: cube
340 integer,
intent(in) :: fft_library
343 select case (fft_library)
348 cube%fft%nfft%set_defaults = .
true.
349 cube%fft%nfft%guru = .
true.
351 cube%fft%nfft%sigma = 1.1_real64
355 cube%fft%pnfft%set_defaults = .
true.
357 cube%fft%pnfft%sigma = 1.1_real64
369 type(
cube_t),
intent(inout) :: cube
370 real(real64),
intent(in) :: tp_enlarge(3)
371 real(real64),
intent(in) :: spacing(3)
372 integer,
intent(in) :: fft_library
375 integer :: ii, nn(3), maxn, idim
380 nn(1:3) = cube%fs_n_global(1:3)
383 safe_allocate(cube%Lrs(1:maxn, 1:3))
388 if (tp_enlarge(idim) >
m_one)
then
389 do ii = 2, nn(idim) - 1
390 cube%Lrs(ii, idim) = (ii - int(nn(idim)/2) -1) * spacing(idim)
392 cube%Lrs(1, idim) = (-int(nn(idim)/2)) * spacing(idim) * tp_enlarge(idim)
393 cube%Lrs(nn(idim), idim) = (int(nn(idim)/2)) * spacing(idim) * tp_enlarge(idim)
396 cube%Lrs(ii, idim) = (ii - int(nn(idim)/2) -1) * spacing(idim)
405 safe_allocate(cube%Lfs(1:maxn, 1:3))
409 temp =
m_two *
m_pi / (nn(idim) * spacing(idim))
417 cube%Lfs(ii, idim) = (ii - nn(idim)/2 - 1)*temp/tp_enlarge(idim)
419 cube%Lfs(ii, idim) =
pad_feq(ii,nn(idim), .
true.) * temp
434 integer,
intent(in) :: ixyz(3)
435 integer,
intent(out) :: lxyz(3)
437 lxyz(1) = ixyz(1) - cube%rs_istart(1) + 1
438 lxyz(2) = ixyz(2) - cube%rs_istart(2) + 1
439 lxyz(3) = ixyz(3) - cube%rs_istart(3) + 1
440 is_here = lxyz(1) >= 1 .and. lxyz(1) <= cube%rs_n(1) .and. &
441 lxyz(2) >= 1 .and. lxyz(2) <= cube%rs_n(2) .and. &
442 lxyz(3) >= 1 .and. lxyz(3) <= cube%rs_n(3)
453 type(
cube_t),
intent(in) :: cube
455 if (
allocated(cube%fft))
then
456 fft_library = cube%fft%library
465 type(
cube_t),
intent(inout) :: cube
466 logical,
intent(in) :: fs
468 integer :: tmp_local(6), position, process, ix, iy, iz, index
469 integer,
allocatable :: local_sizes(:)
470 integer(int64) :: number_points
476 tmp_local(1) = cube%rs_istart(1)
477 tmp_local(2) = cube%rs_istart(2)
478 tmp_local(3) = cube%rs_istart(3)
479 tmp_local(4) = cube%rs_n(1)
480 tmp_local(5) = cube%rs_n(2)
481 tmp_local(6) = cube%rs_n(3)
483 if (cube%parallel_in_domains)
then
484 safe_allocate(local_sizes(1:6*cube%mpi_grp%size))
486 call cube%mpi_grp%allgather(tmp_local, 6, mpi_integer, local_sizes, 6, mpi_integer)
489 safe_allocate(local_sizes(1:6))
490 local_sizes = tmp_local
495 safe_allocate(cube%xlocal(1:cube%mpi_grp%size))
496 safe_allocate(cube%np_local(1:cube%mpi_grp%size))
498 number_points = cube%rs_n_global(1) * cube%rs_n_global(2)
499 number_points = number_points * cube%rs_n_global(3)
500 if (number_points >= huge(0))
then
501 message(1) =
"Error: too many points for the normal cube. Please try to use a distributed FFT."
504 safe_allocate(cube%local(1:cube%rs_n_global(1)*cube%rs_n_global(2)*cube%rs_n_global(3), 1:3))
507 do process = 1, cube%mpi_grp%size
508 position = ((process-1)*6)+1
509 if (position == 1)
then
511 cube%np_local(1) = local_sizes(4)*local_sizes(5)*local_sizes(6)
514 cube%xlocal(process) = cube%xlocal(process-1) + cube%np_local(process-1)
515 cube%np_local(process) = local_sizes(position+3)*local_sizes(position+4)*local_sizes(position+5)
520 do iz = local_sizes(position+2), local_sizes(position+2)+local_sizes(position+5)-1
521 do iy = local_sizes(position+1), local_sizes(position+1)+local_sizes(position+4)-1
522 do ix = local_sizes(position), local_sizes(position)+local_sizes(position+3)-1
523 cube%local(index, 1) = ix
524 cube%local(index, 2) = iy
525 cube%local(index, 3) = iz
536 tmp_local(1) = cube%fs_istart(1)
537 tmp_local(2) = cube%fs_istart(2)
538 tmp_local(3) = cube%fs_istart(3)
539 tmp_local(4) = cube%fs_n(1)
540 tmp_local(5) = cube%fs_n(2)
541 tmp_local(6) = cube%fs_n(3)
544 if (cube%parallel_in_domains)
then
546 call cube%mpi_grp%allgather(tmp_local, 6, mpi_integer, local_sizes, 6, mpi_integer)
549 local_sizes = tmp_local
554 safe_allocate(cube%xlocal_fs(1:cube%mpi_grp%size))
555 safe_allocate(cube%np_local_fs(1:cube%mpi_grp%size))
557 number_points = cube%fs_n_global(1) * cube%fs_n_global(2)
558 number_points = number_points * cube%fs_n_global(3)
559 if (number_points >= huge(0))
then
560 message(1) =
"Error: too many points for the normal cube. Please try to use a distributed FFT."
563 safe_allocate(cube%local_fs(1:cube%fs_n_global(1)*cube%fs_n_global(2)*cube%fs_n_global(3), 1:3))
566 do process = 1, cube%mpi_grp%size
567 position = ((process-1)*6)+1
568 if (position == 1)
then
569 cube%xlocal_fs(1) = 1
570 cube%np_local_fs(1) = local_sizes(4)*local_sizes(5)*local_sizes(6)
573 cube%xlocal_fs(process) = cube%xlocal_fs(process-1) + cube%np_local_fs(process-1)
574 cube%np_local_fs(process) = local_sizes(position+3)*local_sizes(position+4)*local_sizes(position+5)
579 do iz = local_sizes(position+2), local_sizes(position+2)+local_sizes(position+5)-1
580 do iy = local_sizes(position+1), local_sizes(position+1)+local_sizes(position+4)-1
581 do ix = local_sizes(position), local_sizes(position)+local_sizes(position+3)-1
582 cube%local_fs(index, 1) = ix
583 cube%local_fs(index, 2) = iy
584 cube%local_fs(index, 3) = iz
597 safe_deallocate_a(local_sizes)
605 integer pure function cube_point_to_process(mpi_grp, xyz, part) result(process)
607 integer,
intent(in) :: xyz(1:3)
616 do proc = 1, mpi_grp%size
618 if (all(xyz >= part(proc)%start_xyz) .and. all(xyz <= part(proc)%end_xyz))
then
626 if (.not. found)
then
636 integer,
intent(in) :: rs_n_global(1:3)
637 integer,
intent(in) :: blocksize
638 integer,
intent(in) :: rank
639 integer,
intent(out) :: rs_n(1:3)
640 integer,
intent(out) :: rs_istart(1:3)
642 integer :: imin, imax
647 imin = min(blocksize * rank, rs_n_global(3))
648 imax = min(imin + blocksize, rs_n_global(3))
649 rs_istart(3) = 1 + imin
650 rs_n(3) = imax - imin
655 type(
cube_t),
intent(in) :: cube
658 integer :: tmp_local(6), position, process
659 integer,
allocatable :: local_sizes(:)
664 tmp_local(1) = cube%rs_istart(1)
665 tmp_local(2) = cube%rs_istart(2)
666 tmp_local(3) = cube%rs_istart(3)
667 tmp_local(4) = cube%rs_n(1)
668 tmp_local(5) = cube%rs_n(2)
669 tmp_local(6) = cube%rs_n(3)
671 if (cube%parallel_in_domains)
then
672 safe_allocate(local_sizes(1:6*cube%mpi_grp%size))
673 call cube%mpi_grp%allgather(tmp_local, 6, mpi_integer, local_sizes, 6, mpi_integer)
675 safe_allocate(local_sizes(1:6))
676 local_sizes(:) = tmp_local(:)
679 do process = 1, cube%mpi_grp%size
680 position = ((process-1)*6)+1
682 part(process)%start_xyz(1) = local_sizes(position)
683 part(process)%start_xyz(2) = local_sizes(position+1)
684 part(process)%start_xyz(3) = local_sizes(position+2)
685 part(process)%end_xyz(1) = local_sizes(position)+local_sizes(position+3)-1
686 part(process)%end_xyz(2) = local_sizes(position+1)+local_sizes(position+4)-1
687 part(process)%end_xyz(3) = local_sizes(position+2)+local_sizes(position+5)-1
696 type(
cube_t),
intent(in) :: cube
697 type(namespace_t),
intent(in) :: namespace
699 integer :: nn, ii, jj, kk
703 character(len=3) :: filenum
709 safe_allocate(part(1:cube%mpi_grp%size))
712 if (mpi_world%is_root())
then
713 call io_mkdir(
'debug/cube_partition', namespace)
714 npart = cube%mpi_grp%size
719 write(filenum,
'(i3.3)') nn
721 iunit = io_open(
'debug/cube_partition/cube_partition.'//filenum, &
722 namespace, action=
'write')
723 do kk = 1, cube%rs_n_global(3)
724 do jj = 1, cube%rs_n_global(2)
725 do ii = 1, cube%rs_n_global(1)
730 write(iunit,
'(3i8)') ii, jj, kk
741 safe_deallocate_a(part)
744 call cube%mpi_grp%barrier()
751 type(
cube_t),
intent(inout) :: cube
752 class(mesh_t),
intent(in) :: mesh
756 call mesh_cube_map_init(cube%cube_map, mesh, mesh%np)
757 cube%cube_map_present = .
true.
subroutine cube_set_blocksize(rs_n_global, blocksize, rank, rs_n, rs_istart)
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, batch_axis)
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
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
subroutine, public fft_init(this, nn, dim, type, library, optimize, optimize_parity, comm, mpi_grp, use_aligned, howmany, batch_axis)
integer, parameter, public fftlib_pfft
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.
integer, parameter, public nfft_pre_psi
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.