Skip to content

Commit

Permalink
another small correction
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Aug 24, 2024
1 parent 1975928 commit e7e063b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/UTF8ValidationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ private static bool IsSystemSupported(TestSystemRequirements requiredSystems)
case Architecture.X64:
return (requiredSystems.HasFlag(TestSystemRequirements.X64Avx512) && Vector512.IsHardwareAccelerated && System.Runtime.Intrinsics.X86.Avx512F.IsSupported) ||
(requiredSystems.HasFlag(TestSystemRequirements.X64Avx2) && System.Runtime.Intrinsics.X86.Avx2.IsSupported) ||
(requiredSystems.HasFlag(TestSystemRequirements.X64Sse) && System.Runtime.Intrinsics.X86.Sse.IsSupported);
(requiredSystems.HasFlag(TestSystemRequirements.X64Sse) && System.Runtime.Intrinsics.X86.Ssse3.IsSupported);
default:
return false; // If architecture is not covered above, the test is not supported.
}
Expand Down

0 comments on commit e7e063b

Please sign in to comment.