From aadf8466ffc9597f76d53ce7b87e722cff7e72e6 Mon Sep 17 00:00:00 2001 From: Giorgio Arena Date: Thu, 19 Dec 2019 09:35:40 +0000 Subject: COMPMID-2819 Fix depthwise reference when using ceil Change-Id: I4117320fd6ba11365db9a164e4e44509a9a7ba09 Signed-off-by: Giorgio Arena Reviewed-on: https://review.mlplatform.org/c/2498 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio --- tests/datasets/DepthwiseConvolutionLayerDataset.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/datasets/DepthwiseConvolutionLayerDataset.h') diff --git a/tests/datasets/DepthwiseConvolutionLayerDataset.h b/tests/datasets/DepthwiseConvolutionLayerDataset.h index 2990b135d2..014207e4e9 100644 --- a/tests/datasets/DepthwiseConvolutionLayerDataset.h +++ b/tests/datasets/DepthwiseConvolutionLayerDataset.h @@ -126,6 +126,8 @@ public: // Asymmetric padding add_config(TensorShape(33U, 27U, 7U), Size2D(5U, 7U), PadStrideInfo(3, 2, 1, 1, 2, 0, DimensionRoundingType::FLOOR)); add_config(TensorShape(33U, 27U, 7U), Size2D(5U, 7U), PadStrideInfo(3, 2, 1, 1, 0, 2, DimensionRoundingType::FLOOR)); + // Ceil rounding + add_config(TensorShape(7U, 8U, 5U, 9U), Size2D(8U, 6U), PadStrideInfo(2, 3, 1, 1, 1, 3, DimensionRoundingType::CEIL), Size2D(1U, 2U)); } }; -- cgit v1.2.1