| 45 | } |
| 46 | |
| 47 | void BatchedMatrixMulForwardImpl::exec( |
| 48 | _megdnn_tensor_in A, _megdnn_tensor_in B, _megdnn_tensor_out C, |
| 49 | _megdnn_workspace workspace) { |
| 50 | check_exec(A.layout, B.layout, C.layout, workspace.size); |
| 51 | AlgoBase::ExecArgs args(this, A, B, C, workspace); |
| 52 | auto&& algo = get_algorithm(this, A.layout, B.layout, C.layout); |
| 53 | algo->exec(args); |
| 54 | } |
| 55 | |
| 56 | // vim: syntax=cpp.doxygen |
nothing calls this directly
no test coverage detected