| 393 | } // namespace pooling |
| 394 | |
| 395 | TfLiteRegistration* Register_AVERAGE_POOL_REF() { |
| 396 | static TfLiteRegistration r = {pooling::Init, pooling::Free, |
| 397 | pooling::GenericPrepare<pooling::kAverage>, |
| 398 | pooling::AverageEval<pooling::kReference>}; |
| 399 | return &r; |
| 400 | } |
| 401 | |
| 402 | TfLiteRegistration* Register_MAX_POOL_REF() { |
| 403 | static TfLiteRegistration r = {pooling::Init, pooling::Free, |
no outgoing calls
no test coverage detected