Skip to content

Commit 5e8c833

Browse files
committed
clang
1 parent 2458c84 commit 5e8c833

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

src/common/transformations/tests/op_conversions/scaled_dot_product_decomposition_test.cpp

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -389,12 +389,8 @@ TEST_F(TransformationTestsF, ScaledDotProductAttentionDecomposition_PreScaledQue
389389

390390
{
391391
// Expected: scale applied to K^T (always, unconditionally)
392-
auto ref = scaled_dot_product_attention_decomposition(query_prescaled,
393-
key,
394-
value,
395-
attention_mask,
396-
sdpa_scale,
397-
casual);
392+
auto ref =
393+
scaled_dot_product_attention_decomposition(query_prescaled, key, value, attention_mask, sdpa_scale, casual);
398394
model_ref =
399395
std::make_shared<ov::Model>(OutputVector{ref}, ParameterVector{raw_query, key, value, attention_mask});
400396
}
@@ -426,8 +422,7 @@ TEST_F(TransformationTestsF, ScaledDotProductAttentionDecomposition_Sinks) {
426422
}
427423

428424
{
429-
auto ref =
430-
scaled_dot_product_attention_decomposition(query, key, value, attention_mask, scale, casual, sinks);
425+
auto ref = scaled_dot_product_attention_decomposition(query, key, value, attention_mask, scale, casual, sinks);
431426
model_ref = std::make_shared<ov::Model>(OutputVector{ref},
432427
ParameterVector{query, key, value, attention_mask, scale, sinks});
433428
}

0 commit comments

Comments
 (0)