Skip to content

Commit

Permalink
Increase threashold for bf16 CPU tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-paramuzov committed Oct 12, 2023
1 parent cded7e3 commit 239fbe8
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ class NormalizeL2LayerCPUTest : public testing::WithParamInterface<NormalizeL2La
}
auto normalize = builder::makeNormalizeL2(params[0], axes, eps, epsMode);
function = makeNgraphFunction(inType, params, normalize, "Normalize");

if (inType == ov::element::bf16) {
abs_threshold = 1e-1f;
}
}

void generate_inputs(const std::vector<ngraph::Shape>& targetInputStaticShapes) override {
Expand Down

0 comments on commit 239fbe8

Please sign in to comment.