Skip to content

Commit

Permalink
Update src/UTF8.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire authored Jun 20, 2024
1 parent dce882c commit 694dad0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/UTF8.cs
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,6 @@ private unsafe static (int utfadjust, int scalaradjust) calculateErrorPathadjust
Vector512<byte> block1 = Avx512F.LoadVector512(pInputBuffer + asciirun);
Vector512<byte> block2 = Avx512F.LoadVector512(pInputBuffer + asciirun + 64);
Vector512<byte> or = Avx512F.Or(block1, block2);
// Console.WriteLine($"--Found All ASCII chars!This is or.ExtractMostSignificantBits():{or.ExtractMostSignificantBits()}");
if (or.ExtractMostSignificantBits() != 0)
{
break;
Expand Down

0 comments on commit 694dad0

Please sign in to comment.