From 964e955d8962590d3ccbaba9784962e895ca656f Mon Sep 17 00:00:00 2001 From: Nattapat Chaimanowong Date: Tue, 26 Mar 2019 11:03:26 +0000 Subject: IVGCVSW-2881 Remove DebugDescriptor * Also update Debug layer to use layer guid information Change-Id: I9ec1f639299c3f855b670ff031a0e88d685cfc6b Signed-off-by: Nattapat Chaimanowong --- src/armnn/layers/DebugLayer.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/armnn/layers/DebugLayer.hpp') diff --git a/src/armnn/layers/DebugLayer.hpp b/src/armnn/layers/DebugLayer.hpp index bc64541cbe..3bd5a3dae2 100644 --- a/src/armnn/layers/DebugLayer.hpp +++ b/src/armnn/layers/DebugLayer.hpp @@ -4,13 +4,13 @@ // #pragma once -#include "LayerWithParameters.hpp" +#include "Layer.hpp" namespace armnn { /// This layer visualizes the data flowing through the network. -class DebugLayer : public LayerWithParameters +class DebugLayer : public Layer { public: /// Makes a workload for the Debug type. @@ -32,9 +32,8 @@ public: protected: /// Constructor to create a DebugLayer. - /// @param [in] param DebugDescriptor to configure the debug layer. /// @param [in] name Optional name for the layer. - DebugLayer(const DebugDescriptor& param, const char* name); + DebugLayer(const char* name); /// Default destructor ~DebugLayer() = default; -- cgit v1.2.1