Code Monkey home page Code Monkey logo

Comments (4)

gfogwill avatar gfogwill commented on July 18, 2024

Hello,
i'm trying to do something similar, but without success.

My code is:

subroutine test(a, b)

implicit none

INTEGER, PARAMETER           :: real_x = SELECTED_REAL_KIND(p=14, r=300)
INTEGER :: i

REAL(real_x), INTENT(inout)  :: a(10)               
REAL(real_x), INTENT(out)    :: b(10)

do i=1,10
    b(i)=a(i)*2
enddo

end subroutine test

When I call f90wrap, f90wrap_toplevel.f90 is generated:

subroutine f90wrap_test(a, b)
    implicit none
    external test
    
    real(4), intent(inout), dimension(10) :: a
    real(4), dimension(10), intent(inout) :: b
    call test(a, b)
end subroutine f90wrap_test

And my test.py file is:

from __future__ import print_function, absolute_import, division
import _test
import f90wrap.runtime
import logging

def test(a, b):
    """
    test(a, b)
    

    Defined at test.f90 lines 1-13

    Parameters
    ----------
    a : float array
    b : float array
    
    """
    _test.f90wrap_test(a=a, b=b)

So I cannot get the value of 'b' variable.

Is it possible to make this work?

from f90wrap.

jameskermode avatar jameskermode commented on July 18, 2024

This should work as you expect, I’ll take a look. Thanks for reporting!

from f90wrap.

jameskermode avatar jameskermode commented on July 18, 2024

I tried your example, I think it's working correctly - if you preallocate arrays from Python you can pass them in and out of Fortran and they are modified in place, e.g:

import test
import numpy as np

a = np.zeros(10, dtype=np.float32)
b = np.zeros(10, dtype=np.float32)
a[:] =  [i for i in range(len(a))]
test.test(a, b)
print(b)

shows the modified version of the array b.

from f90wrap.

gfogwill avatar gfogwill commented on July 18, 2024

Thanks, it's working!

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.