Imported Upstream version 1.8.0
[platform/core/ml/nnfw.git] / compiler / luci / import / src / Nodes / CircleGather.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/CircleGather.h"
18
19 #include <luci/IR/Nodes/CircleGather.h>
20
21 #include <loco.h>
22 #include <oops/UserExn.h>
23
24 namespace luci
25 {
26
27 bool CircleGatherGraphBuilder::validate(const ValidateArgs &args) const
28 {
29   const auto &inputs = args.op.inputs;
30   const auto &outputs = args.op.outputs;
31   const auto *options = args.op.builtin_options.AsGatherOptions();
32
33   int32_t axis = options->axis;
34
35   if (inputs.size() != 2)
36     return false;
37
38   if (outputs.size() != 1)
39     return false;
40
41   if (axis < 0)
42     axis += inputs.size();
43
44   if (axis < 0)
45     return false;
46
47   // TODO do indices type check
48   // TODO do axis check when shape information is given
49
50   return true;
51 }
52
53 CircleNode *CircleGatherGraphBuilder::build_node(const circle::OperatorT &op,
54                                                  const std::vector<CircleNode *> &inputs,
55                                                  loco::Graph *graph) const
56 {
57   auto *node = graph->nodes()->create<CircleGather>();
58
59   node->params(inputs.at(0));
60   node->indices(inputs.at(1));
61
62   const auto *options = op.builtin_options.AsGatherOptions();
63   node->axis(options->axis);
64
65   return node;
66 }
67
68 } // namespace luci