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