From 3fec1ea7e35420ef87de8a98aed0437570251969 Mon Sep 17 00:00:00 2001 From: janeil01 Date: Thu, 7 Nov 2019 09:47:20 +0000 Subject: IVGCVSW-4067 Change LayerGuid to use ProfilingGuid * Refactoring to enable ProfilingGuid * Add profiling includes to Android.mk Signed-off-by: Jan Eilers Change-Id: Ieb25e15e3dc302eb42817d824ad8411ac76dcfe8 --- src/armnnUtils/DotSerializer.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/armnnUtils/DotSerializer.hpp') diff --git a/src/armnnUtils/DotSerializer.hpp b/src/armnnUtils/DotSerializer.hpp index dfb8c7f22e..253fb768ec 100644 --- a/src/armnnUtils/DotSerializer.hpp +++ b/src/armnnUtils/DotSerializer.hpp @@ -5,6 +5,8 @@ #pragma once +#include + #include #include #include @@ -75,7 +77,7 @@ private: class DotEdge : public DotBase { public: - explicit DotEdge(std::ostream& stream, unsigned int fromNodeId, unsigned int toNodeId); + explicit DotEdge(std::ostream& stream, LayerGuid fromNodeId, LayerGuid toNodeId); ~DotEdge(); DotAttributeSet& GetAttributeSet() { return *m_Attributes.get(); } @@ -99,7 +101,7 @@ private: class DotNode : public DotBase { public: - explicit DotNode(std::ostream& stream, unsigned int nodeId, const char* label); + explicit DotNode(std::ostream& stream, LayerGuid nodeId, const char* label); ~DotNode(); NodeContent& GetContents() { return *m_Contents.get(); } -- cgit v1.2.1