| 364 | } |
| 365 | |
| 366 | TfLiteExternalContext* Subgraph::GetExternalContext( |
| 367 | TfLiteExternalContextType type) { |
| 368 | if (static_cast<int>(type) >= 0 && type < kTfLiteMaxExternalContexts) { |
| 369 | return external_contexts_[type]; |
| 370 | } |
| 371 | return nullptr; |
| 372 | } |
| 373 | |
| 374 | TfLiteExternalContext* Subgraph::GetExternalContext( |
| 375 | struct TfLiteContext* context, TfLiteExternalContextType type) { |
no outgoing calls