aboutsummaryrefslogtreecommitdiff
path: root/delegate/src/SpaceDepth.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'delegate/src/SpaceDepth.hpp')
-rw-r--r--delegate/src/SpaceDepth.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/delegate/src/SpaceDepth.hpp b/delegate/src/SpaceDepth.hpp
index 4f69a73281..603e0f2fff 100644
--- a/delegate/src/SpaceDepth.hpp
+++ b/delegate/src/SpaceDepth.hpp
@@ -5,6 +5,8 @@
#pragma once
+#include <armnn/utility/IgnoreUnused.hpp>
+
#include <tensorflow/lite/builtin_ops.h>
#include <tensorflow/lite/c/builtin_op_data.h>
#include <tensorflow/lite/c/common.h>
@@ -19,6 +21,12 @@ TfLiteStatus VisitSpaceToDepthOperator(DelegateData& delegateData,
int nodeIndex,
int32_t operatorCode)
{
+ armnn::IgnoreUnused(delegateData,
+ tfLiteContext,
+ tfLiteNode,
+ nodeIndex,
+ operatorCode);
+
return kTfLiteError;
}
@@ -28,6 +36,12 @@ TfLiteStatus VisitDepthToSpaceOperator(DelegateData& delegateData,
int nodeIndex,
int32_t operatorCode)
{
+ armnn::IgnoreUnused(delegateData,
+ tfLiteContext,
+ tfLiteNode,
+ nodeIndex,
+ operatorCode);
+
return kTfLiteError;
}