summaryrefslogtreecommitdiff
path: root/benchmark
diff options
context:
space:
mode:
authorJohn Kirkham <kirkhamj@janelia.hhmi.org>2016-01-19 12:34:01 -0500
committerJohn Kirkham <kirkhamj@janelia.hhmi.org>2016-01-19 14:00:51 -0500
commit1153459d1b894f86c272fdbf38d3cc3f123cea0c (patch)
treeb3a2aad4961cef20967c8e888ffd12d1772e8dc0 /benchmark
parent1a73390ffe5eb394d373386eee22618199182ae3 (diff)
downloadopenblas-1153459d1b894f86c272fdbf38d3cc3f123cea0c.tar.gz
openblas-1153459d1b894f86c272fdbf38d3cc3f123cea0c.tar.bz2
openblas-1153459d1b894f86c272fdbf38d3cc3f123cea0c.zip
benchmark/scripts/SCIPY/ssyrk.py: Drop unneeded semicolons.
Diffstat (limited to 'benchmark')
-rwxr-xr-xbenchmark/scripts/SCIPY/ssyrk.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/scripts/SCIPY/ssyrk.py b/benchmark/scripts/SCIPY/ssyrk.py
index c7e1bdbe1..60cfa966a 100755
--- a/benchmark/scripts/SCIPY/ssyrk.py
+++ b/benchmark/scripts/SCIPY/ssyrk.py
@@ -14,7 +14,7 @@ def run_ssyrk(N,l):
C = zeros((N,N), dtype='float32')
- start = time.time();
+ start = time.time()
for i in range(0,l):
C = blas.ssyrk(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")