Imported Upstream version 1.4.0
[platform/core/ml/nnfw.git] / compiler / mir / src / mir_onnx_importer / ONNXHelpers.h
1 /*
2  * Copyright (c) 2019 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 __MIR_ONNX_HELPERS_H__
18 #define __MIR_ONNX_HELPERS_H__
19
20 #include "mir/Graph.h"
21 #include "mir/ops/ConstantOp.h"
22 #include "mir/TensorVariant.h"
23 #include "mir/ops/TransposeOp.h"
24
25 #include "onnx/onnx.pb.h"
26
27 namespace mir_onnx
28 {
29
30 extern const int64_t firstUnknownOpset;
31
32 mir::DataType onnxDataTypeToMirDataType(onnx::TensorProto::DataType type);
33
34 mir::Shape constantToShape(const mir::ops::ConstantOp *op);
35
36 mir::TensorVariant createTensor(const onnx::TensorProto *tensor);
37
38 mir::Operation *foldConstants(mir::Graph *graph, mir::Operation *op);
39
40 template <typename OpType, typename... Types>
41 mir::Operation *createOp(mir::Graph *graph, Types &&... args)
42 {
43   auto op = graph->create<OpType>(std::forward<Types>(args)...);
44   op = foldConstants(graph, op);
45   return op;
46 }
47
48 } // namespace mir_onnx
49
50 #endif // __MIR_ONNX_HELPERS_H__