Question : What is the most performant way to represent constant System.Runtime.Intrinsics.VectorXXX<T>? #40900
Labels
area-System.Runtime.Intrinsics
documentation
Documentation bug or enhancement, does not impact product or test code
help wanted
[up-for-grabs] Good issue for external contributors
Milestone
When we want some constant vector,what is the most performant way?
(e.g.
static Vector256<int> Stair => Vector256.Create(1,2,3,4,5,6,7,8);
,static readonly Vector256<int> Stair = Vector256.Create(1,2,3,4,5,6,7,8);
)I hope it documented on MSDN.
The text was updated successfully, but these errors were encountered: