aboutsummaryrefslogtreecommitdiff
path: root/delegate/src/test/SoftmaxTestHelper.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'delegate/src/test/SoftmaxTestHelper.hpp')
-rw-r--r--delegate/src/test/SoftmaxTestHelper.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/delegate/src/test/SoftmaxTestHelper.hpp b/delegate/src/test/SoftmaxTestHelper.hpp
index 0474561a93..b3086bb0cb 100644
--- a/delegate/src/test/SoftmaxTestHelper.hpp
+++ b/delegate/src/test/SoftmaxTestHelper.hpp
@@ -161,9 +161,9 @@ void SoftmaxTest(tflite::BuiltinOperator softmaxOperatorCode,
for (size_t i = 0; i < inputValues.size(); ++i)
{
- CHECK(armnnUtils::within_percentage_tolerance(expectedOutputValues[i], armnnDelegateOutputData[i], 1e-5));
+ CHECK(armnnUtils::within_percentage_tolerance(expectedOutputValues[i], armnnDelegateOutputData[i], 0.1));
CHECK(armnnUtils::within_percentage_tolerance(tfLiteInterpreterOutputData[i],
- armnnDelegateOutputData[i], 1e-5));
+ armnnDelegateOutputData[i], 0.1));
}
}