| 33 | workspace{workspace} {} |
| 34 | |
| 35 | std::string LocalShareForwardImpl::AlgoBase::SizeArgs::to_string() const { |
| 36 | auto&& param = opr->param(); |
| 37 | MEGDNN_MARK_USED_VAR(param); |
| 38 | return ssprintf( |
| 39 | "src=%s, filter=%s, dst=%s, " |
| 40 | "pad=%ux%u, stride=%ux%u, dilate=%ux%u, xcorr=%d, dtype=%s,%s", |
| 41 | src_layout.to_string().c_str(), filter_layout.to_string().c_str(), |
| 42 | dst_layout.to_string().c_str(), param.pad_h, param.pad_w, param.stride_h, |
| 43 | param.stride_w, param.dilate_h, param.dilate_w, |
| 44 | static_cast<int>(param.mode), src_layout.dtype.name(), |
| 45 | dst_layout.dtype.name()); |
| 46 | } |
| 47 | |
| 48 | // vim: syntax=cpp.doxygen |
no test coverage detected