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

Function vst1q_u32_x2_

src/cpu/kernels/CpuTransposeKernel.cpp:383–388  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

381}
382
383inline void vst1q_u32_x2_(const uint32_t *ptr, const uint32x4x2_t &val)
384{
385 // gcc-7 doesn't support vst1q_u32_x2 instruction
386 vst1q_u32(const_cast<uint32_t *>(ptr), val.val[0]);
387 vst1q_u32(const_cast<uint32_t *>(ptr + 4), val.val[1]);
388}
389
390void transpose_32bit_elements(const ITensor *in, ITensor *out, const Window &window)
391{

Callers 1

transpose_32bit_elementsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected