| 132 | return &subgraph_->tensors()[index]; |
| 133 | } |
| 134 | size_t num_nodes() const override { |
| 135 | return subgraph_->execution_plan().size(); |
| 136 | } |
| 137 | const TfLiteNode& node(size_t index) const override { |
| 138 | int node_index = subgraph_->execution_plan()[index]; |
| 139 | return subgraph_->nodes_and_registration()[node_index].first; |
no test coverage detected