Tagged Questions
5
votes
1answer
175 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
50 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
75 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
1answer
412 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
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
2answers
117 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
44 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
87 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
262 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
699 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 ...