harmdevries commited on
Commit
2e71f02
·
1 Parent(s): 4719f35

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -34,7 +34,7 @@ mha_flop = 2*bs*n*d*3*d
34
  mha_bytes = 2*bs*n*d + 2*3*d*d + 2*bs*n*3*d
35
 
36
  st.subheader("Multi-query Attention")
37
- c1, c2 = st.columns(columns or [2, 3])
38
  c1.write("FLOP:")
39
  c2.write(str(mha_flop))
40
  c1.write("Bytes: ")
 
34
  mha_bytes = 2*bs*n*d + 2*3*d*d + 2*bs*n*3*d
35
 
36
  st.subheader("Multi-query Attention")
37
+ c1, c2 = st.columns([2, 3])
38
  c1.write("FLOP:")
39
  c2.write(str(mha_flop))
40
  c1.write("Bytes: ")