Spaces:
Runtime error
Runtime error
Commit
·
b9ffa51
1
Parent(s):
d07a044
Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ c2.write(str(mqa_time))
|
|
62 |
|
63 |
st.header('Attention')
|
64 |
mha_flop = 2*bs*h*(d/h)*n
|
65 |
-
mha_bytes = 2*bs*h*(d/h) + 2*bs*h*n*(d/h)
|
66 |
mha_int = mha_flop/mha_bytes
|
67 |
mha_time = (mha_flop/TFLOPS + mha_bytes/GB_S)*1000
|
68 |
|
@@ -82,7 +82,7 @@ c1.write("Time (ms):")
|
|
82 |
c2.write(str(mha_time))
|
83 |
|
84 |
mqa_flop = 2*bs*h*(d/h)*n
|
85 |
-
mqa_bytes = 2*bs*h*(d/h) + 2*bs*n*(d/h)
|
86 |
mqa_intensity = mqa_flop/mqa_bytes
|
87 |
mqa_time = (mqa_flop/TFLOPS + mqa_bytes/GB_S)*1000
|
88 |
|
|
|
62 |
|
63 |
st.header('Attention')
|
64 |
mha_flop = 2*bs*h*(d/h)*n
|
65 |
+
mha_bytes = 2*bs*h*(d/h) + 2*bs*h*n*(d/h) + 2*bs*h*n
|
66 |
mha_int = mha_flop/mha_bytes
|
67 |
mha_time = (mha_flop/TFLOPS + mha_bytes/GB_S)*1000
|
68 |
|
|
|
82 |
c2.write(str(mha_time))
|
83 |
|
84 |
mqa_flop = 2*bs*h*(d/h)*n
|
85 |
+
mqa_bytes = 2*bs*h*(d/h) + 2*bs*n*(d/h) + 2*bs*h*n
|
86 |
mqa_intensity = mqa_flop/mqa_bytes
|
87 |
mqa_time = (mqa_flop/TFLOPS + mqa_bytes/GB_S)*1000
|
88 |
|