aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2021-02-16 15:15:19 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2021-02-23 18:21:55 +0000
commitceaa0bfe219631b5a4e638613f90f9fa47a3defe (patch)
tree3bb878645ae7509f7807197d320a02882ad84751 /utils
parentc40562d4467e3a68b0dac5e865570c8f38d1487e (diff)
downloadComputeLibrary-ceaa0bfe219631b5a4e638613f90f9fa47a3defe.tar.gz
Remove OpenGL ES support
Remove the following: - Relevant backend kernels - Relevant backend functions - Relevant backend validation tests - Relevant backend specific examples - Remove backend support from Graph API - Remove backend support from build system Update documentation Resolves: COMPMID-4149 Change-Id: Id0621d6ee35169754de458103907aaba4ef770c0 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5097 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/Utils.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/utils/Utils.h b/utils/Utils.h
index 9c9026edc4..f8c84851b5 100644
--- a/utils/Utils.h
+++ b/utils/Utils.h
@@ -45,9 +45,6 @@
#include "arm_compute/runtime/CL/CLDistribution1D.h"
#include "arm_compute/runtime/CL/CLTensor.h"
#endif /* ARM_COMPUTE_CL */
-#ifdef ARM_COMPUTE_GC
-#include "arm_compute/runtime/GLES_COMPUTE/GCTensor.h"
-#endif /* ARM_COMPUTE_GC */
#include <cstdlib>
#include <cstring>
@@ -269,27 +266,6 @@ inline void unmap(CLDistribution1D &distribution)
}
#endif /* ARM_COMPUTE_CL */
-#ifdef ARM_COMPUTE_GC
-/** Maps a tensor if needed
- *
- * @param[in] tensor Tensor to be mapped
- * @param[in] blocking Specified if map is blocking or not
- */
-inline void map(GCTensor &tensor, bool blocking)
-{
- tensor.map(blocking);
-}
-
-/** Unmaps a tensor if needed
- *
- * @param tensor Tensor to be unmapped
- */
-inline void unmap(GCTensor &tensor)
-{
- tensor.unmap();
-}
-#endif /* ARM_COMPUTE_GC */
-
/** Specialized class to generate random non-zero FP16 values.
* uniform_real_distribution<half> generates values that get rounded off to zero, causing
* differences between ACL and reference implementation