mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-11-03 13:43:18 +00:00
Complex-complex block multiples are used for phase rotation of bursts. Optimization targeted from perf profiling. Signed-off-by: Thomas Tsou <tom@tsou.cc>
7 lines
117 B
C
7 lines
117 B
C
#ifndef _MULT_H_
|
|
#define _MULT_H_
|
|
|
|
void mul_complex(float *out, float *a, float *b, int len);
|
|
|
|
#endif /* _MULT_H_ */
|