Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / ops / FusedBatchNormLayer.h
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __ONERT_BACKEND_CPU_OPS_FUSEDBATCHNORM_LAYER_H__
18 #define __ONERT_BACKEND_CPU_OPS_FUSEDBATCHNORM_LAYER_H__
19
20 #include <backend/IPortableTensor.h>
21 #include "OperationUtils.h"
22
23 #include <exec/IFunction.h>
24 #include <functional>
25 #include <memory>
26
27 namespace nnfw
28 {
29 namespace cker
30 {
31 class FusedBatchNorm;
32 }
33 } // namespace nnfw
34
35 namespace onert
36 {
37 namespace backend
38 {
39 namespace cpu
40 {
41 namespace ops
42 {
43
44 class FusedBatchNormLayer : public ::onert::exec::IFunction
45 {
46 public:
47   FusedBatchNormLayer();
48   ~FusedBatchNormLayer();
49
50 public:
51   void fusedbatchnormFloat32();
52
53   void configure(const std::vector<const IPortableTensor *> &inputs, float epsilon,
54                  bool is_training, std::string data_format, IPortableTensor *output);
55
56   void run() override;
57
58 private:
59   std::vector<const IPortableTensor *> _inputs;
60   IPortableTensor *_output;
61   float _epsilon;
62   bool _is_training;
63   std::string _data_format;
64
65   std::unique_ptr<nnfw::cker::FusedBatchNorm> _fusedbatchnorm_kernel;
66 };
67
68 } // namespace ops
69 } // namespace cpu
70 } // namespace backend
71 } // namespace onert
72
73 #endif // __ONERT_BACKEND_CPU_OPS_FUSEDBATCHNORM_LAYER_H__