F2PY is a tool that provides an interface between the Python and Fortran programming languages.
1
vote
0answers
22 views
f2py: Exposing parameters from “used” modules
I assume that this question has been addressed somewhere, but I have spent an inordinate amount of time looking around for the answer including digging into the source code a bit. I have tried to put ...
0
votes
0answers
11 views
How to include only some modules in f2py via setup.py
I have a very long piece of fortran code, some parts of which I would like to expose to python. It works fine from the command line, with
f2py -m extrpsf -c extract_psf.f95 only: extract_psf psfmany ...
2
votes
2answers
84 views
f2py: strange behaviour for constants in module
I found some strange behaviour for f2py when working with global constants in a Fortran module.
Let's say I have a file test.f90, which looks like
module test1
real, parameter :: a = 12345.
end ...
0
votes
0answers
3 views
f2py : comment line using .f90 file
When using f2py with a .f90 file, does one have to use the flag !f2py instead of Cf2py?
I use the intel fortran compiler and it seems compile to a .pyd file if I use !f2py. If I use Cf2py, it fails.
...
1
vote
1answer
40 views
Building 64-bit Python extensions with f2py on Windows
I'm attempting to build a Python extension from Fortran source using Numpy's f2py.py script. I'm following the steps from http://www.scipy.org/F2PY_Windows (web archive). My system is Windows 7 ...
2
votes
0answers
50 views
Fortran extension to Python via f2py: How to profile?
I'm using an extension to Python (2.7.2) written in Fortran (gfortran 4.4.7) compiled via f2py (Ver. 2).
I can profile the Python part with cProfile, but the result does not give any information ...
2
votes
1answer
69 views
f2py function release GIL
Does the Global Interpretter Lock (GIL) get released when I call an f2py wrapped function?
(I'm happy to try to discover on my own, but I'm not familiar enough with the numpy source to know where ...
-1
votes
1answer
43 views
ValueError: failed to initialize intent(inout) array — expected elsize=8 but got 4 [closed]
I'm getting this error when I invoke scipy.optimize.l_bfgs_b I have little idea what the problem might be.
0
votes
1answer
87 views
python and f2py error - NameError: global name 'inputUtil" is not defined
I have compiled a fortran code in python using f2py (inputUtil.pyd). I import this function into my main python code and I pass two characters to this function (locationAID and locationBID) from a ...
2
votes
0answers
89 views
Strange accuracy difference between ipython and ipython notebook then using fortran module with f2py
I'm encountering a strange accuracy difference between ipython and the ipython notebook when using a fortran module compiled with f2py.
My fortran module is:
subroutine tt(string,fmt,n_num,out)
...
0
votes
1answer
55 views
C functions wrapped with f2py return only zeros
I am trying to wrap a simple C function using f2py. It compiles all right, but the function returns only zero. I am a novice in C, so I am pretty sure making a silly mistake there.
For example, the c ...
0
votes
1answer
76 views
f2py with include files
I am compiling a fortran program called prog.f. It contains an include file called test.inc.
This below runs successfully and shows that my include file is found. I have a prog.so file generated.
...
1
vote
1answer
88 views
Excluding a call to a subroutine from a commercial library
I have a fortran file with a lot of useful subroutines, and I want to make a Python interface to it using f2py.
The problem arises because some fortran subroutines call the FFT subroutine from the ...
2
votes
1answer
91 views
Translate F2PY compile steps into setup.py
I've inherited a Fortran 77 code which implements several subroutines which are run through a program block which requires a significant amount of user-input via an interactive command prompt every ...
2
votes
1answer
82 views
allocate on the fly vectors into fortran from python using f2py
I have the following start of a subroutine called by python:
Called from python using: libomp.cic(pos,mpart,boxsize,dim,npart)
subroutine cic(pos,mpart,boxsize,dim,npart,mesh)
use omp_lib
implicit ...
1
vote
1answer
73 views
F2PY doesn't find a module
I am having difficulty with getting a f2py compiled module work in python.
I have a piece of software written in fortran that compiles well on a Linux 64bit machine.
Further on F2Py compiles a python ...
1
vote
0answers
38 views
Mixing f2py with distutils
I have a python package "trees", which contains myscript.py file which makes use of a fortran subroutine.
Normally I compile the fortran module with
f2py -c -m calctree calctree.f90
and I can then ...
1
vote
0answers
80 views
How to use fortran90 subroutines in python with Cython and iso_c_bindings
Up until recently I've been using IDL for the majority of my computational problems. One of my most frequently used routines is a bit of fortran90 code, wrapped in C and called from IDL using the ...
0
votes
0answers
180 views
f2py doesn't find ifort compiler - how to fix?
I have the Intel ifort version 12.1.3 compiler installed as /usr/bin/ifort, but when I run
f2py -c --help-fcompiler
I get (among other things):
Fortran compilers found:
--fcompiler=gnu GNU ...
2
votes
2answers
215 views
I want Python as front end, Fortran as back end. I also want to make fortran part parallel - best strategy?
I have a python script I hope to do roughly this:
calls some particle positions into an array
runs algorithm over all 512^3 positions to distribute them to an NxNxN matrix
feed that matrix back to ...
0
votes
0answers
105 views
Error trying to use f2py on Mac OS X?
I'm trying to use f2py on my Mac. When I type f2py in Terminal, this is returned:
zacks-macbook-pro-2:~ zack$ f2py
Traceback (most recent call last):
File "/usr/local/bin/f2py", line 5, in ...
3
votes
1answer
96 views
f2py doesn't like explicit shaped array in subroutine
I am trying to compile a python module from some Fortran code using f2py. The code compiles fine with ifort, but throws up errors when using f2py. Here is the code (it is over two files):
gdat.f90:
...
2
votes
1answer
156 views
making python and fortran friends
Assume we need to call fortran function, which returns some values, in python program. I found out that rewriting fortran code in such way:
subroutine pow2(in_x, out_x)
implicit none
...
1
vote
0answers
104 views
f2py subroutine calling fortran functions
Is it possible to write a Fortran f2py subroutine that calls a Fortran function which is calling another Fortran function?
For Example:
subroutine hello(a)
...
call newton(b, c)
...
end ...
3
votes
1answer
226 views
How to deal with global variables when calling fortran code in python (e.g. with f2py)?
I want to run some fortran codes with python and am using f2py -c -m for it. However, it seems that only the FUNCTIONs are packed into the .so file, but not the PROGRAM. How can I deal with global ...
0
votes
3answers
2k views
Installing SciPy on Red Hat
I am trying to install the SciPy package on Red Hat Enterprise Linux Server release 6.3. However, it is failing.
The version of Python I am using is 2.6, however it seems to require 2.4. Is there ...
1
vote
2answers
85 views
f2py speed with array ordering
I'm writing some code in fortran (f2py) in order to gain some speed because of a large amount of calculations that would be quite bothering to do in pure Python.
I was wondering if setting NumPy ...
1
vote
1answer
469 views
f2py: Specifying real precision in fortran when interfacing with python?
I am playing around with f2py. I'm a bit confused about numpy intrinsic types vs. fortran 90 types. It seems like I can only use single precision reals in fortran 90, when interacting with python. Let ...
0
votes
1answer
194 views
Using arrays of different sizes with f2py [closed]
f2py automatically extracts the dimensions of Numpy arrays that you pass to it, such that you don't need to specify the dimensions in the function call.
For example, for the following simple FORTRAN ...
1
vote
1answer
135 views
malloc error in f2py
I am trying to use f2py to run a simple integration problem in 3 dimensions.
The python code which calls the fortran code is as follows:
...
0
votes
0answers
91 views
Cannot successfully pass fortran object (.obj) through f2py
I have a fortran object file (.obj) that I would like to import into python using f2py. I dont have the source code for the object file, but I know the names of the subroutines it contains and how to ...
3
votes
1answer
447 views
Numpy distutils howto
I spent almost an hour googling for the solution, but the documentation for numpy.distutils is very sparse.
I have a f2py-wrapped module. It consists basically of 3 files:
a.f90
a.pyf
lib.a <- ...
2
votes
0answers
86 views
import f2py extension as 'import mymod.foo'
I've created a Python module from Fortran files with:
f2py -c -m mymod file1.f90 file2.f90 file3.f90
file1.f90 contains Fortran modules: foo, bar, bar.
Module foo contains functions: f,g,h.
f2py ...
0
votes
0answers
92 views
Using F2py in distutils
I am using fortran programs within a python script, and trying to build and install it with a setup.py script, using numpy.distutils. However, I am not adept at knowing how to link in various code ...
0
votes
0answers
142 views
How to import python module (.pyd file) into Django?
I create a Fortran file (fortran_src.f)as below:
C File fortran_src.f
subroutine foo (a)
integer a
print*, "fortran: Hello from Fortran!", a
end
and use f2py.py to generate fortran_src.pyd
...
0
votes
0answers
87 views
How to debug crash of f2py module?
I have used the f2py tool to create a Python module from a FORTRAN model (I didn't write the FORTRAN model myself, and I'm not a very experienced FORTRAN programmer). I have managed to get f2py to ...
0
votes
1answer
289 views
Problems with f2py: undefined references to module in subroutine
I am trying to compile a Fortran f90 file with f2py, to use in Python. The file is a subroutine that calls a module from another file. The module is basically for allocation. I can compile the module, ...
0
votes
1answer
101 views
f2py wrapper compilation error: setting shape of array
I'm having a problem with compiling via f2py. I have an f90 module with several subroutines in it. It has been compiling fine up to this point for use in a python script. However, now when I try to ...
0
votes
0answers
60 views
Ipython notebook and fortran extensions output
I tried the Ipython notebook (0.13). It looks great, but I have the following problem:
I have a fortran extension (using f2py) that writes to stdout. But it does not write it to the web interface!
Is ...
0
votes
0answers
133 views
Debugging/profiling python extensions
I write most of my codes as Fortran extension to Python, using fantastic f2py tool.
However, it is sometimes difficult to catch the memory leaks, and profile the program (where the most time it is ...
5
votes
1answer
177 views
Issues when using f2py module in python code
I have a FORTRAN code that required the following compile command
gfortran -c interp.f -ffixed-format -ffix-line-length-none
I compiled the same using f2py module in python
from numpy import f2py
...
1
vote
1answer
124 views
Passing an object array to Fortan using f2py
Fortran subroutines can take another subroutine as argument.
subroutine mst(yht)
..
..
call yht(..)
But how about an array of objects from python? How can i send say arr=[yht,yht,yht]
to fortran.I ...
3
votes
2answers
291 views
f2py — prevent array reordering
I have an array which is read from a fortran subroutine as a 1D array via f2py. Then in python, that array gets reshaped:
a=np.zeros(nx*ny*nz)
read_fortran_array(a)
a=a.reshape(nz,ny,nx) #in ...
1
vote
1answer
228 views
How to link to FORTRAN library via numpy distutils
I'm having trouble getting my setup.py script to work properly when linking to FORTRAN libraries.
I have almost no experience with libraries, so I may use the incorrect terminology. I have a fortran ...
3
votes
1answer
148 views
f2py giving “redefinition of 'foo'… previous definition was here”
this is my first question so be nice to me.
I'm using f2py from numpy 1.6.1. I have a fortran module containing several subroutines which compile (and work) just fine. However, one of them uses the ...
2
votes
1answer
196 views
Subroutine argument not passed correctly from Python to Fortran
I am using f2py to compile a numerical module for use by a Python script. I have reduced my code to the minimal example below:
fd.f:
module fd
! Double precision real kind
integer, parameter :: ...
0
votes
2answers
126 views
How can I “catch” a seg fault while importing an F2Py module?
Some background, the relevance of which may fluctuate:
I am currently in possesion of some F2Py libraries - Python modules compiled by F2Py from some Fortran code. For all intents and purposes, you ...
2
votes
1answer
210 views
f2py array valued functions
Do recent versions of f2py support wrapping array-valued fortran functions?
In some ancient documentation this wasn't supported. How about it now?
Let's for example save the following function as ...
1
vote
1answer
342 views
make doesn't run .py file
I am trying to create a Python module from Fortran code using f2py. I have set up a Makefile for my project. I am using MinGW and Python 3.2.2 on Windows 7. When I run
f2py.py -c ...
0
votes
1answer
183 views
Copy FORTRAN (called via F2PY) output in Python
I am using some fortran code in python via f2py. I would like to redirect the fortran output to a variable I can play with. There is this question which I found helpful.
Redirecting FORTRAN (called ...