aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/Descriptors.hpp
diff options
context:
space:
mode:
authorNattapat Chaimanowong <nattapat.chaimanowong@arm.com>2019-03-26 11:03:26 +0000
committernattapat.chaimanowong <nattapat.chaimanowong@arm.com>2019-03-26 17:15:21 +0000
commit964e955d8962590d3ccbaba9784962e895ca656f (patch)
tree802213a507152d23fec932dfc6405540b97b7ccf /include/armnn/Descriptors.hpp
parent44db7c36c8cf0fc608d3edc2ee0eb04428085218 (diff)
downloadarmnn-964e955d8962590d3ccbaba9784962e895ca656f.tar.gz
IVGCVSW-2881 Remove DebugDescriptor
* Also update Debug layer to use layer guid information Change-Id: I9ec1f639299c3f855b670ff031a0e88d685cfc6b Signed-off-by: Nattapat Chaimanowong <nattapat.chaimanowong@arm.com>
Diffstat (limited to 'include/armnn/Descriptors.hpp')
-rw-r--r--include/armnn/Descriptors.hpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/armnn/Descriptors.hpp b/include/armnn/Descriptors.hpp
index 0bbe134e46..42b017f4cc 100644
--- a/include/armnn/Descriptors.hpp
+++ b/include/armnn/Descriptors.hpp
@@ -631,24 +631,6 @@ struct StridedSliceDescriptor
DataLayout m_DataLayout;
};
-/// A DebugDescriptor for the DebugLayer.
-struct DebugDescriptor
-{
- DebugDescriptor()
- : m_SlotIndex(0)
- {}
-
- DebugDescriptor(const std::string name, unsigned int index)
- : m_LayerName(name)
- , m_SlotIndex(index)
- {}
-
- /// The name of the debug layer.
- std::string m_LayerName;
- /// The slot index of the debug layer.
- unsigned int m_SlotIndex;
-};
-
/// A PreCompiledDescriptor for the PreCompiledLayer.
struct PreCompiledDescriptor
{