Vector Optimized Library of Kernels  3.0.0
Architecture-tuned implementations of math kernels

Overview

Byteswaps (in-place) an aligned vector of int16_t's.

Dispatcher Prototype

void volk_16u_byteswap(uint16_t* intsToSwap, unsigned int num_points)

Inputs

  • intsToSwap: The vector of data to byte swap.
  • num_points: The number of data points.

Outputs

  • intsToSwap: returns as an in-place calculation.

Example

int N = 10000;
<FIXME>
volk_16u_byteswap(x, N);