AOptimizations.cs 305 B

123456789101112
  1. using System.Runtime.Intrinsics.X86;
  2. public static class AOptimizations
  3. {
  4. public static bool DisableMemoryChecks = false;
  5. public static bool GenerateCallStack = true;
  6. public static bool UseSse2IfAvailable = true;
  7. internal static bool UseSse2 = UseSse2IfAvailable && Sse2.IsSupported;
  8. }