I'm studying examples of SIMD operations in C# and want to try some exapmles. I downloaded NuGet package System.Numerics.Vectors v4.0
, and want to reproduce examples from the internet. But they doesn't work because this library doesn't contain class needed. Target framework is 4.6, but there is no Vector<T>
for some reason, and I don't know why.
Maybe it was removed from API, but i didn't found any correlated info why they did it.
Vector<T>
was removed from the stable release (presumably it wasn't stable enough) – Dildo