mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Add AVX10 as logged intrinsics
This commit is contained in:
@@ -181,6 +181,18 @@ internal static class SystemInformation
|
||||
if (Avx512Vbmi.VL.IsSupported)
|
||||
options.Add(nameof(Avx512Vbmi) + ".VL");
|
||||
|
||||
if (Avx10v1.IsSupported)
|
||||
options.Add(nameof(Avx10v1));
|
||||
|
||||
if (Avx10v1.V512.IsSupported)
|
||||
options.Add(nameof(Avx10v1) + ".V512");
|
||||
|
||||
if (Avx10v2.IsSupported)
|
||||
options.Add(nameof(Avx10v2));
|
||||
|
||||
if (Avx10v2.V512.IsSupported)
|
||||
options.Add(nameof(Avx10v2) + ".V512");
|
||||
|
||||
if (Bmi1.IsSupported)
|
||||
options.Add(nameof(Bmi1));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user