Why does _mm_extract_ps return an int instead of a float?
What's the proper way to read a single float from an XMM register in C?
Or rather, a different way to ask it is: What's the opposite of the _mm_set_ps instruction?
|
|
From the MSDN docs, I believe you can cast the result to a float. Note from their example, the 0xc0a40000 value is equivalent to -5.125 (a.m128_f32[1]). Handy page for checking this: http://babbage.cs.qc.edu/IEEE-754/32bit.html |
|||||||
|
|
Try |
|||
|
|