blob: 2dbb0e0fbb8b3335175b5541ab9bf87e29090f4a [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
Giorgio Arena11674872018-02-07 15:38:12 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier7068f992017-10-26 15:23:08 +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/GLES_COMPUTE/GCTensor.h"
26#include "arm_compute/runtime/GLES_COMPUTE/GCTensorAllocator.h"
27#include "arm_compute/runtime/GLES_COMPUTE/functions/GCBatchNormalizationLayer.h"
28#include "tests/GLES_COMPUTE/GCAccessor.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{
46constexpr AbsoluteTolerance<float> tolerance_f(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 */
Giorgio Arena11674872018-02-07 15:38:12 +000048const auto act_infos = framework::dataset::make("ActivationInfo",
49{
50 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
51 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f),
52 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 8.f, 2.f),
53});
Anthony Barbier7068f992017-10-26 15:23:08 +010054} // namespace
55
56TEST_SUITE(GC)
57TEST_SUITE(BatchNormalizationLayer)
58
59template <typename T>
60using GCBatchNormalizationLayerFixture = BatchNormalizationLayerValidationFixture<GCTensor, GCAccessor, GCBatchNormalizationLayer, T>;
61
Michele Di Giorgio4d336302018-03-02 09:43:54 +000062DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(combine(datasets::RandomBatchNormalizationLayerDataset(),
63 combine(framework::dataset::make("UseBeta", { false, true }),
64 framework::dataset::make("UseGamma", { false, true }))),
65 framework::dataset::make("DataType", { DataType::F32 })),
66 shape0, shape1, epsilon, use_beta, use_gamma, dt)
Anthony Barbier7068f992017-10-26 15:23:08 +010067{
68 // Set fixed point position data type allowed
69 int fixed_point_position = (arm_compute::is_data_type_fixed_point(dt)) ? 3 : 0;
70
71 // Create tensors
72 GCTensor src = create_tensor<GCTensor>(shape0, dt, 1, fixed_point_position);
73 GCTensor dst = create_tensor<GCTensor>(shape0, dt, 1, fixed_point_position);
74 GCTensor mean = create_tensor<GCTensor>(shape1, dt, 1, fixed_point_position);
75 GCTensor var = create_tensor<GCTensor>(shape1, dt, 1, fixed_point_position);
76 GCTensor beta = create_tensor<GCTensor>(shape1, dt, 1, fixed_point_position);
77 GCTensor gamma = create_tensor<GCTensor>(shape1, dt, 1, fixed_point_position);
78
79 // Create and Configure function
80 GCBatchNormalizationLayer norm;
Michele Di Giorgio4d336302018-03-02 09:43:54 +000081 GCTensor *beta_ptr = use_beta ? &beta : nullptr;
82 GCTensor *gamma_ptr = use_gamma ? &gamma : nullptr;
83 norm.configure(&src, &dst, &mean, &var, beta_ptr, gamma_ptr, epsilon);
Anthony Barbier7068f992017-10-26 15:23:08 +010084
85 // Validate valid region
86 const ValidRegion valid_region = shape_to_valid_region(shape0);
87 validate(dst.info()->valid_region(), valid_region);
88}
89
90TEST_SUITE(Float)
91TEST_SUITE(FP16)
Michele Di Giorgio4d336302018-03-02 09:43:54 +000092FIXTURE_DATA_TEST_CASE(Random, GCBatchNormalizationLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::RandomBatchNormalizationLayerDataset(),
93 combine(framework::dataset::make("UseBeta", { false, true }),
94 framework::dataset::make("UseGamma", { false, true }))),
Giorgio Arena11674872018-02-07 15:38:12 +000095 act_infos),
Anthony Barbier7068f992017-10-26 15:23:08 +010096 framework::dataset::make("DataType", DataType::F16)))
97{
98 // Validate output
99 validate(GCAccessor(_target), _reference, tolerance_f16, 0);
100}
101TEST_SUITE_END()
102
103TEST_SUITE(FP32)
Michele Di Giorgio4d336302018-03-02 09:43:54 +0000104FIXTURE_DATA_TEST_CASE(Random, GCBatchNormalizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::RandomBatchNormalizationLayerDataset(),
105 combine(framework::dataset::make("UseBeta", { false, true }),
106 framework::dataset::make("UseGamma", { false, true }))),
Giorgio Arena11674872018-02-07 15:38:12 +0000107 act_infos),
Anthony Barbier7068f992017-10-26 15:23:08 +0100108 framework::dataset::make("DataType", DataType::F32)))
109{
110 // Validate output
111 validate(GCAccessor(_target), _reference, tolerance_f, 0);
112}
113TEST_SUITE_END()
114TEST_SUITE_END()
115
116TEST_SUITE_END()
117TEST_SUITE_END()
118} // namespace validation
119} // namespace test
120} // namespace arm_compute