Skip to content

Instantly share code, notes, and snippets.

Created September 27, 2013 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/6730300 to your computer and use it in GitHub Desktop.
Save anonymous/6730300 to your computer and use it in GitHub Desktop.
BLAS numpy test
#!/usr/bin/env python2
import numpy as np
A1 = np.random.randn(500,500)
A2 = np.random.randn(500,500)
for i in range(800):
np.dot(A1, A2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment