| 51 | void Dummy2free(TfLiteContext* context, void* buffer) {} |
| 52 | |
| 53 | TfLiteRegistration* GetDummy2Registration() { |
| 54 | static TfLiteRegistration registration = { |
| 55 | .init = Dummy2Init, |
| 56 | .free = Dummy2free, |
| 57 | .prepare = Dummy2Prepare, |
| 58 | .invoke = Dummy2Invoke, |
| 59 | }; |
| 60 | return ®istration; |
| 61 | } |
| 62 | |
| 63 | TEST(MutableOpResolverTest, FinOp) { |
| 64 | MutableOpResolver resolver; |