kernel gen
| 15 | } |
| 16 | //! kernel gen |
| 17 | std::string ArgSortKernel::GetKernelSymbol(TContext* context) const { |
| 18 | std::stringstream ss; |
| 19 | ss << "kernel_argsort_" << context->getAttrOprand("operand:0").dtype << "_" |
| 20 | << context->getAttrStr("order"); |
| 21 | return ss.str(); |
| 22 | } |
| 23 | |
| 24 | std::string ArgSortKernel::GetKernelBody(TContext* context) const { |
| 25 | std::stringstream writer; |
nothing calls this directly
no test coverage detected