[Tmpl test] Preprocess: Drop legacy comparison (#24622)

### Details:
 - Fixed tensors' shapes.

### Tickets:
 - CVS-137216
This commit is contained in:
Tomasz Jankowski 2024-05-23 08:39:43 +02:00 committed by GitHub
parent d0e6f8ffea
commit 9ec1c4a1fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 10 deletions

View File

@ -33,7 +33,6 @@ class ReferencePreprocessTest : public testing::TestWithParam<RefPreprocessParam
public:
void SetUp() override {
SKIP_IF_CURRENT_TEST_IS_DISABLED()
legacy_compare = true;
const auto& params = GetParam();
function = params.function();
for (const auto& inp : params.inputs) {
@ -869,7 +868,7 @@ static RefPreprocessParams convert_color_nv12_layout_resize() {
auto exp_out = std::vector<float> {255, 0, 0, 255, // R channel
0, 255, 0, 0, // G channel
0, 0, 255, 0}; // B channel
auto out_shape = Shape{1, 2, 2, 3};
auto out_shape = Shape{1, 3, 2, 2};
// clang-format on
res.inputs.emplace_back(element::u8, input_shape, input);
res.expected.emplace_back(out_shape, element::f32, exp_out);
@ -1175,8 +1174,8 @@ static RefPreprocessParams post_convert_color_rgb_to_bgr() {
return f;
};
res.inputs.emplace_back(Shape{2, 3, 1, 1}, element::f32, std::vector<float>{1, 2, 3, 4, 5, 6});
res.expected.emplace_back(Shape{2, 3, 1, 1}, element::f32, std::vector<float>{3, 2, 1, 6, 5, 4});
res.inputs.emplace_back(Shape{2, 1, 1, 3}, element::f32, std::vector<float>{1, 2, 3, 4, 5, 6});
res.expected.emplace_back(Shape{2, 1, 1, 3}, element::f32, std::vector<float>{3, 2, 1, 6, 5, 4});
return res;
}
@ -1191,8 +1190,8 @@ static RefPreprocessParams post_convert_color_bgr_to_rgb() {
return f;
};
res.inputs.emplace_back(Shape{2, 3, 1, 1}, element::f32, std::vector<float>{1, 2, 3, 4, 5, 6});
res.expected.emplace_back(Shape{2, 3, 1, 1}, element::f32, std::vector<float>{3, 2, 1, 6, 5, 4});
res.inputs.emplace_back(Shape{2, 1, 1, 3}, element::f32, std::vector<float>{1, 2, 3, 4, 5, 6});
res.expected.emplace_back(Shape{2, 1, 1, 3}, element::f32, std::vector<float>{3, 2, 1, 6, 5, 4});
return res;
}
@ -1230,8 +1229,8 @@ static RefPreprocessParams rgb_to_bgr() {
return f;
};
res.inputs.emplace_back(Shape{2, 3, 1, 1}, element::f32, std::vector<float>{1, 2, 3, 4, 5, 6});
res.expected.emplace_back(Shape{2, 3, 1, 1}, element::f32, std::vector<float>{3, 2, 1, 6, 5, 4});
res.inputs.emplace_back(Shape{2, 1, 1, 3}, element::f32, std::vector<float>{1, 2, 3, 4, 5, 6});
res.expected.emplace_back(Shape{2, 1, 1, 3}, element::f32, std::vector<float>{3, 2, 1, 6, 5, 4});
return res;
}
@ -1246,8 +1245,8 @@ static RefPreprocessParams bgr_to_rgb() {
return f;
};
res.inputs.emplace_back(Shape{2, 3, 1, 1}, element::f32, std::vector<float>{1, 2, 3, 4, 5, 6});
res.expected.emplace_back(Shape{2, 3, 1, 1}, element::f32, std::vector<float>{3, 2, 1, 6, 5, 4});
res.inputs.emplace_back(Shape{2, 1, 1, 3}, element::f32, std::vector<float>{1, 2, 3, 4, 5, 6});
res.expected.emplace_back(Shape{2, 1, 1, 3}, element::f32, std::vector<float>{3, 2, 1, 6, 5, 4});
return res;
}