aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/NEON/kernels/NEDepthConcatenateLayerKernel.h
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2020-03-04 15:30:41 +0000
committerMichalis Spyrou <michalis.spyrou@arm.com>2020-03-06 17:13:03 +0000
commitc28d42837b2aea09738a7df00653d623c3c53420 (patch)
tree3dadd9aaa330700826b926d3755e5e530562c75c /arm_compute/core/NEON/kernels/NEDepthConcatenateLayerKernel.h
parent3eda16adc25d44849a9eb578c0d6d068a6f0cc50 (diff)
downloadComputeLibrary-c28d42837b2aea09738a7df00653d623c3c53420.tar.gz
COMPMID-3156: Remove padding from NEDepthConcatenateLayerKernel
Change-Id: I875a116a2527f19774c80e0da3153264564c960d Signed-off-by: Michalis Spyrou <michalis.spyrou@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2829 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Diffstat (limited to 'arm_compute/core/NEON/kernels/NEDepthConcatenateLayerKernel.h')
-rw-r--r--arm_compute/core/NEON/kernels/NEDepthConcatenateLayerKernel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arm_compute/core/NEON/kernels/NEDepthConcatenateLayerKernel.h b/arm_compute/core/NEON/kernels/NEDepthConcatenateLayerKernel.h
index ddbd0983e4..6690ac2236 100644
--- a/arm_compute/core/NEON/kernels/NEDepthConcatenateLayerKernel.h
+++ b/arm_compute/core/NEON/kernels/NEDepthConcatenateLayerKernel.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2019 ARM Limited.
+ * Copyright (c) 2017-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -79,7 +79,7 @@ public:
void run(const Window &window, const ThreadInfo &info) override;
private:
- using DepthConcatFunction = void(const ITensor *in, ITensor *out, int depth_offset, const Window &window);
+ using DepthConcatFunction = void(const ITensor *in, ITensor *out, unsigned int depth_offset, const Window &window);
private:
DepthConcatFunction *_func;