我正在尝试使用 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 选项,但仍然找不到它(我只从托管数组中获取构造函数)。
我错过了什么?