File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ private static bool IsSystemSupported(TestSystemRequirements requiredSystems)
54
54
case Architecture . X64 :
55
55
return ( requiredSystems . HasFlag ( TestSystemRequirements . X64Avx512 ) && Vector512 . IsHardwareAccelerated && System . Runtime . Intrinsics . X86 . Avx512F . IsSupported ) ||
56
56
( requiredSystems . HasFlag ( TestSystemRequirements . X64Avx2 ) && System . Runtime . Intrinsics . X86 . Avx2 . IsSupported ) ||
57
- ( requiredSystems . HasFlag ( TestSystemRequirements . X64Sse ) && System . Runtime . Intrinsics . X86 . Sse . IsSupported ) ;
57
+ ( requiredSystems . HasFlag ( TestSystemRequirements . X64Sse ) && System . Runtime . Intrinsics . X86 . Ssse3 . IsSupported ) ;
58
58
default :
59
59
return false ; // If architecture is not covered above, the test is not supported.
60
60
}
You can’t perform that action at this time.
0 commit comments