aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/common/convolve.h
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-03-15 18:09:35 +0100
committerPhilipp Maier <pmaier@sysmocom.de>2017-03-23 14:53:53 +0100
commit58ecaf764892e923df287d8f54c563f147467cd7 (patch)
tree2028188ebe3ddc86da6815391308fbe35f7c24b7 /Transceiver52M/common/convolve.h
parent499ad2601b16163941c4f80f72a650834051266d (diff)
ssedetect: Add runtime CPU detection
The current implementation can select the SSE support level during compiletime only. This commit adds functionality to automatically detect and switch the SSE support level and automatically switch the Implementation if the CPU does not support the required SSE level. Change-Id: Iba74f8a6e4e921ff31e4bd9f0c7c881fe547423a
Diffstat (limited to 'Transceiver52M/common/convolve.h')
-rw-r--r--Transceiver52M/common/convolve.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Transceiver52M/common/convolve.h b/Transceiver52M/common/convolve.h
index 08bda0c..43db577 100644
--- a/Transceiver52M/common/convolve.h
+++ b/Transceiver52M/common/convolve.h
@@ -27,4 +27,6 @@ int base_convolve_complex(const float *x, int x_len,
int start, int len,
int step, int offset);
+void convolve_init(void);
+
#endif /* _CONVOLVE_H_ */