aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: 19645c0c26c7c94d00b7ad3e54a609ec28a5c201 (plain)
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
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

bootstrap_go_package {
    name: "arm_compute_library_nn_driver",
    pkgPath: "arm_compute_library_nn_driver",
    deps: [
        "blueprint",
        "blueprint-pathtools",
        "blueprint-proptools",
        "soong",
        "soong-android",
        "soong-cc",
    ],
    srcs: [
        "scripts/arm_compute_library_nn_driver.go",
    ],
    pluginFor: [ "soong_build" ],
}

arm_compute_library_defaults {
       name: "acl-default-cppflags",
       cppflags: [
            "-std=c++14",
            "-fexceptions",
            "-DBOOST_NO_AUTO_PTR",
            "-DEMBEDDED_KERNELS",
            "-DARM_COMPUTE_ASSERTS_ENABLED",
            "-DARM_COMPUTE_CPP_SCHEDULER",
            "-DENABLE_NEON",
            "-Wno-unused-parameter",
            "-DNO_DOT_IN_TOOLCHAIN",
            "-no-integrated-as",
            "-Wno-implicit-fallthrough"
    ],
    rtti: true,
}

cc_library_static {
    name: "arm_compute_library",
    defaults: ["acl-default-cppflags"],
    proprietary: true,
    local_include_dirs: ["build/android-arm64v8a/src/core",
                         "build/android-arm64v8a/src/core/CL",
                         "src/core/common",
                         "src/core/helpers",
                         "src/core/NEON/kernels/assembly",
                         "src/core/NEON/kernels/convolution/common",
                         "src/core/NEON/kernels/convolution/winograd",
                         "src/core/cpu/kernels/assembly"],
    export_include_dirs: [".", "./include"],
    srcs: [
        "src/c/AclContext.cpp",
        "src/c/AclQueue.cpp",
        "src/c/AclTensor.cpp",
        "src/c/AclTensorPack.cpp",
        "src/c/AclVersion.cpp",
        "src/c/cl/AclOpenClExt.cpp",
        "src/common/AllocatorWrapper.cpp",
        "src/common/ITensorV2.cpp",
        "src/common/TensorPack.cpp",
        "src/common/cpuinfo/CpuInfo.cpp",
        "src/common/cpuinfo/CpuIsaInfo.cpp",
        "src/common/cpuinfo/CpuModel.cpp",
        "src/common/cpuinfo/target/CpuInfoSveUtils.cpp",
        "src/common/utils/LegacySupport.cpp",
        "src/core/AccessWindowAutoPadding.cpp",
        "src/core/AccessWindowStatic.cpp",
        "src/core/AccessWindowTranspose.cpp",
        "src/core/CL/CLCompileContext.cpp",
        "src/core/CL/CLHelpers.cpp",
        "src/core/CL/CLKernelLibrary.cpp",
        "src/core/CL/CLUtils.cpp",
        "src/core/CL/ICLKernel.cpp",
        "src/core/CL/ICLSimple2DKernel.cpp",
        "src/core/CL/ICLSimple3DKernel.cpp",
        "src/core/CL/ICLSimpleKernel.cpp",
        "src/core/CL/ICLTensor.cpp",
        "src/core/CL/OpenCL.cpp",
        "src/core/CL/kernels/CLArgMinMaxLayerKernel.cpp",
        "src/core/CL/kernels/CLBatchNormalizationLayerKernel.cpp",
        "src/core/CL/kernels/CLBatchToSpaceLayerKernel.cpp",
        "src/core/CL/kernels/CLBitwiseKernel.cpp",
        "src/core/CL/kernels/CLBoundingBoxTransformKernel.cpp",
        "src/core/CL/kernels/CLChannelShuffleLayerKernel.cpp",
        "src/core/CL/kernels/CLCol2ImKernel.cpp",
        "src/core/CL/kernels/CLComparisonKernel.cpp",
        "src/core/CL/kernels/CLDeconvolutionLayerUpsampleKernel.cpp",
        "src/core/CL/kernels/CLDeconvolutionReshapeOutputKernel.cpp",
        "src/core/CL/kernels/CLDepthToSpaceLayerKernel.cpp",
        "src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NCHWKernel.cpp",
        "src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NHWCKernel.cpp",
        "src/core/CL/kernels/CLDepthwiseConvolutionLayerNativeKernel.cpp",
        "src/core/CL/kernels/CLFFTDigitReverseKernel.cpp",
        "src/core/CL/kernels/CLFFTRadixStageKernel.cpp",
        "src/core/CL/kernels/CLFFTScaleKernel.cpp",
        "src/core/CL/kernels/CLFillBorderKernel.cpp",
        "src/core/CL/kernels/CLFuseBatchNormalizationKernel.cpp",
        "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyNativeKernel.cpp",
        "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyReshapedKernel.cpp",
        "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel.cpp",
        "src/core/CL/kernels/CLGEMMLowpOffsetContributionKernel.cpp",
        "src/core/CL/kernels/CLGEMMLowpOffsetContributionOutputStageKernel.cpp",
        "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel.cpp",
        "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel.cpp",
        "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleKernel.cpp",
        "src/core/CL/kernels/CLGEMMLowpReductionKernel.cpp",
        "src/core/CL/kernels/CLGatherKernel.cpp",
        "src/core/CL/kernels/CLGenerateProposalsLayerKernel.cpp",
        "src/core/CL/kernels/CLIm2ColKernel.cpp",
        "src/core/CL/kernels/CLInstanceNormalizationLayerKernel.cpp",
        "src/core/CL/kernels/CLL2NormalizeLayerKernel.cpp",
        "src/core/CL/kernels/CLMaxUnpoolingLayerKernel.cpp",
        "src/core/CL/kernels/CLMeanStdDevNormalizationKernel.cpp",
        "src/core/CL/kernels/CLMinMaxLayerKernel.cpp",
        "src/core/CL/kernels/CLNormalizationLayerKernel.cpp",
        "src/core/CL/kernels/CLNormalizePlanarYUVLayerKernel.cpp",
        "src/core/CL/kernels/CLPadLayerKernel.cpp",
        "src/core/CL/kernels/CLPriorBoxLayerKernel.cpp",
        "src/core/CL/kernels/CLQLSTMLayerNormalizationKernel.cpp",
        "src/core/CL/kernels/CLROIAlignLayerKernel.cpp",
        "src/core/CL/kernels/CLROIPoolingLayerKernel.cpp",
        "src/core/CL/kernels/CLRangeKernel.cpp",
        "src/core/CL/kernels/CLReductionOperationKernel.cpp",
        "src/core/CL/kernels/CLRemapKernel.cpp",
        "src/core/CL/kernels/CLReorgLayerKernel.cpp",
        "src/core/CL/kernels/CLReverseKernel.cpp",
        "src/core/CL/kernels/CLSelectKernel.cpp",
        "src/core/CL/kernels/CLSpaceToBatchLayerKernel.cpp",
        "src/core/CL/kernels/CLSpaceToDepthLayerKernel.cpp",
        "src/core/CL/kernels/CLStackLayerKernel.cpp",
        "src/core/CL/kernels/CLStridedSliceKernel.cpp",
        "src/core/CL/kernels/CLTileKernel.cpp",
        "src/core/CL/kernels/CLWeightsReshapeKernel.cpp",
        "src/core/CPP/CPPTypes.cpp",
        "src/core/CPP/ICPPSimpleKernel.cpp",
        "src/core/CPP/kernels/CPPBoxWithNonMaximaSuppressionLimitKernel.cpp",
        "src/core/CPP/kernels/CPPNonMaximumSuppressionKernel.cpp",
        "src/core/CPP/kernels/CPPPermuteKernel.cpp",
        "src/core/CPP/kernels/CPPTopKVKernel.cpp",
        "src/core/CPP/kernels/CPPUpsampleKernel.cpp",
        "src/core/Error.cpp",
        "src/core/GPUTarget.cpp",
        "src/core/Helpers.cpp",
        "src/core/IAccessWindow.cpp",
        "src/core/IKernel.cpp",
        "src/core/ITensor.cpp",
        "src/core/ITensorPack.cpp",
        "src/core/NEON/kernels/NEBatchNormalizationLayerKernel.cpp",
        "src/core/NEON/kernels/NEBatchToSpaceLayerKernel.cpp",
        "src/core/NEON/kernels/NEBitwiseAndKernel.cpp",
        "src/core/NEON/kernels/NEBitwiseNotKernel.cpp",
        "src/core/NEON/kernels/NEBitwiseOrKernel.cpp",
        "src/core/NEON/kernels/NEBitwiseXorKernel.cpp",
        "src/core/NEON/kernels/NEBoundingBoxTransformKernel.cpp",
        "src/core/NEON/kernels/NEChannelShuffleLayerKernel.cpp",
        "src/core/NEON/kernels/NECol2ImKernel.cpp",
        "src/core/NEON/kernels/NEConvertQuantizedSignednessKernel.cpp",
        "src/core/NEON/kernels/NECropKernel.cpp",
        "src/core/NEON/kernels/NEDepthToSpaceLayerKernel.cpp",
        "src/core/NEON/kernels/NEFFTDigitReverseKernel.cpp",
        "src/core/NEON/kernels/NEFFTRadixStageKernel.cpp",
        "src/core/NEON/kernels/NEFFTScaleKernel.cpp",
        "src/core/NEON/kernels/NEFillBorderKernel.cpp",
        "src/core/NEON/kernels/NEFuseBatchNormalizationKernel.cpp",
        "src/core/NEON/kernels/NEGEMMInterleave4x4Kernel.cpp",
        "src/core/NEON/kernels/NEGEMMLowpMatrixMultiplyKernel.cpp",
        "src/core/NEON/kernels/NEGEMMLowpOffsetContributionKernel.cpp",
        "src/core/NEON/kernels/NEGEMMLowpOffsetContributionOutputStageKernel.cpp",
        "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ScaleKernel.cpp",
        "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel.cpp",
        "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel.cpp",
        "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.cpp",
        "src/core/NEON/kernels/NEGEMMLowpReductionKernel.cpp",
        "src/core/NEON/kernels/NEGEMMMatrixAdditionKernel.cpp",
        "src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp",
        "src/core/NEON/kernels/NEGEMMTranspose1xWKernel.cpp",
        "src/core/NEON/kernels/NEGatherKernel.cpp",
        "src/core/NEON/kernels/NEGenerateProposalsLayerKernel.cpp",
        "src/core/NEON/kernels/NEIm2ColKernel.cpp",
        "src/core/NEON/kernels/NEInstanceNormalizationLayerKernel.cpp",
        "src/core/NEON/kernels/NEL2NormalizeLayerKernel.cpp",
        "src/core/NEON/kernels/NELogicalKernel.cpp",
        "src/core/NEON/kernels/NEMaxUnpoolingLayerKernel.cpp",
        "src/core/NEON/kernels/NEMeanStdDevNormalizationKernel.cpp",
        "src/core/NEON/kernels/NEMinMaxLayerKernel.cpp",
        "src/core/NEON/kernels/NENormalizationLayerKernel.cpp",
        "src/core/NEON/kernels/NEPadLayerKernel.cpp",
        "src/core/NEON/kernels/NEPriorBoxLayerKernel.cpp",
        "src/core/NEON/kernels/NEQLSTMLayerNormalizationKernel.cpp",
        "src/core/NEON/kernels/NEROIAlignLayerKernel.cpp",
        "src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp",
        "src/core/NEON/kernels/NERangeKernel.cpp",
        "src/core/NEON/kernels/NEReductionOperationKernel.cpp",
        "src/core/NEON/kernels/NERemapKernel.cpp",
        "src/core/NEON/kernels/NEReorgLayerKernel.cpp",
        "src/core/NEON/kernels/NEReverseKernel.cpp",
        "src/core/NEON/kernels/NESelectKernel.cpp",
        "src/core/NEON/kernels/NESpaceToBatchLayerKernel.cpp",
        "src/core/NEON/kernels/NESpaceToDepthLayerKernel.cpp",
        "src/core/NEON/kernels/NEStackLayerKernel.cpp",
        "src/core/NEON/kernels/NEStridedSliceKernel.cpp",
        "src/core/NEON/kernels/NETileKernel.cpp",
        "src/core/NEON/kernels/NEWeightsReshapeKernel.cpp",
        "src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.cpp",
        "src/core/NEON/kernels/arm_conv/depthwise/depthwise_fp16.cpp",
        "src/core/NEON/kernels/arm_conv/depthwise/depthwise_fp32.cpp",
        "src/core/NEON/kernels/arm_conv/depthwise/depthwise_s8q.cpp",
        "src/core/NEON/kernels/arm_conv/depthwise/depthwise_u8q.cpp",
        "src/core/NEON/kernels/arm_conv/depthwise/depthwise_u8s8u8q.cpp",
        "src/core/NEON/kernels/arm_conv/depthwise/interleaves/8b_mla.cpp",
        "src/core/NEON/kernels/arm_conv/pooling/kernels/cpp_nhwc_1x1_stride_any_depthfirst/generic.cpp",
        "src/core/NEON/kernels/arm_conv/pooling/pooling_fp16.cpp",
        "src/core/NEON/kernels/arm_conv/pooling/pooling_fp32.cpp",
        "src/core/NEON/kernels/arm_conv/pooling/pooling_s8.cpp",
        "src/core/NEON/kernels/arm_conv/pooling/pooling_s8q.cpp",
        "src/core/NEON/kernels/arm_conv/pooling/pooling_u8.cpp",
        "src/core/NEON/kernels/arm_conv/pooling/pooling_u8q.cpp",
        "src/core/NEON/kernels/arm_gemm/gemm_bf16.cpp",
        "src/core/NEON/kernels/arm_gemm/gemm_fp16.cpp",
        "src/core/NEON/kernels/arm_gemm/gemm_fp32.cpp",
        "src/core/NEON/kernels/arm_gemm/gemm_int16.cpp",
        "src/core/NEON/kernels/arm_gemm/gemm_int8.cpp",
        "src/core/NEON/kernels/arm_gemm/gemm_qint8.cpp",
        "src/core/NEON/kernels/arm_gemm/gemm_quint8.cpp",
        "src/core/NEON/kernels/arm_gemm/gemm_uint16.cpp",
        "src/core/NEON/kernels/arm_gemm/gemm_uint8.cpp",
        "src/core/NEON/kernels/arm_gemm/interleave_indirect.cpp",
        "src/core/NEON/kernels/arm_gemm/mergeresults.cpp",
        "src/core/NEON/kernels/arm_gemm/misc.cpp",
        "src/core/NEON/kernels/arm_gemm/quantized.cpp",
        "src/core/NEON/kernels/arm_gemm/rowsum_indirect_s8.cpp",
        "src/core/NEON/kernels/arm_gemm/rowsum_indirect_u8.cpp",
        "src/core/NEON/kernels/batchnormalization/impl/NEON/fp16.cpp",
        "src/core/NEON/kernels/batchnormalization/impl/NEON/fp32.cpp",
        "src/core/NEON/kernels/batchnormalization/impl/SVE/fp16.cpp",
        "src/core/NEON/kernels/batchnormalization/impl/SVE/fp32.cpp",
        "src/core/NEON/kernels/convolution/common/padding.cpp",
        "src/core/NEON/kernels/convolution/common/qasymm8.cpp",
        "src/core/NEON/kernels/convolution/common/qsymm8.cpp",
        "src/core/NEON/kernels/convolution/common/utils.cpp",
        "src/core/NEON/kernels/convolution/winograd/padding.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_1x8_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_4x4_fp16_fp16_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_4x4_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_6x6_fp16_fp16_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_6x6_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2_7_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2x2_3x3_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2x2_5x5_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4_5_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4x4_3x3_fp16_fp16_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4x4_3x3_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_6_3_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2_7_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2x2_3x3_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2x2_5x5_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4_5_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp16_fp16_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp32_fp32_integers.cpp",
        "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_6_3_fp32_fp32_integers.cpp",
        "src/core/Rounding.cpp",
        "src/core/Size2D.cpp",
        "src/core/SubTensorInfo.cpp",
        "src/core/TensorInfo.cpp",
        "src/core/Utils.cpp",
        "src/core/Validate.cpp",
        "src/core/Version.cpp",
        "src/core/cpu/kernels/CpuActivationKernel.cpp",
        "src/core/cpu/kernels/CpuAddKernel.cpp",
        "src/core/cpu/kernels/CpuCastKernel.cpp",
        "src/core/cpu/kernels/CpuConcatenateBatchKernel.cpp",
        "src/core/cpu/kernels/CpuConcatenateDepthKernel.cpp",
        "src/core/cpu/kernels/CpuConcatenateHeightKernel.cpp",
        "src/core/cpu/kernels/CpuConcatenateWidthKernel.cpp",
        "src/core/cpu/kernels/CpuConvertFullyConnectedWeightsKernel.cpp",
        "src/core/cpu/kernels/CpuCopyKernel.cpp",
        "src/core/cpu/kernels/CpuDepthwiseConv2dNativeKernel.cpp",
        "src/core/cpu/kernels/CpuDequantizeKernel.cpp",
        "src/core/cpu/kernels/CpuDirectConv2dKernel.cpp",
        "src/core/cpu/kernels/CpuDirectConv2dOutputStageKernel.cpp",
        "src/core/cpu/kernels/CpuElementwiseKernel.cpp",
        "src/core/cpu/kernels/CpuElementwiseUnaryKernel.cpp",
        "src/core/cpu/kernels/CpuFillKernel.cpp",
        "src/core/cpu/kernels/CpuFloorKernel.cpp",
        "src/core/cpu/kernels/CpuMulKernel.cpp",
        "src/core/cpu/kernels/CpuPermuteKernel.cpp",
        "src/core/cpu/kernels/CpuPool2dKernel.cpp",
        "src/core/cpu/kernels/CpuQuantizeKernel.cpp",
        "src/core/cpu/kernels/CpuReshapeKernel.cpp",
        "src/core/cpu/kernels/CpuScaleKernel.cpp",
        "src/core/cpu/kernels/CpuSoftmaxKernel.cpp",
        "src/core/cpu/kernels/CpuSubKernel.cpp",
        "src/core/cpu/kernels/CpuTransposeKernel.cpp",
        "src/core/cpu/kernels/activation/neon/fp16.cpp",
        "src/core/cpu/kernels/activation/neon/fp32.cpp",
        "src/core/cpu/kernels/activation/neon/qasymm8.cpp",
        "src/core/cpu/kernels/activation/neon/qasymm8_signed.cpp",
        "src/core/cpu/kernels/activation/neon/qsymm16.cpp",
        "src/core/cpu/kernels/activation/sve/fp16.cpp",
        "src/core/cpu/kernels/activation/sve/fp32.cpp",
        "src/core/cpu/kernels/activation/sve/qasymm8.cpp",
        "src/core/cpu/kernels/activation/sve/qasymm8_signed.cpp",
        "src/core/cpu/kernels/activation/sve/qsymm16.cpp",
        "src/core/cpu/kernels/add/neon/integer.cpp",
        "src/core/cpu/kernels/add/neon/qasymm8.cpp",
        "src/core/cpu/kernels/add/neon/qasymm8_signed.cpp",
        "src/core/cpu/kernels/add/neon/qsymm16.cpp",
        "src/core/cpu/kernels/add/sve/impl.cpp",
        "src/core/cpu/kernels/add/sve/integer.cpp",
        "src/core/cpu/kernels/add/sve/qasymm8.cpp",
        "src/core/cpu/kernels/add/sve/qasymm8_signed.cpp",
        "src/core/cpu/kernels/add/sve/qsymm16.cpp",
        "src/core/cpu/kernels/elementwise/sve/elementwise.cpp",
        "src/core/cpu/kernels/elementwise/sve/elementwise_unary.cpp",
        "src/core/cpu/kernels/floor/neon/fp16.cpp",
        "src/core/cpu/kernels/floor/neon/fp32.cpp",
        "src/core/cpu/kernels/internal/CpuDepthwiseConv2dAssemblyWrapperKernel.cpp",
        "src/core/cpu/kernels/internal/CpuPool2dAssemblyWrapperKernel.cpp",
        "src/core/cpu/kernels/pooling/neon/fp16.cpp",
        "src/core/cpu/kernels/pooling/neon/fp32.cpp",
        "src/core/cpu/kernels/pooling/neon/nchw/all.cpp",
        "src/core/cpu/kernels/pooling/neon/qasymm8.cpp",
        "src/core/cpu/kernels/pooling/neon/qasymm8_signed.cpp",
        "src/core/cpu/kernels/scale/neon/fp16.cpp",
        "src/core/cpu/kernels/scale/neon/integer.cpp",
        "src/core/cpu/kernels/scale/neon/qasymm8.cpp",
        "src/core/cpu/kernels/scale/neon/qasymm8_signed.cpp",
        "src/core/cpu/kernels/scale/sve/fp16.cpp",
        "src/core/cpu/kernels/scale/sve/fp32.cpp",
        "src/core/cpu/kernels/scale/sve/integer.cpp",
        "src/core/cpu/kernels/scale/sve/qasymm8.cpp",
        "src/core/cpu/kernels/scale/sve/qasymm8_signed.cpp",
        "src/core/cpu/kernels/softmax/impl/sve/impl.cpp",
        "src/core/cpu/kernels/sub/neon/integer.cpp",
        "src/core/cpu/kernels/sub/neon/qasymm8.cpp",
        "src/core/cpu/kernels/sub/neon/qasymm8_signed.cpp",
        "src/core/cpu/kernels/sub/neon/qsymm16.cpp",
        "src/core/gpu/cl/ClKernelLibrary.cpp",
        "src/core/gpu/cl/kernels/ClActivationKernel.cpp",
        "src/core/gpu/cl/kernels/ClBatchConcatenateKernel.cpp",
        "src/core/gpu/cl/kernels/ClCastKernel.cpp",
        "src/core/gpu/cl/kernels/ClConvertFullyConnectedWeightsKernel.cpp",
        "src/core/gpu/cl/kernels/ClCopyKernel.cpp",
        "src/core/gpu/cl/kernels/ClCropKernel.cpp",
        "src/core/gpu/cl/kernels/ClDepthConcatenateKernel.cpp",
        "src/core/gpu/cl/kernels/ClDequantizeKernel.cpp",
        "src/core/gpu/cl/kernels/ClDirectConv2dKernel.cpp",
        "src/core/gpu/cl/kernels/ClElementwiseKernel.cpp",
        "src/core/gpu/cl/kernels/ClElementwiseUnaryKernel.cpp",
        "src/core/gpu/cl/kernels/ClFillKernel.cpp",
        "src/core/gpu/cl/kernels/ClFloorKernel.cpp",
        "src/core/gpu/cl/kernels/ClGemmMatrixMultiplyKernel.cpp",
        "src/core/gpu/cl/kernels/ClGemmMatrixMultiplyNativeKernel.cpp",
        "src/core/gpu/cl/kernels/ClGemmMatrixMultiplyReshapedKernel.cpp",
        "src/core/gpu/cl/kernels/ClGemmMatrixMultiplyReshapedOnlyRhsKernel.cpp",
        "src/core/gpu/cl/kernels/ClGemmReshapeLhsMatrixKernel.cpp",
        "src/core/gpu/cl/kernels/ClGemmReshapeRhsMatrixKernel.cpp",
        "src/core/gpu/cl/kernels/ClHeightConcatenateKernel.cpp",
        "src/core/gpu/cl/kernels/ClMulKernel.cpp",
        "src/core/gpu/cl/kernels/ClPermuteKernel.cpp",
        "src/core/gpu/cl/kernels/ClPool2dKernel.cpp",
        "src/core/gpu/cl/kernels/ClQuantizeKernel.cpp",
        "src/core/gpu/cl/kernels/ClReshapeKernel.cpp",
        "src/core/gpu/cl/kernels/ClScaleKernel.cpp",
        "src/core/gpu/cl/kernels/ClSoftmaxKernel.cpp",
        "src/core/gpu/cl/kernels/ClTransposeKernel.cpp",
        "src/core/gpu/cl/kernels/ClWidthConcatenate2TensorsKernel.cpp",
        "src/core/gpu/cl/kernels/ClWidthConcatenate4TensorsKernel.cpp",
        "src/core/gpu/cl/kernels/ClWidthConcatenateKernel.cpp",
        "src/core/gpu/cl/kernels/ClWinogradFilterTransformKernel.cpp",
        "src/core/gpu/cl/kernels/ClWinogradInputTransformKernel.cpp",
        "src/core/gpu/cl/kernels/ClWinogradOutputTransformKernel.cpp",
        "src/core/gpu/cl/kernels/gemm/ClGemmHelpers.cpp",
        "src/core/gpu/cl/kernels/gemm/native/ClGemmDefaultConfigNativeBifrost.cpp",
        "src/core/gpu/cl/kernels/gemm/native/ClGemmDefaultConfigNativeMidgard.cpp",
        "src/core/gpu/cl/kernels/gemm/native/ClGemmDefaultConfigNativeValhall.cpp",
        "src/core/gpu/cl/kernels/gemm/reshaped/ClGemmDefaultConfigReshapedBifrost.cpp",
        "src/core/gpu/cl/kernels/gemm/reshaped/ClGemmDefaultConfigReshapedValhall.cpp",
        "src/core/gpu/cl/kernels/gemm/reshaped_only_rhs/ClGemmDefaultConfigReshapedRhsOnlyBifrost.cpp",
        "src/core/gpu/cl/kernels/gemm/reshaped_only_rhs/ClGemmDefaultConfigReshapedRhsOnlyValhall.cpp",
        "src/core/gpu/cl/kernels/gemm/reshaped_only_rhs/ClGemmDefaultReshapedRhsOnlyBifrost.cpp",
        "src/core/gpu/cl/kernels/gemm/reshaped_only_rhs/ClGemmDefaultReshapedRhsOnlyValhall.cpp",
        "src/core/helpers/SoftmaxHelpers.cpp",
        "src/core/helpers/WindowHelpers.cpp",
        "src/core/utils/AssemblyUtils.cpp",
        "src/core/utils/ScaleUtils.cpp",
        "src/core/utils/helpers/fft.cpp",
        "src/core/utils/helpers/tensor_transform.cpp",
        "src/core/utils/io/FileHandler.cpp",
        "src/core/utils/logging/FilePrinter.cpp",
        "src/core/utils/logging/Helpers.cpp",
        "src/core/utils/logging/Logger.cpp",
        "src/core/utils/logging/LoggerRegistry.cpp",
        "src/core/utils/misc/MMappedFile.cpp",
        "src/core/utils/quantization/AsymmHelpers.cpp",
        "src/cpu/CpuContext.cpp",
        "src/cpu/CpuQueue.cpp",
        "src/cpu/CpuTensor.cpp",
        "src/gpu/cl/ClContext.cpp",
        "src/gpu/cl/ClQueue.cpp",
        "src/gpu/cl/ClTensor.cpp",
        "src/runtime/Allocator.cpp",
        "src/runtime/BlobLifetimeManager.cpp",
        "src/runtime/BlobMemoryPool.cpp",
        "src/runtime/CL/CLBufferAllocator.cpp",
        "src/runtime/CL/CLGEMMHeuristicsHandle.cpp",
        "src/runtime/CL/CLHelpers.cpp",
        "src/runtime/CL/CLMemory.cpp",
        "src/runtime/CL/CLMemoryRegion.cpp",
        "src/runtime/CL/CLOperator.cpp",
        "src/runtime/CL/CLRuntimeContext.cpp",
        "src/runtime/CL/CLScheduler.cpp",
        "src/runtime/CL/CLSubTensor.cpp",
        "src/runtime/CL/CLTensor.cpp",
        "src/runtime/CL/CLTensorAllocator.cpp",
        "src/runtime/CL/CLTuner.cpp",
        "src/runtime/CL/ICLSimpleFunction.cpp",
        "src/runtime/CL/Utils.cpp",
        "src/runtime/CL/functions/CLActivationLayer.cpp",
        "src/runtime/CL/functions/CLArgMinMaxLayer.cpp",
        "src/runtime/CL/functions/CLBatchNormalizationLayer.cpp",
        "src/runtime/CL/functions/CLBatchToSpaceLayer.cpp",
        "src/runtime/CL/functions/CLBitwiseAnd.cpp",
        "src/runtime/CL/functions/CLBitwiseNot.cpp",
        "src/runtime/CL/functions/CLBitwiseOr.cpp",
        "src/runtime/CL/functions/CLBitwiseXor.cpp",
        "src/runtime/CL/functions/CLBoundingBoxTransform.cpp",
        "src/runtime/CL/functions/CLCast.cpp",
        "src/runtime/CL/functions/CLChannelShuffleLayer.cpp",
        "src/runtime/CL/functions/CLComparison.cpp",
        "src/runtime/CL/functions/CLConcatenateLayer.cpp",
        "src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp",
        "src/runtime/CL/functions/CLConvolutionLayer.cpp",
        "src/runtime/CL/functions/CLCopy.cpp",
        "src/runtime/CL/functions/CLCrop.cpp",
        "src/runtime/CL/functions/CLCropResize.cpp",
        "src/runtime/CL/functions/CLDeconvolutionLayer.cpp",
        "src/runtime/CL/functions/CLDeconvolutionLayerUpsample.cpp",
        "src/runtime/CL/functions/CLDepthConvertLayer.cpp",
        "src/runtime/CL/functions/CLDepthToSpaceLayer.cpp",
        "src/runtime/CL/functions/CLDepthwiseConvolutionLayer.cpp",
        "src/runtime/CL/functions/CLDequantizationLayer.cpp",
        "src/runtime/CL/functions/CLDirectConvolutionLayer.cpp",
        "src/runtime/CL/functions/CLDirectDeconvolutionLayer.cpp",
        "src/runtime/CL/functions/CLElementwiseOperations.cpp",
        "src/runtime/CL/functions/CLElementwiseUnaryLayer.cpp",
        "src/runtime/CL/functions/CLFFT1D.cpp",
        "src/runtime/CL/functions/CLFFT2D.cpp",
        "src/runtime/CL/functions/CLFFTConvolutionLayer.cpp",
        "src/runtime/CL/functions/CLFill.cpp",
        "src/runtime/CL/functions/CLFillBorder.cpp",
        "src/runtime/CL/functions/CLFlattenLayer.cpp",
        "src/runtime/CL/functions/CLFloor.cpp",
        "src/runtime/CL/functions/CLFullyConnectedLayer.cpp",
        "src/runtime/CL/functions/CLFuseBatchNormalization.cpp",
        "src/runtime/CL/functions/CLGEMM.cpp",
        "src/runtime/CL/functions/CLGEMMConvolutionLayer.cpp",
        "src/runtime/CL/functions/CLGEMMDeconvolutionLayer.cpp",
        "src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp",
        "src/runtime/CL/functions/CLGEMMLowpOutputStage.cpp",
        "src/runtime/CL/functions/CLGather.cpp",
        "src/runtime/CL/functions/CLGenerateProposalsLayer.cpp",
        "src/runtime/CL/functions/CLInstanceNormalizationLayer.cpp",
        "src/runtime/CL/functions/CLL2NormalizeLayer.cpp",
        "src/runtime/CL/functions/CLLSTMLayer.cpp",
        "src/runtime/CL/functions/CLLSTMLayerQuantized.cpp",
        "src/runtime/CL/functions/CLLogicalAnd.cpp",
        "src/runtime/CL/functions/CLLogicalNot.cpp",
        "src/runtime/CL/functions/CLLogicalOr.cpp",
        "src/runtime/CL/functions/CLMaxUnpoolingLayer.cpp",
        "src/runtime/CL/functions/CLMeanStdDevNormalizationLayer.cpp",
        "src/runtime/CL/functions/CLNormalizationLayer.cpp",
        "src/runtime/CL/functions/CLNormalizePlanarYUVLayer.cpp",
        "src/runtime/CL/functions/CLPReluLayer.cpp",
        "src/runtime/CL/functions/CLPadLayer.cpp",
        "src/runtime/CL/functions/CLPermute.cpp",
        "src/runtime/CL/functions/CLPixelWiseMultiplication.cpp",
        "src/runtime/CL/functions/CLPoolingLayer.cpp",
        "src/runtime/CL/functions/CLPriorBoxLayer.cpp",
        "src/runtime/CL/functions/CLQLSTMLayer.cpp",
        "src/runtime/CL/functions/CLQuantizationLayer.cpp",
        "src/runtime/CL/functions/CLRNNLayer.cpp",
        "src/runtime/CL/functions/CLROIAlignLayer.cpp",
        "src/runtime/CL/functions/CLROIPoolingLayer.cpp",
        "src/runtime/CL/functions/CLRange.cpp",
        "src/runtime/CL/functions/CLReduceMean.cpp",
        "src/runtime/CL/functions/CLReductionOperation.cpp",
        "src/runtime/CL/functions/CLRemap.cpp",
        "src/runtime/CL/functions/CLReorgLayer.cpp",
        "src/runtime/CL/functions/CLReshapeLayer.cpp",
        "src/runtime/CL/functions/CLReverse.cpp",
        "src/runtime/CL/functions/CLScale.cpp",
        "src/runtime/CL/functions/CLSelect.cpp",
        "src/runtime/CL/functions/CLSlice.cpp",
        "src/runtime/CL/functions/CLSoftmaxLayer.cpp",
        "src/runtime/CL/functions/CLSpaceToBatchLayer.cpp",
        "src/runtime/CL/functions/CLSpaceToDepthLayer.cpp",
        "src/runtime/CL/functions/CLSplit.cpp",
        "src/runtime/CL/functions/CLStackLayer.cpp",
        "src/runtime/CL/functions/CLStridedSlice.cpp",
        "src/runtime/CL/functions/CLTile.cpp",
        "src/runtime/CL/functions/CLTranspose.cpp",
        "src/runtime/CL/functions/CLUnstack.cpp",
        "src/runtime/CL/functions/CLWinogradConvolutionLayer.cpp",
        "src/runtime/CL/gemm/CLGEMMDefaultTypeBifrost.cpp",
        "src/runtime/CL/gemm/CLGEMMDefaultTypeMidgard.cpp",
        "src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.cpp",
        "src/runtime/CL/gemm_auto_heuristics/CLGEMMAutoHeuristics.cpp",
        "src/runtime/CL/mlgo/HeuristicTree.cpp",
        "src/runtime/CL/mlgo/MLGOHeuristics.cpp",
        "src/runtime/CL/mlgo/MLGOParser.cpp",
        "src/runtime/CL/mlgo/Utils.cpp",
        "src/runtime/CL/tuners/CLTuningParametersList.cpp",
        "src/runtime/CPP/CPPScheduler.cpp",
        "src/runtime/CPP/ICPPSimpleFunction.cpp",
        "src/runtime/CPP/SingleThreadScheduler.cpp",
        "src/runtime/CPP/functions/CPPBoxWithNonMaximaSuppressionLimit.cpp",
        "src/runtime/CPP/functions/CPPDetectionOutputLayer.cpp",
        "src/runtime/CPP/functions/CPPDetectionPostProcessLayer.cpp",
        "src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp",
        "src/runtime/CPP/functions/CPPPermute.cpp",
        "src/runtime/CPP/functions/CPPTopKV.cpp",
        "src/runtime/CPP/functions/CPPUpsample.cpp",
        "src/runtime/IScheduler.cpp",
        "src/runtime/ISimpleLifetimeManager.cpp",
        "src/runtime/ITensorAllocator.cpp",
        "src/runtime/IWeightsManager.cpp",
        "src/runtime/Memory.cpp",
        "src/runtime/MemoryManagerOnDemand.cpp",
        "src/runtime/NEON/INEOperator.cpp",
        "src/runtime/NEON/INESimpleFunction.cpp",
        "src/runtime/NEON/INESimpleFunctionNoBorder.cpp",
        "src/runtime/NEON/functions/NEActivationLayer.cpp",
        "src/runtime/NEON/functions/NEArgMinMaxLayer.cpp",
        "src/runtime/NEON/functions/NEArithmeticAddition.cpp",
        "src/runtime/NEON/functions/NEArithmeticSubtraction.cpp",
        "src/runtime/NEON/functions/NEBatchNormalizationLayer.cpp",
        "src/runtime/NEON/functions/NEBatchToSpaceLayer.cpp",
        "src/runtime/NEON/functions/NEBitwiseAnd.cpp",
        "src/runtime/NEON/functions/NEBitwiseNot.cpp",
        "src/runtime/NEON/functions/NEBitwiseOr.cpp",
        "src/runtime/NEON/functions/NEBitwiseXor.cpp",
        "src/runtime/NEON/functions/NEBoundingBoxTransform.cpp",
        "src/runtime/NEON/functions/NECast.cpp",
        "src/runtime/NEON/functions/NEChannelShuffleLayer.cpp",
        "src/runtime/NEON/functions/NEConcatenateLayer.cpp",
        "src/runtime/NEON/functions/NEConvertFullyConnectedWeights.cpp",
        "src/runtime/NEON/functions/NEConvolutionLayer.cpp",
        "src/runtime/NEON/functions/NECopy.cpp",
        "src/runtime/NEON/functions/NECropResize.cpp",
        "src/runtime/NEON/functions/NEDeconvolutionLayer.cpp",
        "src/runtime/NEON/functions/NEDepthConvertLayer.cpp",
        "src/runtime/NEON/functions/NEDepthToSpaceLayer.cpp",
        "src/runtime/NEON/functions/NEDepthwiseConvolutionLayer.cpp",
        "src/runtime/NEON/functions/NEDequantizationLayer.cpp",
        "src/runtime/NEON/functions/NEDetectionPostProcessLayer.cpp",
        "src/runtime/NEON/functions/NEDirectConvolutionLayer.cpp",
        "src/runtime/NEON/functions/NEElementwiseOperations.cpp",
        "src/runtime/NEON/functions/NEElementwiseUnaryLayer.cpp",
        "src/runtime/NEON/functions/NEFFT1D.cpp",
        "src/runtime/NEON/functions/NEFFT2D.cpp",
        "src/runtime/NEON/functions/NEFFTConvolutionLayer.cpp",
        "src/runtime/NEON/functions/NEFill.cpp",
        "src/runtime/NEON/functions/NEFillBorder.cpp",
        "src/runtime/NEON/functions/NEFlattenLayer.cpp",
        "src/runtime/NEON/functions/NEFloor.cpp",
        "src/runtime/NEON/functions/NEFullyConnectedLayer.cpp",
        "src/runtime/NEON/functions/NEFuseBatchNormalization.cpp",
        "src/runtime/NEON/functions/NEGEMM.cpp",
        "src/runtime/NEON/functions/NEGEMMConv2d.cpp",
        "src/runtime/NEON/functions/NEGEMMConvolutionLayer.cpp",
        "src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp",
        "src/runtime/NEON/functions/NEGEMMLowpOutputStage.cpp",
        "src/runtime/NEON/functions/NEGather.cpp",
        "src/runtime/NEON/functions/NEGenerateProposalsLayer.cpp",
        "src/runtime/NEON/functions/NEInstanceNormalizationLayer.cpp",
        "src/runtime/NEON/functions/NEL2NormalizeLayer.cpp",
        "src/runtime/NEON/functions/NELSTMLayer.cpp",
        "src/runtime/NEON/functions/NELSTMLayerQuantized.cpp",
        "src/runtime/NEON/functions/NELogical.cpp",
        "src/runtime/NEON/functions/NEMaxUnpoolingLayer.cpp",
        "src/runtime/NEON/functions/NEMeanStdDevNormalizationLayer.cpp",
        "src/runtime/NEON/functions/NENormalizationLayer.cpp",
        "src/runtime/NEON/functions/NEPReluLayer.cpp",
        "src/runtime/NEON/functions/NEPadLayer.cpp",
        "src/runtime/NEON/functions/NEPermute.cpp",
        "src/runtime/NEON/functions/NEPixelWiseMultiplication.cpp",
        "src/runtime/NEON/functions/NEPoolingLayer.cpp",
        "src/runtime/NEON/functions/NEPriorBoxLayer.cpp",
        "src/runtime/NEON/functions/NEQLSTMLayer.cpp",
        "src/runtime/NEON/functions/NEQuantizationLayer.cpp",
        "src/runtime/NEON/functions/NERNNLayer.cpp",
        "src/runtime/NEON/functions/NEROIAlignLayer.cpp",
        "src/runtime/NEON/functions/NEROIPoolingLayer.cpp",
        "src/runtime/NEON/functions/NERange.cpp",
        "src/runtime/NEON/functions/NEReduceMean.cpp",
        "src/runtime/NEON/functions/NEReductionOperation.cpp",
        "src/runtime/NEON/functions/NERemap.cpp",
        "src/runtime/NEON/functions/NEReorgLayer.cpp",
        "src/runtime/NEON/functions/NEReshapeLayer.cpp",
        "src/runtime/NEON/functions/NEReverse.cpp",
        "src/runtime/NEON/functions/NEScale.cpp",
        "src/runtime/NEON/functions/NESelect.cpp",
        "src/runtime/NEON/functions/NESlice.cpp",
        "src/runtime/NEON/functions/NESoftmaxLayer.cpp",
        "src/runtime/NEON/functions/NESpaceToBatchLayer.cpp",
        "src/runtime/NEON/functions/NESpaceToDepthLayer.cpp",
        "src/runtime/NEON/functions/NESplit.cpp",
        "src/runtime/NEON/functions/NEStackLayer.cpp",
        "src/runtime/NEON/functions/NEStridedSlice.cpp",
        "src/runtime/NEON/functions/NETile.cpp",
        "src/runtime/NEON/functions/NETranspose.cpp",
        "src/runtime/NEON/functions/NEUnstack.cpp",
        "src/runtime/NEON/functions/NEWinogradConvolutionLayer.cpp",
        "src/runtime/OMP/OMPScheduler.cpp",
        "src/runtime/OffsetLifetimeManager.cpp",
        "src/runtime/OffsetMemoryPool.cpp",
        "src/runtime/OperatorTensor.cpp",
        "src/runtime/PoolManager.cpp",
        "src/runtime/RuntimeContext.cpp",
        "src/runtime/Scheduler.cpp",
        "src/runtime/SchedulerFactory.cpp",
        "src/runtime/SchedulerUtils.cpp",
        "src/runtime/SubTensor.cpp",
        "src/runtime/Tensor.cpp",
        "src/runtime/TensorAllocator.cpp",
        "src/runtime/Utils.cpp",
        "src/runtime/cpu/operators/CpuActivation.cpp",
        "src/runtime/cpu/operators/CpuAdd.cpp",
        "src/runtime/cpu/operators/CpuCast.cpp",
        "src/runtime/cpu/operators/CpuConcatenate.cpp",
        "src/runtime/cpu/operators/CpuConvertFullyConnectedWeights.cpp",
        "src/runtime/cpu/operators/CpuCopy.cpp",
        "src/runtime/cpu/operators/CpuDepthwiseConv2d.cpp",
        "src/runtime/cpu/operators/CpuDepthwiseConv2dAssemblyDispatch.cpp",
        "src/runtime/cpu/operators/CpuDequantize.cpp",
        "src/runtime/cpu/operators/CpuDirectConv2d.cpp",
        "src/runtime/cpu/operators/CpuElementwise.cpp",
        "src/runtime/cpu/operators/CpuElementwiseUnary.cpp",
        "src/runtime/cpu/operators/CpuFill.cpp",
        "src/runtime/cpu/operators/CpuFlatten.cpp",
        "src/runtime/cpu/operators/CpuFloor.cpp",
        "src/runtime/cpu/operators/CpuGemmDirectConv2d.cpp",
        "src/runtime/cpu/operators/CpuMul.cpp",
        "src/runtime/cpu/operators/CpuPermute.cpp",
        "src/runtime/cpu/operators/CpuPool2d.cpp",
        "src/runtime/cpu/operators/CpuQuantize.cpp",
        "src/runtime/cpu/operators/CpuReshape.cpp",
        "src/runtime/cpu/operators/CpuScale.cpp",
        "src/runtime/cpu/operators/CpuSoftmax.cpp",
        "src/runtime/cpu/operators/CpuSub.cpp",
        "src/runtime/cpu/operators/CpuTranspose.cpp",
        "src/runtime/cpu/operators/internal/CpuGemmAssemblyDispatch.cpp",
        "src/runtime/gpu/cl/operators/ClActivation.cpp",
        "src/runtime/gpu/cl/operators/ClAdd.cpp",
        "src/runtime/gpu/cl/operators/ClCast.cpp",
        "src/runtime/gpu/cl/operators/ClConcatenate.cpp",
        "src/runtime/gpu/cl/operators/ClConvertFullyConnectedWeights.cpp",
        "src/runtime/gpu/cl/operators/ClCopy.cpp",
        "src/runtime/gpu/cl/operators/ClCrop.cpp",
        "src/runtime/gpu/cl/operators/ClDequantize.cpp",
        "src/runtime/gpu/cl/operators/ClDirectConv2d.cpp",
        "src/runtime/gpu/cl/operators/ClElementwiseOperations.cpp",
        "src/runtime/gpu/cl/operators/ClElementwiseUnary.cpp",
        "src/runtime/gpu/cl/operators/ClFill.cpp",
        "src/runtime/gpu/cl/operators/ClFlatten.cpp",
        "src/runtime/gpu/cl/operators/ClFloor.cpp",
        "src/runtime/gpu/cl/operators/ClGemm.cpp",
        "src/runtime/gpu/cl/operators/ClLogicalNot.cpp",
        "src/runtime/gpu/cl/operators/ClMul.cpp",
        "src/runtime/gpu/cl/operators/ClPRelu.cpp",
        "src/runtime/gpu/cl/operators/ClPermute.cpp",
        "src/runtime/gpu/cl/operators/ClPool2d.cpp",
        "src/runtime/gpu/cl/operators/ClQuantize.cpp",
        "src/runtime/gpu/cl/operators/ClReshape.cpp",
        "src/runtime/gpu/cl/operators/ClScale.cpp",
        "src/runtime/gpu/cl/operators/ClSoftmax.cpp",
        "src/runtime/gpu/cl/operators/ClSub.cpp",
        "src/runtime/gpu/cl/operators/ClTranspose.cpp",
        "src/runtime/gpu/cl/operators/ClWinogradConv2d.cpp",
        "utils/CommonGraphOptions.cpp",
        "utils/GraphUtils.cpp",
        "utils/Utils.cpp",
        
    ],
    arch: {
        arm: {
            srcs: [
                "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a53.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a55r1.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/generic.cpp",
                
            ],
        },
        arm64: {
            srcs: [
                "src/core/NEON/kernels/arm_conv/depthwise/interleaves/a64_s8q_3x3_dot.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/interleaves/a64_u8q_3x3_dot.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/interleaves/sve_s8q_3x3_dot.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/interleaves/sve_u8q_3x3_dot.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_generic_output9_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_generic_output9_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_packed_to_nhwc_3x3_s2_with_multiplier_output3x3_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_packed_to_nhwc_5x5_s1_with_multiplier_output2x4_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_generic_output9_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8qs_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_generic_output9_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_generic_output9_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst_strided/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_generic_output9_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_packed_to_nhwc_3x3_s2_with_multiplier_output3x3_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_packed_to_nhwc_5x5_s1_with_multiplier_output2x4_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8qs_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8s8u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8s8u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8s8u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8q_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8q_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8q_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8q_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8q_nhwc_avg_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8q_nhwc_max_generic_depthfirst/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s16_8x12/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_4x4/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/a55r1.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/x1.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u16_8x12/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_4x4/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/a55r1.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/x1.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_gemv_fp32_mla_32/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/a55r1.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/x1.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_bf16fp32_dot_6x16/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp16_mla_6x32/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp16_mla_6x32/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_6x16/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_6x16/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_8x4/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_8x4/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_dot_4x16/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_dot_4x16/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_dot_6x16/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_dot_6x16/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_6x16/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_6x16/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_dot_4x16/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_dot_4x16/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_6x16/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_6x16/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_dot_8x12/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_mmla_8x12/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_s8s32_mmla_8x12/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_u8u32_mmla_8x12/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a53.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55r1.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/x1.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x6/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemv_pretransposed/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_6x4/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_8x4/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/a55.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_gemv_fp32_mla_8VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_bf16fp32_dot_6x4VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp16_mla_6x4VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_6x4VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_8x1VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qa_dot_4x4VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qs_dot_6x4VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8s32_dot_6x4VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8qa_dot_4x4VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8u32_dot_6x4VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_dot_8x3VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_mmla_8x3VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp16_mla_8x3VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mla_8x3VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mmla_8x3VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_dot_8x3VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_mmla_8x3VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_dot_8x3VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_mmla_8x3VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_fp32_mla_8x1VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_s8s32_dot_8x1VL/generic.cpp",
                "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_u8u32_dot_8x1VL/generic.cpp",
                
            ],
        },
    },
    rtti: true,
}