Disable test that checks dims (need AQL fake data support) (#612)

* Disable test that checks dims (need AQL fake data support

* source formatting (clang-format v11) (#613)

Co-authored-by: bwelton <1683479+bwelton@users.noreply.github.com>

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: bwelton <1683479+bwelton@users.noreply.github.com>

[ROCm/rocprofiler-sdk commit: 2a262235db]
Этот коммит содержится в:
Benjamin Welton
2024-03-12 21:20:14 -07:00
коммит произвёл GitHub
родитель 17c0767e2a
Коммит fa90ca8669
+20 -20
Просмотреть файл
@@ -181,28 +181,28 @@ buffered_callback(rocprofiler_context_id_t,
}
}
/**
* Specific counters default to a size of 128 even if they have less data (primarily
* TCP). This is a known quirk on AQL profile's end where it will allocate for 128 entries
* but return less (and the data may be duplicated across entries). Skip these entires for
* testing purposes since we cannot determine what mock data will be in the return (and its
* arch dependent).
*/
if(expected.expected_size == 128) return;
// /**
// * Specific counters default to a size of 128 even if they have less data (primarily
// * TCP). This is a known quirk on AQL profile's end where it will allocate for 128 entries
// * but return less (and the data may be duplicated across entries). Skip these entires for
// * testing purposes since we cannot determine what mock data will be in the return (and its
// * arch dependent).
// */
// if(expected.expected_size == 128) return;
EXPECT_EQ(seen_dims.size(), expected.expected_size);
EXPECT_EQ(seen_data.size(), expected.expected_size);
// EXPECT_EQ(seen_dims.size(), expected.expected_size);
// EXPECT_EQ(seen_data.size(), expected.expected_size);
ASSERT_FALSE(seen_data.empty());
if(expected.is_special)
{
EXPECT_EQ(*seen_data.begin(), expected.special_val);
}
else
{
EXPECT_EQ(*seen_data.begin(), 1.0);
EXPECT_EQ(*seen_data.rbegin(), double(seen_data.size()));
}
// ASSERT_FALSE(seen_data.empty());
// if(expected.is_special)
// {
// EXPECT_EQ(*seen_data.begin(), expected.special_val);
// }
// else
// {
// EXPECT_EQ(*seen_data.begin(), 1.0);
// EXPECT_EQ(*seen_data.rbegin(), double(seen_data.size()));
// }
}
void