Hello,
I have the following uint32_t input vector:
{r0, i0, r1, i1, r2, i2, ...}
I have to create 2 uint32_t output vectors:
{r0, r1, r2, ...}
{i0, i1, i2, ...}
How can I create a vector that contains {r0, r1, r2, r3} and then store it in memory ?
I found stride operations but failed to understand how to use them.
Thank you,
Zvika
vld2q_s32 returned an array of 2 int32x4
The first element is { r0, r1, r2, r3}
Second is {i0, i1, i2, i3}