From 8a7d43a69640fd3f830e5f209763620f61715c5a Mon Sep 17 00:00:00 2001 From: Tianlei Wu Date: Mon, 18 Mar 2024 16:53:48 +0000 Subject: [PATCH] float threshold for training --- onnxruntime/test/providers/checkers.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxruntime/test/providers/checkers.cc b/onnxruntime/test/providers/checkers.cc index a32e792374cf8..3fe1313b47aa7 100644 --- a/onnxruntime/test/providers/checkers.cc +++ b/onnxruntime/test/providers/checkers.cc @@ -32,7 +32,7 @@ struct DefaultTolerance { template <> struct DefaultTolerance { #if defined(ENABLE_TRAINING) - static constexpr float absolute = 1e-4f; + static constexpr float absolute = 1e-3f; #else static constexpr float absolute = 1e-5f; #endif