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