| 324 | } |
| 325 | |
| 326 | int AddNodeInputTensor(StaticNode* node, StaticTensor* tensor) |
| 327 | { |
| 328 | int input_idx = node->input_tensor_list.size(); |
| 329 | |
| 330 | node->input_tensor_list.push_back(tensor->index); |
| 331 | |
| 332 | AddTensorConsumer(tensor, node, input_idx); |
| 333 | |
| 334 | return input_idx; |
| 335 | } |
| 336 | |
| 337 | int AddNodeOutputTensor(StaticNode* node, StaticTensor* tensor) |
| 338 | { |
no test coverage detected