| 101 | } |
| 102 | |
| 103 | TfLiteStatus UnresolvedOpInvoke(TfLiteContext* context, TfLiteNode* node) { |
| 104 | context->ReportError(context, |
| 105 | "Encountered an unresolved custom op. Did you miss " |
| 106 | "a custom op or delegate?"); |
| 107 | return kTfLiteError; |
| 108 | } |
| 109 | |
| 110 | } // namespace tflite |
nothing calls this directly
no test coverage detected