• x86 _mm_sign_epi8(_m128i a,_m128i b) intrinsic NEON equivalent
    I have the x86 intrinsic (_m128i _mm_sign_epi8(_m128i a,_m128i b)) it performs the following task: for (i = 0; i < 16; i++) { if (b[i] < 0) { r[i] = -a[i]; } else if (b[i] == 0) { r[i] = 0; } else { r...
  • SIMD : VEXT -32-q1-q1-q1-3-slow
    Hi, i have some issue on an inplace vetx.32 instructions. I post it on the Cortex A forum. Who has a tip or workaround as it is too slow on A7,A8,A9, etc... ? thanks vetx-32-q1-q1-q1-3-slow
  • Arm Cortex-A Processors and GCC Command Lines
    Chinese Version: Arm Cortex-A 处理器和 GCC 命令行 The GNU Compiler Collection’s ( GCC ) command line options for Arm processors were originally designed many years ago when the list of available processors...
  • c-code example how to use neon ARMv8 intrinsics
    hello , can you share c-code examples how to use neon ARMv8 intrinsics ? mostly , I'm not sure , what results to expect.
  • gdb run out
    I start gdb to debug my program, the program will run to 0x00000000 when executing "vldmia.64  r1!, {d0-d15}". I can not find the reason. My CPU is cortex-a8.