aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/TypePrinter.h
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2020-01-03 15:02:04 +0000
committerMichele Di Giorgio <michele.digiorgio@arm.com>2020-01-16 10:19:25 +0000
commit6e9d0e048b48712f4f72d4b0a5b94a277391a357 (patch)
tree5a2d181062a5ed7d61f8d3621b34022f03e45dd8 /arm_compute/graph/TypePrinter.h
parent8c837ca85c06c53ccca20937be9dfd74d00d597a (diff)
downloadComputeLibrary-6e9d0e048b48712f4f72d4b0a5b94a277391a357.tar.gz
COMPMID-2856 Add PrintLayer at graph level
Signed-off-by: Giorgio Arena <giorgio.arena@arm.com> Change-Id: I8f02bb67adae8cc7d884f2417cc9c408985f0d5a Reviewed-on: https://review.mlplatform.org/c/2546 Reviewed-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'arm_compute/graph/TypePrinter.h')
-rw-r--r--arm_compute/graph/TypePrinter.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/arm_compute/graph/TypePrinter.h b/arm_compute/graph/TypePrinter.h
index 243a8938d7..7072b556ae 100644
--- a/arm_compute/graph/TypePrinter.h
+++ b/arm_compute/graph/TypePrinter.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2019 ARM Limited.
+ * Copyright (c) 2018-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -128,6 +128,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const NodeType &node_type)
case NodeType::PoolingLayer:
os << "PoolingLayer";
break;
+ case NodeType::PrintLayer:
+ os << "PrintLayer";
+ break;
case NodeType::PriorBoxLayer:
os << "PriorBoxLayer";
break;