Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / compiler / luci / lang / include / luci / IR / Nodes / CircleLocalResponseNormalization.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 __LUCI_IR_CIRCLELOCAL_RESPONSE_NORMALIZATION_H__
18 #define __LUCI_IR_CIRCLELOCAL_RESPONSE_NORMALIZATION_H__
19
20 #include "luci/IR/CircleNodeDecl.h"
21 #include "luci/IR/CircleOpcode.h"
22
23 #include "luci/IR/LuciNodeMixins.h"
24
25 namespace luci
26 {
27
28 /**
29  * @brief LOCAL_RESPONSE_NORMALIZATION in Circle
30  */
31 class CircleLocalResponseNormalization final
32     : public FixedArityNode<1, CircleNodeImpl<CircleOpcode::LOCAL_RESPONSE_NORMALIZATION>>
33 {
34 public:
35   loco::Node *input(void) const { return at(0)->node(); }
36   void input(loco::Node *node) { at(0)->node(node); }
37
38 public:
39   int32_t radius(void) const { return _radius; }
40   void radius(int32_t radius) { _radius = radius; }
41
42   float bias(void) const { return _bias; }
43   void bias(float bias) { _bias = bias; }
44
45   float alpha(void) const { return _alpha; }
46   void alpha(float alpha) { _alpha = alpha; }
47
48   float beta(void) const { return _beta; }
49   void beta(float beta) { _beta = beta; }
50
51 private:
52   int32_t _radius{5};
53   float _bias{1.0f};
54   float _alpha{1.0f};
55   float _beta{0.5f};
56 };
57
58 } // namespace luci
59
60 #endif // __LUCI_IR_CIRCLELOCAL_RESPONSE_NORMALIZATION_H__