From 3e92459cb1167f85570ea4c648761dc1aee60a01 Mon Sep 17 00:00:00 2001 From: Usama Date: Mon, 1 Apr 2019 11:58:18 +0100 Subject: COMPMID-2047: Reference implementation for dilation in DepthwiseConvolution. Change-Id: I6f57a4d207219457292b72098598b7a9e773672d Signed-off-by: Usama Arif Reviewed-on: https://review.mlplatform.org/c/931 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Pablo Marquez --- tests/validation/reference/DepthwiseConvolutionLayer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/validation/reference/DepthwiseConvolutionLayer.h') diff --git a/tests/validation/reference/DepthwiseConvolutionLayer.h b/tests/validation/reference/DepthwiseConvolutionLayer.h index bab338723d..2146611d13 100644 --- a/tests/validation/reference/DepthwiseConvolutionLayer.h +++ b/tests/validation/reference/DepthwiseConvolutionLayer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2018 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -37,7 +37,7 @@ namespace reference { template SimpleTensor depthwise_convolution(const SimpleTensor &src, const SimpleTensor &weights, const SimpleTensor &biases, const TensorShape &dst_shape, const PadStrideInfo &conv_info, - unsigned int depth_multiplier); + unsigned int depth_multiplier, const Size2D &dilation = Size2D(1U, 1U)); } // namespace reference } // namespace validation } // namespace test -- cgit v1.2.1