| 400 | } |
| 401 | |
| 402 | TfLiteRegistration* Register_MAX_POOL_REF() { |
| 403 | static TfLiteRegistration r = {pooling::Init, pooling::Free, |
| 404 | pooling::GenericPrepare<pooling::kMax>, |
| 405 | pooling::MaxEval<pooling::kReference>}; |
| 406 | return &r; |
| 407 | } |
| 408 | |
| 409 | TfLiteRegistration* Register_L2_POOL_REF() { |
| 410 | static TfLiteRegistration r = {pooling::Init, pooling::Free, |
no outgoing calls
no test coverage detected