We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d2e463 commit 3db3af7Copy full SHA for 3db3af7
QEfficient/transformers/models/llama/modeling_llama.py
@@ -174,7 +174,7 @@ def forward(
174
)
175
176
attn_output = attn_output.reshape(*input_shape, -1).contiguous()
177
- attn_output = self.o_proj(attn_output)
+ attn_output = self.o_proj(attn_output, **kwargs)
178
return attn_output, attn_weights, past_key_value
179
180
0 commit comments