Browse Source

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

tags/v0.2.16.rc1
John Kirkham 10 years ago
parent
commit
e85f8af519
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      benchmark/scripts/SCIPY/ssyrk.py

+ 2
- 2
benchmark/scripts/SCIPY/ssyrk.py View File

@@ -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):


Loading…
Cancel
Save