harmdevries commited on
Commit
1c3236f
·
1 Parent(s): 409563e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -102,9 +102,9 @@ def print_kernel_execution(flop, nbytes):
102
  nbytes = round(nbytes/1e6, 2)
103
 
104
  c1.write("GFLOP:")
105
- c2.write(str(comp_flop))
106
  c1.write("MB: ")
107
- c2.write(str(mem_bytes))
108
  c1.write("Time (ms):")
109
  c2.write(str(exec_time))
110
  c1.write("Overhead (ms):")
 
102
  nbytes = round(nbytes/1e6, 2)
103
 
104
  c1.write("GFLOP:")
105
+ c2.write(str(flop))
106
  c1.write("MB: ")
107
+ c2.write(str(nbytes))
108
  c1.write("Time (ms):")
109
  c2.write(str(exec_time))
110
  c1.write("Overhead (ms):")