| 381 | } |
| 382 | |
| 383 | inline 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 | |
| 390 | void transpose_32bit_elements(const ITensor *in, ITensor *out, const Window &window) |
| 391 | { |
no outgoing calls
no test coverage detected