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