harmdevries commited on
Commit
5e8eef3
·
1 Parent(s): 992208b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -120,7 +120,8 @@ st.write("Multi-Query Attention: " + str(mqa_total_time))
120
  st.write("Speed-up MQA over MHA: " + str(mha_total_time/mqa_total_time))
121
 
122
  st.header("Memory consumption")
123
-
 
124
 
125
 
126
  breakdown = st.checkbox("Show breakdown per operation")
 
120
  st.write("Speed-up MQA over MHA: " + str(mha_total_time/mqa_total_time))
121
 
122
  st.header("Memory consumption")
123
+ num_params = 12*l*d*d
124
+ st.write("Num Parameters (in B)" + str(round(num_params/1e9, 3)))
125
 
126
 
127
  breakdown = st.checkbox("Show breakdown per operation")