Update Optimizations.cs
This commit is contained in:
parent
00e4d868b7
commit
cdb2e45a6e
1 changed files with 2 additions and 0 deletions
|
@ -8,11 +8,13 @@ public static class Optimizations
|
||||||
|
|
||||||
private static bool _useSseIfAvailable = true;
|
private static bool _useSseIfAvailable = true;
|
||||||
private static bool _useSse2IfAvailable = true;
|
private static bool _useSse2IfAvailable = true;
|
||||||
|
private static bool _useSsse3IfAvailable = true;
|
||||||
private static bool _useSse41IfAvailable = true;
|
private static bool _useSse41IfAvailable = true;
|
||||||
private static bool _useSse42IfAvailable = true;
|
private static bool _useSse42IfAvailable = true;
|
||||||
|
|
||||||
internal static bool UseSse = (_useAllSseIfAvailable && _useSseIfAvailable) && Sse.IsSupported;
|
internal static bool UseSse = (_useAllSseIfAvailable && _useSseIfAvailable) && Sse.IsSupported;
|
||||||
internal static bool UseSse2 = (_useAllSseIfAvailable && _useSse2IfAvailable) && Sse2.IsSupported;
|
internal static bool UseSse2 = (_useAllSseIfAvailable && _useSse2IfAvailable) && Sse2.IsSupported;
|
||||||
|
internal static bool UseSsse3 = (_useAllSseIfAvailable && _useSsse3IfAvailable) && Ssse3.IsSupported;
|
||||||
internal static bool UseSse41 = (_useAllSseIfAvailable && _useSse41IfAvailable) && Sse41.IsSupported;
|
internal static bool UseSse41 = (_useAllSseIfAvailable && _useSse41IfAvailable) && Sse41.IsSupported;
|
||||||
internal static bool UseSse42 = (_useAllSseIfAvailable && _useSse42IfAvailable) && Sse42.IsSupported;
|
internal static bool UseSse42 = (_useAllSseIfAvailable && _useSse42IfAvailable) && Sse42.IsSupported;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue