kernel gen
| 34 | |
| 35 | //! kernel gen |
| 36 | std::string TypecvtKernel::GetKernelSymbol(TContext* context) const { |
| 37 | std::stringstream ss; |
| 38 | ss << "kernel_typecvt_" << SymbolHelper::gen_io_str(context); |
| 39 | return ss.str(); |
| 40 | } |
| 41 | namespace { |
| 42 | |
| 43 | std::string gen_staturate(const std::string& dst_dtype) { |
nothing calls this directly
no outgoing calls
no test coverage detected