We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461df5a commit a6d5711Copy full SHA for a6d5711
src/plugins/intel_cpu/tests/functional/custom/subgraph_tests/src/x64/moe.cpp
@@ -87,6 +87,11 @@ class MoESubgraphTest : public testing::WithParamInterface<MoeTestParams>,
87
init_input_shapes({shape_params.data_shape});
88
inType = outType = ov::element::f32;
89
90
+ auto itr = configuration.find(ov::hint::inference_precision.name());
91
+ if (itr != configuration.end() && itr->second == ov::element::bf16) {
92
+ rel_threshold = 0.05f;
93
+ }
94
+
95
if (moe_type == MoEType::MoE2GeMM) {
96
function = initMoE2GeMMSubgraph(shape_params, ov::element::f32, ov::element::f32);
97
} else if (moe_type == MoEType::MoE3GeMM) {
0 commit comments