|
|
@@ -166,11 +166,12 @@ std::string ConvBiasForwardImpl::AlgoBase::SizeArgs::to_string() const { |
|
|
|
megdnn_throw("invalid conv bias nonlinear mode"); |
|
|
|
} |
|
|
|
return megdnn_mangle(ssprintf( |
|
|
|
"src=%s, filter=%u{%u,%u,%u,%u}, dst=%s, " |
|
|
|
"src=%s, filter=%u{%u,%u,%u,%u}, bias=%s, z=%s, dst=%s, " |
|
|
|
"pad=%ux%u, stride=%ux%u, dilate=%ux%u, xcorr=%d, dtype=%s,%s, " |
|
|
|
"nonlinear_mode=%s", |
|
|
|
src_layout->to_string().c_str(), fm.group, fm.ocpg, fm.icpg, |
|
|
|
fm.spatial[0], fm.spatial[1], dst_layout->to_string().c_str(), |
|
|
|
fm.spatial[0], fm.spatial[1], bias_layout->to_string().c_str(), |
|
|
|
z_layout->to_string().c_str(), dst_layout->to_string().c_str(), |
|
|
|
fm.padding[0], fm.padding[1], fm.stride[0], fm.stride[1], |
|
|
|
fm.dilation[0], fm.dilation[1], !fm.should_flip, |
|
|
|
src_layout->dtype.name(), dst_layout->dtype.name(), |
|
|
|