aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFrancis Murtagh <francis.murtagh@arm.com>2023-07-28 14:29:46 +0100
committerNikhil Raj Arm <nikhil.raj@arm.com>2023-08-03 20:43:01 +0000
commit0f3e9a09a90664fc7c6479f1d7b312a4671d9659 (patch)
treea661655f394badb2a5d19bca81b324b3be952d0c /include
parent07169c8cc8b73ba5f3550cb0e8688de73d438c7e (diff)
downloadarmnn-0f3e9a09a90664fc7c6479f1d7b312a4671d9659.tar.gz
IVGCVSW-7635 Remove deprecated code due to be removed in 23.08 (SubgraphView)
Signed-off-by: Francis Murtagh <francis.murtagh@arm.com> Signed-off-by: Kevin May <kevin.may@arm.com> Change-Id: I6686ad0a16ef763dbdc771c7ef792ae2890e0ab2
Diffstat (limited to 'include')
-rw-r--r--include/armnn/backends/SubgraphView.hpp64
1 files changed, 20 insertions, 44 deletions
diff --git a/include/armnn/backends/SubgraphView.hpp b/include/armnn/backends/SubgraphView.hpp
index 24f8958930..19603a510f 100644
--- a/include/armnn/backends/SubgraphView.hpp
+++ b/include/armnn/backends/SubgraphView.hpp
@@ -88,73 +88,49 @@ public:
/// Move-assignment operator.
SubgraphView& operator=(SubgraphView&& other);
- ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use GetIInputSlots() returning"
- " public IInputSlots", "23.08")
- const InputSlots& GetInputSlots() const;
const IInputSlots& GetIInputSlots() const;
- ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use GetIOutputSlots() returning"
- " public IOutputSlots", "23.08")
- const OutputSlots& GetOutputSlots() const;
const IOutputSlots& GetIOutputSlots() const;
- ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use GetIConnectableLayers() "
- "returning public IConnectableLayers", "23.08")
- const Layers& GetLayers() const;
const IConnectableLayers& GetIConnectableLayers() const;
- ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated, please use GetIInputSlot() returning public "
- "IInputSlot", "23.08")
- 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", "23.08")
- 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", "23.08")
- 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", "23.08")
+
OutputSlot* GetOutputSlot(unsigned int index);
IOutputSlot* GetIOutputSlot(unsigned int index);
unsigned int GetNumInputSlots() const;
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.08; please use "
- "beginIConnectable() returning public IConnectableLayerIterator", "23.08")
- Iterator begin();
+ IConnectableLayerIterator begin();
+ ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be removed; please use "
+ "begin() returning public IConnectableIterator", "24.05")
IConnectableLayerIterator beginIConnectable();
- ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be changed to return an "
- "IConnectableLayerIterator, until that occurs in 23.08; please use "
- "endIConnectable() returning public IConnectableLayerIterator", "23.08")
- Iterator end();
+ IConnectableLayerIterator end();//
+ ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be removed; please use "
+ "end() returning public IConnectableLayerIterator", "24.05")
IConnectableLayerIterator endIConnectable();
+ ConstIConnectableIterator begin() const;
- ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be changed to return an "
- "ConstIConnectableIterator, until that occurs in 23.08; please use "
- "beginIConnectable() returning public ConstIConnectableIterator", "23.08")
- ConstIterator begin() const;
+ ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be removed; please use "
+ "begin() returning public ConstIConnectableIterator", "24.05")
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.08; please use "
- "endIConnectable() returning public ConstIConnectableIterator", "23.08")
- ConstIterator end() const;
+ ConstIConnectableIterator end() const;
+ ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be removed; please use "
+ "end() returning public ConstIConnectableIterator", "24.05")
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.08; please use "
- "cbeginIConnectable() returning public ConstIConnectableIterator", "23.08")
- ConstIterator cbegin() const;
+ ConstIConnectableIterator cbegin() const;
+ ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be removed; please use "
+ "cbegin() returning public ConstIterator", "24.05")
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.08; please use "
- "cendIConnectable() returning public ConstIConnectableIterator", "23.08")
- ConstIterator cend() const;
+
+ ConstIConnectableIterator cend() const;
+ ARMNN_DEPRECATED_MSG_CHANGE_DATE("This function is deprecated and will be removed; please use "
+ "cend() returning public ConstIConnectableIterator", "24.05")
ConstIConnectableIterator cendIConnectable() const;
void Clear();