| 220 | } |
| 221 | |
| 222 | int GraphExecutor::GetNodeInputNum(const std::string& node_name) |
| 223 | { |
| 224 | Node* node = FindNode(node_name); |
| 225 | |
| 226 | if(node == nullptr) |
| 227 | return -1; |
| 228 | |
| 229 | return node->GetInputNum(); |
| 230 | } |
| 231 | |
| 232 | const std::string& GraphExecutor::GetNodeInputTensor(const std::string& node_name, int idx) |
| 233 | { |
nothing calls this directly
no test coverage detected