| 10 | using namespace GeneralIntrinsic; |
| 11 | |
| 12 | bool FlipKernel::IsCVAvailable(TContext* context) const { |
| 13 | auto src_dtype = context->getAttrOprand("operand:0").dtype; |
| 14 | bool dtype_ok = Utils::is_int_dtype(src_dtype, 8); |
| 15 | return dtype_ok; |
| 16 | } |
| 17 | |
| 18 | //! kernel gen |
| 19 | std::string FlipKernel::GetCVKernelSubSymbol(TContext* context) const { |
nothing calls this directly
no test coverage detected