eb7d44a59825d4ee78592a2a3e4c8d888557ff58
[platform/core/ml/nnfw.git] / compiler / locomotiv / src / Node / Forward.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::Forward *forward)
30 {
31   auto input_data = annot_data(forward->input());
32
33   validate(input_data, "Input not ready");
34   validate(annot_domain(forward->input()) != loco::Domain::Unknown,
35            "Input domain must not Unknown");
36
37   std::unique_ptr<NodeData> forward_data = nullptr;
38
39   switch (input_data->dtype())
40   {
41     case loco::DataType::S32:
42     {
43       auto input_bufptr = input_data->as_s32_bufptr();
44       forward_data = make_data(*input_bufptr);
45       break;
46     }
47     case loco::DataType::FLOAT32:
48     {
49       auto input_bufptr = input_data->as_f32_bufptr();
50       forward_data = make_data(*input_bufptr);
51       break;
52     }
53     default:
54       throw std::runtime_error("NYI for this DataType");
55   }
56
57   assert(forward_data != nullptr);
58   annot_data(forward, std::move(forward_data));
59   annot_domain(forward, annot_domain(forward->input()));
60 }
61
62 } // namespace locomotiv