aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/ConstantLayer.hpp
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 /src/armnn/layers/ConstantLayer.hpp
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 'src/armnn/layers/ConstantLayer.hpp')
-rw-r--r--src/armnn/layers/ConstantLayer.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/armnn/layers/ConstantLayer.hpp b/src/armnn/layers/ConstantLayer.hpp
index a9a9d37f54..d3dd8cf47a 100644
--- a/src/armnn/layers/ConstantLayer.hpp
+++ b/src/armnn/layers/ConstantLayer.hpp
@@ -56,6 +56,7 @@ protected:
~ConstantLayer() = default;
/// Retrieve the handles to the constant values stored by the layer.
+ // For API stability DO NOT ALTER order and add new members to the end of vector
ConstantTensors GetConstantTensorsByRef() override { return {m_LayerOutput}; }
};