blob: a9d9f0320dd7da3167482688cb25746f3d5682bb [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 "BatchNormalizationLayer.h"
25
Giorgio Arena11674872018-02-07 15:38:12 +000026#include "ActivationLayer.h"
27
Sanghoon Lee96883782017-09-15 14:10:48 +010028#include "tests/validation/FixedPoint.h"
29#include "tests/validation/Helpers.h"
30
31namespace arm_compute
32{
33namespace test
34{
35namespace validation
36{
37namespace reference
38{
39// Batch Normalization Layer for fixed point type
40template <typename T, typename std::enable_if<std::is_integral<T>::value, int>::type *>
41SimpleTensor<T> batch_normalization_layer(const SimpleTensor<T> &src, const SimpleTensor<T> &mean, const SimpleTensor<T> &var, const SimpleTensor<T> &beta, const SimpleTensor<T> &gamma, float epsilon,
Giorgio Arena11674872018-02-07 15:38:12 +000042 ActivationLayerInfo act_info, int fixed_point_position)
Sanghoon Lee96883782017-09-15 14:10:48 +010043{
Giorgio Arena11674872018-02-07 15:38:12 +000044 ARM_COMPUTE_UNUSED(act_info);
Sanghoon Lee96883782017-09-15 14:10:48 +010045 SimpleTensor<T> result(src.shape(), src.data_type());
46
47 const auto cols = static_cast<int>(src.shape()[0]);
48 const auto rows = static_cast<int>(src.shape()[1]);
49 const auto depth = static_cast<int>(src.shape()[2]);
Sanghoon Leec1294fa2017-11-17 11:47:41 +000050 const int upper_dims = src.shape().total_size() / (cols * rows * depth);
Sanghoon Lee96883782017-09-15 14:10:48 +010051
52 for(int r = 0; r < upper_dims; ++r)
53 {
54 for(int i = 0; i < depth; ++i)
55 {
56 for(int k = 0; k < rows; ++k)
57 {
58 for(int l = 0; l < cols; ++l)
59 {
60 const int pos = l + k * cols + i * rows * cols + r * cols * rows * depth;
61
62 fixed_point_arithmetic::fixed_point<T> src_qs(src[pos], fixed_point_position, true);
63 fixed_point_arithmetic::fixed_point<T> var_qs(var[i], fixed_point_position, true);
64 fixed_point_arithmetic::fixed_point<T> mean_qs(mean[i], fixed_point_position, true);
65 fixed_point_arithmetic::fixed_point<T> beta_qs(beta[i], fixed_point_position, true);
66 fixed_point_arithmetic::fixed_point<T> gamma_qs(gamma[i], fixed_point_position, true);
67 fixed_point_arithmetic::fixed_point<T> epsilon_qs(epsilon, fixed_point_position);
68
69 auto denominator = fixed_point_arithmetic::inv_sqrt(var_qs + epsilon_qs);
70 auto numerator = src_qs - mean_qs;
71 auto x_bar = numerator * denominator;
72 x_bar = beta_qs + x_bar * gamma_qs;
73 result[pos] = x_bar.raw();
74 }
75 }
76 }
77 }
78
79 return result;
80}
81
82// Batch Normalization Layer for floating point type
83template <typename T, typename std::enable_if<is_floating_point<T>::value, int>::type *>
84SimpleTensor<T> batch_normalization_layer(const SimpleTensor<T> &src, const SimpleTensor<T> &mean, const SimpleTensor<T> &var, const SimpleTensor<T> &beta, const SimpleTensor<T> &gamma, float epsilon,
Giorgio Arena11674872018-02-07 15:38:12 +000085 ActivationLayerInfo act_info, int fixed_point_position)
Sanghoon Lee96883782017-09-15 14:10:48 +010086{
87 ARM_COMPUTE_UNUSED(fixed_point_position);
88
89 SimpleTensor<T> result(src.shape(), src.data_type());
90
91 const auto cols = static_cast<int>(src.shape()[0]);
92 const auto rows = static_cast<int>(src.shape()[1]);
93 const auto depth = static_cast<int>(src.shape()[2]);
Sanghoon Leec1294fa2017-11-17 11:47:41 +000094 const int upper_dims = src.shape().total_size() / (cols * rows * depth);
Sanghoon Lee96883782017-09-15 14:10:48 +010095
96 for(int r = 0; r < upper_dims; ++r)
97 {
98 for(int i = 0; i < depth; ++i)
99 {
100 for(int k = 0; k < rows; ++k)
101 {
102 for(int l = 0; l < cols; ++l)
103 {
104 const int pos = l + k * cols + i * rows * cols + r * cols * rows * depth;
105 const float denominator = sqrt(var[i] + epsilon);
106 const float numerator = src[pos] - mean[i];
107 const float x_bar = numerator / denominator;
108 result[pos] = beta[i] + x_bar * gamma[i];
Giorgio Arena11674872018-02-07 15:38:12 +0000109 ;
Sanghoon Lee96883782017-09-15 14:10:48 +0100110 }
111 }
112 }
113 }
Giorgio Arena11674872018-02-07 15:38:12 +0000114
115 if(act_info.enabled())
116 {
117 result = activation_layer(result, act_info);
118 }
119
Sanghoon Lee96883782017-09-15 14:10:48 +0100120 return result;
121}
122template SimpleTensor<float> batch_normalization_layer(const SimpleTensor<float> &src, const SimpleTensor<float> &mean, const SimpleTensor<float> &var, const SimpleTensor<float> &beta,
Giorgio Arena11674872018-02-07 15:38:12 +0000123 const SimpleTensor<float> &gamma, float epsilon, ActivationLayerInfo act_info, int fixed_point_position);
Sanghoon Lee96883782017-09-15 14:10:48 +0100124template SimpleTensor<int8_t> batch_normalization_layer(const SimpleTensor<int8_t> &src, const SimpleTensor<int8_t> &mean, const SimpleTensor<int8_t> &var, const SimpleTensor<int8_t> &beta,
Giorgio Arena11674872018-02-07 15:38:12 +0000125 const SimpleTensor<int8_t> &gamma, float epsilon, ActivationLayerInfo act_info, int fixed_point_position);
Sanghoon Lee96883782017-09-15 14:10:48 +0100126template SimpleTensor<int16_t> batch_normalization_layer(const SimpleTensor<int16_t> &src, const SimpleTensor<int16_t> &mean, const SimpleTensor<int16_t> &var, const SimpleTensor<int16_t> &beta,
Giorgio Arena11674872018-02-07 15:38:12 +0000127 const SimpleTensor<int16_t> &gamma, float epsilon, ActivationLayerInfo act_info, int fixed_point_position);
Sanghoon Lee96883782017-09-15 14:10:48 +0100128template SimpleTensor<half> batch_normalization_layer(const SimpleTensor<half> &src, const SimpleTensor<half> &mean, const SimpleTensor<half> &var,
129 const SimpleTensor<half> &beta,
Giorgio Arena11674872018-02-07 15:38:12 +0000130 const SimpleTensor<half> &gamma, float epsilon, ActivationLayerInfo act_info, int fixed_point_position);
Sanghoon Lee96883782017-09-15 14:10:48 +0100131
132} // namespace reference
133} // namespace validation
134} // namespace test
135} // namespace arm_compute