I want to use a similar intrinsic as shown below for my code.
int32x2_t vmla_s32 (int32x2_t a, int32x2_t b, int32x2_t c)
The only change is that my data is 64 bit i.e. I need 64x2_t vectors. I went through all relevant intrinsics mentioned in the ARM references but didn't find the suitable one. Should I use float datatypes and then convert (Cast) them into int64 (as shown below)? Is that the only option left with me?
float64x2_t vmlaq_f64 (float64x2_t a, float64x2_t b, float64x2_t c)