aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/graph')
-rw-r--r--arm_compute/graph/TypePrinter.h3
-rw-r--r--arm_compute/graph/Types.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/arm_compute/graph/TypePrinter.h b/arm_compute/graph/TypePrinter.h
index 3f529a9814..317c5a7596 100644
--- a/arm_compute/graph/TypePrinter.h
+++ b/arm_compute/graph/TypePrinter.h
@@ -48,9 +48,6 @@ 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!");
}
diff --git a/arm_compute/graph/Types.h b/arm_compute/graph/Types.h
index c4afba2dee..b1154daef3 100644
--- a/arm_compute/graph/Types.h
+++ b/arm_compute/graph/Types.h
@@ -98,7 +98,6 @@ enum class Target
UNSPECIFIED, /**< Unspecified Target */
NEON, /**< Neon capable target device */
CL, /**< OpenCL capable target device */
- GC, /**< GLES compute capable target device */
};
/** Supported Element-wise operations */