blob: e8c771595e253bbd7b5389a55359183ac77bde1b [file] [log] [blame]
Michalis Spyrou7362f0d2017-10-18 17:58:22 +01001/*
Georgios Pinitasf72f9362018-01-12 16:29:45 +00002 * Copyright (c) 2017-2018 ARM Limited.
Michalis Spyrou7362f0d2017-10-18 17:58:22 +01003 *
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"
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000025#include "arm_compute/runtime/NEON/functions/NEDepthwiseConvolutionLayer.h"
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010026#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/NEON/Accessor.h"
29#include "tests/PaddingCalculator.h"
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000030#include "tests/datasets/DepthwiseConvolutionLayerDataset.h"
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010031#include "tests/framework/Asserts.h"
32#include "tests/framework/Macros.h"
33#include "tests/framework/datasets/Datasets.h"
34#include "tests/validation/Validation.h"
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000035#include "tests/validation/fixtures/DepthwiseConvolutionLayerFixture.h"
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43namespace
44{
Georgios Pinitasf72f9362018-01-12 16:29:45 +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 */
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010047} // namespace
48
49TEST_SUITE(NEON)
Pablo Tello941cd702017-12-12 14:35:00 +000050TEST_SUITE(DepthwiseConvLayer)
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010051
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000052DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(framework::dataset::concat(datasets::SmallDepthwiseConvolutionLayerDataset3x3(),
53 datasets::LargeDepthwiseConvolutionLayerDataset3x3()),
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010054 framework::dataset::make("DataType", DataType::F32)),
Pablo Tello941cd702017-12-12 14:35:00 +000055 input_shape, weights_shape, output_shape, info, data_type)
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010056{
57 // Create tensors
Pablo Tello941cd702017-12-12 14:35:00 +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);
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010063
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
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000070 NEDepthwiseConvolutionLayer3x3 depthwise_layer;
Giorgio Arena82afedf2017-11-15 13:36:15 +000071 depthwise_layer.configure(&src, &weights, &bias, &dst, info);
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010072
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
85 const int step = 16 >> info.stride().first;
86 const PaddingSize padding = PaddingCalculator(output_shape.x(), step).required_padding();
87 validate(dst.info()->padding(), padding);
88}
89
Dmitry Savenkod7295b72017-11-20 22:00:08 +070090TEST_SUITE(Float)
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010091TEST_SUITE(F32)
Michalis Spyroub7b31532017-11-23 12:10:21 +000092TEST_SUITE(Generic)
93template <typename T>
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000094using NEDepthwiseConvolutionLayerFixture = DepthwiseConvolutionLayerValidationFixture<Tensor, Accessor, NEDepthwiseConvolutionLayer, T>;
95FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthwiseConvolutionLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(datasets::SmallDepthwiseConvolutionLayerDataset(),
96 framework::dataset::make("DataType",
97 DataType::F32)))
Michalis Spyroub7b31532017-11-23 12:10:21 +000098{
99 validate(Accessor(_target), _reference, tolerance_f32);
100}
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000101FIXTURE_DATA_TEST_CASE(RunLarge, NEDepthwiseConvolutionLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeDepthwiseConvolutionLayerDataset(),
102 framework::dataset::make("DataType",
103 DataType::F32)))
Michalis Spyroub7b31532017-11-23 12:10:21 +0000104{
105 validate(Accessor(_target), _reference, tolerance_f32);
106}
107TEST_SUITE_END()
108
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100109TEST_SUITE(W3x3)
Michalis Spyroub7b31532017-11-23 12:10:21 +0000110template <typename T>
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000111using NEDepthwiseConvolutionLayerFixture3x3 = DepthwiseConvolutionLayerValidationFixture<Tensor, Accessor, NEDepthwiseConvolutionLayer3x3, T>;
112FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthwiseConvolutionLayerFixture3x3<float>, framework::DatasetMode::ALL, combine(datasets::SmallDepthwiseConvolutionLayerDataset3x3(),
113 framework::dataset::make("DataType",
114 DataType::F32)))
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100115{
116 validate(Accessor(_target), _reference, tolerance_f32);
117}
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000118FIXTURE_DATA_TEST_CASE(RunLarge, NEDepthwiseConvolutionLayerFixture3x3<float>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeDepthwiseConvolutionLayerDataset3x3(),
119 framework::dataset::make("DataType",
120 DataType::F32)))
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100121{
122 validate(Accessor(_target), _reference, tolerance_f32);
123}
124TEST_SUITE_END()
125TEST_SUITE_END()
Pablo Tello941cd702017-12-12 14:35:00 +0000126
Dmitry Savenkod7295b72017-11-20 22:00:08 +0700127TEST_SUITE_END()
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100128
Georgios Pinitasf72f9362018-01-12 16:29:45 +0000129template <typename T>
130using NEDepthwiseConvolutionLayerQuantizedFixture3x3 = DepthwiseConvolutionLayerValidationQuantizedFixture<Tensor, Accessor, NEDepthwiseConvolutionLayer3x3, T>;
131
132TEST_SUITE(Quantized)
133TEST_SUITE(QASYMM8)
134TEST_SUITE(W3x3)
135FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthwiseConvolutionLayerQuantizedFixture3x3<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallDepthwiseConvolutionLayerDataset3x3(),
136 framework::dataset::make("DataType", DataType::QASYMM8)),
137 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10) })))
138{
139 validate(Accessor(_target), _reference, tolerance_qasymm8);
140}
141FIXTURE_DATA_TEST_CASE(RunLarge, NEDepthwiseConvolutionLayerQuantizedFixture3x3<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeDepthwiseConvolutionLayerDataset3x3(),
142 framework::dataset::make("DataType", DataType::QASYMM8)),
143 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10) })))
144{
145 validate(Accessor(_target), _reference, tolerance_qasymm8);
146}
147TEST_SUITE_END()
148TEST_SUITE_END()
149TEST_SUITE_END()
150
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100151TEST_SUITE_END()
152TEST_SUITE_END()
153} // namespace validation
154} // namespace test
155} // namespace arm_compute