| 720 | } // namespace conv |
| 721 | |
| 722 | TfLiteRegistration* Register_CONVOLUTION_REF() { |
| 723 | static TfLiteRegistration r = {conv::Init, conv::Free, |
| 724 | conv::Prepare<conv::kReference>, |
| 725 | conv::Eval<conv::kReference>}; |
| 726 | return &r; |
| 727 | } |
| 728 | |
| 729 | TfLiteRegistration* Register_CONVOLUTION_GENERIC_OPT() { |
| 730 | static TfLiteRegistration r = {conv::Init, conv::Free, |
no outgoing calls
no test coverage detected