aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/DotSerializer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnUtils/DotSerializer.hpp')
-rw-r--r--src/armnnUtils/DotSerializer.hpp6
1 files changed, 4 insertions, 2 deletions
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 <armnn/Types.hpp>
+
#include <ostream>
#include <vector>
#include <memory>
@@ -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(); }