aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/backends/SubgraphView.hpp
diff options
context:
space:
mode:
authorKeith Davis <keith.davis@arm.com>2022-11-18 14:38:04 +0000
committerTeresaARM <teresa.charlinreyes@arm.com>2022-11-22 15:29:19 +0000
commit975a6a2f896eb2e5457f6ffa528f7fb018fd2927 (patch)
tree401af2ddfdd4faee481f3e71918dd9f51b7651d6 /include/armnn/backends/SubgraphView.hpp
parent839b9329611ecc148d6547920cec7b105fc5660f (diff)
downloadarmnn-975a6a2f896eb2e5457f6ffa528f7fb018fd2927.tar.gz
IVGCVSW-7080 Remove deprecated code due to be removed in 23.02
* Extended deprecation time of SubgraphView interface to 23.08 Signed-off-by: Keith Davis <keith.davis@arm.com> Change-Id: Ic0a729ea31402f0b39724da47212ae5cc04465c4
Diffstat (limited to 'include/armnn/backends/SubgraphView.hpp')
-rw-r--r--include/armnn/backends/SubgraphView.hpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/armnn/backends/SubgraphView.hpp b/include/armnn/backends/SubgraphView.hpp
index fcb2014060..63a9f57cc7 100644
--- a/include/armnn/backends/SubgraphView.hpp
+++ b/include/armnn/backends/SubgraphView.hpp
@@ -117,35 +117,35 @@ public:
unsigned int GetNumOutputSlots() const;
ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be changed to return an "
- "IConnectableLayerIterator, until that occurs in 23.02; please use "
- "beginIConnectable() returning public IConnectableLayerIterator", "23.02")
+ "IConnectableLayerIterator, until that occurs in 23.08; please use "
+ "beginIConnectable() returning public IConnectableLayerIterator", "23.08")
Iterator begin();
IConnectableLayerIterator beginIConnectable();
ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be changed to return an "
- "IConnectableLayerIterator, until that occurs in 23.02; please use "
- "endIConnectable() returning public IConnectableLayerIterator", "23.02")
+ "IConnectableLayerIterator, until that occurs in 23.08; please use "
+ "endIConnectable() returning public IConnectableLayerIterator", "23.08")
Iterator end();
IConnectableLayerIterator endIConnectable();
ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be changed to return an "
- "ConstIConnectableIterator, until that occurs in 23.02; please use "
- "beginIConnectable() returning public ConstIConnectableIterator", "23.02")
+ "ConstIConnectableIterator, until that occurs in 23.08; please use "
+ "beginIConnectable() returning public ConstIConnectableIterator", "23.08")
ConstIterator begin() const;
ConstIConnectableIterator beginIConnectable() const;
ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be changed to return an "
- "ConstIConnectableIterator, until that occurs in 23.02; please use "
- "endIConnectable() returning public ConstIConnectableIterator", "23.02")
+ "ConstIConnectableIterator, until that occurs in 23.08; please use "
+ "endIConnectable() returning public ConstIConnectableIterator", "23.08")
ConstIterator end() const;
ConstIConnectableIterator endIConnectable() const;
ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be changed to return an "
- "ConstIConnectableIterator, until that occurs in 23.02; please use "
- "cbeginIConnectable() returning public ConstIConnectableIterator", "23.02")
+ "ConstIConnectableIterator, until that occurs in 23.08; please use "
+ "cbeginIConnectable() returning public ConstIConnectableIterator", "23.08")
ConstIterator cbegin() const;
ConstIConnectableIterator cbeginIConnectable() const;
ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be changed to return an "
- "ConstIConnectableIterator, until that occurs in 23.02; please use "
- "cendIConnectable() returning public ConstIConnectableIterator", "23.02")
+ "ConstIConnectableIterator, until that occurs in 23.08; please use "
+ "cendIConnectable() returning public ConstIConnectableIterator", "23.08")
ConstIterator cend() const;
ConstIConnectableIterator cendIConnectable() const;