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

I am studying examples of SIMD operations in C # and want to try some exapmles. I downloaded the NuGet System.Numerics.Vectors v4.0 package and want to reproduce examples from the Internet. But they do not work, because this library does not contain the required class. The target structure is 4.6, but for some reason there is no Vector<T> , and I don't know why.

enter image description here

It may have been removed from the API, but I did not find correlated information about why they did it.

+6
source share
1 answer

I suspect you have installed the latest stable package from NuGet, which does not include Vector<T> . Try installing the beta version (1.1.6 beta).

+6
source

Source: https://habr.com/ru/post/984671/


All Articles