| 337 | |
| 338 | private: |
| 339 | Status FindObject(ValueId id, ValueRef* ref) const { |
| 340 | if (id >= tensors_.size()) { |
| 341 | return InvalidArgumentError("Invalid buffer id"); |
| 342 | } |
| 343 | *ref = tensors_[id]; |
| 344 | return OkStatus(); |
| 345 | } |
| 346 | |
| 347 | TfLiteDelegate delegate_ = { |
| 348 | reinterpret_cast<void*>(this), // .data_ |
nothing calls this directly
no test coverage detected