我正在尝试使用c#进行SIMD,并尝试按照以下承诺从Span(var myVector = new Vector<T>(myTSpan);
)初始化Vector:
https://docs.microsoft.com/en-us/dotnet/api/system.numerics.vector-1?redirectedfrom=MSDN&view=netstandard-2.1
我正在使用Visual Studio 2019,C#7.3;定位到.NET Framework 4.7.2。 我正在使用NuGet的System.Numerics 4.0.0.0,System.Numerics.Vectors 4.1.4.0和System.Memory 4.0.1.0
我还从NuGet下载了NETStandard.Library 2.0.3并设置了PackageReference Option,但仍然找不到它(我只能从托管数组中获取构造函数)。
我想念什么?