Imported Upstream version 1.11.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / cpu / ops / EinsumLayer.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_EINSUM_LAYER_H__
18 #define __ONERT_BACKEND_CPU_OPS_EINSUM_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 Einsum;
32 }
33 } // namespace nnfw
34
35 namespace onert
36 {
37 namespace backend
38 {
39 namespace cpu
40 {
41 namespace ops
42 {
43
44 class EinsumLayer : public ::onert::exec::IFunction
45 {
46 public:
47   EinsumLayer();
48   ~EinsumLayer();
49
50 public:
51   void einsumFloat32();
52
53   void configure(const std::vector<const IPortableTensor *> &inputs, std::string equation,
54                  IPortableTensor *output);
55
56   void run() override;
57
58 private:
59   std::vector<const IPortableTensor *> _inputs;
60   IPortableTensor *_output;
61
62   std::string _equation;
63
64   std::unique_ptr<nnfw::cker::Einsum> _einsum_kernel;
65 };
66
67 } // namespace ops
68 } // namespace cpu
69 } // namespace backend
70 } // namespace onert
71
72 #endif // __ONERT_BACKEND_CPU_OPS_EINSUM_LAYER_H__