Skip to content

Instantly share code, notes, and snippets.

@npinto
Created March 19, 2012 11:14
Show Gist options
  • Select an option

  • Save npinto/2107921 to your computer and use it in GitHub Desktop.

Select an option

Save npinto/2107921 to your computer and use it in GitHub Desktop.
blas honeybadger bug
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)
print "numpy"
import numpy as np
print np.__file__
print np.__version__
print "scipy"
import scipy as np
print np.__file__
print np.__version__
@jtriley
Copy link
Copy Markdown

jtriley commented Mar 19, 2012

I thought the honey badger didn't give a $#@*!#? :P

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment