Skip to content

Instantly share code, notes, and snippets.

@QuantTraderEd
Created June 19, 2015 13:57
Show Gist options
  • Save QuantTraderEd/3673ae8853dd2ba019b5 to your computer and use it in GitHub Desktop.
Save QuantTraderEd/3673ae8853dd2ba019b5 to your computer and use it in GitHub Desktop.
BLAS Test
import numpy as np
import time
m1 = np.mat(np.random.rand(2800, 2800))
m2 = np.mat(np.random.rand(2800, 2800))
t = time.time(); m3 = m1 * m2; print time.time() - t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment