Skip to content

Commit 6373407

Browse files
committed
Fix format
1 parent 9fa3c12 commit 6373407

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/core/tests/reference/xattention.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,6 @@ std::vector<CausalMaskTestData> CAUSAL_MASK_TEST_CASES = {
363363
},
364364
// clang-format on
365365

366-
367366
// clang-format off
368367
{
369368
4.534, -INFINITY, -INFINITY, -INFINITY,
@@ -389,7 +388,6 @@ std::vector<CausalMaskTestData> CAUSAL_MASK_TEST_CASES = {
389388
},
390389
// clang-format on
391390

392-
393391
// clang-format off
394392
{
395393
4.534, -5.908, -9.388, -INFINITY,
@@ -415,7 +413,6 @@ std::vector<CausalMaskTestData> CAUSAL_MASK_TEST_CASES = {
415413
},
416414
// clang-format on
417415

418-
419416
// clang-format off
420417
{
421418
4.534, -5.908, -9.388, -INFINITY, -INFINITY, -INFINITY,
@@ -828,7 +825,6 @@ std::vector<E2EBlockSelectTestData> E2E_BLOCK_SELECT_TEST_CASES = {
828825
// clang-format on
829826
}};
830827

831-
832828
TEST_P(XAttentionE2EBlockSelectTest, SelectsBlocksCorrectlyFromQKData) {
833829
auto test_struct = GetParam();
834830
ov::reference::XAttentionBlockSelector<double> selector(test_struct.threshold,
@@ -849,7 +845,11 @@ TEST_P(XAttentionE2EBlockSelectTest, SelectsBlocksCorrectlyFromQKData) {
849845
const auto& test_set = test_result[head_idx];
850846
std::cout << "ref has " << ref_set.size() << " elements, test has " << test_set.size() << std::endl;
851847
std::vector<std::pair<size_t, size_t>> intersection;
852-
std::set_intersection(ref_set.begin(), ref_set.end(), test_set.begin(), test_set.end(), std::back_inserter(intersection));
848+
std::set_intersection(ref_set.begin(),
849+
ref_set.end(),
850+
test_set.begin(),
851+
test_set.end(),
852+
std::back_inserter(intersection));
853853

854854
std::cout << "only ref has ";
855855
for (const auto& idx : ref_set) {

0 commit comments

Comments
 (0)