From f2d36c9a683c95bf9cce2feb9a6467a0d8dfa33c Mon Sep 17 00:00:00 2001 From: Lyamin-Roman Date: Thu, 5 Oct 2023 09:09:43 +0900 Subject: [PATCH] [GPU] Fixed data generation for f16 fusion tests --- src/plugins/intel_gpu/tests/unit/fusions/fusion_test_common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/intel_gpu/tests/unit/fusions/fusion_test_common.hpp b/src/plugins/intel_gpu/tests/unit/fusions/fusion_test_common.hpp index 0eaf6cbee32543..58694f91d4c3ab 100644 --- a/src/plugins/intel_gpu/tests/unit/fusions/fusion_test_common.hpp +++ b/src/plugins/intel_gpu/tests/unit/fusions/fusion_test_common.hpp @@ -121,7 +121,7 @@ class BaseFusingTest : public ::testing::TestWithParam { VF rnd_vec = rg.generate_random_1d(s.count(), min_random, max_random); set_values(prim, rnd_vec); } else if (l.data_type == data_types::f16) { - VF rnd_vec = rg.generate_random_1d(s.count(), -1, 1); + VF rnd_vec = rg.generate_random_1d(s.count(), -1, 1); set_values(prim, rnd_vec); } else { VF rnd_vec = rg.generate_random_1d(s.count(), -1, 1);