|
|
@@ -164,15 +164,14 @@ std::string ConvBiasForwardImpl::AlgoBase::SizeArgs::to_string() const { |
|
|
|
megdnn_throw("invalid conv bias nonlinear mode"); |
|
|
|
} |
|
|
|
return ssprintf( |
|
|
|
"src=%s, filter=%u{%u,%u,%u,%u}, bias=%s, z=%s, dst=%s, " |
|
|
|
"src=%s, filter=%s, 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], 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(), |
|
|
|
src_layout->to_string().c_str(), filter_layout->to_string().c_str(), |
|
|
|
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(), |
|
|
|
nonlinear_mode_str.c_str()); |
|
|
|
} |
|
|
|
|
|
|
|