Skip to content

Commit

Permalink
break NEON impl to check tests work
Browse files Browse the repository at this point in the history
  • Loading branch information
lkeegan committed Nov 10, 2023
1 parent bc6c2a4 commit 1a2ca99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/distance_neon.cc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ int distance_neon(const std::vector<GeneBlock> &a,
r_b = vceqzq_u8(r_b);
// only keep LSB for each uint8 to get either 0 or 1
r_a = vandq_u8(r_a, lsb);
r_b = vandq_u8(r_b, lsb);
r_b = vandq_u8(r_a, lsb);
// add these values to distance counts
r_s = vaddq_u8(r_s, r_a);
r_s = vaddq_u8(r_s, r_b);
Expand Down

0 comments on commit 1a2ca99

Please sign in to comment.