aboutsummaryrefslogtreecommitdiff
path: root/tests/main.cpp
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 /tests/main.cpp
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 'tests/main.cpp')
-rw-r--r--tests/main.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
index 2c5eb9a2fd..bd15fd3507 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -44,9 +44,6 @@
#include "arm_compute/runtime/CL/CLTuner.h"
#include "utils/TypePrinter.h"
#endif /* ARM_COMPUTE_CL */
-#ifdef ARM_COMPUTE_GC
-#include "arm_compute/runtime/GLES_COMPUTE/GCScheduler.h"
-#endif /* ARM_COMPUTE_GC */
#include "arm_compute/runtime/Scheduler.h"
#include <fstream>
@@ -179,20 +176,6 @@ int main(int argc, char **argv)
parameters = std::make_unique<ParametersLibrary>();
parameters->set_cpu_ctx(std::move(cpu_ctx));
-#ifdef ARM_COMPUTE_GC
- // Setup OpenGL context
- {
- auto gles_ctx = std::make_unique<GCRuntimeContext>();
- ARM_COMPUTE_ERROR_ON(gles_ctx == nullptr);
- {
- // Legacy singletons API: This has been deprecated and the singletons will be removed in future releases
- // Setup singleton for backward compatibility
- GCScheduler::get().default_init();
- }
- parameters->set_gc_ctx(std::move(gles_ctx));
- };
-#endif /* ARM_COMPUTE_GC */
-
#ifdef ARM_COMPUTE_CL
CLTuner cl_tuner(false);
CLGEMMHeuristicsHandle gemm_heuristics;