You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi again @jameskermode
I tried to use f90wrap with a very simple test implementation.
module simple_module
use, intrinsic:: iso_fortran_env, only: REAL64, INT32
type, public :: simple_type
integer(kind=INT32) :: a
real(kind=REAL64) :: b
contains
!Setter subroutines
!Getter functions
!Finalize routines
end type simple_type
contains
! Definitions of Routines and Functions
end module simple_module
Hi again @jameskermode
I tried to use f90wrap with a very simple test implementation.
I defined the kind_map file containing
produces the file f90wrap_simple_module.f90 and simple.py.
If I then try to run
I end up with
I'm probably missing something, but I could not find anything in the docs which resolved my issue.
Thanks in advance and best regards
The text was updated successfully, but these errors were encountered: