Spaces:
Runtime error
Runtime error
Commit
·
ea57214
1
Parent(s):
35a9fc2
Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ def print_kernel_execution(c1, c2, comp_flop, mem_bytes):
|
|
11 |
exec_time = (comp_flop/TFLOPS + mem_bytes/GB_S)*1000
|
12 |
|
13 |
comp_flop = round(comp_flop/1e9, 2)
|
14 |
-
mem_bytes = round(
|
15 |
|
16 |
c1.write("GFLOP:")
|
17 |
c2.write(str(comp_flop))
|
|
|
11 |
exec_time = (comp_flop/TFLOPS + mem_bytes/GB_S)*1000
|
12 |
|
13 |
comp_flop = round(comp_flop/1e9, 2)
|
14 |
+
mem_bytes = round(mem_bytes/1e6, 2)
|
15 |
|
16 |
c1.write("GFLOP:")
|
17 |
c2.write(str(comp_flop))
|