Created
June 19, 2015 13:57
-
-
Save QuantTraderEd/3673ae8853dd2ba019b5 to your computer and use it in GitHub Desktop.
BLAS Test
This file contains 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 | |
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