From 0c19cbd5800e830fa67cdd3b725efe796b211899 Mon Sep 17 00:00:00 2001 From: Michele Di Giorgio Date: Tue, 11 May 2021 17:41:32 +0100 Subject: Move memory management out of CpuPooling Change-Id: Idae4fc687942f61a1f63f23c9e5538df28888d93 Signed-off-by: Michele Di Giorgio Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5632 Tested-by: Arm Jenkins Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins --- src/core/cpu/kernels/CpuPoolingAssemblyWrapperKernel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/cpu') diff --git a/src/core/cpu/kernels/CpuPoolingAssemblyWrapperKernel.cpp b/src/core/cpu/kernels/CpuPoolingAssemblyWrapperKernel.cpp index 19a0e90d0e..ccf73883f0 100644 --- a/src/core/cpu/kernels/CpuPoolingAssemblyWrapperKernel.cpp +++ b/src/core/cpu/kernels/CpuPoolingAssemblyWrapperKernel.cpp @@ -146,8 +146,8 @@ void CpuPoolingAssemblyWrapperKernel::run_op(ITensorPack &tensors, const Window ARM_COMPUTE_ERROR_ON(tensors.empty()); const ITensor *src = tensors.get_const_tensor(TensorType::ACL_SRC); - ITensor *dst = tensors.get_tensor(TensorType::ACL_DST_0); - ITensor *workspace = tensors.get_tensor(TensorType::ACL_DST_1); + ITensor *dst = tensors.get_tensor(TensorType::ACL_DST); + ITensor *workspace = tensors.get_tensor(TensorType::ACL_INT_0); const auto in_ptr = src->buffer() + src->info()->offset_first_element_in_bytes(); auto out_ptr = dst->buffer() + dst->info()->offset_first_element_in_bytes(); -- cgit v1.2.1