MCPcopy Create free account
hub / github.com/MegEngine/MegEngine / exec

Method exec

dnn/src/rocm/matrix_mul/opr_impl.cpp:44–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42}
43
44void MatrixMulForwardImpl::exec(
45 _megdnn_tensor_in A, _megdnn_tensor_in B, _megdnn_tensor_out C,
46 _megdnn_workspace workspace) {
47 check_exec(A.layout, B.layout, C.layout, workspace.size);
48 AlgoBase::ExecArgs args(this, A, B, C, workspace);
49 auto&& algo = get_algorithm(this, A.layout, B.layout, C.layout);
50 algo->exec(args);
51}
52
53// vim: syntax=cpp.doxygen

Callers

nothing calls this directly

Calls 1

get_algorithmFunction · 0.85

Tested by

no test coverage detected