Python ImportError using F2py -
i have 2 f90 files want use python, i'm using f2py compile them (together) , result python module, i'm doing this:
f2py -c controlparameters.f90 vector.f90 -m test
when this, fine, , can use functions , subroutines files python.
but now, need use f2py 2 files, adding couple of libraries, -liomp5
or -lzmumps
, python module in upper case, when try import python have following error:
importerror: /opt/intel/composer_xe_2013.1.117/mkl/lib/intel64/libmkl_blacs_intelmpi_lp64.so: undefined symbol: mpi_finalize
there libraries cannot used f2py?
Comments
Post a Comment