| 275 | } |
| 276 | |
| 277 | bool GraphExecutor::SetGraphInputNode(const std::vector<std::string>& node_name_list) |
| 278 | { |
| 279 | graph_->ResetInputNode(); |
| 280 | |
| 281 | for(unsigned int i = 0; i < node_name_list.size(); i++) |
| 282 | { |
| 283 | if(!graph_->AddInputNode(node_name_list[i])) |
| 284 | return false; |
| 285 | } |
| 286 | |
| 287 | return true; |
| 288 | } |
| 289 | |
| 290 | bool GraphExecutor::SetGraphOutputNode(const std::vector<std::string>& node_name_list) |
| 291 | { |
nothing calls this directly
no test coverage detected