From 51f67776a695c217a32596af806afeeb080f5528 Mon Sep 17 00:00:00 2001 From: Simon Obute Date: Fri, 3 Sep 2021 15:50:13 +0100 Subject: IVGCVSW-3705 Add Channel Shuffle Front end and Ref Implementation * Add front end * Add reference workload * Add unit tests * Add Serializer and Deserializer * Update ArmNN Versioning Signed-off-by: Simon Obute Change-Id: I9ac1f953af3974382eac8e8d62d794d2344e8f47 --- src/armnn/BackendHelper.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/armnn/BackendHelper.cpp') 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 reasonIfUnsupported) +{ + return m_LayerSupport->IsChannelShuffleSupported(input, + output, + descriptor, + reasonIfUnsupported.value()); +} + bool LayerSupportHandle::IsComparisonSupported(const TensorInfo& input0, const TensorInfo& input1, const TensorInfo& output, -- cgit v1.2.1