From b1b115ecd6d680f653da9d81d573a238f224128f Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Tue, 19 Jan 2016 15:31:37 -0500 Subject: [PATCH] benchmark/scripts/SCIPY/ssyrk.py: Overwrite will work on a Fortran array of the correct type. --- benchmark/scripts/SCIPY/ssyrk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/scripts/SCIPY/ssyrk.py b/benchmark/scripts/SCIPY/ssyrk.py index c13c62cdf..30aa6c92f 100755 --- a/benchmark/scripts/SCIPY/ssyrk.py +++ b/benchmark/scripts/SCIPY/ssyrk.py @@ -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)