blob: ca13d26495e16e3dc1a517a1b54707316910c98f [file] [log] [blame]
Sanghoon Lee96883782017-09-15 14:10:48 +01001/*
Giorgio Arena11674872018-02-07 15:38:12 +00002 * Copyright (c) 2017-2018 ARM Limited.
Sanghoon Lee96883782017-09-15 14:10:48 +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 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/NEON/functions/NEBatchNormalizationLayer.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/NEON/Accessor.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"
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +000035#include "tests/validation/Helpers.h"
Sanghoon Lee96883782017-09-15 14:10:48 +010036#include "tests/validation/Validation.h"
37#include "tests/validation/fixtures/BatchNormalizationLayerFixture.h"
38
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
45namespace
46{
47constexpr AbsoluteTolerance<float> tolerance_f32(0.00001f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F32 */
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000048#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Sanghoon Lee96883782017-09-15 14:10:48 +010049constexpr AbsoluteTolerance<float> tolerance_f16(0.01f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F16 */
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000050#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +010051const auto act_infos = framework::dataset::make("ActivationInfo",
Giorgio Arena11674872018-02-07 15:38:12 +000052{
53 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
54 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f),
55 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 8.f, 2.f),
56});
Sanghoon Lee96883782017-09-15 14:10:48 +010057} // namespace
58
59TEST_SUITE(NEON)
60TEST_SUITE(BatchNormalizationLayer)
61
62template <typename T>
63using NEBatchNormalizationLayerFixture = BatchNormalizationLayerValidationFixture<Tensor, Accessor, NEBatchNormalizationLayer, T>;
64
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +000065DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(combine(combine(datasets::RandomBatchNormalizationLayerDataset(),
66 combine(framework::dataset::make("UseBeta", { false, true }), framework::dataset::make("UseGamma", { false, true }))),
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +010067 framework::dataset::make("DataType", { DataType::F32 })),
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +000068 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })),
69 shape0, shape1, epsilon, use_beta, use_gamma, dt, data_layout)
Sanghoon Lee96883782017-09-15 14:10:48 +010070{
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +000071 TensorShape src_dst_shapes = shape0;
72 if(data_layout == DataLayout::NHWC)
73 {
74 permute(src_dst_shapes, PermutationVector(2U, 0U, 1U));
75 }
76
Sanghoon Lee96883782017-09-15 14:10:48 +010077 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010078 Tensor src = create_tensor<Tensor>(src_dst_shapes, dt, 1, QuantizationInfo(), data_layout);
79 Tensor dst = create_tensor<Tensor>(src_dst_shapes, dt, 1, QuantizationInfo(), data_layout);
80 Tensor mean = create_tensor<Tensor>(shape1, dt, 1);
81 Tensor var = create_tensor<Tensor>(shape1, dt, 1);
82 Tensor beta = create_tensor<Tensor>(shape1, dt, 1);
83 Tensor gamma = create_tensor<Tensor>(shape1, dt, 1);
Sanghoon Lee96883782017-09-15 14:10:48 +010084
85 // Create and Configure function
86 NEBatchNormalizationLayer norm;
Michele Di Giorgio4d336302018-03-02 09:43:54 +000087 Tensor *beta_ptr = use_beta ? &beta : nullptr;
88 Tensor *gamma_ptr = use_gamma ? &gamma : nullptr;
89 norm.configure(&src, &dst, &mean, &var, beta_ptr, gamma_ptr, epsilon);
Sanghoon Lee96883782017-09-15 14:10:48 +010090
91 // Validate valid region
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +000092 const ValidRegion valid_region = shape_to_valid_region(src_dst_shapes);
Sanghoon Lee96883782017-09-15 14:10:48 +010093 validate(dst.info()->valid_region(), valid_region);
94}
95
Ioan-Cristian Szabo303be902017-11-27 16:31:10 +000096// *INDENT-OFF*
97// clang-format off
Giorgio Arena11674872018-02-07 15:38:12 +000098DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(
Ioan-Cristian Szabo303be902017-11-27 16:31:10 +000099 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
100 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Window shrink
101 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Mismatching data types
102 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Mismatching data types
103 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Invalid mean/var/beta/gamma shape
Giorgio Arena11674872018-02-07 15:38:12 +0000104 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Fused activation's a < b
Ioan-Cristian Szabo303be902017-11-27 16:31:10 +0000105 }),
106 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
107 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
108 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
109 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F16),
110 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
Giorgio Arena11674872018-02-07 15:38:12 +0000111 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
Ioan-Cristian Szabo303be902017-11-27 16:31:10 +0000112 })),
113 framework::dataset::make("MVBGInfo",{ TensorInfo(TensorShape(2U), 1, DataType::F32),
114 TensorInfo(TensorShape(2U), 1, DataType::F32),
115 TensorInfo(TensorShape(2U), 1, DataType::F16),
116 TensorInfo(TensorShape(2U), 1, DataType::F32),
117 TensorInfo(TensorShape(5U), 1, DataType::F32),
Giorgio Arena11674872018-02-07 15:38:12 +0000118 TensorInfo(TensorShape(2U), 1, DataType::F32),
Ioan-Cristian Szabo303be902017-11-27 16:31:10 +0000119 })),
Giorgio Arena11674872018-02-07 15:38:12 +0000120 framework::dataset::make("ActivationLayerInfo",{ ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
121 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
122 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f),
123 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f),
124 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 6.f),
Giorgio Arena11674872018-02-07 15:38:12 +0000125 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 2.f, 6.f),
Giorgio Arena11674872018-02-07 15:38:12 +0000126 })),
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +0100127 framework::dataset::make("Expected", { true, false, false, false, false, false})),
Giorgio Arena11674872018-02-07 15:38:12 +0000128 input_info, output_info, mvbg_info, act_info, expected)
Ioan-Cristian Szabo303be902017-11-27 16:31:10 +0000129{
130 const auto &mean_info = mvbg_info;
131 const auto &var_info = mvbg_info;
132 const auto &beta_info = mvbg_info;
133 const auto &gamma_info = mvbg_info;
134 bool has_error = bool(NEBatchNormalizationLayer::validate(
135 &input_info.clone()->set_is_resizable(false), output_info.total_size() ? &output_info.clone()->set_is_resizable(false) : nullptr,
136 &mean_info.clone()->set_is_resizable(false), &var_info.clone()->set_is_resizable(false),
Giorgio Arena11674872018-02-07 15:38:12 +0000137 &beta_info.clone()->set_is_resizable(false), &gamma_info.clone()->set_is_resizable(false), 1.f, act_info));
Ioan-Cristian Szabo303be902017-11-27 16:31:10 +0000138 ARM_COMPUTE_EXPECT(has_error == expected, framework::LogLevel::ERRORS);
139}
140// clang-format on
141// *INDENT-ON*
142
Sanghoon Lee96883782017-09-15 14:10:48 +0100143TEST_SUITE(Float)
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +0000144TEST_SUITE(FP32)
145FIXTURE_DATA_TEST_CASE(Random, NEBatchNormalizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(datasets::RandomBatchNormalizationLayerDataset(),
Michele Di Giorgio4d336302018-03-02 09:43:54 +0000146 combine(framework::dataset::make("UseBeta", { false, true }),
147 framework::dataset::make("UseGamma", { false, true }))),
Giorgio Arena11674872018-02-07 15:38:12 +0000148 act_infos),
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +0000149 framework::dataset::make("DataType", DataType::F32)),
150 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Sanghoon Lee96883782017-09-15 14:10:48 +0100151{
152 // Validate output
153 validate(Accessor(_target), _reference, tolerance_f32, 0);
154}
155TEST_SUITE_END()
156
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000157#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +0000158TEST_SUITE(FP16)
159FIXTURE_DATA_TEST_CASE(Random, NEBatchNormalizationLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(datasets::RandomBatchNormalizationLayerDataset(),
Michele Di Giorgio4d336302018-03-02 09:43:54 +0000160 combine(framework::dataset::make("UseBeta", { false, true }),
161 framework::dataset::make("UseGamma", { false, true }))),
Georgios Pinitas57c033b2018-02-15 12:29:44 +0000162 framework::dataset::make("ActivationInfo", ActivationLayerInfo())),
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +0000163 framework::dataset::make("DataType", DataType::F16)),
164 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Sanghoon Lee96883782017-09-15 14:10:48 +0100165{
166 // Validate output
167 validate(Accessor(_target), _reference, tolerance_f16, 0);
168}
169TEST_SUITE_END()
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000170#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +0000171TEST_SUITE_END()
Sanghoon Lee96883782017-09-15 14:10:48 +0100172
Sanghoon Lee96883782017-09-15 14:10:48 +0100173TEST_SUITE_END()
174TEST_SUITE_END()
175} // namespace validation
176} // namespace test
177} // namespace arm_compute