summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXusong Wang <xusongw@google.com>2019-09-26 13:35:18 -0700
committerXusong Wang <xusongw@google.com>2019-10-30 18:15:20 +0000
commitbf67091248273133d0f65d24e19bd7caa56d823c (patch)
treed56b757cffcbe2c9e602867900c65eff074e1f16
parent80afb186dff8e0669eea81ef6ba389704bf579ea (diff)
downloadml-bf67091248273133d0f65d24e19bd7caa56d823c.tar.gz
Increase cts test tolerance from 2 to 3 for mobilenets.
Bug: 141706489 Test: NNT_static --gtest_filter=*mobilenet* Change-Id: I77bc5b7c24935c78bf484d5408134afc1c0c6ebc Merged-In: I77bc5b7c24935c78bf484d5408134afc1c0c6ebc (cherry picked from commit 59ad42f7a616db6e3d2967020645608dda437ad9)
-rw-r--r--nn/tools/test_generator/test_harness/TestHarness.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/nn/tools/test_generator/test_harness/TestHarness.cpp b/nn/tools/test_generator/test_harness/TestHarness.cpp
index 7def61195..7bdb2dc20 100644
--- a/nn/tools/test_generator/test_harness/TestHarness.cpp
+++ b/nn/tools/test_generator/test_harness/TestHarness.cpp
@@ -46,7 +46,7 @@ int getQuant8AllowedError() {
if (testName.find("mobilenet") != std::string::npos ||
(testCaseName.find("CompilationCaching") != std::string::npos &&
testName.find("TOCTOU") == std::string::npos)) {
- return 2;
+ return 3;
} else {
return 1;
}