8e7bcdb072fa5ad7fb72b34bcdb4ff8a8cc60be4
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / ops / ReduceLayer.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_REDUCESUMLAYER_H__
18 #define __ONERT_BACKEND_CPU_OPS_REDUCESUMLAYER_H__
19
20 #include <backend/IPortableTensor.h>
21
22 #include <exec/IFunction.h>
23 #include <memory>
24
25 namespace nnfw
26 {
27 namespace cker
28 {
29 class Reduce;
30 }
31 } // namespace nnfw
32
33 namespace onert
34 {
35 namespace backend
36 {
37 namespace cpu
38 {
39 namespace ops
40 {
41
42 enum class ReduceType
43 {
44   kSum,
45   kProd,
46   kMax,
47   kMin,
48   kAny,
49   kAll,
50 };
51
52 class ReduceLayer : public ::onert::exec::IFunction
53 {
54 public:
55   ReduceLayer();
56   ~ReduceLayer();
57
58 public:
59   void configure(const IPortableTensor *input, const IPortableTensor *axes, IPortableTensor *output,
60                  ReduceType reduceType, bool keep_dims);
61
62   void run() override;
63
64 private:
65   const IPortableTensor *_input;
66   const IPortableTensor *_axes;
67   IPortableTensor *_output;
68   ReduceType _reduceType;
69   bool _keep_dims;
70
71   std::unique_ptr<nnfw::cker::Reduce> _reduce_kernel;
72 };
73
74 } // namespace ops
75 } // namespace cpu
76 } // namespace backend
77 } // namespace onert
78
79 #endif // __ONERT_BACKEND_CPU_OPS_REDUCESUMLAYER_H__