Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Casting normal double* to a _m128d* is pretty easy and comprehensible. Suppose you have an array like this:

double arr[8] = {1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0};

Then the _m128d presentation kinda would look like this:

_m128d m_arr[8] = { [1.0,2.0] , [3.0,4.0] , [5.0,6.0] , [7.0,8.0] };

because always 2 values are stored, if you can say that (that's how I imagine it). But how will the values be split up if I use a 3x3 matrix instead??? E.g.:

double mat[3][3] = { {1.0, 2.0, 3.0}, {1.0, 2.0, 3.0}, {1.0, 2.0, 3.0} };

I am trying to just sum up all values in a matrix but don't really get how to do this effictively with SSE, therefore I need to understand how the matrix is dealt with _m128d**. Does anybody know?

share|improve this question
2  
2D arrays ain't double pointers. – H2CO3 Jan 21 at 19:17
Yes right, quite pedantical. I hope the question is clear anyhow – sdir Jan 21 at 19:20
Oh, so you knew that. Sorry for having assumed the opposite. – H2CO3 Jan 21 at 19:23
I would have asked a question on matrices and pointers if I wanted to know that. If you don't want to contribute to the question then leave your offensive attitude for yourself. But i suppose you don't – sdir Jan 21 at 19:26
1  
I didn't mean to be offensive. I honestly assumed you thought 2D arrays are compatible with double pointers. Now I believe to have understood your question and answered it. – H2CO3 Jan 21 at 19:28

1 Answer

up vote 2 down vote accepted

The thing is that multidimensional arrays are stored in one continuous block of memory (the C standard guarantees this). So you can use a simple pointer to reference them:

double mat[3][3] = { {1.0, 2.0, 3.0}, {1.0, 2.0, 3.0}, {1.0, 2.0, 3.0} };
double *ptr = (double *)mat;

Then you can iterate over the 9 numbers using this pointer and dereference it to obtain a double, which then can be cast/converted to another type.

share|improve this answer
Thanks, this is actually quite useful. – sdir Jan 21 at 19:35

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.