aboutsummaryrefslogtreecommitdiff
path: root/arm_compute
diff options
context:
space:
mode:
authorJaroslaw Rzepecki <jaroslaw.rzepecki@arm.com>2017-10-27 13:15:03 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit16cdf89eec95986d1b386312ccf3b221f6a1bad4 (patch)
tree4d1eeb6c66798a3f5841e447be3162c12cc658b7 /arm_compute
parent0c1d1486ecc7159bfe808cd8d929e2962f53e58e (diff)
downloadComputeLibrary-16cdf89eec95986d1b386312ccf3b221f6a1bad4.tar.gz
IVGCVSW-657 : fix asymmetric padding for 3x3 depthwise conv
Change-Id: Ied6b3c41d988b9ff6a93f938117dc29ad4c85e9f Reviewed-on: http://mpd-gerrit.cambridge.arm.com/93421 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'arm_compute')
-rw-r--r--arm_compute/core/CL/kernels/CLDepthwiseConvolution3x3Kernel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arm_compute/core/CL/kernels/CLDepthwiseConvolution3x3Kernel.h b/arm_compute/core/CL/kernels/CLDepthwiseConvolution3x3Kernel.h
index b3d1eaf3af..4d4c288533 100644
--- a/arm_compute/core/CL/kernels/CLDepthwiseConvolution3x3Kernel.h
+++ b/arm_compute/core/CL/kernels/CLDepthwiseConvolution3x3Kernel.h
@@ -68,8 +68,8 @@ private:
const ICLTensor *_biases;
unsigned int _conv_stride_x;
unsigned int _conv_stride_y;
- unsigned int _conv_pad_x;
- unsigned int _conv_pad_y;
+ unsigned int _conv_pad_left;
+ unsigned int _conv_pad_top;
};
} // namespace arm_compute
#endif /*__ARM_COMPUTE_CLDEPTHWISECONVOLUTIONKERNEL3x3_H__ */