forked from pulp-platform/pulp-dsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
793 lines (784 loc) · 62.9 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
FC_SRCS = \
src/StatisticsFunctions/plp_mean_f32.c \
src/StatisticsFunctions/plp_mean_i32.c src/StatisticsFunctions/kernels/plp_mean_i32s_rv32im.c \
src/StatisticsFunctions/plp_mean_i16.c src/StatisticsFunctions/kernels/plp_mean_i16s_rv32im.c \
src/StatisticsFunctions/plp_mean_i8.c src/StatisticsFunctions/kernels/plp_mean_i8s_rv32im.c \
src/StatisticsFunctions/plp_max_f32.c \
src/StatisticsFunctions/plp_max_i32.c src/StatisticsFunctions/kernels/plp_max_i32s_rv32im.c \
src/StatisticsFunctions/plp_max_i16.c src/StatisticsFunctions/kernels/plp_max_i16s_rv32im.c \
src/StatisticsFunctions/plp_max_i8.c src/StatisticsFunctions/kernels/plp_max_i8s_rv32im.c \
src/StatisticsFunctions/plp_min_f32.c \
src/StatisticsFunctions/plp_min_i32.c src/StatisticsFunctions/kernels/plp_min_i32s_rv32im.c \
src/StatisticsFunctions/plp_min_i16.c src/StatisticsFunctions/kernels/plp_min_i16s_rv32im.c \
src/StatisticsFunctions/plp_min_i8.c src/StatisticsFunctions/kernels/plp_min_i8s_rv32im.c \
src/StatisticsFunctions/plp_power_f32.c \
src/StatisticsFunctions/plp_power_i32.c src/StatisticsFunctions/kernels/plp_power_i32s_rv32im.c \
src/StatisticsFunctions/plp_power_i16.c src/StatisticsFunctions/kernels/plp_power_i16s_rv32im.c \
src/StatisticsFunctions/plp_power_i8.c src/StatisticsFunctions/kernels/plp_power_i8s_rv32im.c \
src/StatisticsFunctions/plp_power_q32.c src/StatisticsFunctions/kernels/plp_power_q32s_rv32im.c \
src/StatisticsFunctions/plp_power_q16.c src/StatisticsFunctions/kernels/plp_power_q16s_rv32im.c \
src/StatisticsFunctions/plp_power_q8.c src/StatisticsFunctions/kernels/plp_power_q8s_rv32im.c \
src/FastMathFunctions/plp_sqrt_f32.c \
src/FastMathFunctions/plp_sqrt_q32.c src/FastMathFunctions/kernels/plp_sqrt_q32s_rv32im.c \
src/FastMathFunctions/plp_sqrt_q16.c src/FastMathFunctions/kernels/plp_sqrt_q16s_rv32im.c \
src/FastMathFunctions/plp_sin_f32.c \
src/FastMathFunctions/plp_sin_q32.c src/FastMathFunctions/kernels/plp_sin_q32s_rv32im.c \
src/FastMathFunctions/plp_sin_q16.c src/FastMathFunctions/kernels/plp_sin_q16s_rv32im.c \
src/FastMathFunctions/plp_cos_f32.c \
src/FastMathFunctions/plp_cos_q32.c src/FastMathFunctions/kernels/plp_cos_q32s_rv32im.c \
src/FastMathFunctions/plp_cos_q16.c src/FastMathFunctions/kernels/plp_cos_q16s_rv32im.c \
src/StatisticsFunctions/plp_var_f32.c \
src/StatisticsFunctions/plp_var_q32.c src/StatisticsFunctions/kernels/plp_var_q32s_rv32im.c \
src/StatisticsFunctions/plp_var_q16.c src/StatisticsFunctions/kernels/plp_var_q16s_rv32im.c \
src/StatisticsFunctions/plp_var_q8.c src/StatisticsFunctions/kernels/plp_var_q8s_rv32im.c \
src/StatisticsFunctions/plp_std_f32.c \
src/StatisticsFunctions/plp_std_q32.c src/StatisticsFunctions/kernels/plp_std_q32s_rv32im.c \
src/StatisticsFunctions/plp_std_q16.c src/StatisticsFunctions/kernels/plp_std_q16s_rv32im.c \
src/StatisticsFunctions/plp_std_q8.c src/StatisticsFunctions/kernels/plp_std_q8s_rv32im.c \
src/BasicMathFunctions/dot_prod/plp_dot_prod_f32_parallel.c \
src/BasicMathFunctions/dot_prod/plp_dot_prod_q32_parallel.c \
src/BasicMathFunctions/dot_prod/plp_dot_prod_i32_parallel.c \
src/StatisticsFunctions/plp_rms_f32.c \
src/StatisticsFunctions/plp_rms_q32.c src/StatisticsFunctions/kernels/plp_rms_q32s_rv32im.c \
src/StatisticsFunctions/plp_rms_q16.c src/StatisticsFunctions/kernels/plp_rms_q16s_rv32im.c \
src/StatisticsFunctions/plp_rms_q8.c src/StatisticsFunctions/kernels/plp_rms_q8s_rv32im.c \
src/SupportFunctions/plp_copy_i32.c src/SupportFunctions/kernels/plp_copy_i32s_rv32im.c \
src/SupportFunctions/plp_copy_f32.c src/SupportFunctions/kernels/plp_copy_f32s_rv32im.c \
src/SupportFunctions/plp_fill_i32.c src/SupportFunctions/kernels/plp_fill_i32s_rv32im.c \
src/BasicMathFunctions/dot_prod/plp_dot_prod_f32.c src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_f32s_rv32im.c \
src/BasicMathFunctions/dot_prod/plp_dot_prod_q8.c src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_q8s_rv32im.c \
src/BasicMathFunctions/dot_prod/plp_dot_prod_q16.c src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_q16s_rv32im.c \
src/BasicMathFunctions/dot_prod/plp_dot_prod_q32.c src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_q32s_rv32im.c \
src/BasicMathFunctions/dot_prod/plp_dot_prod_i8.c src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_i8s_rv32im.c \
src/BasicMathFunctions/dot_prod/plp_dot_prod_i16.c src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_i16s_rv32im.c \
src/BasicMathFunctions/dot_prod/plp_dot_prod_i32.c src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_i32s_rv32im.c \
src/BasicMathFunctions/abs/plp_abs_i32.c src/BasicMathFunctions/abs/kernels/plp_abs_i32s_rv32im.c \
src/BasicMathFunctions/abs/plp_abs_i16.c src/BasicMathFunctions/abs/kernels/plp_abs_i16s_rv32im.c \
src/BasicMathFunctions/abs/plp_abs_i8.c src/BasicMathFunctions/abs/kernels/plp_abs_i8s_rv32im.c \
src/BasicMathFunctions/add/plp_add_i32.c src/BasicMathFunctions/add/kernels/plp_add_i32s_rv32im.c \
src/BasicMathFunctions/add/plp_add_i16.c src/BasicMathFunctions/add/kernels/plp_add_i16s_rv32im.c \
src/BasicMathFunctions/add/plp_add_i8.c src/BasicMathFunctions/add/kernels/plp_add_i8s_rv32im.c \
src/BasicMathFunctions/mult/plp_mult_i32.c src/BasicMathFunctions/mult/kernels/plp_mult_i32s_rv32im.c \
src/BasicMathFunctions/mult/plp_mult_i16.c src/BasicMathFunctions/mult/kernels/plp_mult_i16s_rv32im.c \
src/BasicMathFunctions/mult/plp_mult_i8.c src/BasicMathFunctions/mult/kernels/plp_mult_i8s_rv32im.c \
src/BasicMathFunctions/mult/plp_mult_f32.c \
src/BasicMathFunctions/mult/plp_mult_f32_parallel.c \
src/BasicMathFunctions/log/plp_log_f32_parallel.c \
src/BasicMathFunctions/negate/plp_negate_f32.c \
src/BasicMathFunctions/negate/plp_negate_i32.c src/BasicMathFunctions/negate/kernels/plp_negate_i32s_rv32im.c \
src/BasicMathFunctions/negate/plp_negate_i16.c src/BasicMathFunctions/negate/kernels/plp_negate_i16s_rv32im.c \
src/BasicMathFunctions/negate/plp_negate_i8.c src/BasicMathFunctions/negate/kernels/plp_negate_i8s_rv32im.c \
src/BasicMathFunctions/offset/plp_offset_f32.c \
src/BasicMathFunctions/offset/plp_offset_i32.c src/BasicMathFunctions/offset/kernels/plp_offset_i32s_rv32im.c \
src/BasicMathFunctions/offset/plp_offset_i16.c src/BasicMathFunctions/offset/kernels/plp_offset_i16s_rv32im.c \
src/BasicMathFunctions/offset/plp_offset_i8.c src/BasicMathFunctions/offset/kernels/plp_offset_i8s_rv32im.c \
src/BasicMathFunctions/sub/plp_sub_f32.c \
src/BasicMathFunctions/sub/plp_sub_i32.c src/BasicMathFunctions/sub/kernels/plp_sub_i32s_rv32im.c \
src/BasicMathFunctions/sub/plp_sub_i16.c src/BasicMathFunctions/sub/kernels/plp_sub_i16s_rv32im.c \
src/BasicMathFunctions/sub/plp_sub_i8.c src/BasicMathFunctions/sub/kernels/plp_sub_i8s_rv32im.c \
src/BasicMathFunctions/scale/plp_scale_f32.c \
src/BasicMathFunctions/scale/plp_scale_i32.c src/BasicMathFunctions/scale/kernels/plp_scale_i32s_rv32im.c \
src/BasicMathFunctions/scale/plp_scale_i16.c src/BasicMathFunctions/scale/kernels/plp_scale_i16s_rv32im.c \
src/BasicMathFunctions/scale/plp_scale_i8.c src/BasicMathFunctions/scale/kernels/plp_scale_i8s_rv32im.c \
src/FilteringFunctions/plp_correlate_i32.c src/FilteringFunctions/kernels/plp_correlate_i32s_rv32im.c \
src/FilteringFunctions/plp_correlate_i16.c src/FilteringFunctions/kernels/plp_correlate_i16s_rv32im.c \
src/FilteringFunctions/plp_correlate_i8.c src/FilteringFunctions/kernels/plp_correlate_i8s_rv32im.c \
src/FilteringFunctions/plp_correlate_q8.c src/FilteringFunctions/kernels/plp_correlate_q8s_rv32im.c \
src/FilteringFunctions/plp_correlate_q16.c src/FilteringFunctions/kernels/plp_correlate_q16s_rv32im.c \
src/FilteringFunctions/plp_correlate_q32.c src/FilteringFunctions/kernels/plp_correlate_q32s_rv32im.c \
src/FilteringFunctions/plp_conv_i32.c src/FilteringFunctions/kernels/plp_conv_i32s_rv32im.c \
src/FilteringFunctions/plp_conv_i16.c src/FilteringFunctions/kernels/plp_conv_i16s_rv32im.c \
src/FilteringFunctions/plp_conv_i8.c src/FilteringFunctions/kernels/plp_conv_i8s_rv32im.c \
src/FilteringFunctions/plp_conv_valid_i32.c \
src/FilteringFunctions/plp_conv_valid_i16.c \
src/FilteringFunctions/plp_conv_valid_i8.c \
src/FilteringFunctions/plp_conv_valid_rep_i16.c \
src/FilteringFunctions/plp_conv_valid_rep_i8.c \
src/FilteringFunctions/plp_conv_i32_parallel.c \
src/FilteringFunctions/plp_conv_i16_parallel.c \
src/FilteringFunctions/plp_conv_i8_parallel.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_i32.c src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_i32s_rv32im.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_i16.c src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_i16s_rv32im.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_i8.c src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_i8s_rv32im.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_q32.c src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_q32s_rv32im.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_q16.c src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_q16s_rv32im.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_q8.c src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_q8s_rv32im.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_i32_parallel.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_i16_parallel.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_i8_parallel.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_q32_parallel.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_q16_parallel.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_q8_parallel.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_f32.c \
src/MatrixFunctions/mat_mult/plp_mat_mult_f32_parallel.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_i32.c src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_i32s_rv32im.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_i16.c src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_i16s_rv32im.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_i8.c src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_i8s_rv32im.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_q32.c src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_q32s_rv32im.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_q16.c src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_q16s_rv32im.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_q8.c src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_q8s_rv32im.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_i32_parallel.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_i16_parallel.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_i8_parallel.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_q32_parallel.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_q16_parallel.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_q8_parallel.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_f32.c \
src/MatrixFunctions/mat_mult_cmplx/plp_mat_mult_cmplx_f32_parallel.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_i32.c src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_i32s_rv32im.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_i16.c src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_i16s_rv32im.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_i8.c src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_i8s_rv32im.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_i32_parallel.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_i16_parallel.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_i8_parallel.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_q32.c src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_q32s_rv32im.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_q16.c src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_q16s_rv32im.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_q8.c src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_q8s_rv32im.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_q32_parallel.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_q16_parallel.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_q8_parallel.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_f32.c \
src/MatrixFunctions/mat_mult_trans/plp_mat_mult_trans_f32_parallel.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_i32.c src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_i32s_rv32im.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_i16.c src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_i16s_rv32im.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_i8.c src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_i8s_rv32im.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_q32.c src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_q32s_rv32im.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_q16.c src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_q16s_rv32im.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_q8.c src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_q8s_rv32im.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_i32_parallel.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_i16_parallel.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_i8_parallel.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_q32_parallel.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_q16_parallel.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_q8_parallel.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_f32.c \
src/MatrixFunctions/mat_mult_trans_cmplx/plp_mat_mult_trans_cmplx_f32_parallel.c \
src/TransformFunctions/kernels/plp_bitreversal_rv32im.c \
src/TransformFunctions/plp_cfft_q16.c src/TransformFunctions/kernels/plp_cfft_q16s_rv32im.c \
src/TransformFunctions/plp_cfft_q16_parallel.c \
src/TransformFunctions/plp_cfft_q32.c src/TransformFunctions/kernels/plp_cfft_q32s_rv32im.c \
src/TransformFunctions/plp_rfft_f32.c \
src/TransformFunctions/plp_rfft_f32_parallel.c \
src/TransformFunctions/plp_cfft_f32.c \
src/TransformFunctions/plp_cfft_f32_parallel.c \
src/TransformFunctions/plp_dct2_f32.c \
src/TransformFunctions/plp_dct2_f32_parallel.c \
src/TransformFunctions/plp_mfcc_f32.c \
src/TransformFunctions/plp_mfcc_f32_parallel.c \
src/CommonTables/plp_common_tables.c \
src/CommonTables/plp_const_structs.c \
src/MatrixFunctions/mat_add/plp_mat_add_i32.c src/MatrixFunctions/mat_add/kernels/plp_mat_add_i32s_rv32im.c \
src/MatrixFunctions/mat_add/plp_mat_add_i16.c src/MatrixFunctions/mat_add/kernels/plp_mat_add_i16s_rv32im.c \
src/MatrixFunctions/mat_add/plp_mat_add_i8.c src/MatrixFunctions/mat_add/kernels/plp_mat_add_i8s_rv32im.c \
src/MatrixFunctions/mat_add/plp_mat_add_f32.c \
src/MatrixFunctions/mat_add/plp_mat_add_i32_parallel.c \
src/MatrixFunctions/mat_add/plp_mat_add_i16_parallel.c \
src/MatrixFunctions/mat_add/plp_mat_add_i8_parallel.c \
src/MatrixFunctions/mat_add/plp_mat_add_f32_parallel.c \
src/MatrixFunctions/mat_sub/plp_mat_sub_i32.c src/MatrixFunctions/mat_sub/kernels/plp_mat_sub_i32s_rv32im.c \
src/MatrixFunctions/mat_sub/plp_mat_sub_i16.c src/MatrixFunctions/mat_sub/kernels/plp_mat_sub_i16s_rv32im.c \
src/MatrixFunctions/mat_sub/plp_mat_sub_i8.c src/MatrixFunctions/mat_sub/kernels/plp_mat_sub_i8s_rv32im.c \
src/MatrixFunctions/mat_sub/plp_mat_sub_f32.c \
src/MatrixFunctions/mat_sub/plp_mat_sub_i32_parallel.c \
src/MatrixFunctions/mat_sub/plp_mat_sub_i16_parallel.c \
src/MatrixFunctions/mat_sub/plp_mat_sub_i8_parallel.c \
src/MatrixFunctions/mat_sub/plp_mat_sub_f32_parallel.c \
src/MatrixFunctions/mat_scale/plp_mat_scale_i32.c src/MatrixFunctions/mat_scale/kernels/plp_mat_scale_i32s_rv32im.c \
src/MatrixFunctions/mat_scale/plp_mat_scale_i16.c src/MatrixFunctions/mat_scale/kernels/plp_mat_scale_i16s_rv32im.c \
src/MatrixFunctions/mat_scale/plp_mat_scale_i8.c src/MatrixFunctions/mat_scale/kernels/plp_mat_scale_i8s_rv32im.c \
src/MatrixFunctions/mat_scale/plp_mat_scale_f32.c \
src/MatrixFunctions/mat_scale/plp_mat_scale_i32_parallel.c \
src/MatrixFunctions/mat_scale/plp_mat_scale_i16_parallel.c \
src/MatrixFunctions/mat_scale/plp_mat_scale_i8_parallel.c \
src/MatrixFunctions/mat_scale/plp_mat_scale_f32_parallel.c \
src/MatrixFunctions/mat_trans/plp_mat_trans_i32.c src/MatrixFunctions/mat_trans/kernels/plp_mat_trans_i32s_rv32im.c \
src/MatrixFunctions/mat_trans/plp_mat_trans_i16.c src/MatrixFunctions/mat_trans/kernels/plp_mat_trans_i16s_rv32im.c \
src/MatrixFunctions/mat_trans/plp_mat_trans_i8.c src/MatrixFunctions/mat_trans/kernels/plp_mat_trans_i8s_rv32im.c \
src/MatrixFunctions/mat_trans/plp_mat_trans_f32.c \
src/MatrixFunctions/mat_trans/plp_mat_trans_i32_parallel.c \
src/MatrixFunctions/mat_trans/plp_mat_trans_i16_parallel.c \
src/MatrixFunctions/mat_trans/plp_mat_trans_i8_parallel.c \
src/MatrixFunctions/mat_trans/plp_mat_trans_f32_parallel.c \
src/MatrixFunctions/mat_inv/plp_mat_inv_f32.c \
src/MatrixFunctions/mat_inv/plp_mat_inv_f32_parallel.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_i32.c src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_i32s_rv32im.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_i16.c src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_i16s_rv32im.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_i8.c src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_i8s_rv32im.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_q32.c src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_q32s_rv32im.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_q16.c src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_q16s_rv32im.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_q8.c src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_q8s_rv32im.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_i32_parallel.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_i16_parallel.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_i8_parallel.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_q32_parallel.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_q16_parallel.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_q8_parallel.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_f32.c \
src/MatrixFunctions/mat_fill_I/plp_mat_fill_I_f32_parallel.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_i32.c src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_i32s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_i16.c src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_i16s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_i8.c src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_i8s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_q32.c src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_q32s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_q16.c src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_q16s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_q8.c src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_q8s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_i32_parallel.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_i16_parallel.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_i8_parallel.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_q32_parallel.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_q16_parallel.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_q8_parallel.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_f32.c \
src/MatrixFunctionsStride/mat_mult_stride/plp_mat_mult_stride_f32_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_i32.c src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_i32s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_i16.c src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_i16s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_i8.c src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_i8s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_i32_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_i16_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_i8_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_q32.c src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_q32s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_q16.c src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_q16s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_q8.c src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_q8s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_q32_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_q16_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_q8_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_f32.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/plp_mat_mult_trans_stride_f32_parallel.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_i32.c src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_i32s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_i16.c src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_i16s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_i8.c src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_i8s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_q32.c src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_q32s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_q16.c src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_q16s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_q8.c src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_q8s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_i32_parallel.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_i16_parallel.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_i8_parallel.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_q32_parallel.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_q16_parallel.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_q8_parallel.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_f32.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/plp_mat_mult_cmplx_stride_f32_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_i32.c src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_i32s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_i16.c src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_i16s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_i8.c src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_i8s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_i32_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_i16_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_i8_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_q32.c src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_q32s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_q16.c src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_q16s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_q8.c src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_q8s_rv32im.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_q32_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_q16_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_q8_parallel.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_f32.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/plp_mat_mult_trans_cmplx_stride_f32_parallel.c \
src/MatrixFunctionsStride/mat_add_stride/plp_mat_add_stride_i32.c src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_i32s_rv32im.c \
src/MatrixFunctionsStride/mat_add_stride/plp_mat_add_stride_i16.c src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_i16s_rv32im.c \
src/MatrixFunctionsStride/mat_add_stride/plp_mat_add_stride_i8.c src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_i8s_rv32im.c \
src/MatrixFunctionsStride/mat_add_stride/plp_mat_add_stride_f32.c \
src/MatrixFunctionsStride/mat_add_stride/plp_mat_add_stride_i32_parallel.c \
src/MatrixFunctionsStride/mat_add_stride/plp_mat_add_stride_i16_parallel.c \
src/MatrixFunctionsStride/mat_add_stride/plp_mat_add_stride_i8_parallel.c \
src/MatrixFunctionsStride/mat_add_stride/plp_mat_add_stride_f32_parallel.c \
src/MatrixFunctionsStride/mat_sub_stride/plp_mat_sub_stride_i32.c src/MatrixFunctionsStride/mat_sub_stride/kernels/plp_mat_sub_stride_i32s_rv32im.c \
src/MatrixFunctionsStride/mat_sub_stride/plp_mat_sub_stride_i16.c src/MatrixFunctionsStride/mat_sub_stride/kernels/plp_mat_sub_stride_i16s_rv32im.c \
src/MatrixFunctionsStride/mat_sub_stride/plp_mat_sub_stride_i8.c src/MatrixFunctionsStride/mat_sub_stride/kernels/plp_mat_sub_stride_i8s_rv32im.c \
src/MatrixFunctionsStride/mat_sub_stride/plp_mat_sub_stride_f32.c \
src/MatrixFunctionsStride/mat_sub_stride/plp_mat_sub_stride_i32_parallel.c \
src/MatrixFunctionsStride/mat_sub_stride/plp_mat_sub_stride_i16_parallel.c \
src/MatrixFunctionsStride/mat_sub_stride/plp_mat_sub_stride_i8_parallel.c \
src/MatrixFunctionsStride/mat_sub_stride/plp_mat_sub_stride_f32_parallel.c \
src/MatrixFunctionsStride/mat_scale_stride/plp_mat_scale_stride_i32.c src/MatrixFunctionsStride/mat_scale_stride/kernels/plp_mat_scale_stride_i32s_rv32im.c \
src/MatrixFunctionsStride/mat_scale_stride/plp_mat_scale_stride_i16.c src/MatrixFunctionsStride/mat_scale_stride/kernels/plp_mat_scale_stride_i16s_rv32im.c \
src/MatrixFunctionsStride/mat_scale_stride/plp_mat_scale_stride_i8.c src/MatrixFunctionsStride/mat_scale_stride/kernels/plp_mat_scale_stride_i8s_rv32im.c \
src/MatrixFunctionsStride/mat_scale_stride/plp_mat_scale_stride_f32.c \
src/MatrixFunctionsStride/mat_scale_stride/plp_mat_scale_stride_i32_parallel.c \
src/MatrixFunctionsStride/mat_scale_stride/plp_mat_scale_stride_i16_parallel.c \
src/MatrixFunctionsStride/mat_scale_stride/plp_mat_scale_stride_i8_parallel.c \
src/MatrixFunctionsStride/mat_scale_stride/plp_mat_scale_stride_f32_parallel.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_i32.c src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_i32s_rv32im.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_i16.c src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_i16s_rv32im.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_i8.c src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_i8s_rv32im.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_q32.c src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_q32s_rv32im.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_q16.c src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_q16s_rv32im.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_q8.c src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_q8s_rv32im.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_i32_parallel.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_i16_parallel.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_i8_parallel.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_q32_parallel.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_q16_parallel.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_q8_parallel.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_f32.c \
src/MatrixFunctionsStride/mat_fill_I_stride/plp_mat_fill_I_stride_f32_parallel.c \
src/MatrixFunctionsStride/mat_fill_stride/plp_mat_fill_stride_i32.c src/MatrixFunctionsStride/mat_fill_stride/kernels/plp_mat_fill_stride_i32s_rv32im.c \
src/MatrixFunctionsStride/mat_fill_stride/plp_mat_fill_stride_i16.c src/MatrixFunctionsStride/mat_fill_stride/kernels/plp_mat_fill_stride_i16s_rv32im.c \
src/MatrixFunctionsStride/mat_fill_stride/plp_mat_fill_stride_i8.c src/MatrixFunctionsStride/mat_fill_stride/kernels/plp_mat_fill_stride_i8s_rv32im.c \
src/MatrixFunctionsStride/mat_fill_stride/plp_mat_fill_stride_i32_parallel.c \
src/MatrixFunctionsStride/mat_fill_stride/plp_mat_fill_stride_i16_parallel.c \
src/MatrixFunctionsStride/mat_fill_stride/plp_mat_fill_stride_i8_parallel.c \
src/MatrixFunctionsStride/mat_fill_stride/plp_mat_fill_stride_f32.c \
src/MatrixFunctionsStride/mat_fill_stride/plp_mat_fill_stride_f32_parallel.c \
src/MatrixFunctionsStride/mat_copy_stride/plp_mat_copy_stride_i32.c src/MatrixFunctionsStride/mat_copy_stride/kernels/plp_mat_copy_stride_i32s_rv32im.c \
src/MatrixFunctionsStride/mat_copy_stride/plp_mat_copy_stride_i16.c src/MatrixFunctionsStride/mat_copy_stride/kernels/plp_mat_copy_stride_i16s_rv32im.c \
src/MatrixFunctionsStride/mat_copy_stride/plp_mat_copy_stride_i8.c src/MatrixFunctionsStride/mat_copy_stride/kernels/plp_mat_copy_stride_i8s_rv32im.c \
src/MatrixFunctionsStride/mat_copy_stride/plp_mat_copy_stride_i32_parallel.c \
src/MatrixFunctionsStride/mat_copy_stride/plp_mat_copy_stride_i16_parallel.c \
src/MatrixFunctionsStride/mat_copy_stride/plp_mat_copy_stride_i8_parallel.c \
src/MatrixFunctionsStride/mat_copy_stride/plp_mat_copy_stride_f32.c \
src/MatrixFunctionsStride/mat_copy_stride/plp_mat_copy_stride_f32_parallel.c \
src/ComplexMathFunctions/plp_cmplx_mag_f32.c \
src/ComplexMathFunctions/plp_cmplx_mag_i16.c src/ComplexMathFunctions/kernels/plp_cmplx_mag_i16s_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mag_i32.c src/ComplexMathFunctions/kernels/plp_cmplx_mag_i32s_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mag_i8.c src/ComplexMathFunctions/kernels/plp_cmplx_mag_i8s_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mag_q16.c src/ComplexMathFunctions/kernels/plp_cmplx_mag_q16s_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mag_q32.c src/ComplexMathFunctions/kernels/plp_cmplx_mag_q32s_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mag_q8.c src/ComplexMathFunctions/kernels/plp_cmplx_mag_q8s_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_conj_f32.c \
src/ComplexMathFunctions/plp_cmplx_conj_i32.c \
src/ComplexMathFunctions/kernels/plp_cmplx_conj_i32_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_conj_i16.c \
src/ComplexMathFunctions/kernels/plp_cmplx_conj_i16_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_conj_i8.c \
src/ComplexMathFunctions/kernels/plp_cmplx_conj_i8_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_dot_prod_f32.c \
src/ComplexMathFunctions/plp_cmplx_dot_prod_i32.c \
src/ComplexMathFunctions/kernels/plp_cmplx_dot_prod_i32_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_dot_prod_i16.c \
src/ComplexMathFunctions/kernels/plp_cmplx_dot_prod_i16_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_dot_prod_q32.c \
src/ComplexMathFunctions/kernels/plp_cmplx_dot_prod_q32_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_dot_prod_q16.c \
src/ComplexMathFunctions/kernels/plp_cmplx_dot_prod_q16_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_dot_prod_i8.c \
src/ComplexMathFunctions/kernels/plp_cmplx_dot_prod_i8_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_real_f32.c \
src/ComplexMathFunctions/plp_cmplx_mult_real_i32.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_i32_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_real_i16.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_i16_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_real_i8.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_i8_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_real_q32.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_q32_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_real_q16.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_q16_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_real_q8.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_q8_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_cmplx_f32.c \
src/ComplexMathFunctions/plp_cmplx_mult_cmplx_i32.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_i32_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_cmplx_i16.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_i16_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_cmplx_i8.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_i8_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_cmplx_q32.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_q32_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_cmplx_q16.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_q16_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mult_cmplx_q8.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_q8_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mag_squared_f32.c \
src/ComplexMathFunctions/plp_cmplx_mag_squared_i32.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_i32_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mag_squared_i16.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_i16_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mag_squared_i8.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_i8_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mag_squared_q32.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_q32_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mag_squared_q16.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_q16_rv32im.c \
src/ComplexMathFunctions/plp_cmplx_mag_squared_q8.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_q8_rv32im.c \
CL_SRCS = \
src/StatisticsFunctions/kernels/plp_mean_f32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_mean_i32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_mean_i16s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_mean_i8s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_max_f32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_max_i32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_max_i16s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_max_i8s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_min_f32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_min_i32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_min_i16s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_min_i8s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_power_f32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_power_i32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_power_i16s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_power_i8s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_power_q32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_power_q16s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_power_q8s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_var_f32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_var_q32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_var_q16s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_var_q8s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_std_f32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_std_q32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_std_q16s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_std_q8s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_rms_f32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_rms_q32s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_rms_q16s_xpulpv2.c \
src/StatisticsFunctions/kernels/plp_rms_q8s_xpulpv2.c \
src/FastMathFunctions/kernels/plp_sqrt_f32s_xpulpv2.c \
src/FastMathFunctions/kernels/plp_sqrt_q32s_xpulpv2.c \
src/FastMathFunctions/kernels/plp_sqrt_q16s_xpulpv2.c \
src/FastMathFunctions/kernels/plp_sin_f32s_xpulpv2.c \
src/FastMathFunctions/kernels/plp_sin_q16s_xpulpv2.c \
src/FastMathFunctions/kernels/plp_sin_q32s_xpulpv2.c \
src/FastMathFunctions/kernels/plp_cos_f32s_xpulpv2.c \
src/FastMathFunctions/kernels/plp_cos_q16s_xpulpv2.c \
src/FastMathFunctions/kernels/plp_cos_q32s_xpulpv2.c \
src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_f32s_xpulpv2.c \
src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_f32p_xpulpv2.c \
src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_q32p_xpulpv2.c \
src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_i32p_xpulpv2.c \
src/BasicMathFunctions/abs/kernels/plp_abs_i32s_xpulpv2.c \
src/BasicMathFunctions/abs/kernels/plp_abs_i16s_xpulpv2.c \
src/BasicMathFunctions/abs/kernels/plp_abs_i8s_xpulpv2.c \
src/BasicMathFunctions/add/kernels/plp_add_i32s_xpulpv2.c \
src/BasicMathFunctions/add/kernels/plp_add_i16s_xpulpv2.c \
src/BasicMathFunctions/add/kernels/plp_add_i8s_xpulpv2.c \
src/BasicMathFunctions/mult/kernels/plp_mult_i32s_xpulpv2.c \
src/BasicMathFunctions/mult/kernels/plp_mult_i16s_xpulpv2.c \
src/BasicMathFunctions/mult/kernels/plp_mult_i8s_xpulpv2.c \
src/BasicMathFunctions/mult/kernels/plp_mult_f32s_xpulpv2.c \
src/BasicMathFunctions/mult/kernels/plp_mult_f32p_xpulpv2.c \
src/BasicMathFunctions/log/kernels/plp_log_f32p_xpulpv2.c \
src/BasicMathFunctions/negate/kernels/plp_negate_f32s_xpulpv2.c \
src/BasicMathFunctions/negate/kernels/plp_negate_i32s_xpulpv2.c \
src/BasicMathFunctions/negate/kernels/plp_negate_i16s_xpulpv2.c \
src/BasicMathFunctions/negate/kernels/plp_negate_i8s_xpulpv2.c \
src/BasicMathFunctions/offset/kernels/plp_offset_f32s_xpulpv2.c \
src/BasicMathFunctions/offset/kernels/plp_offset_i32s_xpulpv2.c \
src/BasicMathFunctions/offset/kernels/plp_offset_i16s_xpulpv2.c \
src/BasicMathFunctions/offset/kernels/plp_offset_i8s_xpulpv2.c \
src/BasicMathFunctions/sub/kernels/plp_sub_f32s_xpulpv2.c \
src/BasicMathFunctions/sub/kernels/plp_sub_i32s_xpulpv2.c \
src/BasicMathFunctions/sub/kernels/plp_sub_i16s_xpulpv2.c \
src/BasicMathFunctions/sub/kernels/plp_sub_i8s_xpulpv2.c \
src/BasicMathFunctions/scale/kernels/plp_scale_f32s_xpulpv2.c \
src/BasicMathFunctions/scale/kernels/plp_scale_i32s_xpulpv2.c \
src/BasicMathFunctions/scale/kernels/plp_scale_i16s_xpulpv2.c \
src/BasicMathFunctions/scale/kernels/plp_scale_i8s_xpulpv2.c \
src/SupportFunctions/kernels/plp_copy_i32s_xpulpv2.c \
src/SupportFunctions/kernels/plp_copy_f32s_xpulpv2.c \
src/SupportFunctions/kernels/plp_fill_i32s_xpulpv2.c \
src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_q8s_xpulpv2.c \
src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_q16s_xpulpv2.c \
src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_q32s_xpulpv2.c \
src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_i8s_xpulpv2.c \
src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_i16s_xpulpv2.c \
src/BasicMathFunctions/dot_prod/kernels/plp_dot_prod_i32s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_correlate_i32s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_correlate_i16s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_correlate_i8s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_correlate_q32s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_correlate_q16s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_correlate_q8s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_i32s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_i16s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_i8s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_i32p_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_i16p_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_i8p_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_valid_i32s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_valid_i16s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_valid_i8s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_valid_rep_i16s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_valid_rep_i8s_xpulpv2.c \
src/FilteringFunctions/kernels/plp_conv_parallel_OLA.c \
src/FilteringFunctions/kernels/plp_conv_parallel_OLA_kernel.c\
src/FilteringFunctions/kernels/plp_conv_parallel_OLA_kernel.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_i32s_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_i16s_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_i8s_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_q32s_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_q16s_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_q8s_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_i32p_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_i16p_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_i8p_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_q32p_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_q16p_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_q8p_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_f32s_xpulpv2.c \
src/MatrixFunctions/mat_mult/kernels/plp_mat_mult_f32p_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_i32s_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_i16s_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_i8s_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_q32s_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_q16s_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_q8s_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_i32p_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_i16p_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_i8p_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_q32p_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_q16p_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_q8p_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_f32s_xpulpv2.c \
src/MatrixFunctions/mat_mult_cmplx/kernels/plp_mat_mult_cmplx_f32p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_i32s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_i16s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_i8s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_i32p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_i16p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_i8p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_q32s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_q16s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_q8s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_q32p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_q16p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_q8p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_f32s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_f32p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_i32s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_i16s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_i8s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_q32s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_q16s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_q8s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_i32p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_i16p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_i8p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_q32p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_q16p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_q8p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_f32s_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans_cmplx/kernels/plp_mat_mult_trans_cmplx_f32p_xpulpv2.c \
src/TransformFunctions/kernels/plp_rfft_f32_xpulpv2.c \
src/TransformFunctions/kernels/plp_cfft_f32_xpulpv2.c \
src/TransformFunctions/kernels/plp_bitreversal_xpulpv2.c \
src/TransformFunctions/kernels/plp_cfft_q16s_xpulpv2.c \
src/TransformFunctions/kernels/plp_cfft_q16p_xpulpv2.c \
src/TransformFunctions/kernels/plp_cfft_q32s_xpulpv2.c \
src/TransformFunctions/kernels/plp_rfft_f32_xpulpv2.c \
src/TransformFunctions/kernels/plp_cfft_f32_xpulpv2.c \
src/TransformFunctions/kernels/plp_cfft_q16s_xpulpv2.c \
src/TransformFunctions/kernels/plp_cfft_q16p_xpulpv2.c \
src/TransformFunctions/kernels/plp_cfft_q32s_xpulpv2.c \
src/TransformFunctions/kernels/plp_rfft_f32_xpulpv2.c \
src/MatrixFunctions/mat_add/kernels/plp_mat_add_i32s_xpulpv2.c \
src/MatrixFunctions/mat_add/kernels/plp_mat_add_i32p_xpulpv2.c \
src/MatrixFunctions/mat_add/kernels/plp_mat_add_i16s_xpulpv2.c \
src/MatrixFunctions/mat_add/kernels/plp_mat_add_i16p_xpulpv2.c \
src/MatrixFunctions/mat_add/kernels/plp_mat_add_i8s_xpulpv2.c \
src/MatrixFunctions/mat_add/kernels/plp_mat_add_i8p_xpulpv2.c \
src/MatrixFunctions/mat_add/kernels/plp_mat_add_f32s_xpulpv2.c \
src/MatrixFunctions/mat_add/kernels/plp_mat_add_f32p_xpulpv2.c \
src/MatrixFunctions/mat_sub/kernels/plp_mat_sub_i32s_xpulpv2.c \
src/MatrixFunctions/mat_sub/kernels/plp_mat_sub_i32p_xpulpv2.c \
src/MatrixFunctions/mat_sub/kernels/plp_mat_sub_i16s_xpulpv2.c \
src/MatrixFunctions/mat_sub/kernels/plp_mat_sub_i16p_xpulpv2.c \
src/MatrixFunctions/mat_sub/kernels/plp_mat_sub_i8s_xpulpv2.c \
src/MatrixFunctions/mat_sub/kernels/plp_mat_sub_i8p_xpulpv2.c \
src/MatrixFunctions/mat_sub/kernels/plp_mat_sub_f32s_xpulpv2.c \
src/MatrixFunctions/mat_sub/kernels/plp_mat_sub_f32p_xpulpv2.c \
src/MatrixFunctions/mat_scale/kernels/plp_mat_scale_i32s_xpulpv2.c \
src/MatrixFunctions/mat_scale/kernels/plp_mat_scale_i32p_xpulpv2.c \
src/MatrixFunctions/mat_scale/kernels/plp_mat_scale_i16s_xpulpv2.c \
src/MatrixFunctions/mat_scale/kernels/plp_mat_scale_i16p_xpulpv2.c \
src/MatrixFunctions/mat_scale/kernels/plp_mat_scale_i8s_xpulpv2.c \
src/MatrixFunctions/mat_scale/kernels/plp_mat_scale_i8p_xpulpv2.c \
src/MatrixFunctions/mat_scale/kernels/plp_mat_scale_f32s_xpulpv2.c \
src/MatrixFunctions/mat_scale/kernels/plp_mat_scale_f32p_xpulpv2.c \
src/MatrixFunctions/mat_trans/kernels/plp_mat_trans_i32s_xpulpv2.c \
src/MatrixFunctions/mat_trans/kernels/plp_mat_trans_i32p_xpulpv2.c \
src/MatrixFunctions/mat_trans/kernels/plp_mat_trans_i16s_xpulpv2.c \
src/MatrixFunctions/mat_trans/kernels/plp_mat_trans_i16p_xpulpv2.c \
src/MatrixFunctions/mat_trans/kernels/plp_mat_trans_i8s_xpulpv2.c \
src/MatrixFunctions/mat_trans/kernels/plp_mat_trans_i8p_xpulpv2.c \
src/MatrixFunctions/mat_inv/kernels/plp_mat_inv_f32s_xpulpv2.c \
src/MatrixFunctions/mat_inv/kernels/plp_mat_inv_f32p_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_i32s_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_i16s_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_i8s_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_q32s_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_q16s_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_q8s_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_i32p_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_i16p_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_i8p_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_q32p_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_q16p_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_q8p_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_f32s_xpulpv2.c \
src/MatrixFunctions/mat_fill_I/kernels/plp_mat_fill_I_f32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_i32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_i16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_i8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_q32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_q16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_q8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_i32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_i16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_i8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_q32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_q16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_q8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_f32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_cmplx_stride/kernels/plp_mat_mult_cmplx_stride_f32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_i32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_i16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_i8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_i32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_i16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_i8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_q32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_q16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_q8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_q32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_q16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_q8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_f32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_cmplx_stride/kernels/plp_mat_mult_trans_cmplx_stride_f32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_i32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_i16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_i8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_q32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_q16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_q8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_i32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_i16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_i8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_q32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_q16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_q8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_f32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_stride/kernels/plp_mat_mult_stride_f32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_i32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_i16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_i8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_i32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_i16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_i8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_q32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_q16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_q8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_q32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_q16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_q8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_f32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_mult_trans_stride/kernels/plp_mat_mult_trans_stride_f32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_i32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_i32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_i16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_i16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_i8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_i8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_f32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_add_stride/kernels/plp_mat_add_stride_f32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_sub_stride/kernels/plp_mat_sub_stride_i32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_sub_stride/kernels/plp_mat_sub_stride_i32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_sub_stride/kernels/plp_mat_sub_stride_i16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_sub_stride/kernels/plp_mat_sub_stride_i16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_sub_stride/kernels/plp_mat_sub_stride_i8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_sub_stride/kernels/plp_mat_sub_stride_i8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_sub_stride/kernels/plp_mat_sub_stride_f32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_sub_stride/kernels/plp_mat_sub_stride_f32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_scale_stride/kernels/plp_mat_scale_stride_i32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_scale_stride/kernels/plp_mat_scale_stride_i32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_scale_stride/kernels/plp_mat_scale_stride_i16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_scale_stride/kernels/plp_mat_scale_stride_i16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_scale_stride/kernels/plp_mat_scale_stride_i8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_scale_stride/kernels/plp_mat_scale_stride_i8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_scale_stride/kernels/plp_mat_scale_stride_f32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_scale_stride/kernels/plp_mat_scale_stride_f32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_i32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_i16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_i8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_q32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_q16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_q8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_i32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_i16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_i8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_q32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_q16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_q8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_f32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_I_stride/kernels/plp_mat_fill_I_stride_f32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_stride/kernels/plp_mat_fill_stride_i32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_stride/kernels/plp_mat_fill_stride_i16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_stride/kernels/plp_mat_fill_stride_i8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_stride/kernels/plp_mat_fill_stride_i32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_stride/kernels/plp_mat_fill_stride_i16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_stride/kernels/plp_mat_fill_stride_i8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_stride/kernels/plp_mat_fill_stride_f32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_fill_stride/kernels/plp_mat_fill_stride_f32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_copy_stride/kernels/plp_mat_copy_stride_i32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_copy_stride/kernels/plp_mat_copy_stride_i16s_xpulpv2.c \
src/MatrixFunctionsStride/mat_copy_stride/kernels/plp_mat_copy_stride_i8s_xpulpv2.c \
src/MatrixFunctionsStride/mat_copy_stride/kernels/plp_mat_copy_stride_i32p_xpulpv2.c \
src/MatrixFunctionsStride/mat_copy_stride/kernels/plp_mat_copy_stride_i16p_xpulpv2.c \
src/MatrixFunctionsStride/mat_copy_stride/kernels/plp_mat_copy_stride_i8p_xpulpv2.c \
src/MatrixFunctionsStride/mat_copy_stride/kernels/plp_mat_copy_stride_f32s_xpulpv2.c \
src/MatrixFunctionsStride/mat_copy_stride/kernels/plp_mat_copy_stride_f32p_xpulpv2.c \
src/MatrixFunctions/mat_mult_trans/kernels/plp_mat_mult_trans_i8p_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_f32s_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_i16s_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_i32s_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_i8s_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_q16s_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_q32s_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_q8s_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_conj_f32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_conj_i32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_conj_i16_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_conj_i8_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_dot_prod_f32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_dot_prod_i32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_dot_prod_i16_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_dot_prod_q32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_dot_prod_q16_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_dot_prod_i8_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_f32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_i32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_i16_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_i8_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_q32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_q16_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_real_q8_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_f32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_i32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_i16_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_i8_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_q32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_q16_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mult_cmplx_q8_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_f32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_i32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_i16_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_i8_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_q32_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_q16_xpulpv2.c \
src/ComplexMathFunctions/kernels/plp_cmplx_mag_squared_q8_xpulpv2.c \
IDIR=$(CURDIR)/include
PULP_CFLAGS += -I$(IDIR) -O3 -g
ifeq ($(PULP_RTOS), pmsis)
# PMSIS rules
PULP_STATIC_LIB = plpdsp
PULP_CFLAGS += -DRTOS_PMSIS
PULP_STATIC_LIB_SRCS = $(FC_SRCS) $(CL_SRCS)
PULP_STATIC_LIB_HEADERS += $(shell find include -name *.h)
else
#PULP-RT rules
PULP_LIBS = plpdsp # the name of the library, after installing it into the pulp-sdk, add `PULP_LDFLAGS += -lplpdsp` in the Makefile of your project to use this library.
PULP_LIB_FC_SRCS_plpdsp = $(FC_SRCS)
PULP_LIB_CL_SRCS_plpdsp = $(CL_SRCS)
BUILD_DIR=$(CURDIR)/lib/build
INSTALL_FILES += $(shell find include -name *.h)
endif
ifeq ($(PULP_RTOS), pmsis)
include $(RULES_DIR)/pmsis_rules.mk
else
include $(PULP_SDK_HOME)/install/rules/pulp_rt.mk
endif
.PHONY: doc fmt
doc:
cd doc && doxygen doc_config
fmt:
clang-format -style=file -i $(FC_SRCS) && \
clang-format -style=file -i $(CL_SRCS) && \
clang-format -style=file -i $(IDIR)/*