From 1a73390ffe5eb394d373386eee22618199182ae3 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Tue, 19 Jan 2016 12:33:44 -0500 Subject: [PATCH] benchmark/scripts/SCIPY/dsyrk.py: Drop unneeded semicolons. --- benchmark/scripts/SCIPY/dsyrk.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/scripts/SCIPY/dsyrk.py b/benchmark/scripts/SCIPY/dsyrk.py index 714b253de..10b96d3f2 100755 --- a/benchmark/scripts/SCIPY/dsyrk.py +++ b/benchmark/scripts/SCIPY/dsyrk.py @@ -14,7 +14,7 @@ def run_dsyrk(N,l): C = zeros((N,N), dtype='float64') - start = time.time(); + start = time.time() for i in range(0,l): C = blas.dsyrk(1.0,A) end = time.time() @@ -49,7 +49,7 @@ if __name__ == "__main__": if 'OPENBLAS_LOOPS' in os.environ: p = os.environ['OPENBLAS_LOOPS'] if p: - LOOPS = int(p); + LOOPS = int(p) print("From: %d To: %d Step=%d Loops=%d" % (N, NMAX, NINC, LOOPS)) print("\tSIZE\t\t\tFlops\t\t\t\t\tTime")