Spaces:
Runtime error
Runtime error
Commit
·
dbafc77
1
Parent(s):
e95954d
Update app.py
Browse files
app.py
CHANGED
@@ -107,7 +107,7 @@ mha_total_time = 0.
|
|
107 |
|
108 |
for i in range(n_start, n):
|
109 |
shared_time = out_exec(bs, h, i, d)[2] + softmax_exec(bs, h, i , d)[2] + 2*ln_exec(bs, h, i, d)[2] \
|
110 |
-
+ 2*mlp_exec(bs, h, i, d)[2] + 3*ln_exec(bs, h, i, d)
|
111 |
mha_time = shared_time + qkv_mha_exec(bs, h, i, d)[2] + att1_mha_exec(bs, h, i, d)[2] + att2_mha_exec(bs, h, i, d)[2]
|
112 |
mha_total_time += l*mha_time
|
113 |
mqa_time = shared_time + qkv_mqa_exec(bs, h, i, d)[2] + att1_mqa_exec(bs, h, i, d)[2] + att2_mqa_exec(bs, h, i, d)[2]
|
|
|
107 |
|
108 |
for i in range(n_start, n):
|
109 |
shared_time = out_exec(bs, h, i, d)[2] + softmax_exec(bs, h, i , d)[2] + 2*ln_exec(bs, h, i, d)[2] \
|
110 |
+
+ 2*mlp_exec(bs, h, i, d)[2] + 3*ln_exec(bs, h, i, d)[2]
|
111 |
mha_time = shared_time + qkv_mha_exec(bs, h, i, d)[2] + att1_mha_exec(bs, h, i, d)[2] + att2_mha_exec(bs, h, i, d)[2]
|
112 |
mha_total_time += l*mha_time
|
113 |
mqa_time = shared_time + qkv_mqa_exec(bs, h, i, d)[2] + att1_mqa_exec(bs, h, i, d)[2] + att2_mqa_exec(bs, h, i, d)[2]
|