c2f2b44c02a17806e751f9bb6539d632f299c2aa
[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 locomotiv
27 {
28
29 void NodeExecution::execute(loco::BiasEncode *bias_enc)
30 {
31   auto input_data = annot_data(bias_enc->input());
32
33   validate(input_data, "Input not ready");
34   validate(annot_domain(bias_enc->input()) == loco::Domain::Tensor,
35            "Input domain should be Tensor");
36   validate(input_data->shape()->rank() == 1, "Input data rank must be 1");
37
38   std::unique_ptr<NodeData> bias_enc_data = nullptr;
39
40   switch (input_data->dtype())
41   {
42     case loco::DataType::S32:
43     {
44       auto input_bufptr = input_data->as_s32_bufptr();
45       bias_enc_data = make_data(*input_bufptr);
46       break;
47     }
48     case loco::DataType::FLOAT32:
49     {
50       auto input_bufptr = input_data->as_f32_bufptr();
51       bias_enc_data = make_data(*input_bufptr);
52       break;
53     }
54     default:
55       throw std::runtime_error("NYI for this DataType");
56   }
57
58   assert(bias_enc_data != nullptr);
59   annot_data(bias_enc, std::move(bias_enc_data));
60   annot_domain(bias_enc, loco::Domain::Bias);
61 }
62
63 } // namespace locomotiv