blob: 0cdd4c02966367d54d4466990aa9c6bea69f7e81 [file] [log] [blame]
Anthony Barbier8140e1e2017-12-14 23:48:46 +00001/*
Anthony Barbierf45d5a92018-01-24 16:23:15 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier8140e1e2017-12-14 23:48:46 +00003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONCLCTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/core/Types.h"
25#include "arm_compute/runtime/NEON/functions/NEDepthwiseConvolutionLayer.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/NEON/Accessor.h"
29#include "tests/PaddingCalculator.h"
30#include "tests/datasets/DepthwiseConvolutionLayerDataset.h"
31#include "tests/framework/Asserts.h"
32#include "tests/framework/Macros.h"
33#include "tests/framework/datasets/Datasets.h"
34#include "tests/validation/Validation.h"
35#include "tests/validation/fixtures/DepthwiseConvolutionLayerFixture.h"
36
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43namespace
44{
Anthony Barbierf45d5a92018-01-24 16:23:15 +000045constexpr RelativeTolerance<float> tolerance_f32(0.01f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F32 */
46constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1); /**< Tolerance value for comparing reference's output against implementation's output for DataType::QASYMM8 */
Anthony Barbier8140e1e2017-12-14 23:48:46 +000047} // namespace
48
49TEST_SUITE(NEON)
Anthony Barbierf45d5a92018-01-24 16:23:15 +000050TEST_SUITE(DepthwiseConvLayer)
Anthony Barbier8140e1e2017-12-14 23:48:46 +000051
52DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(framework::dataset::concat(datasets::SmallDepthwiseConvolutionLayerDataset3x3(),
53 datasets::LargeDepthwiseConvolutionLayerDataset3x3()),
54 framework::dataset::make("DataType", DataType::F32)),
Anthony Barbierf45d5a92018-01-24 16:23:15 +000055 input_shape, weights_shape, output_shape, info, data_type)
Anthony Barbier8140e1e2017-12-14 23:48:46 +000056{
57 // Create tensors
Anthony Barbierf45d5a92018-01-24 16:23:15 +000058 Tensor src = create_tensor<Tensor>(input_shape, data_type);
59 Tensor dst = create_tensor<Tensor>(output_shape, data_type);
60 Tensor weights = create_tensor<Tensor>(weights_shape, data_type);
61 const TensorShape bias_shape(weights_shape[2]);
62 Tensor bias = create_tensor<Tensor>(bias_shape, data_type);
Anthony Barbier8140e1e2017-12-14 23:48:46 +000063
64 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
65 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
66 ARM_COMPUTE_EXPECT(weights.info()->is_resizable(), framework::LogLevel::ERRORS);
67 ARM_COMPUTE_EXPECT(bias.info()->is_resizable(), framework::LogLevel::ERRORS);
68
69 // Create and configure function
70 NEDepthwiseConvolutionLayer3x3 depthwise_layer;
71 depthwise_layer.configure(&src, &weights, &bias, &dst, info);
72
73 // Validate valid region
74 const ValidRegion input_valid_region = shape_to_valid_region(input_shape);
75 const ValidRegion output_valid_region = shape_to_valid_region(output_shape);
76 const ValidRegion weights_valid_region = shape_to_valid_region(weights_shape);
77 const ValidRegion bias_valid_region = shape_to_valid_region(bias_shape);
78
79 validate(src.info()->valid_region(), input_valid_region);
80 validate(dst.info()->valid_region(), output_valid_region);
81 validate(weights.info()->valid_region(), weights_valid_region);
82 validate(bias.info()->valid_region(), bias_valid_region);
83
84 // Validate padding
Anthony Barbier06ea0482018-02-22 15:45:35 +000085 bool is_optimized_run = NEDepthwiseConvolutionLayer3x3Kernel::is_optimized_execution_possible(input_shape, info, data_type, DataLayout::NCHW);
86 const int step_non_opt_dwc = 16 >> info.stride().first;
87 const int step_bias_add = 16 / src.info()->element_size();
88 const int step = is_optimized_run ? step_bias_add : std::max(step_non_opt_dwc, step_bias_add);
89 const PaddingSize padding = PaddingCalculator(output_shape.x(), step).required_padding();
Anthony Barbier8140e1e2017-12-14 23:48:46 +000090 validate(dst.info()->padding(), padding);
91}
92
93TEST_SUITE(Float)
94TEST_SUITE(F32)
95TEST_SUITE(Generic)
96template <typename T>
97using NEDepthwiseConvolutionLayerFixture = DepthwiseConvolutionLayerValidationFixture<Tensor, Accessor, NEDepthwiseConvolutionLayer, T>;
98FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthwiseConvolutionLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(datasets::SmallDepthwiseConvolutionLayerDataset(),
99 framework::dataset::make("DataType",
100 DataType::F32)))
101{
102 validate(Accessor(_target), _reference, tolerance_f32);
103}
104FIXTURE_DATA_TEST_CASE(RunLarge, NEDepthwiseConvolutionLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeDepthwiseConvolutionLayerDataset(),
105 framework::dataset::make("DataType",
106 DataType::F32)))
107{
108 validate(Accessor(_target), _reference, tolerance_f32);
109}
110TEST_SUITE_END()
111
112TEST_SUITE(W3x3)
113template <typename T>
114using NEDepthwiseConvolutionLayerFixture3x3 = DepthwiseConvolutionLayerValidationFixture<Tensor, Accessor, NEDepthwiseConvolutionLayer3x3, T>;
115FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthwiseConvolutionLayerFixture3x3<float>, framework::DatasetMode::ALL, combine(datasets::SmallDepthwiseConvolutionLayerDataset3x3(),
116 framework::dataset::make("DataType",
117 DataType::F32)))
118{
119 validate(Accessor(_target), _reference, tolerance_f32);
120}
121FIXTURE_DATA_TEST_CASE(RunLarge, NEDepthwiseConvolutionLayerFixture3x3<float>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeDepthwiseConvolutionLayerDataset3x3(),
122 framework::dataset::make("DataType",
123 DataType::F32)))
124{
125 validate(Accessor(_target), _reference, tolerance_f32);
126}
Anthony Barbier06ea0482018-02-22 15:45:35 +0000127FIXTURE_DATA_TEST_CASE(RunOptimized, NEDepthwiseConvolutionLayerFixture3x3<float>, framework::DatasetMode::ALL, combine(datasets::OptimizedDepthwiseConvolutionLayerDataset3x3(),
128 framework::dataset::make("DataType",
129 DataType::F32)))
130{
131 validate(Accessor(_target), _reference, tolerance_f32);
132}
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000133TEST_SUITE_END()
Anthony Barbierf45d5a92018-01-24 16:23:15 +0000134TEST_SUITE_END()
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000135
136TEST_SUITE_END()
Anthony Barbierf45d5a92018-01-24 16:23:15 +0000137
138template <typename T>
139using NEDepthwiseConvolutionLayerQuantizedFixture3x3 = DepthwiseConvolutionLayerValidationQuantizedFixture<Tensor, Accessor, NEDepthwiseConvolutionLayer3x3, T>;
Anthony Barbier06ea0482018-02-22 15:45:35 +0000140template <typename T>
141using NEDepthwiseConvolutionLayerQuantizedFixture = DepthwiseConvolutionLayerValidationQuantizedFixture<Tensor, Accessor, NEDepthwiseConvolutionLayer, T>;
Anthony Barbierf45d5a92018-01-24 16:23:15 +0000142
143TEST_SUITE(Quantized)
144TEST_SUITE(QASYMM8)
Anthony Barbier06ea0482018-02-22 15:45:35 +0000145TEST_SUITE(Generic)
146FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthwiseConvolutionLayerQuantizedFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallDepthwiseConvolutionLayerDataset(),
147 framework::dataset::make("DataType", DataType::QASYMM8)),
148 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10) })))
149{
150 validate(Accessor(_target), _reference, tolerance_qasymm8);
151}
152TEST_SUITE_END()
Anthony Barbierf45d5a92018-01-24 16:23:15 +0000153TEST_SUITE(W3x3)
154FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthwiseConvolutionLayerQuantizedFixture3x3<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallDepthwiseConvolutionLayerDataset3x3(),
155 framework::dataset::make("DataType", DataType::QASYMM8)),
156 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10) })))
157{
158 validate(Accessor(_target), _reference, tolerance_qasymm8);
159}
160FIXTURE_DATA_TEST_CASE(RunLarge, NEDepthwiseConvolutionLayerQuantizedFixture3x3<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeDepthwiseConvolutionLayerDataset3x3(),
161 framework::dataset::make("DataType", DataType::QASYMM8)),
162 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10) })))
163{
164 validate(Accessor(_target), _reference, tolerance_qasymm8);
165}
166TEST_SUITE_END()
167TEST_SUITE_END()
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000168TEST_SUITE_END()
169
170TEST_SUITE_END()
171TEST_SUITE_END()
172} // namespace validation
173} // namespace test
174} // namespace arm_compute