提交 36d16a63 编写于 作者: C chenjiaoAngel

dd

上级 da847103
...@@ -55,8 +55,8 @@ void seq_pool_sum<float>(const float* din, ...@@ -55,8 +55,8 @@ void seq_pool_sum<float>(const float* din,
din_ptr += width; din_ptr += width;
} }
#else #else
int cnt_w = height >> 2; int cnt_w = width >> 2;
int remain_w = height & 3; int remain_w = width & 3;
int cnt_h = height >> 2; int cnt_h = height >> 2;
int remain_h = height & 3; int remain_h = height & 3;
int stride = width << 2; int stride = width << 2;
...@@ -212,7 +212,8 @@ void seq_pool_max<float>(const float* din, ...@@ -212,7 +212,8 @@ void seq_pool_max<float>(const float* din,
din_ptr += width; din_ptr += width;
} }
#else #else
int remain_w = height & 3; int cnt_w = width >> 2;
int remain_w = width & 3;
int cnt_h = height >> 2; int cnt_h = height >> 2;
int remain_h = height & 3; int remain_h = height & 3;
int stride = width << 2; int stride = width << 2;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册