aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels
diff options
context:
space:
mode:
authorDavid Mansell <David.Mansell@arm.com>2023-08-22 13:27:03 +0100
committerViet-Hoa Do <viet-hoa.do@arm.com>2023-08-22 15:03:13 +0000
commit1b2ee3eb6991efcbd09cde84ab0c383f15648738 (patch)
tree2f666822841cb4c2d8dd7abc313524b1c967b435 /src/core/NEON/kernels
parenteb5696d99d85e1d402188151e021bc4b14f93969 (diff)
downloadComputeLibrary-1b2ee3eb6991efcbd09cde84ab0c383f15648738.tar.gz
CPU: Depthwise: Generate correct size for input indirection array.
Signed-off-by: David Mansell <David.Mansell@arm.com> Change-Id: I359ed0703f4036e017b34b622f76b630cefac973 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10183 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Viet-Hoa Do <viet-hoa.do@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/core/NEON/kernels')
-rw-r--r--src/core/NEON/kernels/arm_conv/depthwise/depthwise_depthfirst_generic.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/NEON/kernels/arm_conv/depthwise/depthwise_depthfirst_generic.hpp b/src/core/NEON/kernels/arm_conv/depthwise/depthwise_depthfirst_generic.hpp
index ca5026b6e0..e2d05560a1 100644
--- a/src/core/NEON/kernels/arm_conv/depthwise/depthwise_depthfirst_generic.hpp
+++ b/src/core/NEON/kernels/arm_conv/depthwise/depthwise_depthfirst_generic.hpp
@@ -186,7 +186,7 @@ class GenericInputArrayElement
static size_t get_element_size(const WorkspaceArgs<IDepthfirstStrategy, OutputStage> &args)
{
const auto kernel_points = args.depthwise_args.kernel_rows * args.depthwise_args.kernel_cols;
- return sizeof(T **) * args.strategy->get_input_rows() * args.strategy->get_input_cols() * kernel_points;
+ return sizeof(T **) * args.strategy->get_output_rows() * args.strategy->get_output_cols() * kernel_points;
}
template <class WorkspaceType, class OutputStage>