Skip to content

Commit

Permalink
benchmark/scripts/SCIPY/ssyrk.py: Drop unneeded semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Jan 19, 2016
1 parent 0aa9f19 commit e8cef82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/scripts/SCIPY/ssyrk.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def run_ssyrk(N,l):
C = zeros((N,N), dtype=np.float32)


start = time.time();
start = time.time()
for i in range(0,l):
C = blas.ssyrk(1.0,A)
end = time.time()
Expand Down Expand Up @@ -49,7 +49,7 @@ def run_ssyrk(N,l):
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")
Expand Down

0 comments on commit e8cef82

Please sign in to comment.