From 7243fc3c07230948f83a0929712f4aff0103d19c Mon Sep 17 00:00:00 2001 From: Gian Marco Iodice Date: Wed, 28 Aug 2019 15:56:36 +0100 Subject: COMPMID-2636: Fix Depthwise convolution layer validation test This fix is just in the validation test to avoid the multiplier > 1 Change-Id: Idd4836e5da549c5da5a6f723e35ff0cac8b612f4 Signed-off-by: Gian Marco Iodice Reviewed-on: https://review.mlplatform.org/c/1829 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio --- tests/validation/CL/DepthwiseConvolutionLayer.cpp | 10 +++++----- tests/validation/NEON/DepthwiseConvolutionLayer.cpp | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/validation/CL/DepthwiseConvolutionLayer.cpp b/tests/validation/CL/DepthwiseConvolutionLayer.cpp index 1c3dc308c7..37563046cc 100644 --- a/tests/validation/CL/DepthwiseConvolutionLayer.cpp +++ b/tests/validation/CL/DepthwiseConvolutionLayer.cpp @@ -561,8 +561,8 @@ FIXTURE_DATA_TEST_CASE(RunSmall, CLDepthwiseConvolutionLayerQuantizedFixture, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(combine(combine(datasets::SmallDepthwiseConvolutionLayerDataset3x3(), depth_multipliers), framework::dataset::make("DataType", DataType::QASYMM8)), - framework::dataset::make("SrcQuantizationInfo", { QuantizationInfo(0.5f, 10) })), - framework::dataset::make("DstQuantizationInfo", { QuantizationInfo(0.3f, 10) })), + framework::dataset::make("SrcQuantizationInfo", { QuantizationInfo(0.3f, 10) })), + framework::dataset::make("DstQuantizationInfo", { QuantizationInfo(0.5f, 10) })), framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })), ActivationFunctionsDataset)) { -- cgit v1.2.1