From 490bc42e98797a16cb4709b5e3340a04e58fc264 Mon Sep 17 00:00:00 2001 From: Xusong Wang Date: Thu, 21 May 2020 14:52:16 -0700 Subject: Relax MSE requirement for DEQUANTIZE. Bug: 155842363 Test: CTS Change-Id: I1bba976a778ad439c137e02193fbc27ea598ffc0 --- nn/runtime/test/fuzzing/TestRandomGraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nn/runtime/test/fuzzing/TestRandomGraph.cpp b/nn/runtime/test/fuzzing/TestRandomGraph.cpp index 532f7bf40..e668bf9a8 100644 --- a/nn/runtime/test/fuzzing/TestRandomGraph.cpp +++ b/nn/runtime/test/fuzzing/TestRandomGraph.cpp @@ -415,7 +415,7 @@ const AccuracyCriteria kStrictCriteria = { // broadcast or elementwise, e.g ADD, FLOOR. const AccuracyCriteria kMediumCriteria = { .float32 = {.atol = 1e-5f, .rtol = 1e-5f, .bias = 1e-6f, .mse = 1e-8f}, - .float16 = {.atol = 1e-2f, .rtol = 1e-2f, .bias = 1e-3f, .mse = 1e-6f}, + .float16 = {.atol = 1e-2f, .rtol = 1e-2f, .bias = 1e-3f, .mse = 1e-5f}, .int32 = {.atol = 1}, .quant8Asymm = {.atol = 2, .bias = 1.2, .mse = 1.2}, .quant8Symm = {.atol = 2, .bias = 1.2, .mse = 1.2}, -- cgit v1.2.3