From 4164814a099773c0a512889473c980bc148e590f Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 3 Aug 2021 08:24:00 +0100 Subject: Implement Operator API Resolves: COMPMID-4512 Signed-off-by: Georgios Pinitas Change-Id: Id12130365fa3fe2261160931dcc7affb6b467186 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6031 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- src/gpu/cl/ClContext.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/gpu/cl') diff --git a/src/gpu/cl/ClContext.h b/src/gpu/cl/ClContext.h index 2a0d4ee1c8..a50b03124b 100644 --- a/src/gpu/cl/ClContext.h +++ b/src/gpu/cl/ClContext.h @@ -76,6 +76,10 @@ public: // Inherrited methods overridden ITensorV2 *create_tensor(const AclTensorDescriptor &desc, bool allocate) override; IQueue *create_queue(const AclQueueOptions *options) override; + std::tuple create_activation(const AclTensorDescriptor &src, + const AclTensorDescriptor &dst, + const AclActivationDescriptor &act, + bool is_validate) override; private: mlgo::MLGOHeuristics _mlgo_heuristics; -- cgit v1.2.1