benchmark/scripts/SCIPY/dsyrk.py: Drop unneeded semicolons.

This commit is contained in:
John Kirkham 2016-01-19 12:33:44 -05:00
parent 8b981e41a1
commit 1a73390ffe
1 changed files with 2 additions and 2 deletions

View File

@ -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")