未验证 提交 f1303579 编写于 作者: baiyu33's avatar baiyu33 提交者: GitHub

fix convolution_x86*.cpp-shadowed-variables-warning (#2444)

上级 62cdc142
......@@ -998,8 +998,8 @@ int Convolution_x86::forward(const Mat& bottom_blob, Mat& top_blob, const Option
for (int k = 0; k < maxk; k++)
{
float val = sptr[space_ofs[k]];
float w = kptr[k];
sum += val * w;
float wt = kptr[k];
sum += val * wt;
}
kptr += maxk;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册