aboutsummaryrefslogtreecommitdiff
path: root/src/graph/printers/DotGraphPrinter.cpp
diff options
context:
space:
mode:
authorFreddie Liardet <frederick.liardet@arm.com>2021-06-17 13:30:11 +0100
committerfrederick.liardet <frederick.liardet@arm.com>2021-07-08 14:49:39 +0000
commitdd23f2af4ee4f41f34499ada9c6cd28c9479c6d3 (patch)
treee5111c787cec863f4e188b0b155c158525c63e14 /src/graph/printers/DotGraphPrinter.cpp
parentcfac51c779f9bf05e8b2d386fbfb4022767d1d30 (diff)
downloadComputeLibrary-dd23f2af4ee4f41f34499ada9c6cd28c9479c6d3.tar.gz
Add LayerData to all nodes
Create LayerData type to store information about inputs/outputs of nodes, also adds convolution specific information. Resolves: COMPMID-4422 Signed-off-by: Freddie Liardet <frederick.liardet@arm.com> Change-Id: I1c3be1abe2fb5ed085108ab3d34b14a1b8561d38 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5876 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/graph/printers/DotGraphPrinter.cpp')
-rw-r--r--src/graph/printers/DotGraphPrinter.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/graph/printers/DotGraphPrinter.cpp b/src/graph/printers/DotGraphPrinter.cpp
index 2e1e9d0951..08f7f25ee5 100644
--- a/src/graph/printers/DotGraphPrinter.cpp
+++ b/src/graph/printers/DotGraphPrinter.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2020 Arm Limited.
+ * Copyright (c) 2018-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -111,8 +111,9 @@ void DotGraphVisitor::visit(PoolingLayerNode &n)
_info = ss.str();
}
-void DotGraphVisitor::default_visit()
+void DotGraphVisitor::default_visit(INode &n)
{
+ ARM_COMPUTE_UNUSED(n);
_info.clear();
}