blob: 69f8d7b6356f6750e8117620b0fed260b3dd6215 [file] [log] [blame]
Sanghoon Lee96883782017-09-15 14:10:48 +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 CONNECTION 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/CLBatchNormalizationLayer.h"
28#include "tests/CL/CLAccessor.h"
29#include "tests/PaddingCalculator.h"
30#include "tests/datasets/RandomBatchNormalizationLayerDataset.h"
31#include "tests/datasets/ShapeDatasets.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Macros.h"
34#include "tests/framework/datasets/Datasets.h"
35#include "tests/validation/Validation.h"
36#include "tests/validation/fixtures/BatchNormalizationLayerFixture.h"
37
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
Gian Marco Iodice349feef2017-09-28 11:21:29 +010046constexpr AbsoluteTolerance<float> tolerance_f32(0.00001f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F32 */
47constexpr AbsoluteTolerance<float> tolerance_f16(0.01f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F16 */
48constexpr AbsoluteTolerance<float> tolerance_qs8(3.0f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::QS8 */
49constexpr AbsoluteTolerance<float> tolerance_qs16(6.0f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::QS16 */
Sanghoon Lee96883782017-09-15 14:10:48 +010050} // namespace
51
52TEST_SUITE(CL)
53TEST_SUITE(BatchNormalizationLayer)
54
55template <typename T>
56using CLBatchNormalizationLayerFixture = BatchNormalizationLayerValidationFixture<CLTensor, CLAccessor, CLBatchNormalizationLayer, T>;
57
Gian Marco Iodice349feef2017-09-28 11:21:29 +010058DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(datasets::RandomBatchNormalizationLayerDataset(), framework::dataset::make("DataType", { DataType::QS8, DataType::QS16, DataType::F16, DataType::F32 })),
Sanghoon Lee96883782017-09-15 14:10:48 +010059 shape0, shape1, epsilon, dt)
60{
61 // Set fixed point position data type allowed
62 int fixed_point_position = (arm_compute::is_data_type_fixed_point(dt)) ? 3 : 0;
63
64 // Create tensors
65 CLTensor src = create_tensor<CLTensor>(shape0, dt, 1, fixed_point_position);
66 CLTensor dst = create_tensor<CLTensor>(shape0, dt, 1, fixed_point_position);
67 CLTensor mean = create_tensor<CLTensor>(shape1, dt, 1, fixed_point_position);
68 CLTensor var = create_tensor<CLTensor>(shape1, dt, 1, fixed_point_position);
69 CLTensor beta = create_tensor<CLTensor>(shape1, dt, 1, fixed_point_position);
70 CLTensor gamma = create_tensor<CLTensor>(shape1, dt, 1, fixed_point_position);
71
72 // Create and Configure function
73 CLBatchNormalizationLayer norm;
74 norm.configure(&src, &dst, &mean, &var, &beta, &gamma, epsilon);
75
76 // Validate valid region
77 const ValidRegion valid_region = shape_to_valid_region(shape0);
78 validate(dst.info()->valid_region(), valid_region);
79}
80
81TEST_SUITE(Float)
Gian Marco Iodice349feef2017-09-28 11:21:29 +010082TEST_SUITE(FP32)
Sanghoon Lee96883782017-09-15 14:10:48 +010083FIXTURE_DATA_TEST_CASE(Random, CLBatchNormalizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(datasets::RandomBatchNormalizationLayerDataset(),
84 framework::dataset::make("DataType", DataType::F32)))
85{
86 // Validate output
Gian Marco Iodice349feef2017-09-28 11:21:29 +010087 validate(CLAccessor(_target), _reference, tolerance_f32, 0);
Sanghoon Lee96883782017-09-15 14:10:48 +010088}
89TEST_SUITE_END()
90
Gian Marco Iodice349feef2017-09-28 11:21:29 +010091TEST_SUITE(FP16)
92FIXTURE_DATA_TEST_CASE(Random, CLBatchNormalizationLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(datasets::RandomBatchNormalizationLayerDataset(),
93 framework::dataset::make("DataType", DataType::F16)))
94{
95 // Validate output
96 validate(CLAccessor(_target), _reference, tolerance_f16, 0);
97}
98TEST_SUITE_END()
99TEST_SUITE_END()
100
Sanghoon Lee96883782017-09-15 14:10:48 +0100101TEST_SUITE(Quantized)
102template <typename T>
103using CLBatchNormalizationLayerFixedPointFixture = BatchNormalizationLayerValidationFixedPointFixture<CLTensor, CLAccessor, CLBatchNormalizationLayer, T>;
104
105TEST_SUITE(QS8)
106FIXTURE_DATA_TEST_CASE(Random, CLBatchNormalizationLayerFixedPointFixture<int8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::RandomBatchNormalizationLayerDataset(),
107 framework::dataset::make("DataType", DataType::QS8)),
108 framework::dataset::make("FractionalBits", 1, 6)))
109{
110 // Validate output
111 validate(CLAccessor(_target), _reference, tolerance_qs8, 0);
112}
113TEST_SUITE_END()
114
115TEST_SUITE(QS16)
116FIXTURE_DATA_TEST_CASE(Random, CLBatchNormalizationLayerFixedPointFixture<int16_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::RandomBatchNormalizationLayerDataset(),
117 framework::dataset::make("DataType", DataType::QS16)),
118 framework::dataset::make("FractionalBits", 1, 14)))
119{
120 // Validate output
121 validate(CLAccessor(_target), _reference, tolerance_qs16, 0);
122}
123TEST_SUITE_END()
124
125TEST_SUITE_END()
126
127TEST_SUITE_END()
128TEST_SUITE_END()
129} // namespace validation
130} // namespace test
131} // namespace arm_compute