Skip to content

Commit

Permalink
remove NCNN_LOGE
Browse files Browse the repository at this point in the history
  • Loading branch information
wnqn1597 committed Sep 14, 2023
1 parent 50e0965 commit d518641
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/layer/x86/shufflechannel_x86.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ int ShuffleChannel_x86::forward(const Mat& bottom_blob, Mat& top_blob, const Opt

if (_group == 2 && channels % _group != 0)
{
NCNN_LOGE("AVX512F 2n+1.");
top_blob.create(w, h, channels, elemsize, elempack, opt.blob_allocator);
if (top_blob.empty())
return -100;
Expand Down Expand Up @@ -164,7 +163,6 @@ int ShuffleChannel_x86::forward(const Mat& bottom_blob, Mat& top_blob, const Opt

if (_group == 2)
{
NCNN_LOGE("AVX512F 2.");
for (int q = 0; q < channels_per_group; q++)
{
const float* ptr0 = bottom_blob.channel(q);
Expand Down Expand Up @@ -194,7 +192,6 @@ int ShuffleChannel_x86::forward(const Mat& bottom_blob, Mat& top_blob, const Opt
}
if (_group == 3)
{
NCNN_LOGE("AVX512F 3.");
for (int q = 0; q < channels_per_group; q++)
{
const float* ptr0 = bottom_blob.channel(q);
Expand Down Expand Up @@ -277,7 +274,6 @@ int ShuffleChannel_x86::forward(const Mat& bottom_blob, Mat& top_blob, const Opt
}
if (_group == 4)
{
NCNN_LOGE("AVX512F 4.");
for (int q = 0; q < channels_per_group; q++)
{
const float* ptr0 = bottom_blob.channel(q);
Expand Down

0 comments on commit d518641

Please sign in to comment.