aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/DebugLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/DebugLayer.cpp')
-rw-r--r--src/armnn/layers/DebugLayer.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/armnn/layers/DebugLayer.cpp b/src/armnn/layers/DebugLayer.cpp
index 6fccca677f..34912731cb 100644
--- a/src/armnn/layers/DebugLayer.cpp
+++ b/src/armnn/layers/DebugLayer.cpp
@@ -12,23 +12,26 @@
namespace armnn
{
-DebugLayer::DebugLayer(const DebugDescriptor& param, const char* name)
- : LayerWithParameters(1, 1, LayerType::Debug, param, name)
+DebugLayer::DebugLayer(const char* name)
+ : Layer(1, 1, LayerType::Debug, name)
{}
std::unique_ptr<IWorkload> DebugLayer::CreateWorkload(const Graph& graph,
const IWorkloadFactory& factory) const
{
+ const Layer& prevLayer = GetInputSlot(0).GetConnectedOutputSlot()->GetOwningLayer();
+
DebugQueueDescriptor descriptor;
- descriptor.m_Parameters.m_LayerName = m_Param.m_LayerName;
- descriptor.m_Parameters.m_SlotIndex = m_Param.m_SlotIndex;
+ descriptor.m_Guid = prevLayer.GetGuid();
+ descriptor.m_LayerName = prevLayer.GetNameStr();
+ descriptor.m_SlotIndex = GetInputSlot(0).GetConnectedOutputSlot()->CalculateIndexOnOwner();
return factory.CreateDebug(descriptor, PrepInfoAndDesc(descriptor, graph));
}
DebugLayer* DebugLayer::Clone(Graph& graph) const
{
- return CloneBase<DebugLayer>(graph, m_Param, GetName());
+ return CloneBase<DebugLayer>(graph, GetName());
}
void DebugLayer::ValidateTensorShapesFromInputs()