Tagged Questions
The f2py tag has no wiki summary.
11
votes
1answer
140 views
setup.py for packages that depend on both cython and f2py
I would like to create a setup.py script for a python package with several submodules that depend on both cython and f2py. I have attempted to use setuptools and numpy.distutils, but have so far ...
5
votes
1answer
179 views
what's the overhead of passing python callback functions to Fortran subroutines?
I just wrapped a Fortran 90 subroutine to python using F2PY. The subtlety here is that the Fortran subroutine aslo takes a python call-back function as one of its arguments:
SUBROUTINE f90foo(pyfunc, ...
2
votes
1answer
102 views
passing c++ double pointer to python
I could pass one-dimension array to python like below.
and I wonder if I can pass c++ double pointer array to python by using ctypes, numpy.
test.cpp:
#include <stdio.h>
extern "C" void ...
2
votes
1answer
52 views
using F2Py through Python code
How to use F2Py through Python instead of calling it in command line?
I have a portable Python in use, am not able to install Python. Thus it is not possible to install packages except those work if ...
2
votes
1answer
84 views
Embedding Fortran in Python with f2py
I need a script to recurse across a directory structure, extract numbers from files in the directories, then perform calculations on those numbers. I am using Python as the main language for the ...
2
votes
1answer
80 views
F2Py: Working with allocatable arrays in Fortran being invoked through Python
Using F2Py to compile Fortran routines being suitable to be used within Python, the following peice of code is successfully compiled configured gfortran as the compiler while using F2Py, however, at ...
1
vote
1answer
102 views
f2py error: undefined symbol
I need to wrap a simply fortran90 code with f2py. The fortran module "test.f90" is
module util
contains
FUNCTION gasdev(idum)
implicit none
INTEGER(kind=4), intent(inout) :: idum
REAL(kind=8) :: ...
1
vote
3answers
347 views
NameError: name 'f2py' is not defined
after installing python, numpy and scipy_dist_utils i typed f2py onto the python interpretor
the result is as below
>>> f2py
Traceback (most recent call last):
File "<pyshell#0>", ...
1
vote
1answer
413 views
How do I create a python module from a fortran program with f2py?
I am trying to read some smps files with python, and found a fortran implementation, so I thought I would give f2py a shot. The problem is that I have no experience with fortran.
I have successfully ...
1
vote
1answer
269 views
F2PY: Passing single-element arrays to Fortran
The following Fortran code fills a 2D array x with value v
subroutine fill(x,v,m,n)
real*8 x(m,n),v
integer m,n,i
cf2py intent(in) :: x,v,m,n
forall(i=1:m,j=1:n) x(i,j) = v
...
1
vote
2answers
1k views
Fortran: 32 bit / 64 bit performance portability
I've been starting to use Fortran (95) for some numerical code (generating python modules). Here is a simple example:
subroutine bincount (x,c,n,m)
implicit none
integer, intent(in) :: n,m
...
0
votes
0answers
27 views
f2py creating and then immediately overwriting temp files
I recently installed python and numpy on my computer, and I have a fortran compiler that is recognized by f2py. However, when I try to run a very simple instance of f2py, it all goes to hell. From ...
0
votes
0answers
11 views
“ctrl-c” a fortran program that was started by python using f2py
I'm using python to call some fortran subroutines through the use of f2py. I would like to know how can I pass the "ctrl-c" signal to these subroutines, in order to cancel their execution whenever I ...
0
votes
2answers
119 views
Compile fortran module with f2py
I have a Fortran module which I am trying to compile with f2py (listed below). When I remove the module declaration and leave the subroutine in the file by itself, everything works fine. However, if ...
0
votes
2answers
45 views
f2py installation not working under Windows
I am using Python 3.2 under Windows 7. I need some numerical subroutines for my Python script, and I would like to write them in Fortran and use f2py to make them compatible with my script.
As per ...
0
votes
1answer
49 views
undefined symbol: vmldExp2
I am using f2py and Intel fortran compiler to wrap some fortran code which calls some math library like dexp and dpow.
The compilation went smoothly without reporting any err, but when I attempted ...
0
votes
0answers
88 views
Problems compiling with changes to f2py
I am trying to update my package scikits.bvp_solver (source here) and I have run into some problems with f2py generated files. The files 'bvp_solverf-f2pywrappers2.f90' and 'bvp_solverfmodule.c' which ...
0
votes
1answer
263 views
Problem using f2py
I have some routines written in fortran that I'd like to use in my python code. A quick websearch informed me about f2py, and I gave it a try. Using
f2py -c numericalMethods.f -m numericalMethods
...
0
votes
1answer
700 views
Creating Python C module from Fortran sources on Ubuntu 10.04 LTS
In a project I work on we use a Python C module compiled from Fortran with f2py. I've had no issues building it on Windows 7 32bit (using mingw32) and on the servers it's built on 32bit Linux.
But ...