From ceaa0bfe219631b5a4e638613f90f9fa47a3defe Mon Sep 17 00:00:00 2001 From: Manuel Bottini Date: Tue, 16 Feb 2021 15:15:19 +0000 Subject: 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 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5097 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Reviewed-by: Georgios Pinitas --- scripts/include_functions_kernels.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/include_functions_kernels.py b/scripts/include_functions_kernels.py index 19f140ea3b..721855ee27 100644 --- a/scripts/include_functions_kernels.py +++ b/scripts/include_functions_kernels.py @@ -11,16 +11,14 @@ Target = collections.namedtuple('Target', 'name prefix basepath') core_targets = [ Target("NEON", "NE", src_path), # Neon kernels are under src Target("CL", "CL", src_path), # CL kernels are under src - Target("CPP", "CPP", armcv_path), # CPP kernels are under arm_compute - Target("GLES_COMPUTE", "GC", armcv_path) # GLES kernels are under arm_compute + Target("CPP", "CPP", armcv_path) # CPP kernels are under arm_compute ] # All functions are under arm_compute runtime_targets = [ Target("NEON", "NE", armcv_path), Target("CL", "CL", armcv_path), - Target("CPP", "CPP", armcv_path), - Target("GLES_COMPUTE", "GC", armcv_path) + Target("CPP", "CPP", armcv_path) ] core_path = "/core/" -- cgit v1.2.1