aboutsummaryrefslogtreecommitdiff
path: root/delegate/src/armnn_delegate.cpp
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2020-10-27 17:30:18 +0000
committerJim Flynn <jim.flynn@arm.com>2020-10-28 11:56:16 +0000
commit0534e0364473c0b1244f96462cbde1808e92ce81 (patch)
tree454ae9378d1882d945eaa699711c84ba6656f87e /delegate/src/armnn_delegate.cpp
parentbf18a266bf5d0fe74db7cca0f54fb1ae25869da8 (diff)
downloadarmnn-0534e0364473c0b1244f96462cbde1808e92ce81.tar.gz
IVGCVSW-5378 'TfLiteDelegate: Implement the ElementWiseUnary operators '
* Moved ElementwiseUnary operators tests into single file * Implemented FP32 test for supported ElementwiseUnary operators Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: I4b7eab190c3c8edb50927b8e1e94dd353597efcb
Diffstat (limited to 'delegate/src/armnn_delegate.cpp')
-rw-r--r--delegate/src/armnn_delegate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/delegate/src/armnn_delegate.cpp b/delegate/src/armnn_delegate.cpp
index 5cbdb6f356..82cf5732df 100644
--- a/delegate/src/armnn_delegate.cpp
+++ b/delegate/src/armnn_delegate.cpp
@@ -130,7 +130,7 @@ Delegate::Delegate(armnnDelegate::DelegateOptions options)
{
if (std::find(supportedDevices.cbegin(), supportedDevices.cend(), backend) == supportedDevices.cend())
{
- TFLITE_LOG_PROD_ONCE(tflite::TFLITE_LOG_INFO,
+ TFLITE_LOG_PROD(tflite::TFLITE_LOG_INFO,
"TfLiteArmnnDelegate: Requested unknown backend %s", backend.Get().c_str());
}
else