Sorry for the previous in-descriptive question. Please allow me to rephrase the question again:
the setup:
I need to do ADD and some bit wise operations of 4 32bit value from 4 arrays at same time using SSE, all the element in these 4 arrays are integer size(32 bit). The result goes to the 5th array.
so my question is:
- what header files and compiler flags i need to include such that i can run the SSE using C?
- Does the example code provide by Paul stills works?
Another question, if I need to read last bit from integer A, and first bit from integer B, and replace the last bit and first bit in integer C by the values I just read, can i use SSE here? or is there any fast way to do it? instead of 3 access in normal case?
Again, apologize for previous post, and thanks for any input...^_^