From e85f8af519ca7d6c432807331a88a41d7b618f9b Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Tue, 19 Jan 2016 15:28:22 -0500 Subject: [PATCH] benchmark/scripts/SCIPY/ssyrk.py: Arrays should be Fortran order. --- benchmark/scripts/SCIPY/ssyrk.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/scripts/SCIPY/ssyrk.py b/benchmark/scripts/SCIPY/ssyrk.py index 7d156d41c..c13c62cdf 100755 --- a/benchmark/scripts/SCIPY/ssyrk.py +++ b/benchmark/scripts/SCIPY/ssyrk.py @@ -11,8 +11,8 @@ from scipy.linalg import blas def run_ssyrk(N, l): - A = randn(N, N).astype('float32') - C = zeros((N, N), dtype='float32') + A = randn(N, N).astype('float32', order='F') + C = zeros((N, N), dtype='float32', order='F') start = time.time() for i in range(0, l):