benchmark/scripts/SCIPY/dsyrk.py: Arrays should be Fortran order.

This commit is contained in:
John Kirkham 2016-01-19 15:29:43 -05:00
parent e85f8af519
commit 07bba933ff
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ from scipy.linalg import blas
def run_dsyrk(N, l):
A = randn(N, N).astype('float64')
C = zeros((N, N), dtype='float64')
A = randn(N, N).astype('float64', order='F')
C = zeros((N, N), dtype='float64', order='F')
start = time.time()
for i in range(0, l):