Hello! I see in the vec_neon.h which now contains intrinsics like "vcvtnq_s32_f32". This is a intrinsic only supported by A32 and A64 according to Arm document:
https://developer.arm.com/architectures/instruction-sets/intrinsics/
When I try to compile with armv7a, it will generate incompatiable type error such as:
vec_neon.h:301:11: error: assigning to 'int32x4_t' (vector of 4 'int32_t' values) from incompatible type 'int'
xi0 = vcvtnq_s32_f32(vmulq_f32(const127, vld1q_f32(&_x[i])));
I'm looking at emulating those instructions for armv7, but for the time being you can just configure with --disable-dot-product and things should work.
Hello! I see in the vec_neon.h which now contains intrinsics like "vcvtnq_s32_f32". This is a intrinsic only supported by A32 and A64 according to Arm document: https://developer.arm.com/architectures/instruction-sets/intrinsics/ When I try to compile with armv7a, it will generate incompatiable type error such as:
Is the LPCNet master only support armv8a now?