blob: 17eaaf8ad70a54981aa2a146585b2d9b77fecad6 [file] [log] [blame]
Michalis Spyrou7362f0d2017-10-18 17:58:22 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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{
45constexpr RelativeTolerance<float> tolerance_f32(0.01f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F32 */
46} // namespace
47
48TEST_SUITE(NEON)
49TEST_SUITE(DepthwiseConvolutionLayer)
50
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000051DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(framework::dataset::concat(datasets::SmallDepthwiseConvolutionLayerDataset3x3(),
52 datasets::LargeDepthwiseConvolutionLayerDataset3x3()),
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010053 framework::dataset::make("DataType", DataType::F32)),
54 input_shape, weights_shape, bias_shape, output_shape, info, data_type)
55{
56 // Create tensors
57 Tensor src = create_tensor<Tensor>(input_shape, data_type);
58 Tensor dst = create_tensor<Tensor>(output_shape, data_type);
59 Tensor weights = create_tensor<Tensor>(weights_shape, data_type);
60 Tensor bias = create_tensor<Tensor>(bias_shape, data_type);
61
62 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
63 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
64 ARM_COMPUTE_EXPECT(weights.info()->is_resizable(), framework::LogLevel::ERRORS);
65 ARM_COMPUTE_EXPECT(bias.info()->is_resizable(), framework::LogLevel::ERRORS);
66
67 // Create and configure function
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000068 NEDepthwiseConvolutionLayer3x3 depthwise_layer;
Giorgio Arena82afedf2017-11-15 13:36:15 +000069 depthwise_layer.configure(&src, &weights, &bias, &dst, info);
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010070
71 // Validate valid region
72 const ValidRegion input_valid_region = shape_to_valid_region(input_shape);
73 const ValidRegion output_valid_region = shape_to_valid_region(output_shape);
74 const ValidRegion weights_valid_region = shape_to_valid_region(weights_shape);
75 const ValidRegion bias_valid_region = shape_to_valid_region(bias_shape);
76
77 validate(src.info()->valid_region(), input_valid_region);
78 validate(dst.info()->valid_region(), output_valid_region);
79 validate(weights.info()->valid_region(), weights_valid_region);
80 validate(bias.info()->valid_region(), bias_valid_region);
81
82 // Validate padding
83 const int step = 16 >> info.stride().first;
84 const PaddingSize padding = PaddingCalculator(output_shape.x(), step).required_padding();
85 validate(dst.info()->padding(), padding);
86}
87
Dmitry Savenkod7295b72017-11-20 22:00:08 +070088TEST_SUITE(Float)
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010089TEST_SUITE(F32)
Michalis Spyroub7b31532017-11-23 12:10:21 +000090TEST_SUITE(Generic)
91template <typename T>
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000092using NEDepthwiseConvolutionLayerFixture = DepthwiseConvolutionLayerValidationFixture<Tensor, Accessor, NEDepthwiseConvolutionLayer, T>;
93FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthwiseConvolutionLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(datasets::SmallDepthwiseConvolutionLayerDataset(),
94 framework::dataset::make("DataType",
95 DataType::F32)))
Michalis Spyroub7b31532017-11-23 12:10:21 +000096{
97 validate(Accessor(_target), _reference, tolerance_f32);
98}
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000099FIXTURE_DATA_TEST_CASE(RunLarge, NEDepthwiseConvolutionLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeDepthwiseConvolutionLayerDataset(),
100 framework::dataset::make("DataType",
101 DataType::F32)))
Michalis Spyroub7b31532017-11-23 12:10:21 +0000102{
103 validate(Accessor(_target), _reference, tolerance_f32);
104}
105TEST_SUITE_END()
106
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100107TEST_SUITE(W3x3)
Michalis Spyroub7b31532017-11-23 12:10:21 +0000108template <typename T>
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000109using NEDepthwiseConvolutionLayerFixture3x3 = DepthwiseConvolutionLayerValidationFixture<Tensor, Accessor, NEDepthwiseConvolutionLayer3x3, T>;
110FIXTURE_DATA_TEST_CASE(RunSmall, NEDepthwiseConvolutionLayerFixture3x3<float>, framework::DatasetMode::ALL, combine(datasets::SmallDepthwiseConvolutionLayerDataset3x3(),
111 framework::dataset::make("DataType",
112 DataType::F32)))
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100113{
114 validate(Accessor(_target), _reference, tolerance_f32);
115}
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000116FIXTURE_DATA_TEST_CASE(RunLarge, NEDepthwiseConvolutionLayerFixture3x3<float>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeDepthwiseConvolutionLayerDataset3x3(),
117 framework::dataset::make("DataType",
118 DataType::F32)))
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100119{
120 validate(Accessor(_target), _reference, tolerance_f32);
121}
122TEST_SUITE_END()
Michalis Spyroub7b31532017-11-23 12:10:21 +0000123
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100124TEST_SUITE_END()
Dmitry Savenkod7295b72017-11-20 22:00:08 +0700125TEST_SUITE_END()
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100126
127TEST_SUITE_END()
128TEST_SUITE_END()
129} // namespace validation
130} // namespace test
131} // namespace arm_compute