Skip to content

Commit

Permalink
fix #4315 (#4316)
Browse files Browse the repository at this point in the history
  • Loading branch information
nihui committed Oct 30, 2022
1 parent fdf129f commit 9c6f110
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/layer/arm/convolution_arm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,10 +387,8 @@ int Convolution_arm::create_pipeline(const Option& opt)
// conv3x3s1_winograd63_transform_kernel_neon(weight_data, weight_winograd63_data, num_input, num_output, opt);
conv3x3s1_winograd63_transform_kernel_neon5(weight_data, weight_winograd63_data, num_input, num_output, opt);
}
else
{
weight_data_tm = weight_data;
}

weight_data_tm = weight_data;
}
else if (kernel_w == 3 && kernel_h == 3 && dilation_w == 1 && dilation_h == 1 && stride_w == 2 && stride_h == 2)
{
Expand Down

0 comments on commit 9c6f110

Please sign in to comment.