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

Method exec

dnn/src/cuda/convolution3d/opr_impl.cpp:110–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110void Convolution3DForwardImpl::exec(
111 _megdnn_tensor_in src, _megdnn_tensor_in filter, _megdnn_tensor_out dst,
112 _megdnn_workspace workspace) {
113 check_exec(src.layout, filter.layout, dst.layout, workspace.size);
114 AlgoBase::ExecArgs args(this, src, filter, dst, workspace);
115 auto algo = get_algorithm(this, src.layout, filter.layout, dst.layout);
116 algo->exec(args);
117}
118
119const char* Convolution3DForwardImpl::get_algorithm_set_name() const {
120 return "CUDACONV0+CUDNN" CUDNN_VERSION_STR;

Callers 1

flip_filterMethod · 0.45

Calls 1

get_algorithmFunction · 0.85

Tested by

no test coverage detected