From 7ae80a928564eba96c4fef0b91b1c50e1647fb8d Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Fri, 25 Oct 2019 18:25:17 +0100 Subject: COMPMID-2549: Add GLES Runtime Context interfaces. * Creates interfaces and concrete classes * Ports GCActivationalLayer * Adapts test framework and relevant tests Change-Id: Ide36cd65ebf185958db3c4a5bebd630fcb2f39b3 Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/2199 Reviewed-by: Pablo Marquez Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins --- arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h') diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h index 5e0effe902..a046d1b38c 100644 --- a/arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h +++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCActivationLayer.h @@ -29,6 +29,7 @@ namespace arm_compute { +// Forward declarations class IGCTensor; /** Basic function to run @ref GCActivationLayerKernel @@ -40,9 +41,9 @@ class GCActivationLayer : public IGCSimpleFunction public: /** Constructor * - * @param[in] ctx Runtime context to be used by the function + * @param[in, out] ctx Runtime context to be used by the function */ - GCActivationLayer(void *ctx = nullptr); + explicit GCActivationLayer(GCRuntimeContext *ctx = nullptr); /** Prevent instances of this class from being copied (As this class contains pointers) */ GCActivationLayer(const GCActivationLayer &) = delete; /** Default move constructor */ -- cgit v1.2.1