aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/DotSerializer.cpp
diff options
context:
space:
mode:
authorjaneil01 <jan.eilers@arm.com>2019-11-07 09:47:20 +0000
committerjaneil01 <jan.eilers@arm.com>2019-11-08 16:02:26 +0000
commit3fec1ea7e35420ef87de8a98aed0437570251969 (patch)
treefbe033328d6e067fc209580928d37e53f1849657 /src/armnnUtils/DotSerializer.cpp
parentffab16f9f23868b5b9338a1b63393f3be53211cb (diff)
downloadarmnn-3fec1ea7e35420ef87de8a98aed0437570251969.tar.gz
IVGCVSW-4067 Change LayerGuid to use ProfilingGuid
* Refactoring to enable ProfilingGuid * Add profiling includes to Android.mk Signed-off-by: Jan Eilers <jan.eilers@arm.com> Change-Id: Ieb25e15e3dc302eb42817d824ad8411ac76dcfe8
Diffstat (limited to 'src/armnnUtils/DotSerializer.cpp')
-rw-r--r--src/armnnUtils/DotSerializer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/armnnUtils/DotSerializer.cpp b/src/armnnUtils/DotSerializer.cpp
index 1f36cf73ae..7416ff6bdf 100644
--- a/src/armnnUtils/DotSerializer.cpp
+++ b/src/armnnUtils/DotSerializer.cpp
@@ -116,7 +116,7 @@ DotAttributeSet & DotAttributeSet::AddAttribute(const std::string& name, const s
return *this;
}
-DotEdge::DotEdge(std::ostream& stream, unsigned int fromNodeId, unsigned int toNodeId)
+DotEdge::DotEdge(std::ostream& stream, LayerGuid fromNodeId, LayerGuid toNodeId)
: DotBase(stream)
{
std::stringstream ss;
@@ -176,7 +176,7 @@ NodeContent::~NodeContent()
GetStream() << s;
}
-DotNode::DotNode(std::ostream& stream, unsigned int nodeId, const char* label)
+DotNode::DotNode(std::ostream& stream, LayerGuid nodeId, const char* label)
: DotBase(stream)
{
std::stringstream ss;