I have seen that it's rather simple in C to access values in a __m128
register by index. However, it is not possible to do that in rust. How can I access those values?
Concretely, I am calculating four values at once, then I compare them using _mm_cmplt_ps
. I use that return register as a mask for further computation.