| 27 | } |
| 28 | |
| 29 | TfLiteRegistration* GetDummyRegistration() { |
| 30 | static TfLiteRegistration registration = { |
| 31 | .init = nullptr, |
| 32 | .free = nullptr, |
| 33 | .prepare = nullptr, |
| 34 | .invoke = DummyInvoke, |
| 35 | }; |
| 36 | return ®istration; |
| 37 | } |
| 38 | |
| 39 | TfLiteStatus Dummy2Invoke(TfLiteContext* context, TfLiteNode* node) { |
| 40 | return kTfLiteOk; |