From 3e371575ea876dc05f7edeb10ad9222a181bc596 Mon Sep 17 00:00:00 2001 From: Changming Sun Date: Sat, 22 Feb 2020 17:06:42 -0800 Subject: [PATCH] Relax testing tolerance of NchwcOptimizerTests::BatchNormalization (#3078) --- onnxruntime/test/optimizer/nchwc_optimizer_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxruntime/test/optimizer/nchwc_optimizer_test.cc b/onnxruntime/test/optimizer/nchwc_optimizer_test.cc index 333f2b44c5..13d39d0a57 100644 --- a/onnxruntime/test/optimizer/nchwc_optimizer_test.cc +++ b/onnxruntime/test/optimizer/nchwc_optimizer_test.cc @@ -1030,7 +1030,7 @@ TEST(NchwcOptimizerTests, BatchNormalization) { // tests generate bit identical results when run with and without // optimizations, but the BatchNormalizationtransform does introduce // small bit differences. - helper.per_sample_tolerance_ = .000125; + helper.per_sample_tolerance_ = .00025; }; auto check_nchwc_graph = [&](NchwcInferenceSession& session) {