aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/Layer.cpp
diff options
context:
space:
mode:
authorRob Hughes <robert.hughes@arm.com>2020-08-28 11:48:35 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2020-10-01 12:50:50 +0000
commitb17220d7323a7ece19e8cc16839491984848bf44 (patch)
tree239c83d5efa4c15ff8f9bed7d1e225ca0c73a920 /src/armnn/Layer.cpp
parenta2a512c60e852a82b9d1e85bb7b8874723dda161 (diff)
downloadarmnn-b17220d7323a7ece19e8cc16839491984848bf44.tar.gz
Include layer GUID in SerializeToDot output
Change-Id: I1a6df60683cc51fcd9739b6dc98f1e722becf045 Signed-off-by: Robert Hughes <robert.hughes@arm.com>
Diffstat (limited to 'src/armnn/Layer.cpp')
-rw-r--r--src/armnn/Layer.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/armnn/Layer.cpp b/src/armnn/Layer.cpp
index 2256e48c91..c8d5a1690d 100644
--- a/src/armnn/Layer.cpp
+++ b/src/armnn/Layer.cpp
@@ -445,8 +445,13 @@ void Layer::VerifyShapeInferenceType(const TensorShape& outputShape, ShapeInfere
void Layer::SerializeLayerParameters(ParameterStringifyFunction& fn) const
{
+ std::string guid = std::to_string(m_Guid);
std::string layerType = GetLayerTypeAsCString(m_Type);
std::string backendId = std::string(m_BackendId);
+ if (!(guid.compare("") == 0) && !guid.empty())
+ {
+ fn("Guid", guid);
+ }
if(!(m_LayerName.compare("") == 0) && !m_LayerName.empty())
{
fn("LayerName",m_LayerName);