8c2039fff2eff96c6b976fa69f4958dd04c4d478
[platform/core/ml/nnfw.git] / compiler / luci / import / src / Nodes / CircleBatchToSpaceND.cpp
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 #include "luci/Import/Nodes/CircleBatchToSpaceND.h"
18
19 #include <luci/IR/Nodes/CircleBatchToSpaceND.h>
20
21 #include <loco.h>
22
23 #include <cassert>
24
25 namespace luci
26 {
27
28 bool CircleBatchToSpaceNDGraphBuilder::validate(const ValidateArgs &args) const
29 {
30   const auto &inputs = args.op.inputs;
31   if (inputs.size() != 3)
32     return false;
33
34   // input 1 and 2 should have INT32/INT64 type
35   const auto &tensors = args.reader.tensors();
36   const auto &tensor_1 = tensors.at(inputs.at(1));
37   switch (tensor_1->type)
38   {
39     case circle::TensorType_INT32:
40     case circle::TensorType_INT64:
41       break;
42     default:
43       return false;
44   }
45   const auto &tensor_2 = tensors.at(inputs.at(2));
46   switch (tensor_2->type)
47   {
48     case circle::TensorType_INT32:
49     case circle::TensorType_INT64:
50       break;
51     default:
52       return false;
53   }
54
55   // Only support input shape dimension 3 and 4 only
56   const auto &tensor_0 = tensors.at(inputs.at(0));
57   const auto t_0_s = tensor_0->shape.size();
58   if (t_0_s != 3 && t_0_s != 4)
59     return false;
60
61   // TODO check input shape
62
63   return true;
64 }
65
66 CircleNode *CircleBatchToSpaceNDGraphBuilder::build_node(const circle::OperatorT &,
67                                                          const std::vector<CircleNode *> &inputs,
68                                                          loco::Graph *graph) const
69 {
70   auto *node = graph->nodes()->create<CircleBatchToSpaceND>();
71   node->input(inputs.at(0));
72   node->block_shape(inputs.at(1));
73   node->crops(inputs.at(2));
74
75   // No options for BatchToSpaceND
76
77   return node;
78 }
79
80 } // namespace luci