Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Take a look at my answer here : stackoverflow.com/questions/3130169/… – Roman Zavalov Dec 30 '12 at 18:02

2 Answers

up vote 2 down vote accepted

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

share|improve this answer
What kind of a cast would it be, though? A C-style cast wouldn't work, would it? – Mehrdad Apr 3 '11 at 4:11
Sure - as long as the storage size matches. BTW - looks like there's a macro that may help: _MM_EXTRACT_FLOAT (see stackoverflow.com/questions/3130169/… ) – holtavolt Apr 3 '11 at 4:19
Ahhhhhhh that's precisely solution for the problem I was facing!! It's hard to search for; thanks for the help! :) – Mehrdad Apr 3 '11 at 4:21

Try _mm_storeu_ps, or any of the variations of SSE store operations.

share|improve this answer
I'm trying to read to a register, not to memory... – Mehrdad Apr 3 '11 at 4:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.