Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

System.Numerics.Vectors.Vector<T> is missing

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.

enter image description here

Maybe it was removed from API, but i didn't found any correlated info why they did it.

like image 881
Alex Zhukovskiy Avatar asked Apr 03 '15 21:04

Alex Zhukovskiy


1 Answers

I suspect you installed the latest stable package from NuGet which doesn't include Vector<T>. Try installing the beta version (1.1.6-beta).

like image 191
pharring Avatar answered Oct 31 '22 05:10

pharring