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

Method exec

dnn/src/rocm/convolution/opr_impl.cpp:111–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111void ConvolutionForwardImpl::exec(
112 _megdnn_tensor_in src, _megdnn_tensor_in filter, _megdnn_tensor_out dst,
113 const PreprocessedFilter* preprocessed_filter, _megdnn_workspace workspace) {
114 check_exec(
115 src.layout, filter.layout, dst.layout, workspace.size, preprocessed_filter);
116 AlgoBase::ExecArgs args(this, src, filter, dst, workspace);
117 auto algo = get_algorithm(this, src.layout, filter.layout, dst.layout);
118 algo->exec(args);
119}
120
121const char* ConvolutionForwardImpl::get_algorithm_set_name() const {
122 return "ROCMCONV0+MIOPEN" MIOPEN_VERSION_STR;

Callers 1

flip_filterMethod · 0.45

Calls 1

get_algorithmFunction · 0.85

Tested by

no test coverage detected