kernel gen
| 20 | |
| 21 | //! kernel gen |
| 22 | std::string MatrixInvKernel::GetKernelSymbol(TContext* context) const { |
| 23 | std::stringstream ss; |
| 24 | ss << "kernel_matrix_inv_f32"; |
| 25 | return ss.str(); |
| 26 | } |
| 27 | |
| 28 | std::string MatrixInvKernel::GetWorkspaceBody(TContext* context) const { |
| 29 | std::stringstream ss; |
nothing calls this directly
no outgoing calls
no test coverage detected