aboutsummaryrefslogtreecommitdiff
path: root/arm_compute
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2021-03-18 17:32:00 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2021-03-26 09:22:21 +0000
commit40efd5365108b97fc8d6cb93fa1d572a08a93ad5 (patch)
treecdcd11c2a553863ae7e7df0b0c6bbd18379fb9db /arm_compute
parenta8903c871252412c70623b5f8e284c181238a9b2 (diff)
downloadComputeLibrary-40efd5365108b97fc8d6cb93fa1d572a08a93ad5.tar.gz
Remove GLES-related code
Change-Id: I208281d6e9ec15f9dba03cfbdc36ba2bf072d592 Signed-off-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5314 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')
-rw-r--r--arm_compute/core/IDevice.h3
-rw-r--r--arm_compute/graph/TypePrinter.h3
-rw-r--r--arm_compute/graph/Types.h1
-rw-r--r--arm_compute/runtime/ITransformWeights.h1
-rw-r--r--arm_compute/runtime/experimental/Types.h3
5 files changed, 2 insertions, 9 deletions
diff --git a/arm_compute/core/IDevice.h b/arm_compute/core/IDevice.h
index 2a648ff0e1..12efa91e19 100644
--- a/arm_compute/core/IDevice.h
+++ b/arm_compute/core/IDevice.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020 Arm Limited.
+ * Copyright (c) 2020-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -34,7 +34,6 @@ enum class DeviceType
{
NEON,
CL,
- GLES
};
/** Interface for device object */
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 */
diff --git a/arm_compute/runtime/ITransformWeights.h b/arm_compute/runtime/ITransformWeights.h
index 4fb2f89418..f85b7966c5 100644
--- a/arm_compute/runtime/ITransformWeights.h
+++ b/arm_compute/runtime/ITransformWeights.h
@@ -39,7 +39,6 @@ class ITensor;
* Lower two bits store the target:
* 00 -> Neon
* 01 -> CL
- * 10 -> GLES
* 11 -> Unused
*
* Five bits store the id of the reshape function:
diff --git a/arm_compute/runtime/experimental/Types.h b/arm_compute/runtime/experimental/Types.h
index 54ea47d098..ce44253f82 100644
--- a/arm_compute/runtime/experimental/Types.h
+++ b/arm_compute/runtime/experimental/Types.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020 Arm Limited.
+ * Copyright (c) 2020-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -35,7 +35,6 @@ enum class MemoryType
{
CPU,
CL,
- GLES
};
} // namespace experimental
} // namespace arm_compute