Skip to content

Commit 0a05e8e

Browse files
committed
refactor(camb)
1 parent 0c08f88 commit 0a05e8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lmdeploy/pytorch/kernels/dlinfer/apply_rotary_pos_emb.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def apply_rotary_pos_emb(
1313
):
1414
query_states = query_states.contiguous()
1515
key_states = key_states.contiguous()
16-
query_states, key_states = ext_ops.apply_rotary_pos_emb(query_states, key_states, cos, sin, None)
16+
query_states, key_states = ext_ops.apply_rotary_pos_emb(query_states, key_states, cos, sin, None, None)
1717

1818
if q_embed is None:
1919
q_embed = query_states

0 commit comments

Comments
 (0)