Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Signed-off-by: liqunfu <liqun.fu@microsoft.com>
  • Loading branch information
liqunfu committed Feb 15, 2025
1 parent 40a6854 commit 43bdb44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions onnxruntime/contrib_ops/cpu/bert/group_query_attention.cc
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ Status GroupQueryAttention<T>::Compute(OpKernelContext* context) const {
ORT_RETURN_IF_ERROR(context->GetTempSpaceAllocator(&allocator));
// Compute the attention score and apply the score to V
auto ret = ApplyAttention(q_rotary, packed_qkv ? nullptr : k_rotary, packed_qkv ? nullptr : V.Get<Tensor>().Data<T>(),
past_key, past_value, output, present_k, present_v,
seqlens_k, parameters, allocator, context);
past_key, past_value, output, present_k, present_v,
seqlens_k, parameters, allocator, context);
return ret;
}
} // namespace contrib
Expand Down

0 comments on commit 43bdb44

Please sign in to comment.