Imported Upstream version 1.9.0
[platform/core/ml/nnfw.git] / compiler / locomotiv / src / Node / BiasEncode.cpp
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 #include "NodeExecution.h"
18
19 #include "NodeDataImpl.h"
20 #include "NodeDomain.h"
21 #include "Validation.h"
22
23 #include <stdexcept>
24 #include <cassert>
25
26 namespace
27 {
28
29 using namespace locomotiv;
30
31 void execute_node(loco::BiasEncode *bias_enc)
32 {
33   auto input_data = annot_data(bias_enc->input());
34
35   validate(input_data, "Input not ready");
36   validate(annot_domain(bias_enc->input()) == loco::Domain::Tensor,
37            "Input domain should be Tensor");
38   validate(input_data->shape()->rank() == 1, "Input data rank must be 1");
39
40   std::unique_ptr<NodeData> bias_enc_data = nullptr;
41
42   switch (input_data->dtype())
43   {
44     case loco::DataType::S32:
45     {
46       auto input_bufptr = input_data->as_s32_bufptr();
47       bias_enc_data = make_data(*input_bufptr);
48       break;
49     }
50     case loco::DataType::FLOAT32:
51     {
52       auto input_bufptr = input_data->as_f32_bufptr();
53       bias_enc_data = make_data(*input_bufptr);
54       break;
55     }
56     default:
57       throw std::runtime_error("NYI for this DataType");
58   }
59
60   assert(bias_enc_data != nullptr);
61   annot_data(bias_enc, std::move(bias_enc_data));
62   annot_domain(bias_enc, loco::Domain::Bias);
63 }
64
65 } // namespace
66
67 namespace locomotiv
68 {
69
70 void NodeExecution::execute(loco::BiasEncode *bias_enc) { execute_node(bias_enc); }
71
72 } // namespace locomotiv