Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
CuriousPanCake committed Nov 15, 2024
1 parent 541b714 commit 3b47cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/src/pass/sdpa_to_paged_attention.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ bool ov::pass::SDPAToPagedAttention::run_on_model(const std::shared_ptr<ov::Mode

std::shared_ptr<v0::Parameter> input_ids_node;
for (const auto& name : {"input_ids", "inputs_embeds"}) {
if (input_ids_node = get_parameter(model, name)) {
if ((input_ids_node = get_parameter(model, name))) {
break;
}
}
Expand Down

0 comments on commit 3b47cda

Please sign in to comment.