aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/TypePrinter.h
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-06-06 14:35:15 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:52:54 +0000
commit2e01e18ff5458f4bd8e6bcc868ba7eb39ff776cc (patch)
treef2852881d221348f465f6dc9e799463fabf57ab8 /arm_compute/graph/TypePrinter.h
parent859dafef8cdf2b2fdbdf4acd5057920559a642e9 (diff)
downloadComputeLibrary-2e01e18ff5458f4bd8e6bcc868ba7eb39ff776cc.tar.gz
COMPMID-1246: Add GLES target in graph TypePrinter
Change-Id: I5c6b29277b93facf6a992e02f72ebc6a1e5e5ef6 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/134413 Reviewed-by: Michele DiGiorgio <michele.digiorgio@arm.com> Tested-by: Jenkins <bsgcomp@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 36d924b4f9..1847d9c226 100644
--- a/arm_compute/graph/TypePrinter.h
+++ b/arm_compute/graph/TypePrinter.h
@@ -131,6 +131,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const Target &target)
case Target::CL:
os << "CL";
break;
+ case Target::GC:
+ os << "GC";
+ break;
default:
ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
}