blob: 0c371c41717b717e969865ad88e9170a031480f7 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
ramelg016d891572021-09-29 10:05:09 +01002 * Copyright (c) 2017-2021 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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
25#include "arm_compute/runtime/CL/functions/CLBatchNormalizationLayer.h"
26
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/TensorInfo.h"
29#include "arm_compute/core/Types.h"
30#include "arm_compute/core/Validate.h"
31#include "arm_compute/runtime/CL/CLScheduler.h"
32
SiCongLi579ca842021-10-18 09:38:33 +010033#include "src/common/utils/Log.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010034#include "src/core/CL/kernels/CLBatchNormalizationLayerKernel.h"
SiCongLi579ca842021-10-18 09:38:33 +010035
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010036namespace arm_compute
37{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038CLBatchNormalizationLayer::CLBatchNormalizationLayer()
Georgios Pinitas40f51a62020-11-21 03:04:18 +000039 : _norm_kernel(std::make_unique<CLBatchNormalizationLayerKernel>())
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040{
41}
42
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010043CLBatchNormalizationLayer::~CLBatchNormalizationLayer() = default;
44
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010045void CLBatchNormalizationLayer::configure(ICLTensor *input,
46 ICLTensor *output,
47 const ICLTensor *mean,
48 const ICLTensor *var,
49 const ICLTensor *beta,
50 const ICLTensor *gamma,
51 float epsilon,
Giorgio Arena11674872018-02-07 15:38:12 +000052 ActivationLayerInfo act_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053{
Manuel Bottini2b84be52020-04-08 10:15:51 +010054 configure(CLKernelLibrary::get().get_compile_context(), input, output, mean, var, beta, gamma, epsilon, act_info);
55}
56
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010057void CLBatchNormalizationLayer::configure(const CLCompileContext &compile_context,
58 ICLTensor *input,
59 ICLTensor *output,
60 const ICLTensor *mean,
61 const ICLTensor *var,
62 const ICLTensor *beta,
63 const ICLTensor *gamma,
64 float epsilon,
65 ActivationLayerInfo act_info)
Manuel Bottini2b84be52020-04-08 10:15:51 +010066{
ramelg016d891572021-09-29 10:05:09 +010067 ARM_COMPUTE_LOG_PARAMS(input, output, mean, var, beta, gamma, epsilon, act_info);
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010068 _norm_kernel->configure(compile_context, input, output, mean, var, beta, gamma, epsilon, act_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069}
70
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010071Status CLBatchNormalizationLayer::validate(const ITensorInfo *input,
72 const ITensorInfo *output,
73 const ITensorInfo *mean,
74 const ITensorInfo *var,
75 const ITensorInfo *beta,
76 const ITensorInfo *gamma,
77 float epsilon,
78 ActivationLayerInfo act_info)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000079{
Giorgio Arena11674872018-02-07 15:38:12 +000080 return CLBatchNormalizationLayerKernel::validate(input, output, mean, var, beta, gamma, epsilon, act_info);
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000081}
82
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083void CLBatchNormalizationLayer::run()
84{
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010085 CLScheduler::get().enqueue(*_norm_kernel, true);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010086}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010087} // namespace arm_compute