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