blob: 7d8fc7ec7fd2366abe42f26b942dfa6147a7339a [file] [log] [blame]
Michele Di Giorgio91753922019-06-13 10:56:59 +01001/*
Dana Zlotnik027bcef2021-12-27 17:35:00 +02002 * Copyright (c) 2019-2022 Arm Limited.
Michele Di Giorgio91753922019-06-13 10:56:59 +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 */
Michalis Spyrouebcebf12020-10-21 00:04:14 +010024#include "src/core/NEON/kernels/NEMeanStdDevNormalizationKernel.h"
Michele Di Giorgio91753922019-06-13 10:56:59 +010025
Michele Di Giorgio91753922019-06-13 10:56:59 +010026#include "arm_compute/core/Helpers.h"
27#include "arm_compute/core/ITensor.h"
Michele Di Giorgio91753922019-06-13 10:56:59 +010028#include "arm_compute/core/TensorInfo.h"
29#include "arm_compute/core/Types.h"
30#include "arm_compute/core/Window.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/CPP/Validate.h"
Georgios Pinitasddb93bb2020-10-02 16:38:59 +010032#include "src/core/NEON/NEMath.h"
33#include "src/core/NEON/wrapper/wrapper.h"
Dana Zlotnik027bcef2021-12-27 17:35:00 +020034#include "src/core/common/Registrars.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/helpers/AutoConfiguration.h"
36#include "src/core/helpers/WindowHelpers.h"
Dana Zlotnik027bcef2021-12-27 17:35:00 +020037#include "src/cpu/kernels/meanstddevnorm/list.h"
Michele Di Giorgio91753922019-06-13 10:56:59 +010038
39namespace arm_compute
40{
41namespace
42{
Dana Zlotnik027bcef2021-12-27 17:35:00 +020043struct MeanStdDevNormSelectorData
44{
45 DataType dt;
46};
47
48using MeanStdDevNormSelctorPtr = std::add_pointer<bool(const MeanStdDevNormSelectorData &data)>::type;
49using MeanStdDevNormUKernelPtr = std::add_pointer<void(ITensor *input, ITensor *output, float epsilon, const Window &window)>::type;
50
51struct MeanStdDevNormKernel
52{
53 const char *name;
54 const MeanStdDevNormSelctorPtr is_selected;
55 MeanStdDevNormUKernelPtr ukernel;
56};
57
58static const MeanStdDevNormKernel available_kernels[] =
59{
60 {
61 "fp32_neon_meanstddevnorm",
62 [](const MeanStdDevNormSelectorData & data) { return data.dt == DataType::F32; },
63 REGISTER_FP32_NEON(arm_compute::cpu::neon_fp32_meanstddevnorm)
64 },
65#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
66 {
67 "fp16_neon_meanstddevnorm",
68 [](const MeanStdDevNormSelectorData & data) { return data.dt == DataType::F16; },
69 REGISTER_FP16_NEON(arm_compute::cpu::neon_fp16_meanstddevnorm)
70 },
71#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
72};
73
74/** Micro-kernel selector
75 *
76 * @param[in] data Selection data passed to help pick the appropriate micro-kernel
77 *
78 * @return A matching micro-kernel else nullptr
79 */
80const MeanStdDevNormKernel *get_implementation(const MeanStdDevNormSelectorData &data)
81{
82 for(const auto &uk : available_kernels)
83 {
84 if(uk.is_selected(data))
85 {
86 return &uk;
87 }
88 }
89 return nullptr;
90}
91
Michele Di Giorgio91753922019-06-13 10:56:59 +010092Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, float epsilon)
93{
94 ARM_COMPUTE_UNUSED(epsilon);
95 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input);
96 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input);
97 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->num_dimensions() > 2, "Input tensor cannot have more than 2 dimensions");
98 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
99
100 // Checks performed when output is configured
101 if((output != nullptr) && (output->total_size() != 0))
102 {
103 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
104 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
105 }
106 return Status{};
107}
108
109std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
110{
111 if(output != nullptr)
112 {
113 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
114 // Output auto inizialitation if not yet initialized
115 auto_init_if_empty(*output, *input);
116 }
117
118 // This kernel doesn't need padding. A left-over for loop on dimension X, we cannot have any read or write out of memory
119 // For this reason num_elems_processed_per_iteration is set to 1
120 Window win = calculate_max_window(*input, Steps());
Michele Di Giorgio91753922019-06-13 10:56:59 +0100121
122 return std::make_pair(Status{}, win);
123}
124} // namespace
125
Michele Di Giorgio91753922019-06-13 10:56:59 +0100126NEMeanStdDevNormalizationKernel::NEMeanStdDevNormalizationKernel()
Dana Zlotnik027bcef2021-12-27 17:35:00 +0200127 : _input(nullptr), _output(nullptr), _epsilon(1e-8f)
Michele Di Giorgio91753922019-06-13 10:56:59 +0100128{
129}
130
131void NEMeanStdDevNormalizationKernel::configure(ITensor *input, ITensor *output, float epsilon)
132{
133 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
134
135 ARM_COMPUTE_ERROR_THROW_ON(NEMeanStdDevNormalizationKernel::validate(input->info(), (output != nullptr) ? output->info() : nullptr, epsilon));
136
137 _input = input;
138 _output = (output == nullptr) ? input : output;
139 _epsilon = epsilon;
140
141 // Configure kernel window
142 auto win_config = validate_and_configure_window(input->info(), (output == nullptr) ? nullptr : output->info());
143 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
144 ICPPKernel::configure(win_config.second);
Michele Di Giorgio91753922019-06-13 10:56:59 +0100145}
146
147Status NEMeanStdDevNormalizationKernel::validate(const ITensorInfo *input, const ITensorInfo *output, float epsilon)
148{
149 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, epsilon));
150 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), (output != nullptr) ? output->clone().get() : nullptr).first);
151 return Status{};
152}
153
154void NEMeanStdDevNormalizationKernel::run(const Window &window, const ThreadInfo &info)
155{
156 ARM_COMPUTE_UNUSED(info);
157 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
158 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
Michele Di Giorgio91753922019-06-13 10:56:59 +0100159
Dana Zlotnik027bcef2021-12-27 17:35:00 +0200160 const auto *uk = get_implementation(MeanStdDevNormSelectorData{ _output->info()->data_type() });
161 ARM_COMPUTE_ERROR_ON(uk == nullptr || uk->ukernel == nullptr);
162
163 uk->ukernel(_input, _output, _epsilon, window);
Michele Di Giorgio91753922019-06-13 10:56:59 +0100164}
165} // namespace arm_compute