| 39 | } |
| 40 | |
| 41 | void Free(TfLiteContext* context, void* buffer) { |
| 42 | delete reinterpret_cast<OpData*>(buffer); |
| 43 | } |
| 44 | |
| 45 | TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) { |
| 46 | const OpData* op_data = reinterpret_cast<OpData*>(node->user_data); |
no outgoing calls
no test coverage detected