-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Import error with numpy.dot #1346
Comments
numpy version : 1.16.2 |
Do you have |
(you should use python3 btw, python2 support ends at then end of 2019) |
Yes libatlas-base-dev is installed (version 3.10.3-8). |
Can you try to install openblas and to add this to your '~/.pythranrc` :
|
Yes, this solves the issue. |
Good to knwo. I'll still have a loo to the atlas issue later on, thus not closing the issue. |
After compiling the following example test_pythran.py
"""
import numpy as np
#pythran export mytest(float[],float[:,:])
def mytest(a,b):
res = np.dot(a,b)
return res
"""
with command :
pythran test_pythran.py
then, import test_pythran in python fails with the following error
"""
The text was updated successfully, but these errors were encountered: