From 99557e335655a83671d6d9a5c13474e59e557223 Mon Sep 17 00:00:00 2001 From: Katarzyna Mitrus Date: Tue, 25 Jul 2023 06:45:05 +0200 Subject: [PATCH] Enable ScatterElementsUpdate test for reduction mean (#18682) * Enable scatter elements test for reduction mean * Remove remaining comment --- src/core/tests/eval.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/tests/eval.cpp b/src/core/tests/eval.cpp index c873efabc1d..5e063337e80 100644 --- a/src/core/tests/eval.cpp +++ b/src/core/tests/eval.cpp @@ -1508,8 +1508,7 @@ TEST(eval, evaluate_static_scatter_elements_update_reduction_mean_exclusive) { EXPECT_NEAR(cval[i], out[i], 1e-5f); } -TEST(eval, DISABLED_evaluate_static_scatter_elements_update_reduction_mean_ints) { - // on MAC rounding towards -infinity doesn't work as expected, to be investigated +TEST(eval, evaluate_static_scatter_elements_update_reduction_mean_ints) { const Shape data_shape{3, 3}; const Shape indices_shape{2, 2}; auto arg1 = make_shared(element::i32, data_shape);