Created
March 19, 2012 11:14
-
-
Save npinto/2107921 to your computer and use it in GitHub Desktop.
blas honeybadger bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| from scipy import linalg | |
| N = 1000 | |
| X = np.random.random((N, 512)) | |
| K = np.dot(X, X.T) | |
| v, Q = linalg.eigh(K) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| print "numpy" | |
| import numpy as np | |
| print np.__file__ | |
| print np.__version__ | |
| print "scipy" | |
| import scipy as np | |
| print np.__file__ | |
| print np.__version__ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I thought the honey badger didn't give a $#@*!#? :P