| 355 | } |
| 356 | |
| 357 | StaticTensor* GetNodeOutputTensor(StaticGraph* graph, StaticNode* node, int idx) |
| 358 | { |
| 359 | int tensor_idx = node->output_tensor_list[idx]; |
| 360 | |
| 361 | return graph->tensor_list[tensor_idx].get(); |
| 362 | } |
| 363 | |
| 364 | StaticTensor* GetNodeInputTensor(StaticGraph* graph, StaticNode* node, int idx) |
| 365 | { |
no test coverage detected