MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / vld1q_u32_x2_

Function vld1q_u32_x2_

src/cpu/kernels/CpuTransposeKernel.cpp:377–381  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

375
376#ifdef __aarch64__
377inline uint32x4x2_t vld1q_u32_x2_(const uint32_t *ptr)
378{
379 // gcc-7 doesn't support vld1q_u32_x2 instruction
380 return {vld1q_u32(ptr), vld1q_u32(ptr + 4)};
381}
382
383inline void vst1q_u32_x2_(const uint32_t *ptr, const uint32x4x2_t &val)
384{

Callers 1

transpose_32bit_elementsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected