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/cpu/CpuContext.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/cpu/CpuContext.h') diff --git a/src/cpu/CpuContext.h b/src/cpu/CpuContext.h index 9a59af39c1..da241ed097 100644 --- a/src/cpu/CpuContext.h +++ b/src/cpu/CpuContext.h @@ -62,6 +62,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: AllocatorWrapper _allocator; -- cgit v1.2.1