Kconfig.cmsis_dsp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788
  1. # Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
  2. # SPDX-License-Identifier: Apache-2.0
  3. comment "Components"
  4. config CMSIS_DSP_BASICMATH
  5. bool "Basic Math Functions"
  6. default y
  7. help
  8. This option enables the Basic Math Functions, which support the
  9. following operations:
  10. * Elementwise Clipping
  11. * Vector Absolute Value
  12. * Vector Addition
  13. * Vector Subtraction
  14. * Vector Multiplication
  15. * Vector Dot Product
  16. * Vector Absolute Value
  17. * Vector Negate
  18. * Vector Offset
  19. * Vector Scale
  20. * Vector Shift
  21. * Vector Bitwise AND
  22. * Vector Bitwise OR
  23. * Vector Bitwise Exclusive OR
  24. * Vector Bitwise NOT
  25. config CMSIS_DSP_COMPLEXMATH
  26. bool "Complex Math Functions"
  27. imply CMSIS_DSP_FASTMATH
  28. help
  29. This option enables the Complex Math Functions, which support the
  30. following operations:
  31. * Complex-by-Complex Multiplication
  32. * Complex-by-Real Multiplication
  33. * Complex Dot Product
  34. * Complex Magnitude
  35. * Complex Magnitude Squared
  36. * Complex Conjugate
  37. config CMSIS_DSP_CONTROLLER
  38. bool "Controller Functions"
  39. help
  40. This option enables the Controller Functions, which support the
  41. following operations:
  42. * PID Control
  43. * Vector Clarke Transform
  44. * Vector Inverse Clarke Transform
  45. * Vector Park Transform
  46. * Vector Inverse Park Transform
  47. * Sine-Cosine
  48. These functions can be used to implement a generic PID controller, as
  49. well as field oriented motor control using Space Vector Modulation
  50. algorithm.
  51. config CMSIS_DSP_FASTMATH
  52. bool "Fast Math Functions"
  53. select CMSIS_DSP_TABLES
  54. imply CMSIS_DSP_TABLES_ALL_FAST
  55. help
  56. This option enables the Fast Math Functions, which support the
  57. following operations:
  58. * Fixed-Point Division
  59. * Sine
  60. * Cosine
  61. * Square Root
  62. config CMSIS_DSP_FILTERING
  63. bool "Filtering Functions"
  64. imply CMSIS_DSP_FASTMATH
  65. imply CMSIS_DSP_SUPPORT
  66. help
  67. This option enables the Filtering Functions, which support the
  68. following operations:
  69. * Convolution
  70. * Partial Convolution
  71. * Correlation
  72. * Levinson-Durbin Algorithm
  73. The following filter types are supported:
  74. * FIR (finite impulse response) Filter
  75. * FIR Lattice Filter
  76. * FIR Sparse Filter
  77. * FIR Filter with Decimator
  78. * FIR Filter with Interpolator
  79. * IIR (infinite impulse response) Lattice Filter
  80. * Biquad Cascade IIR Filter, Direct Form I Structure
  81. * Biquad Cascade IIR Filter, Direct Form II Transposed Structure
  82. * High Precision Q31 Biquad Cascade Filter
  83. * LMS (least mean square) Filter
  84. * Normalized LMS Filter
  85. config CMSIS_DSP_INTERPOLATION
  86. bool "Interpolation Functions"
  87. help
  88. This option enables the Interpolation Functions, which support the
  89. following operations:
  90. * Bilinear Interpolation
  91. * Linear Interpolation
  92. * Cubic Spline Interpolation
  93. config CMSIS_DSP_MATRIX
  94. bool "Matrix Functions"
  95. help
  96. This option enables the Matrix Functions, which support the following
  97. operations:
  98. * Matrix Initialization
  99. * Matrix Addition
  100. * Matrix Subtraction
  101. * Matrix Multiplication
  102. * Complex Matrix Multiplication
  103. * Matrix Vector Multiplication
  104. * Matrix Inverse
  105. * Matrix Scale
  106. * Matrix Transpose
  107. * Complex Matrix Transpose
  108. * Cholesky and LDLT Decompositions
  109. config CMSIS_DSP_QUATERNIONMATH
  110. bool "Quaternion Math Functions"
  111. help
  112. This option enables the Quaternion Math Functions, which support the
  113. following operations:
  114. * Quaternion Conversions
  115. * Quaternion Conjugate
  116. * Quaternion Inverse
  117. * Quaternion Norm
  118. * Quaternion Normalization
  119. * Quaternion Product
  120. config CMSIS_DSP_STATISTICS
  121. bool "Statistics Functions"
  122. imply CMSIS_DSP_BASICMATH
  123. imply CMSIS_DSP_FASTMATH
  124. help
  125. This option enables the Statistics Functions, which support the
  126. following operations:
  127. * Minimum
  128. * Absolute Minimum
  129. * Maximum
  130. * Absolute Maximum
  131. * Mean
  132. * Root Mean Square (RMS)
  133. * Variance
  134. * Standard Deviation
  135. * Power
  136. * Entropy
  137. * Kullback-Leibler Divergence
  138. * LogSumExp (LSE)
  139. config CMSIS_DSP_SUPPORT
  140. bool "Support Functions"
  141. help
  142. This option enables the Support Functions, which support the
  143. following operations:
  144. * Vector 8-bit Integer Value Conversion
  145. * Vector 16-bit Integer Value Conversion
  146. * Vector 32-bit Integer Value Conversion
  147. * Vector 16-bit Floating-Point Value Conversion
  148. * Vector 32-bit Floating-Point Value Conversion
  149. * Vector Copy
  150. * Vector Fill
  151. * Vector Sorting
  152. * Weighted Sum
  153. * Barycenter
  154. config CMSIS_DSP_TRANSFORM
  155. bool "Transform Functions"
  156. select CMSIS_DSP_TABLES
  157. imply CMSIS_DSP_TABLES_ALL_FFT
  158. help
  159. This option enables the Transform Functions, which support the
  160. following transformations:
  161. * Real Fast Fourier Transform (RFFT)
  162. * Complex Fast Fourier Transform (CFFT)
  163. * Type IV Discrete Cosine Transform (DCT4)
  164. config CMSIS_DSP_SVM
  165. bool "Support Vector Machine Functions"
  166. help
  167. This option enables the Support Vector Machine Functions, which
  168. support the following algorithms:
  169. * Linear
  170. * Polynomial
  171. * Sigmoid
  172. * Radial Basis Function (RBF)
  173. config CMSIS_DSP_BAYES
  174. bool "Bayesian Estimators"
  175. imply CMSIS_DSP_STATISTICS
  176. help
  177. This option enables the Bayesian Estimator Functions, which
  178. implements the naive gaussian Bayes estimator.
  179. config CMSIS_DSP_DISTANCE
  180. bool "Distance Functions"
  181. imply CMSIS_DSP_STATISTICS
  182. help
  183. This option enables the Distance Functions, which support the
  184. following distance computation algorithms:
  185. * Boolean Vectors
  186. * Hamming
  187. * Jaccard
  188. * Kulsinski
  189. * Rogers-Tanimoto
  190. * Russell-Rao
  191. * Sokal-Michener
  192. * Sokal-Sneath
  193. * Yule
  194. * Dice
  195. * Floating-Point Vectors
  196. * Canberra
  197. * Chebyshev
  198. * Cityblock
  199. * Correlation
  200. * Cosine
  201. * Euclidean
  202. * Jensen-Shannon
  203. * Minkowski
  204. * Bray-Curtis
  205. menuconfig CMSIS_DSP_TABLES
  206. bool "Look-up Tables"
  207. help
  208. This option enables the static look-up tables used by the DSP
  209. functions to compute results.
  210. if CMSIS_DSP_TABLES
  211. config CMSIS_DSP_TABLES_ALL_FAST
  212. bool "Include all fast interpolation tables"
  213. select CMSIS_DSP_TABLES_ARM_COS_F32
  214. select CMSIS_DSP_TABLES_ARM_COS_Q31
  215. select CMSIS_DSP_TABLES_ARM_COS_Q15
  216. select CMSIS_DSP_TABLES_ARM_SIN_F32
  217. select CMSIS_DSP_TABLES_ARM_SIN_Q31
  218. select CMSIS_DSP_TABLES_ARM_SIN_Q15
  219. select CMSIS_DSP_TABLES_ARM_SIN_COS_F32
  220. select CMSIS_DSP_TABLES_ARM_SIN_COS_Q31
  221. select CMSIS_DSP_TABLES_ARM_LMS_NORM_Q31
  222. select CMSIS_DSP_TABLES_ARM_LMS_NORM_Q15
  223. select CMSIS_DSP_TABLES_ARM_CMPLX_MAG_Q31
  224. select CMSIS_DSP_TABLES_ARM_CMPLX_MAG_Q15
  225. config CMSIS_DSP_TABLES_ALL_FFT
  226. bool "Include all FFT tables"
  227. select CMSIS_DSP_TABLES_CFFT_F64_16
  228. select CMSIS_DSP_TABLES_CFFT_F64_32
  229. select CMSIS_DSP_TABLES_CFFT_F64_64
  230. select CMSIS_DSP_TABLES_CFFT_F64_128
  231. select CMSIS_DSP_TABLES_CFFT_F64_256
  232. select CMSIS_DSP_TABLES_CFFT_F64_512
  233. select CMSIS_DSP_TABLES_CFFT_F64_1024
  234. select CMSIS_DSP_TABLES_CFFT_F64_2048
  235. select CMSIS_DSP_TABLES_CFFT_F64_4096
  236. select CMSIS_DSP_TABLES_CFFT_F32_16
  237. select CMSIS_DSP_TABLES_CFFT_F32_32
  238. select CMSIS_DSP_TABLES_CFFT_F32_64
  239. select CMSIS_DSP_TABLES_CFFT_F32_128
  240. select CMSIS_DSP_TABLES_CFFT_F32_256
  241. select CMSIS_DSP_TABLES_CFFT_F32_512
  242. select CMSIS_DSP_TABLES_CFFT_F32_1024
  243. select CMSIS_DSP_TABLES_CFFT_F32_2048
  244. select CMSIS_DSP_TABLES_CFFT_F32_4096
  245. select CMSIS_DSP_TABLES_CFFT_F16_16
  246. select CMSIS_DSP_TABLES_CFFT_F16_32
  247. select CMSIS_DSP_TABLES_CFFT_F16_64
  248. select CMSIS_DSP_TABLES_CFFT_F16_128
  249. select CMSIS_DSP_TABLES_CFFT_F16_256
  250. select CMSIS_DSP_TABLES_CFFT_F16_512
  251. select CMSIS_DSP_TABLES_CFFT_F16_1024
  252. select CMSIS_DSP_TABLES_CFFT_F16_2048
  253. select CMSIS_DSP_TABLES_CFFT_F16_4096
  254. select CMSIS_DSP_TABLES_CFFT_Q31_16
  255. select CMSIS_DSP_TABLES_CFFT_Q31_32
  256. select CMSIS_DSP_TABLES_CFFT_Q31_64
  257. select CMSIS_DSP_TABLES_CFFT_Q31_128
  258. select CMSIS_DSP_TABLES_CFFT_Q31_256
  259. select CMSIS_DSP_TABLES_CFFT_Q31_512
  260. select CMSIS_DSP_TABLES_CFFT_Q31_1024
  261. select CMSIS_DSP_TABLES_CFFT_Q31_2048
  262. select CMSIS_DSP_TABLES_CFFT_Q31_4096
  263. select CMSIS_DSP_TABLES_CFFT_Q15_16
  264. select CMSIS_DSP_TABLES_CFFT_Q15_32
  265. select CMSIS_DSP_TABLES_CFFT_Q15_64
  266. select CMSIS_DSP_TABLES_CFFT_Q15_128
  267. select CMSIS_DSP_TABLES_CFFT_Q15_256
  268. select CMSIS_DSP_TABLES_CFFT_Q15_512
  269. select CMSIS_DSP_TABLES_CFFT_Q15_1024
  270. select CMSIS_DSP_TABLES_CFFT_Q15_2048
  271. select CMSIS_DSP_TABLES_CFFT_Q15_4096
  272. select CMSIS_DSP_TABLES_RFFT_FAST_F64_32
  273. select CMSIS_DSP_TABLES_RFFT_FAST_F64_64
  274. select CMSIS_DSP_TABLES_RFFT_FAST_F64_128
  275. select CMSIS_DSP_TABLES_RFFT_FAST_F64_256
  276. select CMSIS_DSP_TABLES_RFFT_FAST_F64_512
  277. select CMSIS_DSP_TABLES_RFFT_FAST_F64_1024
  278. select CMSIS_DSP_TABLES_RFFT_FAST_F64_2048
  279. select CMSIS_DSP_TABLES_RFFT_FAST_F64_4096
  280. select CMSIS_DSP_TABLES_RFFT_FAST_F32_32
  281. select CMSIS_DSP_TABLES_RFFT_FAST_F32_64
  282. select CMSIS_DSP_TABLES_RFFT_FAST_F32_128
  283. select CMSIS_DSP_TABLES_RFFT_FAST_F32_256
  284. select CMSIS_DSP_TABLES_RFFT_FAST_F32_512
  285. select CMSIS_DSP_TABLES_RFFT_FAST_F32_1024
  286. select CMSIS_DSP_TABLES_RFFT_FAST_F32_2048
  287. select CMSIS_DSP_TABLES_RFFT_FAST_F32_4096
  288. select CMSIS_DSP_TABLES_RFFT_FAST_F16_32
  289. select CMSIS_DSP_TABLES_RFFT_FAST_F16_64
  290. select CMSIS_DSP_TABLES_RFFT_FAST_F16_128
  291. select CMSIS_DSP_TABLES_RFFT_FAST_F16_256
  292. select CMSIS_DSP_TABLES_RFFT_FAST_F16_512
  293. select CMSIS_DSP_TABLES_RFFT_FAST_F16_1024
  294. select CMSIS_DSP_TABLES_RFFT_FAST_F16_2048
  295. select CMSIS_DSP_TABLES_RFFT_FAST_F16_4096
  296. select CMSIS_DSP_TABLES_RFFT_F32_128
  297. select CMSIS_DSP_TABLES_RFFT_F32_512
  298. select CMSIS_DSP_TABLES_RFFT_F32_2048
  299. select CMSIS_DSP_TABLES_RFFT_F32_8192
  300. select CMSIS_DSP_TABLES_RFFT_F16_128
  301. select CMSIS_DSP_TABLES_RFFT_F16_512
  302. select CMSIS_DSP_TABLES_RFFT_F16_2048
  303. select CMSIS_DSP_TABLES_RFFT_F16_8192
  304. select CMSIS_DSP_TABLES_RFFT_Q31_32
  305. select CMSIS_DSP_TABLES_RFFT_Q31_64
  306. select CMSIS_DSP_TABLES_RFFT_Q31_128
  307. select CMSIS_DSP_TABLES_RFFT_Q31_256
  308. select CMSIS_DSP_TABLES_RFFT_Q31_512
  309. select CMSIS_DSP_TABLES_RFFT_Q31_1024
  310. select CMSIS_DSP_TABLES_RFFT_Q31_2048
  311. select CMSIS_DSP_TABLES_RFFT_Q31_4096
  312. select CMSIS_DSP_TABLES_RFFT_Q31_8192
  313. select CMSIS_DSP_TABLES_RFFT_Q15_32
  314. select CMSIS_DSP_TABLES_RFFT_Q15_64
  315. select CMSIS_DSP_TABLES_RFFT_Q15_128
  316. select CMSIS_DSP_TABLES_RFFT_Q15_256
  317. select CMSIS_DSP_TABLES_RFFT_Q15_512
  318. select CMSIS_DSP_TABLES_RFFT_Q15_1024
  319. select CMSIS_DSP_TABLES_RFFT_Q15_2048
  320. select CMSIS_DSP_TABLES_RFFT_Q15_4096
  321. select CMSIS_DSP_TABLES_RFFT_Q15_8192
  322. select CMSIS_DSP_TABLES_DCT4_F32_128
  323. select CMSIS_DSP_TABLES_DCT4_F32_512
  324. select CMSIS_DSP_TABLES_DCT4_F32_2048
  325. select CMSIS_DSP_TABLES_DCT4_F32_8192
  326. select CMSIS_DSP_TABLES_DCT4_Q31_128
  327. select CMSIS_DSP_TABLES_DCT4_Q31_512
  328. select CMSIS_DSP_TABLES_DCT4_Q31_2048
  329. select CMSIS_DSP_TABLES_DCT4_Q31_8192
  330. select CMSIS_DSP_TABLES_DCT4_Q15_128
  331. select CMSIS_DSP_TABLES_DCT4_Q15_512
  332. select CMSIS_DSP_TABLES_DCT4_Q15_2048
  333. select CMSIS_DSP_TABLES_DCT4_Q15_8192
  334. comment "Interpolation Tables"
  335. config CMSIS_DSP_TABLES_ARM_COS_F32
  336. bool "cos f32"
  337. config CMSIS_DSP_TABLES_ARM_COS_Q31
  338. bool "cos q31"
  339. config CMSIS_DSP_TABLES_ARM_COS_Q15
  340. bool "cos q15"
  341. config CMSIS_DSP_TABLES_ARM_SIN_F32
  342. bool "sin f32"
  343. config CMSIS_DSP_TABLES_ARM_SIN_Q31
  344. bool "sin q31"
  345. config CMSIS_DSP_TABLES_ARM_SIN_Q15
  346. bool "sin q15"
  347. config CMSIS_DSP_TABLES_ARM_SIN_COS_F32
  348. bool "sin cos f32"
  349. config CMSIS_DSP_TABLES_ARM_SIN_COS_Q31
  350. bool "sin cos q31"
  351. config CMSIS_DSP_TABLES_ARM_LMS_NORM_Q31
  352. bool "lms norm q31"
  353. config CMSIS_DSP_TABLES_ARM_LMS_NORM_Q15
  354. bool "lms norm q15"
  355. config CMSIS_DSP_TABLES_ARM_CMPLX_MAG_Q31
  356. bool "cmplx mag q31"
  357. config CMSIS_DSP_TABLES_ARM_CMPLX_MAG_Q15
  358. bool "cmplx mag q15"
  359. comment "Transformation Tables"
  360. config CMSIS_DSP_TABLES_CFFT_F64_16
  361. bool "cfft f64 16"
  362. config CMSIS_DSP_TABLES_CFFT_F64_32
  363. bool "cfft f64 32"
  364. config CMSIS_DSP_TABLES_CFFT_F64_64
  365. bool "cfft f64 64"
  366. config CMSIS_DSP_TABLES_CFFT_F64_128
  367. bool "cfft f64 128"
  368. config CMSIS_DSP_TABLES_CFFT_F64_256
  369. bool "cfft f64 256"
  370. config CMSIS_DSP_TABLES_CFFT_F64_512
  371. bool "cfft f64 512"
  372. config CMSIS_DSP_TABLES_CFFT_F64_1024
  373. bool "cfft f64 1024"
  374. config CMSIS_DSP_TABLES_CFFT_F64_2048
  375. bool "cfft f64 2048"
  376. config CMSIS_DSP_TABLES_CFFT_F64_4096
  377. bool "cfft f64 4096"
  378. config CMSIS_DSP_TABLES_CFFT_F32_16
  379. bool "cfft f32 16"
  380. config CMSIS_DSP_TABLES_CFFT_F32_32
  381. bool "cfft f32 32"
  382. config CMSIS_DSP_TABLES_CFFT_F32_64
  383. bool "cfft f32 64"
  384. config CMSIS_DSP_TABLES_CFFT_F32_128
  385. bool "cfft f32 128"
  386. config CMSIS_DSP_TABLES_CFFT_F32_256
  387. bool "cfft f32 256"
  388. config CMSIS_DSP_TABLES_CFFT_F32_512
  389. bool "cfft f32 512"
  390. config CMSIS_DSP_TABLES_CFFT_F32_1024
  391. bool "cfft f32 1024"
  392. config CMSIS_DSP_TABLES_CFFT_F32_2048
  393. bool "cfft f32 2048"
  394. config CMSIS_DSP_TABLES_CFFT_F32_4096
  395. bool "cfft f32 4096"
  396. config CMSIS_DSP_TABLES_CFFT_F16_16
  397. bool "cfft f16 16"
  398. config CMSIS_DSP_TABLES_CFFT_F16_32
  399. bool "cfft f16 32"
  400. config CMSIS_DSP_TABLES_CFFT_F16_64
  401. bool "cfft f16 64"
  402. config CMSIS_DSP_TABLES_CFFT_F16_128
  403. bool "cfft f16 128"
  404. config CMSIS_DSP_TABLES_CFFT_F16_256
  405. bool "cfft f16 256"
  406. config CMSIS_DSP_TABLES_CFFT_F16_512
  407. bool "cfft f16 512"
  408. config CMSIS_DSP_TABLES_CFFT_F16_1024
  409. bool "cfft f16 1024"
  410. config CMSIS_DSP_TABLES_CFFT_F16_2048
  411. bool "cfft f16 2048"
  412. config CMSIS_DSP_TABLES_CFFT_F16_4096
  413. bool "cfft f16 4096"
  414. config CMSIS_DSP_TABLES_CFFT_Q31_16
  415. bool "cfft q31 16"
  416. config CMSIS_DSP_TABLES_CFFT_Q31_32
  417. bool "cfft q31 32"
  418. config CMSIS_DSP_TABLES_CFFT_Q31_64
  419. bool "cfft q31 64"
  420. config CMSIS_DSP_TABLES_CFFT_Q31_128
  421. bool "cfft q31 128"
  422. config CMSIS_DSP_TABLES_CFFT_Q31_256
  423. bool "cfft q31 256"
  424. config CMSIS_DSP_TABLES_CFFT_Q31_512
  425. bool "cfft q31 512"
  426. config CMSIS_DSP_TABLES_CFFT_Q31_1024
  427. bool "cfft q31 1024"
  428. config CMSIS_DSP_TABLES_CFFT_Q31_2048
  429. bool "cfft q31 2048"
  430. config CMSIS_DSP_TABLES_CFFT_Q31_4096
  431. bool "cfft q31 4096"
  432. config CMSIS_DSP_TABLES_CFFT_Q15_16
  433. bool "cfft q15 16"
  434. config CMSIS_DSP_TABLES_CFFT_Q15_32
  435. bool "cfft q15 32"
  436. config CMSIS_DSP_TABLES_CFFT_Q15_64
  437. bool "cfft q15 64"
  438. config CMSIS_DSP_TABLES_CFFT_Q15_128
  439. bool "cfft q15 128"
  440. config CMSIS_DSP_TABLES_CFFT_Q15_256
  441. bool "cfft q15 256"
  442. config CMSIS_DSP_TABLES_CFFT_Q15_512
  443. bool "cfft q15 512"
  444. config CMSIS_DSP_TABLES_CFFT_Q15_1024
  445. bool "cfft q15 1024"
  446. config CMSIS_DSP_TABLES_CFFT_Q15_2048
  447. bool "cfft q15 2048"
  448. config CMSIS_DSP_TABLES_CFFT_Q15_4096
  449. bool "cfft q15 4096"
  450. config CMSIS_DSP_TABLES_CFFT_RADIX4_Q31
  451. bool "cfft radix4 q31 (deprecated)"
  452. config CMSIS_DSP_TABLES_CFFT_RADIX4_Q15
  453. bool "cfft radix4 q15 (deprecated)"
  454. config CMSIS_DSP_TABLES_CFFT_RADIX2_Q31
  455. bool "cfft radix2 q31 (deprecated)"
  456. config CMSIS_DSP_TABLES_CFFT_RADIX2_Q15
  457. bool "cfft radix2 q15 (deprecated)"
  458. config CMSIS_DSP_TABLES_RFFT_FAST_F64_32
  459. bool "rfft fast f64 32"
  460. config CMSIS_DSP_TABLES_RFFT_FAST_F64_64
  461. bool "rfft fast f64 64"
  462. config CMSIS_DSP_TABLES_RFFT_FAST_F64_128
  463. bool "rfft fast f64 128"
  464. config CMSIS_DSP_TABLES_RFFT_FAST_F64_256
  465. bool "rfft fast f64 256"
  466. config CMSIS_DSP_TABLES_RFFT_FAST_F64_512
  467. bool "rfft fast f64 512"
  468. config CMSIS_DSP_TABLES_RFFT_FAST_F64_1024
  469. bool "rfft fast f64 1024"
  470. config CMSIS_DSP_TABLES_RFFT_FAST_F64_2048
  471. bool "rfft fast f64 2048"
  472. config CMSIS_DSP_TABLES_RFFT_FAST_F64_4096
  473. bool "rfft fast f64 4096"
  474. config CMSIS_DSP_TABLES_RFFT_FAST_F32_32
  475. bool "rfft fast f32 32"
  476. config CMSIS_DSP_TABLES_RFFT_FAST_F32_64
  477. bool "rfft fast f32 64"
  478. config CMSIS_DSP_TABLES_RFFT_FAST_F32_128
  479. bool "rfft fast f32 128"
  480. config CMSIS_DSP_TABLES_RFFT_FAST_F32_256
  481. bool "rfft fast f32 256"
  482. config CMSIS_DSP_TABLES_RFFT_FAST_F32_512
  483. bool "rfft fast f32 512"
  484. config CMSIS_DSP_TABLES_RFFT_FAST_F32_1024
  485. bool "rfft fast f32 1024"
  486. config CMSIS_DSP_TABLES_RFFT_FAST_F32_2048
  487. bool "rfft fast f32 2048"
  488. config CMSIS_DSP_TABLES_RFFT_FAST_F32_4096
  489. bool "rfft fast f32 4096"
  490. config CMSIS_DSP_TABLES_RFFT_FAST_F16_32
  491. bool "rfft fast f16 32"
  492. config CMSIS_DSP_TABLES_RFFT_FAST_F16_64
  493. bool "rfft fast f16 64"
  494. config CMSIS_DSP_TABLES_RFFT_FAST_F16_128
  495. bool "rfft fast f16 128"
  496. config CMSIS_DSP_TABLES_RFFT_FAST_F16_256
  497. bool "rfft fast f16 256"
  498. config CMSIS_DSP_TABLES_RFFT_FAST_F16_512
  499. bool "rfft fast f16 512"
  500. config CMSIS_DSP_TABLES_RFFT_FAST_F16_1024
  501. bool "rfft fast f16 1024"
  502. config CMSIS_DSP_TABLES_RFFT_FAST_F16_2048
  503. bool "rfft fast f16 2048"
  504. config CMSIS_DSP_TABLES_RFFT_FAST_F16_4096
  505. bool "rfft fast f16 4096"
  506. config CMSIS_DSP_TABLES_RFFT_F32_128
  507. bool "rfft f32 128"
  508. config CMSIS_DSP_TABLES_RFFT_F32_512
  509. bool "rfft f32 512"
  510. config CMSIS_DSP_TABLES_RFFT_F32_2048
  511. bool "rfft f32 2048"
  512. config CMSIS_DSP_TABLES_RFFT_F32_8192
  513. bool "rfft f32 8192"
  514. config CMSIS_DSP_TABLES_RFFT_F16_128
  515. bool "rfft f16 128"
  516. config CMSIS_DSP_TABLES_RFFT_F16_512
  517. bool "rfft f16 512"
  518. config CMSIS_DSP_TABLES_RFFT_F16_2048
  519. bool "rfft f16 2048"
  520. config CMSIS_DSP_TABLES_RFFT_F16_8192
  521. bool "rfft f16 8192"
  522. config CMSIS_DSP_TABLES_RFFT_Q31_32
  523. bool "rfft q31 32"
  524. config CMSIS_DSP_TABLES_RFFT_Q31_64
  525. bool "rfft q31 64"
  526. config CMSIS_DSP_TABLES_RFFT_Q31_128
  527. bool "rfft q31 128"
  528. config CMSIS_DSP_TABLES_RFFT_Q31_256
  529. bool "rfft q31 256"
  530. config CMSIS_DSP_TABLES_RFFT_Q31_512
  531. bool "rfft q31 512"
  532. config CMSIS_DSP_TABLES_RFFT_Q31_1024
  533. bool "rfft q31 1024"
  534. config CMSIS_DSP_TABLES_RFFT_Q31_2048
  535. bool "rfft q31 2048"
  536. config CMSIS_DSP_TABLES_RFFT_Q31_4096
  537. bool "rfft q31 4096"
  538. config CMSIS_DSP_TABLES_RFFT_Q31_8192
  539. bool "rfft q31 8192"
  540. config CMSIS_DSP_TABLES_RFFT_Q15_32
  541. bool "rfft q15 32"
  542. config CMSIS_DSP_TABLES_RFFT_Q15_64
  543. bool "rfft q15 64"
  544. config CMSIS_DSP_TABLES_RFFT_Q15_128
  545. bool "rfft q15 128"
  546. config CMSIS_DSP_TABLES_RFFT_Q15_256
  547. bool "rfft q15 256"
  548. config CMSIS_DSP_TABLES_RFFT_Q15_512
  549. bool "rfft q15 512"
  550. config CMSIS_DSP_TABLES_RFFT_Q15_1024
  551. bool "rfft q15 1024"
  552. config CMSIS_DSP_TABLES_RFFT_Q15_2048
  553. bool "rfft q15 2048"
  554. config CMSIS_DSP_TABLES_RFFT_Q15_4096
  555. bool "rfft q15 4096"
  556. config CMSIS_DSP_TABLES_RFFT_Q15_8192
  557. bool "rfft q15 8192"
  558. config CMSIS_DSP_TABLES_DCT4_F32_128
  559. bool "dct4 f32 128"
  560. config CMSIS_DSP_TABLES_DCT4_F32_512
  561. bool "dct4 f32 512"
  562. config CMSIS_DSP_TABLES_DCT4_F32_2048
  563. bool "dct4 f32 2048"
  564. config CMSIS_DSP_TABLES_DCT4_F32_8192
  565. bool "dct4 f32 8192"
  566. config CMSIS_DSP_TABLES_DCT4_Q31_128
  567. bool "dct4 q31 128"
  568. config CMSIS_DSP_TABLES_DCT4_Q31_512
  569. bool "dct4 q31 512"
  570. config CMSIS_DSP_TABLES_DCT4_Q31_2048
  571. bool "dct4 q31 2048"
  572. config CMSIS_DSP_TABLES_DCT4_Q31_8192
  573. bool "dct4 q31 8192"
  574. config CMSIS_DSP_TABLES_DCT4_Q15_128
  575. bool "dct4 q15 128"
  576. config CMSIS_DSP_TABLES_DCT4_Q15_512
  577. bool "dct4 q15 512"
  578. config CMSIS_DSP_TABLES_DCT4_Q15_2048
  579. bool "dct4 q15 2048"
  580. config CMSIS_DSP_TABLES_DCT4_Q15_8192
  581. bool "dct4 q15 8192"
  582. endif # CMSIS_DSP_TABLES
  583. comment "Instruction Set"
  584. # NOTE: These configurations should eventually be derived from the arch ISA and
  585. # FP support configurations.
  586. config CMSIS_DSP_NEON
  587. bool "Neon Instruction Set"
  588. default y
  589. depends on CPU_CORTEX_A
  590. help
  591. This option enables the NEON Advanced SIMD instruction set, which is
  592. available on most Cortex-A and some Cortex-R processors.
  593. comment "Features"
  594. config CMSIS_DSP_LOOPUNROLL
  595. bool "Loop Unrolling"
  596. help
  597. This option enables manual loop unrolling in the DSP functions.
  598. config CMSIS_DSP_ROUNDING
  599. bool "Rounding"
  600. help
  601. This option enables rounding on the support functions.
  602. config CMSIS_DSP_MATRIXCHECK
  603. bool "Matrix Check"
  604. help
  605. This option enables validation of the input and output sizes of
  606. matrices.
  607. config CMSIS_DSP_AUTOVECTORIZE
  608. bool "Auto Vectorize"
  609. help
  610. This option prefers autovectorizable code to one using C intrinsics
  611. in the DSP functions.
  612. config CMSIS_DSP_FLOAT16
  613. bool "Half-Precision (16-bit Float) Support"
  614. default y
  615. depends on FP16
  616. help
  617. This option enables the half-precision (16-bit) floating-point
  618. operations support.