aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/BackendHelper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/BackendHelper.cpp')
-rw-r--r--src/armnn/BackendHelper.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/armnn/BackendHelper.cpp b/src/armnn/BackendHelper.cpp
index 594d76916c..c17d076955 100644
--- a/src/armnn/BackendHelper.cpp
+++ b/src/armnn/BackendHelper.cpp
@@ -206,6 +206,16 @@ bool LayerSupportHandle::IsCastSupported(const TensorInfo& input,
return m_LayerSupport->IsCastSupported(input, output, reasonIfUnsupported.value());
}
+bool LayerSupportHandle::IsChannelShuffleSupported(const TensorInfo &input, const TensorInfo &output,
+ const ChannelShuffleDescriptor &descriptor,
+ Optional<std::string &> reasonIfUnsupported)
+{
+ return m_LayerSupport->IsChannelShuffleSupported(input,
+ output,
+ descriptor,
+ reasonIfUnsupported.value());
+}
+
bool LayerSupportHandle::IsComparisonSupported(const TensorInfo& input0,
const TensorInfo& input1,
const TensorInfo& output,