Skip to content

Commit

Permalink
For reals this time
Browse files Browse the repository at this point in the history
  • Loading branch information
argilo committed Feb 1, 2024
1 parent 5e3cc7b commit e7e88d0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions kernels/volk/volk_8u_x4_conv_k7_r2_8u.h
Original file line number Diff line number Diff line change
Expand Up @@ -686,11 +686,11 @@ static inline void volk_8u_x4_conv_k7_r2_8u_neonspiral(unsigned char* Y,
left = vget_low_u8(a89);
right = vget_low_u8(a90);
both = vzip_u8(left, right);
s22 = vcombine_u8(both[0], both[1]);
s22 = vcombine_u8(both.val[0], both.val[1]);
left = vget_high_u8(a89);
right = vget_high_u8(a90);
both = vzip_u8(left, right);
s23 = vcombine_u8(both[0], both[1]);
s23 = vcombine_u8(both.val[0], both.val[1]);
a95 = ((uint8x16_t*)Y);
*(a95) = s22;
a96 = (a95 + 1);
Expand Down Expand Up @@ -736,11 +736,11 @@ static inline void volk_8u_x4_conv_k7_r2_8u_neonspiral(unsigned char* Y,
left = vget_low_u8(a108);
right = vget_low_u8(a109);
both = vzip_u8(left, right);
s28 = vcombine_u8(both[0], both[1]);
s28 = vcombine_u8(both.val[0], both.val[1]);
left = vget_high_u8(a108);
right = vget_high_u8(a109);
both = vzip_u8(left, right);
s29 = vcombine_u8(both[0], both[1]);
s29 = vcombine_u8(both.val[0], both.val[1]);
a112 = (a95 + 2);
*(a112) = s28;
a113 = (a95 + 3);
Expand Down Expand Up @@ -825,11 +825,11 @@ static inline void volk_8u_x4_conv_k7_r2_8u_neonspiral(unsigned char* Y,
left = vget_low_u8(a202);
right = vget_low_u8(a203);
both = vzip_u8(left, right);
s50 = vcombine_u8(both[0], both[1]);
s50 = vcombine_u8(both.val[0], both.val[1]);
left = vget_high_u8(a202);
right = vget_high_u8(a203);
both = vzip_u8(left, right);
s51 = vcombine_u8(both[0], both[1]);
s51 = vcombine_u8(both.val[0], both.val[1]);
a208 = ((uint8x16_t*)X);
*(a208) = s50;
a209 = (a208 + 1);
Expand Down Expand Up @@ -875,11 +875,11 @@ static inline void volk_8u_x4_conv_k7_r2_8u_neonspiral(unsigned char* Y,
left = vget_low_u8(a221);
right = vget_low_u8(a222);
both = vzip_u8(left, right);
s56 = vcombine_u8(both[0], both[1]);
s56 = vcombine_u8(both.val[0], both.val[1]);
left = vget_high_u8(a221);
right = vget_high_u8(a222);
both = vzip_u8(left, right);
s57 = vcombine_u8(both[0], both[1]);
s57 = vcombine_u8(both.val[0], both.val[1]);
a225 = (a208 + 2);
*(a225) = s56;
a226 = (a208 + 3);
Expand Down

0 comments on commit e7e88d0

Please sign in to comment.