提交 35434c33 编写于 作者: L Luo Tao

fix compiler error in im2col.h

上级 fb4744fd
...@@ -75,7 +75,8 @@ class Im2ColFunctor { ...@@ -75,7 +75,8 @@ class Im2ColFunctor {
void operator()(const platform::DeviceContext& context, void operator()(const platform::DeviceContext& context,
const framework::Tensor& im, framework::Tensor& col, const framework::Tensor& im, framework::Tensor& col,
int stride_height, int stride_width, int padding_up, int stride_height, int stride_width, int padding_up,
int padding_down, int padding_left, int padding_right); int padding_down, int padding_left = 0,
int padding_right = 0);
}; };
template <ColFormat Format, typename Place, typename T> template <ColFormat Format, typename Place, typename T>
...@@ -84,7 +85,7 @@ class Col2ImFunctor { ...@@ -84,7 +85,7 @@ class Col2ImFunctor {
void operator()(const platform::DeviceContext& context, framework::Tensor& im, void operator()(const platform::DeviceContext& context, framework::Tensor& im,
const framework::Tensor& col, int stride_height, const framework::Tensor& col, int stride_height,
int stride_width, int padding_up, int padding_down, int stride_width, int padding_up, int padding_down,
int padding_left, int padding_right); int padding_left = 0, int padding_right = 0);
}; };
} // namespace math } // namespace math
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册