| 25 | } |
| 26 | |
| 27 | std::string FlipKernel::GetCVKernelSignature(TContext* context) const { |
| 28 | return GetCVKernelSymbol(context) + |
| 29 | "(const TinyMat* src, const TinyMat* dst, bool vertical, bool " |
| 30 | "horizontal)"; |
| 31 | } |
| 32 | |
| 33 | std::string FlipKernel::GetCVKernelBody(TContext* context) const { |
| 34 | auto kernel_sig = GetCVKernelSignature(context); |
nothing calls this directly
no outgoing calls
no test coverage detected