mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-11-02 13:13:17 +00:00
Similar to the existing Intel SSE cases, add support for NEON vector floating point SIMD processing. In this case, use ARM assembly directly as the NEON intrinsics do not generate preferential code output. Currently support NEON vectorized convolution and floating point integer conversions. Signed-off-by: Thomas Tsou <tom@tsou.cc>
7 lines
127 B
C
7 lines
127 B
C
#ifndef _SCALE_H_
|
|
#define _SCALE_H_
|
|
|
|
void scale_complex(float *out, float *in, float *scale, int len);
|
|
|
|
#endif /* _SCALE_H_ */
|