Skip to content
Snippets Groups Projects
Commit a8c67f70 authored by Antoine Cyril David Hoffmann's avatar Antoine Cyril David Hoffmann
Browse files

adapted for opt Sapj

parent 01174c61
No related branches found
No related tags found
No related merge requests found
...@@ -13,11 +13,11 @@ MODULE fourier ...@@ -13,11 +13,11 @@ MODULE fourier
PUBLIC :: init_grid_distr_and_plans, convolve_2D_F2F, finalize_plans PUBLIC :: init_grid_distr_and_plans, convolve_2D_F2F, finalize_plans
real(C_DOUBLE), pointer :: real_data_f(:,:), real_data_g(:,:), real_data_c(:,:) real(C_DOUBLE), pointer, PUBLIC :: real_data_f(:,:), real_data_g(:,:), real_data_c(:,:)
complex(C_DOUBLE_complex), pointer :: cmpx_data_f(:,:), cmpx_data_g(:,:), cmpx_data_c(:,:) complex(C_DOUBLE_complex), pointer, PUBLIC :: cmpx_data_f(:,:), cmpx_data_g(:,:), cmpx_data_c(:,:)
type(C_PTR) :: cdatar_f, cdatar_g, cdatar_c type(C_PTR) :: cdatar_f, cdatar_g, cdatar_c
type(C_PTR) :: cdatac_f, cdatac_g, cdatac_c type(C_PTR) :: cdatac_f, cdatac_g, cdatac_c
type(C_PTR) :: planf, planb type(C_PTR) , PUBLIC :: planf, planb
integer(C_INTPTR_T) :: i, ix, iy, alloc_local_1, alloc_local_2 integer(C_INTPTR_T) :: i, ix, iy, alloc_local_1, alloc_local_2
integer(C_INTPTR_T) :: NR_, NZ_ integer(C_INTPTR_T) :: NR_, NZ_
...@@ -98,7 +98,6 @@ MODULE fourier ...@@ -98,7 +98,6 @@ MODULE fourier
end do end do
end do end do
END SUBROUTINE convolve_2D_F2F END SUBROUTINE convolve_2D_F2F
SUBROUTINE finalize_plans SUBROUTINE finalize_plans
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment