Skip to content
Snippets Groups Projects
Commit 2f5aa26c authored by Jean-Baptiste Keck's avatar Jean-Baptiste Keck
Browse files

fortran f2py fix ?

parent 5525d67b
No related branches found
No related tags found
No related merge requests found
{'integer':{'c_int':'int'}, 'real':{'real64':'double', 'real32':'float', 'wp':'@f2pymap_for_real@'}} {'integer':{'ip':'int'}, 'real':{'real64':'double', 'real32':'float', 'wp':'@f2pymap_for_real@'}}
...@@ -15,15 +15,15 @@ __FFTW_ENABLED__ = "ON" is "ON" ...@@ -15,15 +15,15 @@ __FFTW_ENABLED__ = "ON" is "ON"
__SCALES_ENABLED__ = "ON" is "ON" __SCALES_ENABLED__ = "ON" is "ON"
__OPTIMIZE__ = "OFF" is "ON" __OPTIMIZE__ = "OFF" is "ON"
__VERBOSE__ = True __VERBOSE__ = "ON" in ["1", "3"]
__DEBUG__ = "OFF" in ["2", "3"] __DEBUG__ = "ON" in ["2", "3"]
__KERNEL_DEBUG__ = "OFF" in ["4", "3"] __KERNEL_DEBUG__ = "ON" in ["4", "3"]
__PROFILE__ = "OFF" in ["0", "1"] __PROFILE__ = "OFF" in ["0", "1"]
__ENABLE_LONG_TESTS__ = "OFF" is "ON" __ENABLE_LONG_TESTS__ = "OFF" is "ON"
# OpenCL # OpenCL
__DEFAULT_PLATFORM_ID__ = 0 __DEFAULT_PLATFORM_ID__ = 1
__DEFAULT_DEVICE_ID__ = 0 __DEFAULT_DEVICE_ID__ = 0
......
...@@ -9,6 +9,6 @@ module arnoldi ! in arnoldi2py.f90 ...@@ -9,6 +9,6 @@ module arnoldi ! in arnoldi2py.f90
integer intent(in) :: nt integer intent(in) :: nt
integer intent(in) :: nfp integer intent(in) :: nfp
integer intent(in) :: nmodes integer intent(in) :: nmodes
real(kind=pk) intent(in) :: Tps real(kind=wp) intent(in) :: Tps
end subroutine arnoldi3d end subroutine arnoldi3d
end module arnoldi end module arnoldi
...@@ -9,6 +9,6 @@ module arnoldi ! in arnoldi2py.f90 ...@@ -9,6 +9,6 @@ module arnoldi ! in arnoldi2py.f90
integer intent(in) :: nt integer intent(in) :: nt
integer intent(in) :: nfp integer intent(in) :: nfp
integer intent(in) :: nmodes integer intent(in) :: nmodes
real(kind=pk) intent(in) :: Tps real(kind=wp) intent(in) :: Tps
end subroutine arnoldi3d end subroutine arnoldi3d
end module arnoldi end module arnoldi
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