kernel gen
| 17 | |
| 18 | //! kernel gen |
| 19 | std::string FlipKernel::GetCVKernelSubSymbol(TContext* context) const { |
| 20 | std::stringstream ss; |
| 21 | auto src_dtype = context->getAttrOprand("operand:0").dtype; |
| 22 | ss << "tinycv_flip_" << src_dtype; |
| 23 | return ss.str(); |
| 24 | } |
| 25 | |
| 26 | std::string FlipKernel::GetCVKernelSignature(TContext* context) const { |
| 27 | return GetCVKernelSymbol(context) + |
nothing calls this directly
no test coverage detected