12 lines
154 B
C#
Raw Normal View History

namespace System.Numerics
{
static class Vector
{
[JitIntrinsic]
public static bool IsHardwareAccelerated {
get {
return false;
}
}
}
}