Browse Source

apply code-format changes

pull/5735/head
junwha github-actions[bot] 1 year ago
parent
commit
355b916f40
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      src/layer/x86/shufflechannel_x86.cpp

+ 6
- 6
src/layer/x86/shufflechannel_x86.cpp View File

@@ -622,12 +622,12 @@ int ShuffleChannel_x86::forward(const Mat& bottom_blob, Mat& top_blob, const Opt
}

{
outptr[0] = ptr0[0];
outptr[1] = ptr1[0];
outptr[2] = ptr0[1];
outptr[3] = ptr1[1];
ptr0 += 2;
ptr1 += 2;
outptr[0] = ptr0[0];
outptr[1] = ptr1[0];
outptr[2] = ptr0[1];
outptr[3] = ptr1[1];
ptr0 += 2;
ptr1 += 2;
outptr += 4;
}
}


Loading…
Cancel
Save