Skip to content

Commit

Permalink
fix compile error (Tencent#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
BUG1989 authored and nihui committed Mar 26, 2018
1 parent d7e3198 commit af7019d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layer/arm/convolution_3x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -6914,7 +6914,7 @@ static void conv3x3s1_winograd64_neon4(const Mat& bottom_blob, Mat& top_blob, co
{
Mat out0_tm = top_blob_tm.channel(p);

const float* ktm = (float*)kernel_tm.channel(nn_outch) + 8*8 * inch * (p-remain_outch_start);
const float* ktm = (const float*)kernel_tm.channel(nn_outch) + 8*8 * inch * (p-remain_outch_start);

out0_tm.fill(0.f);

Expand Down

0 comments on commit af7019d

Please sign in to comment.