Does anyone how to do control flow with the Mono.Simd namespace. For example, break if all elements in a vector match some condition relative to another vector. e.g.
var y= Vector2d(1,2);
var x=Vector2d(3,4):
if(y<x)//compare less than, true for both???
//Do something…
I gather SSE has a movmskps instruction that is useful, and there are comparison functions, but they create bit masks which I am not sure how/how-best to utilize with C#.