| 407 | } |
| 408 | |
| 409 | TfLiteRegistration* Register_L2_POOL_REF() { |
| 410 | static TfLiteRegistration r = {pooling::Init, pooling::Free, |
| 411 | pooling::GenericPrepare<pooling::kL2>, |
| 412 | pooling::L2Eval<pooling::kReference>}; |
| 413 | return &r; |
| 414 | } |
| 415 | |
| 416 | TfLiteRegistration* Register_AVERAGE_POOL_GENERIC_OPT() { |
| 417 | static TfLiteRegistration r = { |
no outgoing calls
no test coverage detected