aboutsummaryrefslogtreecommitdiff
path: root/delegate
diff options
context:
space:
mode:
authorNikhil Raj <nikhil.raj@arm.com>2022-02-01 16:42:15 +0000
committerNikhil Raj Arm <nikhil.raj@arm.com>2022-02-03 14:36:14 +0000
commit2e24175c683bca42496104591d6b702dad360b8e (patch)
tree1802062ab9132e3196e76b083b1a7b2b6c6efd11 /delegate
parentab8a4465ba32cb00ad05d63abfd2e60c307edc51 (diff)
downloadarmnn-2e24175c683bca42496104591d6b702dad360b8e.tar.gz
IVGCVSW-6724 Accessing ConstTensors from IConnectableLayer
Signed-off-by: Nikhil Raj <nikhil.raj@arm.com> Change-Id: I01f42a520d15c6dabd2f77c7715c91b8f7026476
Diffstat (limited to 'delegate')
-rw-r--r--delegate/src/MultiLayerFacade.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/delegate/src/MultiLayerFacade.hpp b/delegate/src/MultiLayerFacade.hpp
index ccd011a669..02be26cefd 100644
--- a/delegate/src/MultiLayerFacade.hpp
+++ b/delegate/src/MultiLayerFacade.hpp
@@ -131,6 +131,11 @@ public:
virtual const armnn::BaseDescriptor& GetParameters() const override { return m_NullDescriptor; }
+protected:
+ /// Retrieve the handles to the constant values stored by the layer.
+ /// @return A vector of the constant tensors stored by this layer.
+ ConstantTensors GetConstantTensorsByRef() override { return {}; }
+
private:
armnn::IConnectableLayer* m_FirstLayer;
armnn::IConnectableLayer* m_LastLayer;