From 07bba933ff1464cb3ce7c638ba453b1a1b2409ab Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Tue, 19 Jan 2016 15:29:43 -0500 Subject: [PATCH] benchmark/scripts/SCIPY/dsyrk.py: Arrays should be Fortran order. --- benchmark/scripts/SCIPY/dsyrk.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/scripts/SCIPY/dsyrk.py b/benchmark/scripts/SCIPY/dsyrk.py index 0ee83bcb7..4495fad16 100755 --- a/benchmark/scripts/SCIPY/dsyrk.py +++ b/benchmark/scripts/SCIPY/dsyrk.py @@ -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):