I have a .NET 6.0 application which runs on a Server which does not have "SSSE3" support.
The Boolean "IsVector128Supported" is only checking "Sse3" support (only two 's').
This is true for my system, so that the Boolean flag is true.
This means, that line 654 is calling the Shuffle function.
But this is checking "SSSE3" (three 's') support for dotnet 6 (line 708) which is false on my system. This means, that the Not implement exception is thrown.
Is it correct, that one time "Sse3" (two 's') and one time "SSSE3" (three 's') is checked?
I have a .NET 6.0 application which runs on a Server which does not have "SSSE3" support.
The Boolean "IsVector128Supported" is only checking "Sse3" support (only two 's').
This is true for my system, so that the Boolean flag is true.
This means, that line 654 is calling the Shuffle function.
But this is checking "SSSE3" (three 's') support for dotnet 6 (line 708) which is false on my system. This means, that the Not implement exception is thrown.
Is it correct, that one time "Sse3" (two 's') and one time "SSSE3" (three 's') is checked?