• Cross-Compile ArmNN on x86_64 for arm64
    Hi , I am looking for someway of using the armNN SDK on a Xilinx Zynq Platform which has Quad-core ARM® CortexTM-A53 MPCoreTM up to 1.5GHz and an ARM MALI 400 MP2 GPU. With ARM Mali GPU noted off in...
  • Cross-Compile ArmNN on x86_64 for arm64
    Hi , I am looking for someway of using the armNN SDK on a Xilinx Zynq Platform which has Quad-core ARM® CortexTM-A53 MPCoreTM up to 1.5GHz and an ARM MALI 400 MP2 GPU. With ARM Mali GPU noted off in...
  • flush_dcache_range equivalent in arm64
    Hello everyone! I am trying writing a module that needs to flush the data cache base on an address range, and I found dcache_clean_inval_poc calls within the arm/include/asm/cacheflush.h, but compiling...
  • flush_dcache_range equivalent in arm64
    Hello everyone! I am trying writing a module that needs to flush the data cache base on an address range, and I found dcache_clean_inval_poc calls within the arm/include/asm/cacheflush.h, but compiling...
  • 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...