From a48b247e9e17120f3efe83baa43823c9a3f25fe1 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Tue, 19 Jan 2016 15:32:28 -0500 Subject: [PATCH] benchmark/scripts/SCIPY/dsyrk.py: Overwrite will work on a Fortran array of the correct type. --- benchmark/scripts/SCIPY/dsyrk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/scripts/SCIPY/dsyrk.py b/benchmark/scripts/SCIPY/dsyrk.py index 4495fad16..c6db2fa56 100755 --- a/benchmark/scripts/SCIPY/dsyrk.py +++ b/benchmark/scripts/SCIPY/dsyrk.py @@ -16,7 +16,7 @@ def run_dsyrk(N, l): start = time.time() for i in range(0, l): - C[...] = blas.dsyrk(1.0, A) + blas.dsyrk(1.0, A, c=C, overwrite_c=True) end = time.time() timediff = (end - start)