| 741 | } |
| 742 | |
| 743 | TfLiteRegistration* Register_CONVOLUTION_CBLAS_OPT() { |
| 744 | static TfLiteRegistration r = {conv::Init, conv::Free, |
| 745 | conv::Prepare<conv::kCblasOptimized>, |
| 746 | conv::Eval<conv::kCblasOptimized>}; |
| 747 | return &r; |
| 748 | } |
| 749 | |
| 750 | TfLiteRegistration* Register_CONV_2D() { |
| 751 | #if defined TFLITE_USE_APPLE_ACCELERATE_FOR_CONV |
no outgoing calls
no test coverage detected