aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/backends/SubgraphView.hpp
diff options
context:
space:
mode:
authorFrancis Murtagh <francis.murtagh@arm.com>2022-01-24 17:45:37 +0000
committerFrancis Murtagh <francis.murtagh@arm.com>2022-01-24 17:53:58 +0000
commitfaf2966888ecd0b93726602bf4b0b1bd36301d8c (patch)
tree1f1783b4f1ef62f7f0c7fd04f317bbd949f997a8 /include/armnn/backends/SubgraphView.hpp
parent35e7c1de53ef86b808fc8de0a0af8a747b4ef170 (diff)
downloadarmnn-faf2966888ecd0b93726602bf4b0b1bd36301d8c.tar.gz
Bugfix: Set removal date for Backend API stability items to 22.11
* This is to allow EthosN more time to adjust to new API. Signed-off-by: Francis Murtagh <francis.murtagh@arm.com> Change-Id: I7da32a7317827dfa619c74fc8801447e7172e7c8
Diffstat (limited to 'include/armnn/backends/SubgraphView.hpp')
-rw-r--r--include/armnn/backends/SubgraphView.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/armnn/backends/SubgraphView.hpp b/include/armnn/backends/SubgraphView.hpp
index b5a74bab5d..33593319cf 100644
--- a/include/armnn/backends/SubgraphView.hpp
+++ b/include/armnn/backends/SubgraphView.hpp
@@ -62,7 +62,7 @@ public:
/// Constructs a sub-graph with the given arguments.
ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use constructor with arguments: "
- "IConnectableLayers, IInputSlots and IOutputSlots", "22.08")
+ "IConnectableLayers, IInputSlots and IOutputSlots", "22.11")
SubgraphView(InputSlots&& inputs, OutputSlots&& outputs, Layers&& layers);
/// Constructs a sub-graph with the given arguments.
@@ -81,35 +81,35 @@ public:
SubgraphView& operator=(SubgraphView&& other);
ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use GetIInputSlots() returning"
- " public IInputSlots", "22.08")
+ " public IInputSlots", "22.11")
const InputSlots& GetInputSlots() const;
const IInputSlots& GetIInputSlots() const;
ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use GetIOutputSlots() returning"
- " public IOutputSlots", "22.08")
+ " public IOutputSlots", "22.11")
const OutputSlots& GetOutputSlots() const;
const IOutputSlots& GetIOutputSlots() const;
ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use GetIConnectableLayers() "
- "returning public IConnectableLayers", "22.08")
+ "returning public IConnectableLayers", "22.11")
const Layers& GetLayers() const;
const IConnectableLayers& GetIConnectableLayers() const;
ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use GetIInputSlot() returning public "
- "IInputSlot", "22.08")
+ "IInputSlot", "22.11")
const InputSlot* GetInputSlot(unsigned int index) const;
const IInputSlot* GetIInputSlot(unsigned int index) const;
ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use GetIInputSlot() returning public "
- "IInputSlot", "22.08")
+ "IInputSlot", "22.11")
InputSlot* GetInputSlot(unsigned int index);
IInputSlot* GetIInputSlot(unsigned int index);
ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use GetIOutputSlot() returning"
- " public IOutputSlot", "22.08")
+ " public IOutputSlot", "22.11")
const OutputSlot* GetOutputSlot(unsigned int index) const;
const IOutputSlot* GetIOutputSlot(unsigned int index) const;
ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use GetIOutputSlot() returning"
- " public IOutputSlot", "22.08")
+ " public IOutputSlot", "22.11")
OutputSlot* GetOutputSlot(unsigned int index);
IOutputSlot* GetIOutputSlot(unsigned int index);