|
26 | 26 | // -----------
|
27 | 27 |
|
28 | 28 | #include "custom/subgraph_tests/include/undefined_et.hpp"
|
| 29 | +#include "utils/precision_support.h" |
29 | 30 |
|
30 | 31 | namespace ov {
|
31 | 32 | namespace test {
|
@@ -74,6 +75,12 @@ void UndefinedEtSubgraphTest::SetUp() {
|
74 | 75 | auto logical_not = std::make_shared<op::v1::LogicalNot>(cvt_f32);
|
75 | 76 |
|
76 | 77 | function = std::make_shared<ov::Model>(OutputVector{logical_not->output(0)}, ParameterVector{param_0, param_1, param_2}, "UndefinedET");
|
| 78 | + |
| 79 | + // TODO: Need to remove when the hardware checking for f16 will be eliminated in the Transformations pipeline. |
| 80 | + if (m_data_et == element::f16 && !ov::intel_cpu::hasHardwareSupport(m_data_et)) { |
| 81 | + abs_threshold = 1.f; |
| 82 | + rel_threshold = 0.1f; |
| 83 | + } |
77 | 84 | }
|
78 | 85 |
|
79 | 86 | template<typename TD, typename TS>
|
@@ -146,14 +153,18 @@ TEST_P(UndefinedEtSubgraphTest, CompareWithRefs) {
|
146 | 153 |
|
147 | 154 | size_t rnd_unfm_counter = 0lu;
|
148 | 155 | size_t logical_not_counter = 0lu;
|
| 156 | + auto expected_dt = m_data_et; |
| 157 | + if (!ov::intel_cpu::hasHardwareSupport(expected_dt)) { |
| 158 | + expected_dt = element::f32; |
| 159 | + } |
149 | 160 | for (const auto& node : compiledModel.get_runtime_model()->get_ops()) {
|
150 | 161 | auto rt_info = node->get_rt_info();
|
151 | 162 | auto it = rt_info.find(exec_model_info::LAYER_TYPE);
|
152 | 163 | ASSERT_NE(rt_info.end(), it);
|
153 | 164 | auto op_name = it->second.as<std::string>();
|
154 | 165 |
|
155 | 166 | if (op_name == "RandomUniform") {
|
156 |
| - ASSERT_EQ(node->get_output_element_type(0), m_data_et); |
| 167 | + ASSERT_EQ(node->get_output_element_type(0), expected_dt); |
157 | 168 | rnd_unfm_counter++;
|
158 | 169 | }
|
159 | 170 | if (op_name == "Eltwise") {
|
|
0 commit comments