I have a C program where I have a few arrays of unsigned ints. I'm using this declaration uint32_t
.
I want to use SIMD to perform some operations on the data stored in each of the arrays. This is where I'm stuck because it looks like most of the SSE and SSE2 functions only support float and double.
What's the best way for me to load data of type uint32_t
?