| 170 | } |
| 171 | |
| 172 | TfLiteStatus Interpreter::ResizeInputTensor(int tensor_index, |
| 173 | const std::vector<int>& dims) { |
| 174 | return primary_subgraph().ResizeInputTensor(tensor_index, dims); |
| 175 | } |
| 176 | |
| 177 | TfLiteStatus Interpreter::Invoke() { |
| 178 | TF_LITE_ENSURE_STATUS(primary_subgraph().Invoke()); |
no outgoing calls