SSE: convert __m128 to float

13,713

Solution 1

You'll need to use _mm_store_ps to get it back into a float. Code:

// result must be 16-byte aligned
float result [4];
_mm_store_ps (result, pDest);

// If result is not 16-byte aligned, use _mm_storeu_ps
// On modern CPUs this is just as fast as _mm_store_ps if
// result is 16-byte aligned, but works in all other cases as well
_mm_storeu_ps (result, pDest);

Solution 2

I believe casting works if you cast properly. I don't have the code in front of me, but I'm pretty sure this worked for me:

float *arrq = reinterpret_cast<float*>(&pDest);

Note that it uses a C++ cast describing what you are doing, and it is converting the address of it into a pointer.

Share:
13,713
Simon Dirmeier
Author by

Simon Dirmeier

I like statistical learning, probabilistic models, and scientific computing in general. For modeling and data analysis I mainly use R, Python and Spark, and C++ for everything else.

Updated on September 15, 2022

Comments

  • Simon Dirmeier
    Simon Dirmeier over 1 year

    I have the following piece of C code:

    __m128 pSrc1 = _mm_set1_ps(4.0f);
    __m128 pDest;
    int i;
    for (i=0;i<100;i++) {
           m1 = _mm_mul_ps(pSrc1, pSrc1);      
           m2 = _mm_mul_ps(pSrc1, pSrc1);        
           m3 = _mm_add_ps(m1, m2);             
           pDest = _mm_add_ps(m3, m3); 
    }
    
    float *arrq = (float*) pDest;
    

    Everything until the end of the for loop works. What I am trying to do now is to cast the __m128 type back to float. Since it stores 4 floats I thought I easily can cast it back to float*. What am I doing wrong? (This is a test code, so don't wonder). I basically tried all possible conversions I could think of. Thx for your help.

  • Admin
    Admin over 11 years
    Thanks alot. That was quite easy. I am now to the field, so sorry for the stupid question
  • Sam
    Sam over 11 years
  • St0fF
    St0fF over 7 years
    This is indeed the way to go if you want to avoid needless copying. Also many C++ coders should learn to use C++ casting. Though it's cumbersome to write (well, not really with a good editor and completion), it improves readability.