Skip to content

Commit 78926a8

Browse files
committed
benchmark/scripts/SCIPY/ssyrk.py: Drop unneeded semicolons.
1 parent c622743 commit 78926a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmark/scripts/SCIPY/ssyrk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def run_ssyrk(N,l):
1212
A = randn(N,N).astype('float32')
1313

1414

15-
start = time.time();
15+
start = time.time()
1616
for i in range(0,l):
1717
C = blas.ssyrk(1.0,A)
1818
end = time.time()
@@ -47,7 +47,7 @@ def run_ssyrk(N,l):
4747
if 'OPENBLAS_LOOPS' in os.environ:
4848
p = os.environ['OPENBLAS_LOOPS']
4949
if p:
50-
LOOPS = int(p);
50+
LOOPS = int(p)
5151

5252
print("From: %d To: %d Step=%d Loops=%d" % (N, NMAX, NINC, LOOPS))
5353
print("\tSIZE\t\t\tFlops\t\t\t\t\tTime")

0 commit comments

Comments
 (0)