aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/TypePrinter.h
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2018-09-20 17:14:03 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commit4e1c3f336133319cfe45b037befdb252ffd9b744 (patch)
tree8a12e6cd2609af27ae718b20422dcbb4ea47404b /arm_compute/graph/TypePrinter.h
parent108ab0bc0395b558a96951f41d7580d308708bc5 (diff)
downloadComputeLibrary-4e1c3f336133319cfe45b037befdb252ffd9b744.tar.gz
COMPMID-1595 Add UpsampleLayer to graph API
Change-Id: I7427b0fbb222ff9760d47b01a59aee654f2f860f Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/149587 Tested-by: bsgcomp <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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/arm_compute/graph/TypePrinter.h b/arm_compute/graph/TypePrinter.h
index 983400ffe3..b0d0fb0242 100644
--- a/arm_compute/graph/TypePrinter.h
+++ b/arm_compute/graph/TypePrinter.h
@@ -122,6 +122,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const NodeType &node_type)
case NodeType::SplitLayer:
os << "SplitLayer";
break;
+ case NodeType::UpsampleLayer:
+ os << "UpsampleLayer";
+ break;
case NodeType::YOLOLayer:
os << "YOLOLayer";
break;