blob: 43e04fbf07b07606a7c9670af86793b57c4b9c0f [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>
92using CLDepthwiseConvolutionLayerQuantizedFixture3x3 = DepthwiseConvolutionLayerValidationQuantizedFixture<CLTensor, CLAccessor, CLDepthwiseConvolutionLayer3x3, T>;
93
94TEST_SUITE(Quantized)
95TEST_SUITE(QASYMM8)
96TEST_SUITE(W3x3)
97FIXTURE_DATA_TEST_CASE(RunSmall, CLDepthwiseConvolutionLayerQuantizedFixture3x3<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallDepthwiseConvolutionLayerDataset3x3(),
98 framework::dataset::make("DataType", DataType::QASYMM8)),
Georgios Pinitasf72f9362018-01-12 16:29:45 +000099 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10) })))
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000100{
101 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
102}
103FIXTURE_DATA_TEST_CASE(RunLarge, CLDepthwiseConvolutionLayerQuantizedFixture3x3<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeDepthwiseConvolutionLayerDataset3x3(),
104 framework::dataset::make("DataType", DataType::QASYMM8)),
Georgios Pinitasf72f9362018-01-12 16:29:45 +0000105 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.5f, 10) })))
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000106{
107 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
108}
109TEST_SUITE_END()
110TEST_SUITE_END()
111TEST_SUITE_END()
112
113TEST_SUITE_END()
114TEST_SUITE_END()
115} // namespace validation
116} // namespace test
117} // namespace arm_compute