aboutsummaryrefslogtreecommitdiff
path: root/src/BUILD.bazel
blob: d4a3b61836c0dd7b43f053f6ffd480bcc426fb14 (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
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
# Copyright (c) 2023-2024 Arm Limited.
#
# SPDX-License-Identifier: MIT
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

filegroup(
        name = "arm_compute_graph_srcs",
        srcs = ["graph/DataLayerVisitor.cpp",
	"graph/Graph.cpp",
	"graph/GraphBuilder.cpp",
	"graph/GraphContext.cpp",
	"graph/GraphManager.cpp",
	"graph/INode.cpp",
	"graph/INodeVisitor.cpp",
	"graph/PassManager.cpp",
	"graph/Tensor.cpp",
	"graph/TypeLoader.cpp",
	"graph/Utils.cpp",
	"graph/Workload.cpp",
	"graph/algorithms/TopologicalSort.cpp",
	"graph/backends/BackendRegistry.cpp",
	"graph/backends/NEON/NEDeviceBackend.cpp",
	"graph/backends/NEON/NEFunctionFactory.cpp",
	"graph/backends/NEON/NENodeValidator.cpp",
	"graph/backends/NEON/NESubTensorHandle.cpp",
	"graph/backends/NEON/NETensorHandle.cpp",
	"graph/detail/CrossLayerMemoryManagerHelpers.cpp",
	"graph/detail/ExecutionHelpers.cpp",
	"graph/frontend/Stream.cpp",
	"graph/frontend/SubStream.cpp",
	"graph/mutators/DepthConcatSubTensorMutator.cpp",
	"graph/mutators/GroupedConvolutionMutator.cpp",
	"graph/mutators/InPlaceOperationMutator.cpp",
	"graph/mutators/MutatorUtils.cpp",
	"graph/mutators/NodeExecutionMethodMutator.cpp",
	"graph/mutators/NodeFusionMutator.cpp",
	"graph/mutators/SplitLayerSubTensorMutator.cpp",
	"graph/mutators/SyntheticDataTypeMutator.cpp",
	"graph/nodes/ActivationLayerNode.cpp",
	"graph/nodes/ArgMinMaxLayerNode.cpp",
	"graph/nodes/BatchNormalizationLayerNode.cpp",
	"graph/nodes/BoundingBoxTransformLayerNode.cpp",
	"graph/nodes/ChannelShuffleLayerNode.cpp",
	"graph/nodes/ConcatenateLayerNode.cpp",
	"graph/nodes/ConstNode.cpp",
	"graph/nodes/ConvolutionLayerNode.cpp",
	"graph/nodes/DeconvolutionLayerNode.cpp",
	"graph/nodes/DepthToSpaceLayerNode.cpp",
	"graph/nodes/DepthwiseConvolutionLayerNode.cpp",
	"graph/nodes/DequantizationLayerNode.cpp",
	"graph/nodes/DetectionOutputLayerNode.cpp",
	"graph/nodes/DetectionPostProcessLayerNode.cpp",
	"graph/nodes/DummyNode.cpp",
	"graph/nodes/EltwiseLayerNode.cpp",
	"graph/nodes/FlattenLayerNode.cpp",
	"graph/nodes/FullyConnectedLayer.cpp",
	"graph/nodes/FusedConvolutionBatchNormalizationNode.cpp",
	"graph/nodes/FusedDepthwiseConvolutionBatchNormalizationNode.cpp",
	"graph/nodes/GenerateProposalsLayerNode.cpp",
	"graph/nodes/InputNode.cpp",
	"graph/nodes/L2NormalizeLayerNode.cpp",
	"graph/nodes/NormalizationLayerNode.cpp",
	"graph/nodes/NormalizePlanarYUVLayerNode.cpp",
	"graph/nodes/OutputNode.cpp",
	"graph/nodes/PReluLayerNode.cpp",
	"graph/nodes/PadLayerNode.cpp",
	"graph/nodes/PermuteLayerNode.cpp",
	"graph/nodes/PoolingLayerNode.cpp",
	"graph/nodes/PrintLayerNode.cpp",
	"graph/nodes/PriorBoxLayerNode.cpp",
	"graph/nodes/QuantizationLayerNode.cpp",
	"graph/nodes/ROIAlignLayerNode.cpp",
	"graph/nodes/ReductionLayerNode.cpp",
	"graph/nodes/ReorgLayerNode.cpp",
	"graph/nodes/ReshapeLayer.cpp",
	"graph/nodes/ResizeLayerNode.cpp",
	"graph/nodes/SliceLayerNode.cpp",
	"graph/nodes/SoftmaxLayerNode.cpp",
	"graph/nodes/SplitLayerNode.cpp",
	"graph/nodes/StackLayerNode.cpp",
	"graph/nodes/StridedSliceLayerNode.cpp",
	"graph/printers/DotGraphPrinter.cpp",
	"//utils:CommonGraphOptions.cpp"]  +
    glob(["**/*.h",
    "**/*.hpp",
    "**/*.inl"]),
		visibility = ["//visibility:public"]
)

filegroup(
        name = "arm_compute_sve2_srcs",
        srcs = ["cpu/kernels/activation/generic/sve2/lut.cpp",
	"cpu/kernels/activation/generic/sve2/qasymm8.cpp",
	"cpu/kernels/activation/generic/sve2/qasymm8_signed.cpp",
	"cpu/kernels/activation/generic/sve2/qsymm16.cpp",
	"cpu/kernels/add/generic/sve2/qasymm8.cpp",
	"cpu/kernels/add/generic/sve2/qasymm8_signed.cpp",
	"cpu/kernels/add/generic/sve2/qsymm16.cpp",
	"cpu/kernels/elementwise_binary/generic/sve2/qasymm8.cpp",
	"cpu/kernels/elementwise_binary/generic/sve2/qasymm8_signed.cpp",
	"cpu/kernels/elementwise_unary/generic/sve2/q8.cpp",
	"cpu/kernels/lut/generic/sve2/u8.cpp",
	"cpu/kernels/softmax/generic/sve2/impl.cpp"]  +
    glob(["**/*.h",
    "**/*.hpp",
    "**/*.inl"]),
		visibility = ["//visibility:public"]
)

filegroup(
        name = "arm_compute_sve_srcs",
        srcs = ["core/NEON/kernels/arm_conv/depthwise/interleaves/sve_s8q_3x3_dot.cpp",
	"core/NEON/kernels/arm_conv/depthwise/interleaves/sve_u8q_3x3_dot.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_planar_3x3_s1_4rows_mla_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_planar_3x3_s2_4rows_mla_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_planar_5x5_s1_4rows_mla_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32_planar_5x5_s2_4rows_mla_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32bf16fp32_planar_3x3_s1_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32bf16fp32_planar_3x3_s2_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32bf16fp32_planar_5x5_s1_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_fp32bf16fp32_planar_5x5_s2_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_s8q_planar_3x3_s1_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_s8q_planar_3x3_s2_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_s8q_planar_5x5_s1_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_s8q_planar_5x5_s2_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_u8q_planar_3x3_s1_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_u8q_planar_3x3_s2_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_u8q_planar_5x5_s1_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_u8q_planar_5x5_s2_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_u8s8u8q_planar_3x3_s1_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_u8s8u8q_planar_3x3_s2_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_u8s8u8q_planar_5x5_s1_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sme2_u8s8u8q_planar_5x5_s2_4rows_dot_za/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_generic_output9_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_packed_to_nhwc_3x3_s2_with_multiplier_output3x3_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_packed_to_nhwc_5x5_s1_with_multiplier_output2x4_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8qs_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8s8u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8s8u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8s8u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_fp16_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_fp16_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_fp16_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_fp16_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_fp32_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_fp32_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_fp32_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_fp32_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_s8_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_s8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_s8_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_s8q_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_s8q_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_u8_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_u8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_u8_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_u8q_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sme_u8q_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_u8q_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/sve_u8q_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_gemm/interleave_indirect-sve.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_gemv_bf16fp32_dot_16VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_gemv_fp16fp32fp16_dot_16VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_gemv_fp32_mla_16VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_gemv_fp32bf16fp32_dot_16VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_gemv_s8qa_dot_16VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_gemv_u8qa_dot_16VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_bf16fp32_mopa_1VLx4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_bf16fp32_mopa_2VLx2VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_bf16fp32_mopa_4VLx1VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_fp16fp32fp16_mopa_1VLx4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_fp16fp32fp16_mopa_2VLx2VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_fp16fp32fp16_mopa_4VLx1VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_fp32_mopa_1VLx4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_fp32_mopa_2VLx2VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_fp32_mopa_4VLx1VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_s8q_mopa_1VLx4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_s8q_mopa_2VLx2VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_s8q_mopa_4VLx1VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_s8s32_mopa_1VLx4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_s8s32_mopa_2VLx2VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_s8s32_mopa_4VLx1VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_u8q_mopa_1VLx4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_u8q_mopa_2VLx2VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sme2_interleaved_nomerge_u8q_mopa_4VLx1VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_ffhybrid_bf16fp32_mmla_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_ffhybrid_fp16_mla_6x4VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_ffhybrid_fp16_mla_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_ffhybrid_fp32_mla_6x4VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_ffhybrid_fp32_mla_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_ffhybrid_fp32bf16fp32_mmla_4x6VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_ffinterleaved_bf16fp32_mmla_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_ffinterleaved_fp16_mla_8x3VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_ffinterleaved_fp16_mla_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_ffinterleaved_fp32_mla_8x3VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_ffinterleaved_fp32_mla_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_bf16fp32_dot_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_bf16fp32_mmla_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp16_mla_6x4VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp16_mla_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_6x4VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_8x1VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_8x1VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32bf16fp32_mmla_4x6VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32bf16fp32_mmla_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qa_dot_4x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qa_mmla_4x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qs_dot_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qs_mmla_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8s32_dot_6x4VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8s32_dot_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8s32_mmla_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8qa_dot_4x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8qa_mmla_4x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8u32_dot_6x4VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8u32_dot_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8u32_mmla_6x4VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_dot_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_mmla_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp16_mla_8x3VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp16_mla_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mla_8x3VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mla_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mmla_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_dot_8x3VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_dot_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_mmla_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_dot_8x3VL/a64fx.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_dot_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_mmla_8x3VL/generic.cpp",
	"core/NEON/kernels/arm_gemm/mergeresults-sve.cpp",
	"core/NEON/kernels/arm_gemm/misc-sve.cpp",
	"core/NEON/kernels/arm_gemm/transform-sve.cpp",
	"core/NEON/kernels/batchnormalization/impl/SVE/fp16.cpp",
	"core/NEON/kernels/batchnormalization/impl/SVE/fp32.cpp",
	"core/NEON/kernels/convolution/winograd/input_transforms/sme_fp32_mla_6x6.cpp",
	"core/NEON/kernels/convolution/winograd/input_transforms/sve_fp32_6x6.cpp",
	"core/NEON/kernels/convolution/winograd/output_transforms/sme_fp32_mopa_4x4_3x3.cpp",
	"cpu/kernels/activation/generic/sve/fp16.cpp",
	"cpu/kernels/activation/generic/sve/fp32.cpp",
	"cpu/kernels/add/generic/sve/fp16.cpp",
	"cpu/kernels/add/generic/sve/fp32.cpp",
	"cpu/kernels/add/generic/sve/impl.cpp",
	"cpu/kernels/add/generic/sve/integer.cpp",
	"cpu/kernels/elementwise_binary/generic/sve/fp16.cpp",
	"cpu/kernels/elementwise_binary/generic/sve/fp32.cpp",
	"cpu/kernels/elementwise_binary/generic/sve/impl.cpp",
	"cpu/kernels/elementwise_binary/generic/sve/integer.cpp",
	"cpu/kernels/elementwise_unary/generic/sve/fp16.cpp",
	"cpu/kernels/elementwise_unary/generic/sve/fp32.cpp",
	"cpu/kernels/elementwise_unary/generic/sve/impl.cpp",
	"cpu/kernels/elementwise_unary/generic/sve/integer.cpp",
	"cpu/kernels/lut/generic/sve/u16.cpp",
	"cpu/kernels/scale/sve/fp16.cpp",
	"cpu/kernels/scale/sve/fp32.cpp",
	"cpu/kernels/scale/sve/integer.cpp",
	"cpu/kernels/scale/sve/qasymm8.cpp",
	"cpu/kernels/scale/sve/qasymm8_signed.cpp",
	"cpu/kernels/softmax/generic/sve/impl.cpp"]  +
    glob(["**/*.h",
    "**/*.hpp",
    "**/*.inl"]),
		visibility = ["//visibility:public"]
)

filegroup(
        name = "arm_compute_srcs",
        srcs = ["c/AclContext.cpp",
	"c/AclOperator.cpp",
	"c/AclQueue.cpp",
	"c/AclTensor.cpp",
	"c/AclTensorPack.cpp",
	"c/AclVersion.cpp",
	"c/operators/AclActivation.cpp",
	"common/AllocatorWrapper.cpp",
	"common/IOperator.cpp",
	"common/ITensorV2.cpp",
	"common/TensorPack.cpp",
	"common/cpuinfo/CpuInfo.cpp",
	"common/cpuinfo/CpuIsaInfo.cpp",
	"common/cpuinfo/CpuModel.cpp",
	"common/utils/LegacySupport.cpp",
	"core/AccessWindowAutoPadding.cpp",
	"core/AccessWindowStatic.cpp",
	"core/AccessWindowTranspose.cpp",
	"core/CPP/CPPTypes.cpp",
	"core/CPP/kernels/CPPBoxWithNonMaximaSuppressionLimitKernel.cpp",
	"core/CPP/kernels/CPPNonMaximumSuppressionKernel.cpp",
	"core/CPP/kernels/CPPPermuteKernel.cpp",
	"core/CPP/kernels/CPPTopKVKernel.cpp",
	"core/CPP/kernels/CPPUpsampleKernel.cpp",
	"core/Error.cpp",
	"core/GPUTarget.cpp",
	"core/Helpers.cpp",
	"core/IAccessWindow.cpp",
	"core/IKernel.cpp",
	"core/ITensor.cpp",
	"core/ITensorPack.cpp",
	"core/NEON/kernels/NEBatchNormalizationLayerKernel.cpp",
	"core/NEON/kernels/NEBatchToSpaceLayerKernel.cpp",
	"core/NEON/kernels/NEBitwiseAndKernel.cpp",
	"core/NEON/kernels/NEBitwiseNotKernel.cpp",
	"core/NEON/kernels/NEBitwiseOrKernel.cpp",
	"core/NEON/kernels/NEBitwiseXorKernel.cpp",
	"core/NEON/kernels/NEBoundingBoxTransformKernel.cpp",
	"core/NEON/kernels/NEChannelShuffleLayerKernel.cpp",
	"core/NEON/kernels/NECropKernel.cpp",
	"core/NEON/kernels/NEDepthToSpaceLayerKernel.cpp",
	"core/NEON/kernels/NEFFTDigitReverseKernel.cpp",
	"core/NEON/kernels/NEFFTRadixStageKernel.cpp",
	"core/NEON/kernels/NEFFTScaleKernel.cpp",
	"core/NEON/kernels/NEFillBorderKernel.cpp",
	"core/NEON/kernels/NEFuseBatchNormalizationKernel.cpp",
	"core/NEON/kernels/NEGatherKernel.cpp",
	"core/NEON/kernels/NEGenerateProposalsLayerKernel.cpp",
	"core/NEON/kernels/NEInstanceNormalizationLayerKernel.cpp",
	"core/NEON/kernels/NEL2NormalizeLayerKernel.cpp",
	"core/NEON/kernels/NELogicalKernel.cpp",
	"core/NEON/kernels/NEMeanStdDevNormalizationKernel.cpp",
	"core/NEON/kernels/NENormalizationLayerKernel.cpp",
	"core/NEON/kernels/NEPadLayerKernel.cpp",
	"core/NEON/kernels/NEPriorBoxLayerKernel.cpp",
	"core/NEON/kernels/NEQLSTMLayerNormalizationKernel.cpp",
	"core/NEON/kernels/NEROIAlignLayerKernel.cpp",
	"core/NEON/kernels/NEROIPoolingLayerKernel.cpp",
	"core/NEON/kernels/NERangeKernel.cpp",
	"core/NEON/kernels/NEReductionOperationKernel.cpp",
	"core/NEON/kernels/NEReorderKernel.cpp",
	"core/NEON/kernels/NEReorgLayerKernel.cpp",
	"core/NEON/kernels/NEReverseKernel.cpp",
	"core/NEON/kernels/NESelectKernel.cpp",
	"core/NEON/kernels/NESpaceToBatchLayerKernel.cpp",
	"core/NEON/kernels/NESpaceToDepthLayerKernel.cpp",
	"core/NEON/kernels/NEStackLayerKernel.cpp",
	"core/NEON/kernels/NEStridedSliceKernel.cpp",
	"core/NEON/kernels/NETileKernel.cpp",
	"core/NEON/kernels/arm_conv/addressing.cpp",
	"core/NEON/kernels/arm_conv/depthwise/depthwise_common.cpp",
	"core/NEON/kernels/arm_conv/depthwise/depthwise_fp16.cpp",
	"core/NEON/kernels/arm_conv/depthwise/depthwise_fp32.cpp",
	"core/NEON/kernels/arm_conv/depthwise/depthwise_s8q.cpp",
	"core/NEON/kernels/arm_conv/depthwise/depthwise_strategies_common.cpp",
	"core/NEON/kernels/arm_conv/depthwise/depthwise_u8q.cpp",
	"core/NEON/kernels/arm_conv/depthwise/depthwise_u8s8u8q.cpp",
	"core/NEON/kernels/arm_conv/depthwise/interleaves/a64_s8q_3x3_dot.cpp",
	"core/NEON/kernels/arm_conv/depthwise/interleaves/a64_u8q_3x3_dot.cpp",
	"core/NEON/kernels/arm_conv/depthwise/interleaves/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/interleaves/generic_quantized_dot_product.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_generic_output9_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_generic_output9_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_packed_to_nhwc_3x3_s2_with_multiplier_output3x3_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_packed_to_nhwc_5x5_s1_with_multiplier_output2x4_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_generic_output9_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8qs_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_generic_output9_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8qa_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8qa_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8qa_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_generic_output9_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/depthwise/premultiply.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_s8q_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_s8q_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_u8q_nhwc_avg_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/a64_u8q_nhwc_max_generic_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/kernels/cpp_nhwc_1x1_stride_any_depthfirst/generic.cpp",
	"core/NEON/kernels/arm_conv/pooling/pooling_fp16.cpp",
	"core/NEON/kernels/arm_conv/pooling/pooling_fp32.cpp",
	"core/NEON/kernels/arm_conv/pooling/pooling_s8.cpp",
	"core/NEON/kernels/arm_conv/pooling/pooling_s8q.cpp",
	"core/NEON/kernels/arm_conv/pooling/pooling_u8.cpp",
	"core/NEON/kernels/arm_conv/pooling/pooling_u8q.cpp",
	"core/NEON/kernels/arm_gemm/gemm_bf16.cpp",
	"core/NEON/kernels/arm_gemm/gemm_bf16bf16.cpp",
	"core/NEON/kernels/arm_gemm/gemm_fp16.cpp",
	"core/NEON/kernels/arm_gemm/gemm_fp32.cpp",
	"core/NEON/kernels/arm_gemm/gemm_int16.cpp",
	"core/NEON/kernels/arm_gemm/gemm_int8.cpp",
	"core/NEON/kernels/arm_gemm/gemm_qint8.cpp",
	"core/NEON/kernels/arm_gemm/gemm_quint8.cpp",
	"core/NEON/kernels/arm_gemm/gemm_uint16.cpp",
	"core/NEON/kernels/arm_gemm/gemm_uint8.cpp",
	"core/NEON/kernels/arm_gemm/interleave-8way.cpp",
	"core/NEON/kernels/arm_gemm/interleave_indirect.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_ffhybrid_bf16fp32_mmla_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_ffhybrid_fp16_mla_6x32/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_ffhybrid_fp32_mla_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_ffhybrid_fp32bf16fp32_mmla_4x24/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_ffinterleaved_bf16fp32_dot_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_ffinterleaved_bf16fp32_mmla_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_ffinterleaved_fp16_mla_8x24/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_ffinterleaved_fp32_mla_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_gemm_s16_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_4x4/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/a55r1.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/x1.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_gemm_u16_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_4x4/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/a55r1.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/x1.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/a55r1.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/x1.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_bf16fp32_dot_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_bf16fp32_mmla_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp16_mla_6x32/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp16_mla_6x32/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_4x24/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_4x24/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_6x16/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_8x4/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_8x4/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32bf16fp32_mmla_4x24/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32bf16fp32_mmla_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_dot_4x16/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_dot_4x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_mmla_4x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_dot_6x16/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_dot_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_mmla_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_6x16/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_mmla_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_dot_4x16/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_dot_4x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_mmla_4x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_6x16/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_mmla_6x16/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_dot_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_dot_8x12/x1.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_mmla_8x12/a510.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_mmla_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_interleaved_s8s32_mmla_8x12/a510.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_interleaved_s8s32_mmla_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_interleaved_u8u32_mmla_8x12/a510.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_interleaved_u8u32_mmla_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a53.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55r1.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/x1.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x6/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_sgemv_pretransposed/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_6x4/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_8x4/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/generic.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/a55.cpp",
	"core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/generic.cpp",
	"core/NEON/kernels/arm_gemm/mergeresults-fp16.cpp",
	"core/NEON/kernels/arm_gemm/mergeresults.cpp",
	"core/NEON/kernels/arm_gemm/misc.cpp",
	"core/NEON/kernels/arm_gemm/quantized.cpp",
	"core/NEON/kernels/arm_gemm/rowsum_indirect_s8.cpp",
	"core/NEON/kernels/arm_gemm/rowsum_indirect_u8.cpp",
	"core/NEON/kernels/arm_gemm/transform.cpp",
	"core/NEON/kernels/batchnormalization/impl/NEON/fp16.cpp",
	"core/NEON/kernels/batchnormalization/impl/NEON/fp32.cpp",
	"core/NEON/kernels/convolution/common/padding.cpp",
	"core/NEON/kernels/convolution/common/qasymm8.cpp",
	"core/NEON/kernels/convolution/common/qsymm8.cpp",
	"core/NEON/kernels/convolution/common/utils.cpp",
	"core/NEON/kernels/convolution/winograd/input_transforms/a64_fp16_6x6.cpp",
	"core/NEON/kernels/convolution/winograd/input_transforms/a64_fp32_6x6.cpp",
	"core/NEON/kernels/convolution/winograd/input_transforms/arm_fp32_1x8.cpp",
	"core/NEON/kernels/convolution/winograd/input_transforms/arm_fp32_4x4.cpp",
	"core/NEON/kernels/convolution/winograd/input_transforms/arm_fp32_6x6.cpp",
	"core/NEON/kernels/convolution/winograd/input_transforms_fp16.cpp",
	"core/NEON/kernels/convolution/winograd/input_transforms_fp32.cpp",
	"core/NEON/kernels/convolution/winograd/output_transforms/a64_fp16_4x4_3x3.cpp",
	"core/NEON/kernels/convolution/winograd/output_transforms/arm_fp32_1x2_1x7.cpp",
	"core/NEON/kernels/convolution/winograd/output_transforms/arm_fp32_1x4_1x5.cpp",
	"core/NEON/kernels/convolution/winograd/output_transforms/arm_fp32_1x6_1x3.cpp",
	"core/NEON/kernels/convolution/winograd/output_transforms/arm_fp32_2x2_3x3.cpp",
	"core/NEON/kernels/convolution/winograd/output_transforms/arm_fp32_2x2_5x5.cpp",
	"core/NEON/kernels/convolution/winograd/output_transforms/arm_fp32_4x4_3x3.cpp",
	"core/NEON/kernels/convolution/winograd/output_transforms_fp16.cpp",
	"core/NEON/kernels/convolution/winograd/output_transforms_fp32.cpp",
	"core/NEON/kernels/convolution/winograd/weight_transforms/a64_fp16_4x4_3x3.cpp",
	"core/NEON/kernels/convolution/winograd/weight_transforms/arm_fp32_2x2_3x3.cpp",
	"core/NEON/kernels/convolution/winograd/weight_transforms/arm_fp32_2x2_5x5.cpp",
	"core/NEON/kernels/convolution/winograd/weight_transforms/arm_fp32_4x4_3x3.cpp",
	"core/NEON/kernels/convolution/winograd/weight_transforms/cpp_fp32_1x2_1x7.cpp",
	"core/NEON/kernels/convolution/winograd/weight_transforms/cpp_fp32_1x4_1x5.cpp",
	"core/NEON/kernels/convolution/winograd/weight_transforms/cpp_fp32_1x6_1x3.cpp",
	"core/NEON/kernels/convolution/winograd/weight_transforms_fp16.cpp",
	"core/NEON/kernels/convolution/winograd/weight_transforms_fp32.cpp",
	"core/NEON/kernels/convolution/winograd/winograd_fp16.cpp",
	"core/NEON/kernels/convolution/winograd/winograd_fp32.cpp",
	"core/Rounding.cpp",
	"core/Size2D.cpp",
	"core/SubTensorInfo.cpp",
	"core/TensorInfo.cpp",
	"core/Utils.cpp",
	"core/Validate.cpp",
	"core/Version.cpp",
	"core/helpers/LUTManager.cpp",
	"core/helpers/SoftmaxHelpers.cpp",
	"core/helpers/Utils.cpp",
	"core/helpers/WindowHelpers.cpp",
	"core/utils/ActivationFunctionUtils.cpp",
	"core/utils/AssemblyUtils.cpp",
	"core/utils/DataLayoutUtils.cpp",
	"core/utils/DataTypeUtils.cpp",
	"core/utils/FormatUtils.cpp",
	"core/utils/InterpolationPolicyUtils.cpp",
	"core/utils/Math.cpp",
	"core/utils/ScaleUtils.cpp",
	"core/utils/StringUtils.cpp",
	"core/utils/helpers/fft.cpp",
	"core/utils/helpers/tensor_transform.cpp",
	"core/utils/io/FileHandler.cpp",
	"core/utils/logging/FilePrinter.cpp",
	"core/utils/logging/Helpers.cpp",
	"core/utils/logging/Logger.cpp",
	"core/utils/logging/LoggerRegistry.cpp",
	"core/utils/misc/MMappedFile.cpp",
	"core/utils/quantization/AsymmHelpers.cpp",
	"cpu/CpuContext.cpp",
	"cpu/CpuQueue.cpp",
	"cpu/CpuTensor.cpp",
	"cpu/kernels/CpuActivationKernel.cpp",
	"cpu/kernels/CpuAddKernel.cpp",
	"cpu/kernels/CpuAddMulAddKernel.cpp",
	"cpu/kernels/CpuCastKernel.cpp",
	"cpu/kernels/CpuCol2ImKernel.cpp",
	"cpu/kernels/CpuConcatenateBatchKernel.cpp",
	"cpu/kernels/CpuConcatenateDepthKernel.cpp",
	"cpu/kernels/CpuConcatenateHeightKernel.cpp",
	"cpu/kernels/CpuConcatenateWidthKernel.cpp",
	"cpu/kernels/CpuConvertFullyConnectedWeightsKernel.cpp",
	"cpu/kernels/CpuConvertQuantizedSignednessKernel.cpp",
	"cpu/kernels/CpuCopyKernel.cpp",
	"cpu/kernels/CpuDepthwiseConv2dNativeKernel.cpp",
	"cpu/kernels/CpuDequantizeKernel.cpp",
	"cpu/kernels/CpuDirectConv2dKernel.cpp",
	"cpu/kernels/CpuDirectConv2dOutputStageKernel.cpp",
	"cpu/kernels/CpuDirectConv3dKernel.cpp",
	"cpu/kernels/CpuElementwiseKernel.cpp",
	"cpu/kernels/CpuElementwiseUnaryKernel.cpp",
	"cpu/kernels/CpuFillKernel.cpp",
	"cpu/kernels/CpuFloorKernel.cpp",
	"cpu/kernels/CpuGemmInterleave4x4Kernel.cpp",
	"cpu/kernels/CpuGemmLowpMatrixMultiplyKernel.cpp",
	"cpu/kernels/CpuGemmLowpMatrixReductionKernel.cpp",
	"cpu/kernels/CpuGemmLowpOffsetContributionKernel.cpp",
	"cpu/kernels/CpuGemmLowpOffsetContributionOutputStageKernel.cpp",
	"cpu/kernels/CpuGemmLowpQuantizeDownInt32ScaleKernel.cpp",
	"cpu/kernels/CpuGemmLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel.cpp",
	"cpu/kernels/CpuGemmLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel.cpp",
	"cpu/kernels/CpuGemmLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.cpp",
	"cpu/kernels/CpuGemmMatrixAdditionKernel.cpp",
	"cpu/kernels/CpuGemmMatrixMultiplyKernel.cpp",
	"cpu/kernels/CpuGemmTranspose1xWKernel.cpp",
	"cpu/kernels/CpuIm2ColKernel.cpp",
	"cpu/kernels/CpuMaxUnpoolingLayerKernel.cpp",
	"cpu/kernels/CpuMulKernel.cpp",
	"cpu/kernels/CpuPermuteKernel.cpp",
	"cpu/kernels/CpuPool2dKernel.cpp",
	"cpu/kernels/CpuPool3dKernel.cpp",
	"cpu/kernels/CpuQuantizeKernel.cpp",
	"cpu/kernels/CpuReshapeKernel.cpp",
	"cpu/kernels/CpuScaleKernel.cpp",
	"cpu/kernels/CpuSoftmaxKernel.cpp",
	"cpu/kernels/CpuSubKernel.cpp",
	"cpu/kernels/CpuTransposeKernel.cpp",
	"cpu/kernels/CpuWeightsReshapeKernel.cpp",
	"cpu/kernels/CpuWinogradConv2dKernel.cpp",
	"cpu/kernels/activation/generic/neon/fp16.cpp",
	"cpu/kernels/activation/generic/neon/fp32.cpp",
	"cpu/kernels/activation/generic/neon/lut.cpp",
	"cpu/kernels/activation/generic/neon/qasymm8.cpp",
	"cpu/kernels/activation/generic/neon/qasymm8_signed.cpp",
	"cpu/kernels/activation/generic/neon/qsymm16.cpp",
	"cpu/kernels/add/generic/neon/fp16.cpp",
	"cpu/kernels/add/generic/neon/fp32.cpp",
	"cpu/kernels/add/generic/neon/impl.cpp",
	"cpu/kernels/add/generic/neon/integer.cpp",
	"cpu/kernels/add/generic/neon/qasymm8.cpp",
	"cpu/kernels/add/generic/neon/qasymm8_signed.cpp",
	"cpu/kernels/add/generic/neon/qsymm16.cpp",
	"cpu/kernels/addmuladd/generic/neon/fp16.cpp",
	"cpu/kernels/addmuladd/generic/neon/fp32.cpp",
	"cpu/kernels/addmuladd/generic/neon/qasymm8.cpp",
	"cpu/kernels/addmuladd/generic/neon/qasymm8_signed.cpp",
	"cpu/kernels/boundingboxtransform/generic/neon/fp16.cpp",
	"cpu/kernels/boundingboxtransform/generic/neon/fp32.cpp",
	"cpu/kernels/boundingboxtransform/generic/neon/impl.cpp",
	"cpu/kernels/boundingboxtransform/generic/neon/qsymm16.cpp",
	"cpu/kernels/cast/generic/neon/fp16.cpp",
	"cpu/kernels/crop/generic/neon/fp16.cpp",
	"cpu/kernels/crop/generic/neon/fp32.cpp",
	"cpu/kernels/crop/generic/neon/integer.cpp",
	"cpu/kernels/depth_to_space/nchw/any/impl.cpp",
	"cpu/kernels/depth_to_space/nhwc/any/impl.cpp",
	"cpu/kernels/depthwiseconv2d/generic/neon/fp16.cpp",
	"cpu/kernels/depthwiseconv2d/generic/neon/fp32.cpp",
	"cpu/kernels/depthwiseconv2d/generic/neon/impl.cpp",
	"cpu/kernels/depthwiseconv2d/generic/neon/qasymm8.cpp",
	"cpu/kernels/depthwiseconv2d/generic/neon/qasymm8_signed.cpp",
	"cpu/kernels/directconv2d/nchw/all.cpp",
	"cpu/kernels/directconv2d/nchw/fp16.cpp",
	"cpu/kernels/directconv2d/nhwc/neon/fp16.cpp",
	"cpu/kernels/directconv2d/nhwc/neon/fp32.cpp",
	"cpu/kernels/directconv2d/nhwc/neon/impl.cpp",
	"cpu/kernels/directconv2d/nhwc/neon/qasymm8.cpp",
	"cpu/kernels/elementwise_binary/generic/neon/fp16.cpp",
	"cpu/kernels/elementwise_binary/generic/neon/fp32.cpp",
	"cpu/kernels/elementwise_binary/generic/neon/integer.cpp",
	"cpu/kernels/elementwise_binary/generic/neon/qasymm8.cpp",
	"cpu/kernels/elementwise_binary/generic/neon/qasymm8_signed.cpp",
	"cpu/kernels/elementwise_unary/generic/neon/fp16.cpp",
	"cpu/kernels/elementwise_unary/generic/neon/fp32.cpp",
	"cpu/kernels/elementwise_unary/generic/neon/integer.cpp",
	"cpu/kernels/elementwise_unary/generic/neon/q8.cpp",
	"cpu/kernels/elementwise_unary/generic/neon/qasymm8.cpp",
	"cpu/kernels/elementwise_unary/generic/neon/qasymm8_signed.cpp",
	"cpu/kernels/floor/neon/fp16.cpp",
	"cpu/kernels/floor/neon/fp32.cpp",
	"cpu/kernels/fuse_batch_normalization/generic/fp16.cpp",
	"cpu/kernels/fuse_batch_normalization/generic/fp32.cpp",
	"cpu/kernels/fuse_batch_normalization/nchw/all.cpp",
	"cpu/kernels/fuse_batch_normalization/nchw/neon/fp16.cpp",
	"cpu/kernels/fuse_batch_normalization/nchw/neon/fp32.cpp",
	"cpu/kernels/fuse_batch_normalization/nhwc/neon/fp16.cpp",
	"cpu/kernels/fuse_batch_normalization/nhwc/neon/fp32.cpp",
	"cpu/kernels/gemm_matrix_add/generic/neon/fp16.cpp",
	"cpu/kernels/gemm_matrix_add/generic/neon/fp32.cpp",
	"cpu/kernels/gemm_matrix_add/generic/neon/impl.cpp",
	"cpu/kernels/gemm_matrix_mul/generic/neon/fp16.cpp",
	"cpu/kernels/gemm_matrix_mul/generic/neon/fp32.cpp",
	"cpu/kernels/gemm_matrix_mul/generic/neon/impl.cpp",
	"cpu/kernels/genproposals/generic/neon/fp16.cpp",
	"cpu/kernels/genproposals/generic/neon/fp32.cpp",
	"cpu/kernels/genproposals/generic/neon/impl.cpp",
	"cpu/kernels/genproposals/generic/neon/qsymm16.cpp",
	"cpu/kernels/instancenorm/generic/neon/fp16.cpp",
	"cpu/kernels/instancenorm/generic/neon/fp32.cpp",
	"cpu/kernels/instancenorm/generic/neon/impl.cpp",
	"cpu/kernels/internal/CpuDepthwiseConv2dAssemblyWrapperKernel.cpp",
	"cpu/kernels/internal/CpuPool2dAssemblyWrapperKernel.cpp",
	"cpu/kernels/l2normlayer/generic/neon/fp16.cpp",
	"cpu/kernels/l2normlayer/generic/neon/fp32.cpp",
	"cpu/kernels/lut/generic/neon/u8.cpp",
	"cpu/kernels/maxunpool/generic/neon/fp16.cpp",
	"cpu/kernels/maxunpool/generic/neon/fp32.cpp",
	"cpu/kernels/maxunpool/generic/neon/qasymm8.cpp",
	"cpu/kernels/maxunpool/generic/neon/qasymm8_signed.cpp",
	"cpu/kernels/meanstddevnorm/generic/neon/fp16.cpp",
	"cpu/kernels/meanstddevnorm/generic/neon/fp32.cpp",
	"cpu/kernels/meanstddevnorm/generic/neon/impl.cpp",
	"cpu/kernels/meanstddevnorm/generic/neon/qasymm8.cpp",
	"cpu/kernels/mul/generic/neon/fp16.cpp",
	"cpu/kernels/mul/generic/neon/fp32.cpp",
	"cpu/kernels/norm_layer/generic/neon/fp16.cpp",
	"cpu/kernels/norm_layer/generic/neon/fp32.cpp",
	"cpu/kernels/pool2d/neon/fp16.cpp",
	"cpu/kernels/pool2d/neon/fp32.cpp",
	"cpu/kernels/pool2d/neon/nchw/all.cpp",
	"cpu/kernels/pool2d/neon/qasymm8.cpp",
	"cpu/kernels/pool2d/neon/qasymm8_signed.cpp",
	"cpu/kernels/pool3d/neon/fp16.cpp",
	"cpu/kernels/pool3d/neon/fp32.cpp",
	"cpu/kernels/pool3d/neon/qasymm8.cpp",
	"cpu/kernels/pool3d/neon/qasymm8_signed.cpp",
	"cpu/kernels/range/generic/neon/fp16.cpp",
	"cpu/kernels/range/generic/neon/fp32.cpp",
	"cpu/kernels/range/generic/neon/integer.cpp",
	"cpu/kernels/roialign/generic/neon/fp16.cpp",
	"cpu/kernels/roialign/generic/neon/fp32.cpp",
	"cpu/kernels/roialign/generic/neon/qasymm8.cpp",
	"cpu/kernels/roialign/generic/neon/qasymm8_signed.cpp",
	"cpu/kernels/scale/neon/fp16.cpp",
	"cpu/kernels/scale/neon/integer.cpp",
	"cpu/kernels/scale/neon/qasymm8.cpp",
	"cpu/kernels/scale/neon/qasymm8_signed.cpp",
	"cpu/kernels/select/generic/neon/fp16.cpp",
	"cpu/kernels/select/generic/neon/fp32.cpp",
	"cpu/kernels/select/generic/neon/integer.cpp",
	"cpu/kernels/softmax/generic/neon/fp16.cpp",
	"cpu/kernels/softmax/generic/neon/fp32.cpp",
	"cpu/kernels/softmax/generic/neon/impl.cpp",
	"cpu/kernels/softmax/generic/neon/qasymm8.cpp",
	"cpu/kernels/softmax/generic/neon/qasymm8_signed.cpp",
	"cpu/kernels/sub/neon/fp16.cpp",
	"cpu/kernels/sub/neon/qasymm8.cpp",
	"cpu/kernels/sub/neon/qasymm8_signed.cpp",
	"cpu/kernels/sub/neon/qsymm16.cpp",
	"cpu/operators/CpuActivation.cpp",
	"cpu/operators/CpuAdd.cpp",
	"cpu/operators/CpuAddMulAdd.cpp",
	"cpu/operators/CpuCast.cpp",
	"cpu/operators/CpuConcatenate.cpp",
	"cpu/operators/CpuConv2d.cpp",
	"cpu/operators/CpuConvertFullyConnectedWeights.cpp",
	"cpu/operators/CpuCopy.cpp",
	"cpu/operators/CpuDepthwiseConv2d.cpp",
	"cpu/operators/CpuDepthwiseConv2dAssemblyDispatch.cpp",
	"cpu/operators/CpuDequantize.cpp",
	"cpu/operators/CpuDirectConv2d.cpp",
	"cpu/operators/CpuDirectConv3d.cpp",
	"cpu/operators/CpuElementwise.cpp",
	"cpu/operators/CpuElementwiseUnary.cpp",
	"cpu/operators/CpuFill.cpp",
	"cpu/operators/CpuFlatten.cpp",
	"cpu/operators/CpuFloor.cpp",
	"cpu/operators/CpuFullyConnected.cpp",
	"cpu/operators/CpuGemm.cpp",
	"cpu/operators/CpuGemmConv2d.cpp",
	"cpu/operators/CpuGemmDirectConv2d.cpp",
	"cpu/operators/CpuGemmLowpMatrixMultiplyCore.cpp",
	"cpu/operators/CpuGemmLowpOutputStage.cpp",
	"cpu/operators/CpuMatMul.cpp",
	"cpu/operators/CpuMaxUnpooling.cpp",
	"cpu/operators/CpuMul.cpp",
	"cpu/operators/CpuPermute.cpp",
	"cpu/operators/CpuPool2d.cpp",
	"cpu/operators/CpuPool3d.cpp",
	"cpu/operators/CpuQuantize.cpp",
	"cpu/operators/CpuReshape.cpp",
	"cpu/operators/CpuScale.cpp",
	"cpu/operators/CpuSoftmax.cpp",
	"cpu/operators/CpuSub.cpp",
	"cpu/operators/CpuTranspose.cpp",
	"cpu/operators/CpuWinogradConv2d.cpp",
	"cpu/operators/internal/CpuGemmAssemblyDispatch.cpp",
	"runtime/Allocator.cpp",
	"runtime/BlobLifetimeManager.cpp",
	"runtime/BlobMemoryPool.cpp",
	"runtime/CPP/CPPScheduler.cpp",
	"runtime/CPP/ICPPSimpleFunction.cpp",
	"runtime/CPP/SingleThreadScheduler.cpp",
	"runtime/CPP/functions/CPPBoxWithNonMaximaSuppressionLimit.cpp",
	"runtime/CPP/functions/CPPDetectionOutputLayer.cpp",
	"runtime/CPP/functions/CPPDetectionPostProcessLayer.cpp",
	"runtime/CPP/functions/CPPNonMaximumSuppression.cpp",
	"runtime/CPP/functions/CPPPermute.cpp",
	"runtime/CPP/functions/CPPTopKV.cpp",
	"runtime/CPP/functions/CPPUpsample.cpp",
	"runtime/IScheduler.cpp",
	"runtime/ISimpleLifetimeManager.cpp",
	"runtime/ITensorAllocator.cpp",
	"runtime/IWeightsManager.cpp",
	"runtime/Memory.cpp",
	"runtime/MemoryManagerOnDemand.cpp",
	"runtime/NEON/INEOperator.cpp",
	"runtime/NEON/INESimpleFunction.cpp",
	"runtime/NEON/INESimpleFunctionNoBorder.cpp",
	"runtime/NEON/functions/NEActivationLayer.cpp",
	"runtime/NEON/functions/NEAddMulAdd.cpp",
	"runtime/NEON/functions/NEArgMinMaxLayer.cpp",
	"runtime/NEON/functions/NEArithmeticAddition.cpp",
	"runtime/NEON/functions/NEArithmeticSubtraction.cpp",
	"runtime/NEON/functions/NEBatchNormalizationLayer.cpp",
	"runtime/NEON/functions/NEBatchToSpaceLayer.cpp",
	"runtime/NEON/functions/NEBitwiseAnd.cpp",
	"runtime/NEON/functions/NEBitwiseNot.cpp",
	"runtime/NEON/functions/NEBitwiseOr.cpp",
	"runtime/NEON/functions/NEBitwiseXor.cpp",
	"runtime/NEON/functions/NEBoundingBoxTransform.cpp",
	"runtime/NEON/functions/NECast.cpp",
	"runtime/NEON/functions/NEChannelShuffleLayer.cpp",
	"runtime/NEON/functions/NEConcatenateLayer.cpp",
	"runtime/NEON/functions/NEConv3D.cpp",
	"runtime/NEON/functions/NEConvertFullyConnectedWeights.cpp",
	"runtime/NEON/functions/NEConvolutionLayer.cpp",
	"runtime/NEON/functions/NECopy.cpp",
	"runtime/NEON/functions/NECropResize.cpp",
	"runtime/NEON/functions/NEDeconvolutionLayer.cpp",
	"runtime/NEON/functions/NEDepthConvertLayer.cpp",
	"runtime/NEON/functions/NEDepthToSpaceLayer.cpp",
	"runtime/NEON/functions/NEDepthwiseConvolutionLayer.cpp",
	"runtime/NEON/functions/NEDequantizationLayer.cpp",
	"runtime/NEON/functions/NEDetectionPostProcessLayer.cpp",
	"runtime/NEON/functions/NEDirectConvolutionLayer.cpp",
	"runtime/NEON/functions/NEElementwiseOperations.cpp",
	"runtime/NEON/functions/NEElementwiseUnaryLayer.cpp",
	"runtime/NEON/functions/NEFFT1D.cpp",
	"runtime/NEON/functions/NEFFT2D.cpp",
	"runtime/NEON/functions/NEFFTConvolutionLayer.cpp",
	"runtime/NEON/functions/NEFill.cpp",
	"runtime/NEON/functions/NEFlattenLayer.cpp",
	"runtime/NEON/functions/NEFloor.cpp",
	"runtime/NEON/functions/NEFullyConnectedLayer.cpp",
	"runtime/NEON/functions/NEFuseBatchNormalization.cpp",
	"runtime/NEON/functions/NEGEMM.cpp",
	"runtime/NEON/functions/NEGEMMConv2d.cpp",
	"runtime/NEON/functions/NEGEMMConvolutionLayer.cpp",
	"runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp",
	"runtime/NEON/functions/NEGEMMLowpOutputStage.cpp",
	"runtime/NEON/functions/NEGather.cpp",
	"runtime/NEON/functions/NEGenerateProposalsLayer.cpp",
	"runtime/NEON/functions/NEInstanceNormalizationLayer.cpp",
	"runtime/NEON/functions/NEL2NormalizeLayer.cpp",
	"runtime/NEON/functions/NELSTMLayer.cpp",
	"runtime/NEON/functions/NELSTMLayerQuantized.cpp",
	"runtime/NEON/functions/NELogical.cpp",
	"runtime/NEON/functions/NEMatMul.cpp",
	"runtime/NEON/functions/NEMaxUnpoolingLayer.cpp",
	"runtime/NEON/functions/NEMeanStdDevNormalizationLayer.cpp",
	"runtime/NEON/functions/NENormalizationLayer.cpp",
	"runtime/NEON/functions/NEPReluLayer.cpp",
	"runtime/NEON/functions/NEPadLayer.cpp",
	"runtime/NEON/functions/NEPermute.cpp",
	"runtime/NEON/functions/NEPixelWiseMultiplication.cpp",
	"runtime/NEON/functions/NEPooling3dLayer.cpp",
	"runtime/NEON/functions/NEPoolingLayer.cpp",
	"runtime/NEON/functions/NEPriorBoxLayer.cpp",
	"runtime/NEON/functions/NEQLSTMLayer.cpp",
	"runtime/NEON/functions/NEQuantizationLayer.cpp",
	"runtime/NEON/functions/NERNNLayer.cpp",
	"runtime/NEON/functions/NEROIAlignLayer.cpp",
	"runtime/NEON/functions/NEROIPoolingLayer.cpp",
	"runtime/NEON/functions/NERange.cpp",
	"runtime/NEON/functions/NEReduceMean.cpp",
	"runtime/NEON/functions/NEReductionOperation.cpp",
	"runtime/NEON/functions/NEReorderLayer.cpp",
	"runtime/NEON/functions/NEReorgLayer.cpp",
	"runtime/NEON/functions/NEReshapeLayer.cpp",
	"runtime/NEON/functions/NEReverse.cpp",
	"runtime/NEON/functions/NEScale.cpp",
	"runtime/NEON/functions/NESelect.cpp",
	"runtime/NEON/functions/NESlice.cpp",
	"runtime/NEON/functions/NESoftmaxLayer.cpp",
	"runtime/NEON/functions/NESpaceToBatchLayer.cpp",
	"runtime/NEON/functions/NESpaceToDepthLayer.cpp",
	"runtime/NEON/functions/NESplit.cpp",
	"runtime/NEON/functions/NEStackLayer.cpp",
	"runtime/NEON/functions/NEStridedSlice.cpp",
	"runtime/NEON/functions/NETile.cpp",
	"runtime/NEON/functions/NETranspose.cpp",
	"runtime/NEON/functions/NEUnstack.cpp",
	"runtime/NEON/functions/NEWinogradConvolutionLayer.cpp",
	"runtime/OMP/OMPScheduler.cpp",
	"runtime/OffsetLifetimeManager.cpp",
	"runtime/OffsetMemoryPool.cpp",
	"runtime/OperatorTensor.cpp",
	"runtime/PoolManager.cpp",
	"runtime/RuntimeContext.cpp",
	"runtime/Scheduler.cpp",
	"runtime/SchedulerFactory.cpp",
	"runtime/SchedulerUtils.cpp",
	"runtime/SubTensor.cpp",
	"runtime/Tensor.cpp",
	"runtime/TensorAllocator.cpp",
	"runtime/Utils.cpp"]  +
    glob(["**/*.h",
    "**/*.hpp",
    "**/*.inl"]),
		visibility = ["//visibility:public"]
)