From 77abc9b28005a5ab469282ed19a0e9bcc9603a7d Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Tue, 19 Jan 2016 15:00:54 -0500 Subject: [PATCH] benchmark/scripts/SCIPY/ssyrk.py: Write values into `C`. --- 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 88a8250e8..034c0fd3a 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) + C[...] = blas.ssyrk(1.0,A) end = time.time() timediff = (end -start)