65a863bdec995f992426677b5ee085aed85f80a1
[platform/core/ml/nnfw.git] / compiler / luci / import / src / Nodes / CircleFullyConnected.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/CircleFullyConnected.h"
18
19 #include <luci/IR/Nodes/CircleFullyConnected.h>
20 #include <luci/IR/Nodes/CircleOutput.h>
21
22 #include <loco.h>
23 #include <oops/UserExn.h>
24
25 namespace luci
26 {
27
28 bool CircleFullyConnectedGraphBuilder::validate(const ValidateArgs &args) const
29 {
30   if (args.op.inputs.size() != 3)
31     return false;
32
33   return true;
34 }
35
36 CircleNode *CircleFullyConnectedGraphBuilder::build_node(const circle::OperatorT &op,
37                                                          const std::vector<CircleNode *> &inputs,
38                                                          loco::Graph *graph) const
39 {
40   auto *node = graph->nodes()->create<CircleFullyConnected>();
41   node->input(inputs.at(0));
42   node->weights(inputs.at(1));
43   node->bias(inputs.at(2)); // bias is optional
44
45   // TODO Find and move to appropriate place for setting optional input
46   if (auto bias = dynamic_cast<luci::CircleOutputExclude *>(node->bias()))
47   {
48     // bias is not used for type inference, but node itself should have a type
49     bias->dtype(loco::DataType::FLOAT32);
50
51     // bias is not used for shape inference
52   }
53
54   const auto *options = op.builtin_options.AsFullyConnectedOptions();
55   node->fusedActivationFunction(luci_actfunc(options->fused_activation_function));
56   if (options->weights_format != circle::FullyConnectedOptionsWeightsFormat_DEFAULT)
57   {
58     throw oops::UserExn(
59         "Unsupported weights format",
60         circle::EnumNameFullyConnectedOptionsWeightsFormat(options->weights_format));
61   }
62
63   return node;
64 }
65
66 } // namespace luci