aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/TypePrinter.h
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2018-09-12 13:51:59 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commit555d1109dd566661bcf911c28030927cf4fde5b4 (patch)
treed64259ea8062d34a813531d73cc195c90b153f87 /arm_compute/graph/TypePrinter.h
parentc98b99094aecaed81baa750b3210c1779145efe9 (diff)
downloadComputeLibrary-555d1109dd566661bcf911c28030927cf4fde5b4.tar.gz
COMPMID-1577: Add NormalizePlanarYUVLayer to graph API
Change-Id: Iadcf8205ff842330f7242f870705e9ea677ec419 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/148105 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/graph/TypePrinter.h')
-rw-r--r--arm_compute/graph/TypePrinter.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/arm_compute/graph/TypePrinter.h b/arm_compute/graph/TypePrinter.h
index 9117864130..4628d924dc 100644
--- a/arm_compute/graph/TypePrinter.h
+++ b/arm_compute/graph/TypePrinter.h
@@ -95,12 +95,18 @@ inline ::std::ostream &operator<<(::std::ostream &os, const NodeType &node_type)
case NodeType::NormalizationLayer:
os << "NormalizationLayer";
break;
+ case NodeType::NormalizePlanarYUVLayer:
+ os << "NormalizePlanarYUVLayer";
+ break;
case NodeType::PermuteLayer:
os << "PermuteLayer";
break;
case NodeType::PoolingLayer:
os << "PoolingLayer";
break;
+ case NodeType::ReorgLayer:
+ os << "ReorgLayer";
+ break;
case NodeType::ReshapeLayer:
os << "ReshapeLayer";
break;