benchmark/scripts/SCIPY/ssyrk.py: Overwrite will work on a Fortran array of the corre...
authorJohn Kirkham <kirkhamj@janelia.hhmi.org>
Tue, 19 Jan 2016 20:31:37 +0000 (15:31 -0500)
committerJohn Kirkham <kirkhamj@janelia.hhmi.org>
Tue, 19 Jan 2016 20:31:37 +0000 (15:31 -0500)
benchmark/scripts/SCIPY/ssyrk.py

index c13c62c..30aa6c9 100755 (executable)
@@ -16,7 +16,7 @@ def run_ssyrk(N, l):
 
     start = time.time()
     for i in range(0, l):
-        C[...] = blas.ssyrk(1.0, A)
+        blas.ssyrk(1.0, A, c=C, overwrite_c=True)
     end = time.time()
 
     timediff = (end - start)