From 758b5ba3e6d22509d4deab3d8b0b9c2f03418130 Mon Sep 17 00:00:00 2001 From: Matthew Bentham Date: Thu, 5 Mar 2020 23:37:48 +0000 Subject: COMPMID-3069: Improve build time by splitting up ToolchainSupport.h Split out the parts of ToolchainSupport coming from and the parts coming from into their own new header files. This accounts for 99% of uses of ToolchainSupport, which means that expensive header files such as arm_neon.h don't need to be included everywhere. Knocks about 10% of compilation time off kernel files. Signed-off-by: Matthew Bentham Change-Id: I2ae718fe766b5ff28608812b0f686f30eeac1b21 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2852 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio --- arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h') diff --git a/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h b/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h index bc465a8b99..1b7514ff34 100644 --- a/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h +++ b/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h @@ -43,12 +43,8 @@ public: ~GCRuntimeContext() = default; /** Prevent instances of this class from being copied (As this class contains pointers) */ GCRuntimeContext(const GCRuntimeContext &) = delete; - /** Default move constructor */ - GCRuntimeContext(GCRuntimeContext &&) = default; /** Prevent instances of this class from being copied (As this class contains pointers) */ GCRuntimeContext &operator=(const GCRuntimeContext &) = delete; - /** Default move assignment operator */ - GCRuntimeContext &operator=(GCRuntimeContext &&) = default; /** CPU Scheduler setter */ void set_gpu_scheduler(GCScheduler *scheduler); -- cgit v1.2.1