| 256 | } |
| 257 | |
| 258 | int GraphExecutor::GetNodeOutputNum(const std::string& node_name) |
| 259 | { |
| 260 | Node* node = FindNode(node_name); |
| 261 | |
| 262 | if(node == nullptr) |
| 263 | return -1; |
| 264 | |
| 265 | return node->GetOutputNum(); |
| 266 | } |
| 267 | |
| 268 | const std::string& GraphExecutor::GetNodeOutputTensor(const std::string& node_name, int idx) |
| 269 | { |
nothing calls this directly
no test coverage detected