blob: d747d43b30c3800891bfc819271b719605bdb4f9 [file] [log] [blame]
Giorgio Arena04a8f8c2017-11-23 11:45:24 +00001/*
Georgios Pinitasf72f9362018-01-12 16:29:45 +00002 * Copyright (c) 2017-2018 ARM Limited.
Giorgio Arena04a8f8c2017-11-23 11:45:24 +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/CL/CLTensor.h"
26#include "arm_compute/runtime/CL/CLTensorAllocator.h"
27#include "arm_compute/runtime/CL/functions/CLDepthwiseConvolutionLayer.h"
28#include "tests/CL/CLAccessor.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{
45constexpr RelativeTolerance<float> tolerance_f32(0.01f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F32 */
Georgios Pinitasf72f9362018-01-12 16:29:45 +000046constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1); /**< Tolerance value for comparing reference's output against implementation's output for DataType::QASYMM8 */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000047} // namespace
48
49TEST_SUITE(CL)
50TEST_SUITE(DepthwiseConvolutionLayer)
51
52template <typename T>
53using CLDepthwiseConvolutionLayerFixture = DepthwiseConvolutionLayerValidationFixture<CLTensor, CLAccessor, CLDepthwiseConvolutionLayer, T>;
54
55TEST_SUITE(Generic)
56FIXTURE_DATA_TEST_CASE(RunSmall, CLDepthwiseConvolutionLayerFixture<float>, framework::DatasetMode::ALL, combine(datasets::SmallDepthwiseConvolutionLayerDataset(), framework::dataset::make("DataType",
57 DataType::F32)))
58{
59 validate(CLAccessor(_target), _reference, tolerance_f32);
60}
61FIXTURE_DATA_TEST_CASE(RunLarge, CLDepthwiseConvolutionLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeDepthwiseConvolutionLayerDataset(),
62 framework::dataset::make("DataType",
63 DataType::F32)))
64{
65 validate(CLAccessor(_target), _reference, tolerance_f32);
66}
67TEST_SUITE_END()
68
69template <typename T>
70using CLDepthwiseConvolutionLayerFixture3x3 = DepthwiseConvolutionLayerValidationFixture<CLTensor, CLAccessor, CLDepthwiseConvolutionLayer3x3, T>;
71
72TEST_SUITE(Float)
73TEST_SUITE(FP32)
74TEST_SUITE(W3x3)
75FIXTURE_DATA_TEST_CASE(RunSmall, CLDepthwiseConvolutionLayerFixture3x3<float>, framework::DatasetMode::ALL, combine(datasets::SmallDepthwiseConvolutionLayerDataset3x3(),
76 framework::dataset::make("DataType",
77 DataType::F32)))
78{
79 validate(CLAccessor(_target), _reference, tolerance_f32);
80}
81FIXTURE_DATA_TEST_CASE(RunLarge, CLDepthwiseConvolutionLayerFixture3x3<float>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeDepthwiseConvolutionLayerDataset3x3(),
82 framework::dataset::make("DataType",
83 DataType::F32)))
84{
85 validate(CLAccessor(_target), _reference, tolerance_f32);
86}
87TEST_SUITE_END()
88TEST_SUITE_END()
89TEST_SUITE_END()
90
91template <typename T>
Georgios Pinitasde5a1cc2018-02-02 12:52:07 +000092using CLDepthwiseConvolutionLayerQuantizedFixture = DepthwiseConvolutionLayerValidationQuantizedFixture<CLTensor, CLAccessor, CLDepthwiseConvolutionLayer, T>;
93template <typename T>
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000094using CLDepthwiseConvolutionLayerQuantizedFixture3x3 = DepthwiseConvolutionLayerValidationQuantizedFixture<CLTensor, CLAccessor, CLDepthwiseConvolutionLayer3x3, T>;
95
96TEST_SUITE(Quantized)
97TEST_SUITE(QASYMM8)
Georgios Pinitasde5a1cc2018-02-02 12:52:07 +000098TEST_SUITE(Generic)
99FIXTURE_DATA_TEST_CASE(RunSmall, CLDepthwiseConvolutionLayerQuantizedFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallDepthwiseConvolutionLayerDataset(),
100 framework::dataset::make("DataType", DataType::QASYMM8)),
101 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10) })))
102{
103 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
104}
105FIXTURE_DATA_TEST_CASE(RunLarge, CLDepthwiseConvolutionLayerQuantizedFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::LargeDepthwiseConvolutionLayerDataset(),
106 framework::dataset::make("DataType", DataType::QASYMM8)),
107 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10) })))
108{
109 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
110}
111TEST_SUITE_END()
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000112TEST_SUITE(W3x3)
113FIXTURE_DATA_TEST_CASE(RunSmall, CLDepthwiseConvolutionLayerQuantizedFixture3x3<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallDepthwiseConvolutionLayerDataset3x3(),
114 framework::dataset::make("DataType", DataType::QASYMM8)),
Georgios Pinitasf72f9362018-01-12 16:29:45 +0000115 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10) })))
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000116{
117 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
118}
119FIXTURE_DATA_TEST_CASE(RunLarge, CLDepthwiseConvolutionLayerQuantizedFixture3x3<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeDepthwiseConvolutionLayerDataset3x3(),
120 framework::dataset::make("DataType", DataType::QASYMM8)),
Georgios Pinitasf72f9362018-01-12 16:29:45 +0000121 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10) })))
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000122{
123 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
124}
125TEST_SUITE_END()
126TEST_SUITE_END()
127TEST_SUITE_END()
128
129TEST_SUITE_END()
130TEST_SUITE_END()
131} // namespace validation
132} // namespace test
133} // namespace arm_compute