Code Monkey home page Code Monkey logo

Comments (5)

jameskermode avatar jameskermode commented on July 18, 2024

A warning is printed if you run in verbose mode (f90wrap -v).

The mechanism used to pass opaque references to derived types between Fortran and Python does not support arrays of derived types. As a workaround, one-dimensional arrays of derived types are supported within other derived types, e.g.:

module module_calcul
type type_ptmes
integer :: y
end type type_ptmes
type array_type
type(type_ptmes) :: x(2)
end type array_type
contains
subroutine recup_point(x)
type(array_type) :: x
return
end subroutine recup_point
end module module_calcul

from f90wrap.

MrYann avatar MrYann commented on July 18, 2024

Again, I thank you for your work and your support !

I tried this, and it seems to work. Note that calls to x inside the subroutine also have to be modified :
x(1)%y has to be replaced by x%x(1)%y.

Could this be automated in the f90wrap_module.f90 file ?

  • replace all "type(type_name) :: x" arguments by "type_array :: x" arguments
  • replace all x(some_index) by x%array(some_index) in the call to the function of the original module
  • define the "type_name_array" type by "
    type type_name_array
    type(type_name) :: array(n)
    end type type_name_array
  • infer the "n" for the type_name_array size from the allocation that has to be somewhere in the f90 files

from f90wrap.

jameskermode avatar jameskermode commented on July 18, 2024

This is an interesting idea, but I don't know how intuitive it would be users. I guess it's no worse than what we already do to pass around opaque types as integer array references. I won't have time to implement this anytime soon unfortunately, but as always I'm happy to look at a pull request.

from f90wrap.

MrYann avatar MrYann commented on July 18, 2024

Fixed for 1-D fixed-lengh arrays. Maybe we close ?

from f90wrap.

jameskermode avatar jameskermode commented on July 18, 2024

Yup, closing for now. If someone needs this for 2D arrays please open a new issue.

from f90wrap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.