aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: e53cf8b5d788d04c82d75b376a7bb710762e7605 (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
//
// Copyright © 2017 ARM Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

////////////////////////////////////////////
//                                        //
//              Arm Compute               //
//                                        //
////////////////////////////////////////////
cc_library_static {
    name: "armnn-arm_compute",
    proprietary: true,
    local_include_dirs: ["clframework/build/android-arm64v8a/src/core",
                         "clframework/build/android-arm64v8a/src/core/CL",
                         "clframework/arm_compute/core/NEON/kernels/assembly"],
    export_include_dirs: ["clframework", "clframework/include"],
    srcs: [
        "clframework/src/core/AccessWindowAutoPadding.cpp",
        "clframework/src/core/AccessWindowStatic.cpp",
        "clframework/src/core/AccessWindowTranspose.cpp",
        "clframework/src/core/CL/CLHelpers.cpp",
        "clframework/src/core/CL/CLKernelLibrary.cpp",
        "clframework/src/core/CL/ICLDistribution1D.cpp",
        "clframework/src/core/CL/ICLHOG.cpp",
        "clframework/src/core/CL/ICLKernel.cpp",
        "clframework/src/core/CL/ICLLut.cpp",
        "clframework/src/core/CL/ICLMultiHOG.cpp",
        "clframework/src/core/CL/ICLMultiImage.cpp",
        "clframework/src/core/CL/ICLSimple2DKernel.cpp",
        "clframework/src/core/CL/ICLSimple3DKernel.cpp",
        "clframework/src/core/CL/ICLSimpleKernel.cpp",
        "clframework/src/core/CL/ICLTensor.cpp",
        "clframework/src/core/CL/kernels/CLAbsoluteDifferenceKernel.cpp",
        "clframework/src/core/CL/kernels/CLAccumulateKernel.cpp",
        "clframework/src/core/CL/kernels/CLActivationLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLBatchNormalizationLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLBatchToSpaceLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLBitwiseAndKernel.cpp",
        "clframework/src/core/CL/kernels/CLBitwiseNotKernel.cpp",
        "clframework/src/core/CL/kernels/CLBitwiseOrKernel.cpp",
        "clframework/src/core/CL/kernels/CLBitwiseXorKernel.cpp",
        "clframework/src/core/CL/kernels/CLBox3x3Kernel.cpp",
        "clframework/src/core/CL/kernels/CLCannyEdgeKernel.cpp",
        "clframework/src/core/CL/kernels/CLChannelCombineKernel.cpp",
        "clframework/src/core/CL/kernels/CLChannelExtractKernel.cpp",
        "clframework/src/core/CL/kernels/CLChannelShuffleLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLCol2ImKernel.cpp",
        "clframework/src/core/CL/kernels/CLColorConvertKernel.cpp",
        "clframework/src/core/CL/kernels/CLConvertFullyConnectedWeightsKernel.cpp",
        "clframework/src/core/CL/kernels/CLConvolutionKernel.cpp",
        "clframework/src/core/CL/kernels/CLCopyKernel.cpp",
        "clframework/src/core/CL/kernels/CLDeconvolutionLayerUpsampleKernel.cpp",
        "clframework/src/core/CL/kernels/CLDepthConcatenateLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLDepthConvertLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NCHWKernel.cpp",
        "clframework/src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NHWCKernel.cpp",
        "clframework/src/core/CL/kernels/CLDepthwiseIm2ColKernel.cpp",
        "clframework/src/core/CL/kernels/CLDepthwiseVectorToTensorKernel.cpp",
        "clframework/src/core/CL/kernels/CLDepthwiseWeightsReshapeKernel.cpp",
        "clframework/src/core/CL/kernels/CLDequantizationLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLDerivativeKernel.cpp",
        "clframework/src/core/CL/kernels/CLDilateKernel.cpp",
        "clframework/src/core/CL/kernels/CLDirectConvolutionLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLDirectConvolutionOutputStageKernel.cpp",
        "clframework/src/core/CL/kernels/CLElementwiseOperationKernel.cpp",
        "clframework/src/core/CL/kernels/CLErodeKernel.cpp",
        "clframework/src/core/CL/kernels/CLFastCornersKernel.cpp",
        "clframework/src/core/CL/kernels/CLFillBorderKernel.cpp",
        "clframework/src/core/CL/kernels/CLFlattenLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLFloorKernel.cpp",
        "clframework/src/core/CL/kernels/CLGaussian3x3Kernel.cpp",
        "clframework/src/core/CL/kernels/CLGaussian5x5Kernel.cpp",
        "clframework/src/core/CL/kernels/CLGaussianPyramidKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMInterleave4x4Kernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMLowpMatrixMultiplyKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMLowpOffsetContributionKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMLowpOffsetContributionOutputStageKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMLowpReductionKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMMatrixAccumulateBiasesKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMMatrixAdditionKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMMatrixMultiplyReshapedKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMMatrixVectorMultiplyKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMReshapeLHSMatrixKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMReshapeRHSMatrixKernel.cpp",
        "clframework/src/core/CL/kernels/CLGEMMTranspose1xWKernel.cpp",
        "clframework/src/core/CL/kernels/CLHarrisCornersKernel.cpp",
        "clframework/src/core/CL/kernels/CLHistogramKernel.cpp",
        "clframework/src/core/CL/kernels/CLHOGDescriptorKernel.cpp",
        "clframework/src/core/CL/kernels/CLHOGDetectorKernel.cpp",
        "clframework/src/core/CL/kernels/CLIm2ColKernel.cpp",
        "clframework/src/core/CL/kernels/CLIntegralImageKernel.cpp",
        "clframework/src/core/CL/kernels/CLL2NormalizeLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLLKTrackerKernel.cpp",
        "clframework/src/core/CL/kernels/CLLocallyConnectedMatrixMultiplyKernel.cpp",
        "clframework/src/core/CL/kernels/CLMagnitudePhaseKernel.cpp",
        "clframework/src/core/CL/kernels/CLMeanStdDevKernel.cpp",
        "clframework/src/core/CL/kernels/CLMedian3x3Kernel.cpp",
        "clframework/src/core/CL/kernels/CLMemsetKernel.cpp",
        "clframework/src/core/CL/kernels/CLMinMaxLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLMinMaxLocationKernel.cpp",
        "clframework/src/core/CL/kernels/CLNonLinearFilterKernel.cpp",
        "clframework/src/core/CL/kernels/CLNonMaximaSuppression3x3Kernel.cpp",
        "clframework/src/core/CL/kernels/CLNormalizationLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLNormalizePlanarYUVLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLPermuteKernel.cpp",
        "clframework/src/core/CL/kernels/CLPixelWiseMultiplicationKernel.cpp",
        "clframework/src/core/CL/kernels/CLPoolingLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLQuantizationLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLReductionOperationKernel.cpp",
        "clframework/src/core/CL/kernels/CLRemapKernel.cpp",
        "clframework/src/core/CL/kernels/CLReorgLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLReshapeLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLROIPoolingLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLScaleKernel.cpp",
        "clframework/src/core/CL/kernels/CLScharr3x3Kernel.cpp",
        "clframework/src/core/CL/kernels/CLSobel3x3Kernel.cpp",
        "clframework/src/core/CL/kernels/CLSobel5x5Kernel.cpp",
        "clframework/src/core/CL/kernels/CLSobel7x7Kernel.cpp",
        "clframework/src/core/CL/kernels/CLSoftmaxLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLSpaceToBatchLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLStridedSliceKernel.cpp",
        "clframework/src/core/CL/kernels/CLTableLookupKernel.cpp",
        "clframework/src/core/CL/kernels/CLThresholdKernel.cpp",
        "clframework/src/core/CL/kernels/CLTransposeKernel.cpp",
        "clframework/src/core/CL/kernels/CLUpsampleLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLWarpAffineKernel.cpp",
        "clframework/src/core/CL/kernels/CLWarpPerspectiveKernel.cpp",
        "clframework/src/core/CL/kernels/CLWeightsReshapeKernel.cpp",
        "clframework/src/core/CL/kernels/CLWidthConcatenateLayerKernel.cpp",
        "clframework/src/core/CL/kernels/CLWidthConcatenate2TensorsKernel.cpp",
        "clframework/src/core/CL/kernels/CLWidthConcatenate4TensorsKernel.cpp",
        "clframework/src/core/CL/kernels/CLWinogradFilterTransformKernel.cpp",
        "clframework/src/core/CL/kernels/CLWinogradInputTransformKernel.cpp",
        "clframework/src/core/CL/kernels/CLWinogradOutputTransformKernel.cpp",
        "clframework/src/core/CL/kernels/CLYOLOLayerKernel.cpp",
        "clframework/src/core/CL/OpenCL.cpp",
        "clframework/src/core/CPP/CPPTypes.cpp",
        "clframework/src/core/CPP/ICPPSimpleKernel.cpp",
        "clframework/src/core/CPP/kernels/CPPCornerCandidatesKernel.cpp",
        "clframework/src/core/CPP/kernels/CPPDetectionWindowNonMaximaSuppressionKernel.cpp",
        "clframework/src/core/CPP/kernels/CPPPermuteKernel.cpp",
        "clframework/src/core/CPP/kernels/CPPSortEuclideanDistanceKernel.cpp",
        "clframework/src/core/CPP/kernels/CPPUpsampleKernel.cpp",
        "clframework/src/core/Error.cpp",
        "clframework/src/core/GPUTarget.cpp",
        "clframework/src/core/Helpers.cpp",
        "clframework/src/core/HOGInfo.cpp",
        "clframework/src/core/IAccessWindow.cpp",
        "clframework/src/core/IDistribution1D.cpp",
        "clframework/src/core/IDistribution.cpp",
        "clframework/src/core/IKernel.cpp",
        "clframework/src/core/ITensor.cpp",
        "clframework/src/core/MultiImageInfo.cpp",
        "clframework/src/core/NEON/kernels/arm_gemm/gemm_fp16.cpp",
        "clframework/src/core/NEON/kernels/arm_gemm/gemm_fp32.cpp",
        "clframework/src/core/NEON/kernels/arm_gemm/gemm_int16.cpp",
        "clframework/src/core/NEON/kernels/arm_gemm/gemm_int8.cpp",
        "clframework/src/core/NEON/kernels/arm_gemm/gemm_uint16.cpp",
        "clframework/src/core/NEON/kernels/arm_gemm/gemm_uint8.cpp",
        "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_nativeA_pretransposeB_16x4/generic.cpp",
        "clframework/src/core/NEON/kernels/assembly/Helpers.cpp",
        "clframework/src/core/NEON/kernels/assembly/INEGEMMWrapperKernel.cpp",
        "clframework/src/core/NEON/kernels/assembly/NEGEMMNativeWrapperKernel.cpp",
        "clframework/src/core/NEON/kernels/convolution/common/utils.cpp",
        "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_2x2_3x3_1x1_fp32_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_2x2_3x3_2x2_fp32_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_3x3_3x3_1x1_fp32_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_3x3_3x3_2x2_fp32_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_1x1_fp16_fp16.cpp",
        "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_1x1_fp32_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_1x1_u8_s32.cpp",
        "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_2x2_fp16_fp16.cpp",
        "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_2x2_fp32_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_2x2_u8_s32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/batched_blocked_gemm.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/input_1x8_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/input_2x2_3x3_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/input_6x6_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_2_7_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_2x2_3x3_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_2x2_5x5_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_4_5_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_4x4_3x3_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_6_3_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_2_7_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_2x2_3x3_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_2x2_5x5_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_4_5_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_4x4_3x3_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_6_3_fp32.cpp",
        "clframework/src/core/NEON/kernels/convolution/winograd/winograd_gemm.cpp",
        "clframework/src/core/NEON/kernels/NEAbsoluteDifferenceKernel.cpp",
        "clframework/src/core/NEON/kernels/NEAccumulateKernel.cpp",
        "clframework/src/core/NEON/kernels/NEActivationLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEArithmeticAdditionKernel.cpp",
        "clframework/src/core/NEON/kernels/NEArithmeticSubtractionKernel.cpp",
        "clframework/src/core/NEON/kernels/NEBatchNormalizationLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEBitwiseAndKernel.cpp",
        "clframework/src/core/NEON/kernels/NEBitwiseNotKernel.cpp",
        "clframework/src/core/NEON/kernels/NEBitwiseOrKernel.cpp",
        "clframework/src/core/NEON/kernels/NEBitwiseXorKernel.cpp",
        "clframework/src/core/NEON/kernels/NEBox3x3Kernel.cpp",
        "clframework/src/core/NEON/kernels/NECannyEdgeKernel.cpp",
        "clframework/src/core/NEON/kernels/NEChannelCombineKernel.cpp",
        "clframework/src/core/NEON/kernels/NEChannelExtractKernel.cpp",
        "clframework/src/core/NEON/kernels/NECol2ImKernel.cpp",
        "clframework/src/core/NEON/kernels/NEColorConvertKernel.cpp",
        "clframework/src/core/NEON/kernels/NEConvertFullyConnectedWeightsKernel.cpp",
        "clframework/src/core/NEON/kernels/NEConvolutionKernel.cpp",
        "clframework/src/core/NEON/kernels/NECopyKernel.cpp",
        "clframework/src/core/NEON/kernels/NECumulativeDistributionKernel.cpp",
        "clframework/src/core/NEON/kernels/NEDepthConcatenateLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEDepthConvertLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEDepthwiseConvolutionLayer3x3Kernel.cpp",
        "clframework/src/core/NEON/kernels/NEDepthwiseIm2ColKernel.cpp",
        "clframework/src/core/NEON/kernels/NEDepthwiseVectorToTensorKernel.cpp",
        "clframework/src/core/NEON/kernels/NEDepthwiseWeightsReshapeKernel.cpp",
        "clframework/src/core/NEON/kernels/NEDequantizationLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEDerivativeKernel.cpp",
        "clframework/src/core/NEON/kernels/NEDilateKernel.cpp",
        "clframework/src/core/NEON/kernels/NEDirectConvolutionLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.cpp",
        "clframework/src/core/NEON/kernels/NEElementwiseOperationKernel.cpp",
        "clframework/src/core/NEON/kernels/NEErodeKernel.cpp",
        "clframework/src/core/NEON/kernels/NEFastCornersKernel.cpp",
        "clframework/src/core/NEON/kernels/NEFillArrayKernel.cpp",
        "clframework/src/core/NEON/kernels/NEFillBorderKernel.cpp",
        "clframework/src/core/NEON/kernels/NEFillInnerBorderKernel.cpp",
        "clframework/src/core/NEON/kernels/NEFlattenLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEFloorKernel.cpp",
        "clframework/src/core/NEON/kernels/NEGaussian3x3Kernel.cpp",
        "clframework/src/core/NEON/kernels/NEGaussian5x5Kernel.cpp",
        "clframework/src/core/NEON/kernels/NEGaussianPyramidKernel.cpp",
        "clframework/src/core/NEON/kernels/NEGEMMInterleave4x4Kernel.cpp",
        "clframework/src/core/NEON/kernels/NEGEMMLowpMatrixMultiplyKernel.cpp",
        "clframework/src/core/NEON/kernels/NEGEMMLowpOffsetContributionKernel.cpp",
        "clframework/src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.cpp",
        "clframework/src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToUint8ScaleKernel.cpp",
        "clframework/src/core/NEON/kernels/NEGEMMLowpReductionKernel.cpp",
        "clframework/src/core/NEON/kernels/NEGEMMMatrixAccumulateBiasesKernel.cpp",
        "clframework/src/core/NEON/kernels/NEGEMMMatrixAdditionKernel.cpp",
        "clframework/src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp",
        "clframework/src/core/NEON/kernels/NEGEMMMatrixVectorMultiplyKernel.cpp",
        "clframework/src/core/NEON/kernels/NEGEMMTranspose1xWKernel.cpp",
        "clframework/src/core/NEON/kernels/NEHarrisCornersKernel.cpp",
        "clframework/src/core/NEON/kernels/NEHistogramKernel.cpp",
        "clframework/src/core/NEON/kernels/NEHOGDescriptorKernel.cpp",
        "clframework/src/core/NEON/kernels/NEHOGDetectorKernel.cpp",
        "clframework/src/core/NEON/kernels/NEIm2ColKernel.cpp",
        "clframework/src/core/NEON/kernels/NEIntegralImageKernel.cpp",
        "clframework/src/core/NEON/kernels/NEL2NormalizeLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NELKTrackerKernel.cpp",
        "clframework/src/core/NEON/kernels/NELocallyConnectedMatrixMultiplyKernel.cpp",
        "clframework/src/core/NEON/kernels/NEMagnitudePhaseKernel.cpp",
        "clframework/src/core/NEON/kernels/NEMeanStdDevKernel.cpp",
        "clframework/src/core/NEON/kernels/NEMedian3x3Kernel.cpp",
        "clframework/src/core/NEON/kernels/NEMinMaxLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp",
        "clframework/src/core/NEON/kernels/NENonLinearFilterKernel.cpp",
        "clframework/src/core/NEON/kernels/NENonMaximaSuppression3x3Kernel.cpp",
        "clframework/src/core/NEON/kernels/NENormalizationLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEPermuteKernel.cpp",
        "clframework/src/core/NEON/kernels/NEPixelWiseMultiplicationKernel.cpp",
        "clframework/src/core/NEON/kernels/NEPoolingLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEQuantizationLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEReductionOperationKernel.cpp",
        "clframework/src/core/NEON/kernels/NERemapKernel.cpp",
        "clframework/src/core/NEON/kernels/NEReorgLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEReshapeLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEScaleKernel.cpp",
        "clframework/src/core/NEON/kernels/NEScharr3x3Kernel.cpp",
        "clframework/src/core/NEON/kernels/NESobel3x3Kernel.cpp",
        "clframework/src/core/NEON/kernels/NESobel5x5Kernel.cpp",
        "clframework/src/core/NEON/kernels/NESobel7x7Kernel.cpp",
        "clframework/src/core/NEON/kernels/NESoftmaxLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NETableLookupKernel.cpp",
        "clframework/src/core/NEON/kernels/NEThresholdKernel.cpp",
        "clframework/src/core/NEON/kernels/NETransposeKernel.cpp",
        "clframework/src/core/NEON/kernels/NEWarpKernel.cpp",
        "clframework/src/core/NEON/kernels/NEWeightsReshapeKernel.cpp",
        "clframework/src/core/NEON/kernels/NEWidthConcatenateLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.cpp",
        "clframework/src/core/NEON/kernels/NEYOLOLayerKernel.cpp",
        "clframework/src/core/PyramidInfo.cpp",
        "clframework/src/core/Rounding.cpp",
        "clframework/src/core/SubTensorInfo.cpp",
        "clframework/src/core/TensorInfo.cpp",
        "clframework/src/core/Utils.cpp",
        "clframework/src/core/utils/helpers/tensor_transform.cpp",
        "clframework/src/core/utils/io/FileHandler.cpp",
        "clframework/src/core/utils/logging/FilePrinter.cpp",
        "clframework/src/core/utils/logging/Helpers.cpp",
        "clframework/src/core/utils/logging/Logger.cpp",
        "clframework/src/core/utils/logging/LoggerRegistry.cpp",
        "clframework/src/core/utils/quantization/AsymmHelpers.cpp",
        "clframework/src/core/Validate.cpp",
        "clframework/src/runtime/Allocator.cpp",
        "clframework/src/runtime/BlobLifetimeManager.cpp",
        "clframework/src/runtime/BlobMemoryPool.cpp",
        "clframework/src/runtime/MEMUtils.cpp",
        "clframework/src/runtime/CL/CLBufferAllocator.cpp",
        "clframework/src/runtime/CL/CLDistribution1D.cpp",
        "clframework/src/runtime/CL/CLHOG.cpp",
        "clframework/src/runtime/CL/CLLutAllocator.cpp",
        "clframework/src/runtime/CL/CLLut.cpp",
        "clframework/src/runtime/CL/CLMemory.cpp",
        "clframework/src/runtime/CL/CLMemoryRegion.cpp",
        "clframework/src/runtime/CL/CLMultiHOG.cpp",
        "clframework/src/runtime/CL/CLMultiImage.cpp",
        "clframework/src/runtime/CL/CLPyramid.cpp",
        "clframework/src/runtime/CL/CLScheduler.cpp",
        "clframework/src/runtime/CL/CLSubTensor.cpp",
        "clframework/src/runtime/CL/CLTensorAllocator.cpp",
        "clframework/src/runtime/CL/CLTensor.cpp",
        "clframework/src/runtime/CL/CLTuner.cpp",
        "clframework/src/runtime/CL/functions/CLAbsoluteDifference.cpp",
        "clframework/src/runtime/CL/functions/CLAccumulate.cpp",
        "clframework/src/runtime/CL/functions/CLActivationLayer.cpp",
        "clframework/src/runtime/CL/functions/CLBatchNormalizationLayer.cpp",
        "clframework/src/runtime/CL/functions/CLBatchToSpaceLayer.cpp",
        "clframework/src/runtime/CL/functions/CLBitwiseAnd.cpp",
        "clframework/src/runtime/CL/functions/CLBitwiseNot.cpp",
        "clframework/src/runtime/CL/functions/CLBitwiseOr.cpp",
        "clframework/src/runtime/CL/functions/CLBitwiseXor.cpp",
        "clframework/src/runtime/CL/functions/CLBox3x3.cpp",
        "clframework/src/runtime/CL/functions/CLCannyEdge.cpp",
        "clframework/src/runtime/CL/functions/CLChannelCombine.cpp",
        "clframework/src/runtime/CL/functions/CLChannelExtract.cpp",
        "clframework/src/runtime/CL/functions/CLChannelShuffleLayer.cpp",
        "clframework/src/runtime/CL/functions/CLColorConvert.cpp",
        "clframework/src/runtime/CL/functions/CLConcatenateLayer.cpp",
        "clframework/src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp",
        "clframework/src/runtime/CL/functions/CLConvolution.cpp",
        "clframework/src/runtime/CL/functions/CLConvolutionLayer.cpp",
        "clframework/src/runtime/CL/functions/CLCopy.cpp",
        "clframework/src/runtime/CL/functions/CLDeconvolutionLayer.cpp",
        "clframework/src/runtime/CL/functions/CLDeconvolutionLayerUpsample.cpp",
        "clframework/src/runtime/CL/functions/CLDepthConcatenateLayer.cpp",
        "clframework/src/runtime/CL/functions/CLDepthConvertLayer.cpp",
        "clframework/src/runtime/CL/functions/CLDepthwiseConvolutionLayer.cpp",
        "clframework/src/runtime/CL/functions/CLDepthwiseSeparableConvolutionLayer.cpp",
        "clframework/src/runtime/CL/functions/CLDequantizationLayer.cpp",
        "clframework/src/runtime/CL/functions/CLDerivative.cpp",
        "clframework/src/runtime/CL/functions/CLDilate.cpp",
        "clframework/src/runtime/CL/functions/CLDirectConvolutionLayer.cpp",
        "clframework/src/runtime/CL/functions/CLElementwiseOperations.cpp",
        "clframework/src/runtime/CL/functions/CLEqualizeHistogram.cpp",
        "clframework/src/runtime/CL/functions/CLErode.cpp",
        "clframework/src/runtime/CL/functions/CLFastCorners.cpp",
        "clframework/src/runtime/CL/functions/CLFillBorder.cpp",
        "clframework/src/runtime/CL/functions/CLFlattenLayer.cpp",
        "clframework/src/runtime/CL/functions/CLFloor.cpp",
        "clframework/src/runtime/CL/functions/CLFullyConnectedLayer.cpp",
        "clframework/src/runtime/CL/functions/CLGaussian3x3.cpp",
        "clframework/src/runtime/CL/functions/CLGaussian5x5.cpp",
        "clframework/src/runtime/CL/functions/CLGaussianPyramid.cpp",
        "clframework/src/runtime/CL/functions/CLGEMMConvolutionLayer.cpp",
        "clframework/src/runtime/CL/functions/CLGEMM.cpp",
        "clframework/src/runtime/CL/functions/CLGEMMInterleave4x4.cpp",
        "clframework/src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp",
        "clframework/src/runtime/CL/functions/CLGEMMLowpOutputStage.cpp",
        "clframework/src/runtime/CL/functions/CLGEMMTranspose1xW.cpp",
        "clframework/src/runtime/CL/functions/CLHarrisCorners.cpp",
        "clframework/src/runtime/CL/functions/CLHistogram.cpp",
        "clframework/src/runtime/CL/functions/CLHOGDescriptor.cpp",
        "clframework/src/runtime/CL/functions/CLHOGDetector.cpp",
        "clframework/src/runtime/CL/functions/CLHOGGradient.cpp",
        "clframework/src/runtime/CL/functions/CLHOGMultiDetection.cpp",
        "clframework/src/runtime/CL/functions/CLIntegralImage.cpp",
        "clframework/src/runtime/CL/functions/CLL2NormalizeLayer.cpp",
        "clframework/src/runtime/CL/functions/CLLaplacianPyramid.cpp",
        "clframework/src/runtime/CL/functions/CLLaplacianReconstruct.cpp",
        "clframework/src/runtime/CL/functions/CLLocallyConnectedLayer.cpp",
        "clframework/src/runtime/CL/functions/CLLSTMLayer.cpp",
        "clframework/src/runtime/CL/functions/CLMagnitude.cpp",
        "clframework/src/runtime/CL/functions/CLMeanStdDev.cpp",
        "clframework/src/runtime/CL/functions/CLMedian3x3.cpp",
        "clframework/src/runtime/CL/functions/CLMinMaxLocation.cpp",
        "clframework/src/runtime/CL/functions/CLNonLinearFilter.cpp",
        "clframework/src/runtime/CL/functions/CLNonMaximaSuppression3x3.cpp",
        "clframework/src/runtime/CL/functions/CLNormalizationLayer.cpp",
        "clframework/src/runtime/CL/functions/CLNormalizePlanarYUVLayer.cpp",
        "clframework/src/runtime/CL/functions/CLOpticalFlow.cpp",
        "clframework/src/runtime/CL/functions/CLPadLayer.cpp",
        "clframework/src/runtime/CL/functions/CLPermute.cpp",
        "clframework/src/runtime/CL/functions/CLPhase.cpp",
        "clframework/src/runtime/CL/functions/CLPixelWiseMultiplication.cpp",
        "clframework/src/runtime/CL/functions/CLPoolingLayer.cpp",
        "clframework/src/runtime/CL/functions/CLQuantizationLayer.cpp",
        "clframework/src/runtime/CL/functions/CLReduceMean.cpp",
        "clframework/src/runtime/CL/functions/CLReductionOperation.cpp",
        "clframework/src/runtime/CL/functions/CLRemap.cpp",
        "clframework/src/runtime/CL/functions/CLReorgLayer.cpp",
        "clframework/src/runtime/CL/functions/CLReshapeLayer.cpp",
        "clframework/src/runtime/CL/functions/CLRNNLayer.cpp",
        "clframework/src/runtime/CL/functions/CLROIPoolingLayer.cpp",
        "clframework/src/runtime/CL/functions/CLScale.cpp",
        "clframework/src/runtime/CL/functions/CLScharr3x3.cpp",
        "clframework/src/runtime/CL/functions/CLSlice.cpp",
        "clframework/src/runtime/CL/functions/CLSobel3x3.cpp",
        "clframework/src/runtime/CL/functions/CLSobel5x5.cpp",
        "clframework/src/runtime/CL/functions/CLSobel7x7.cpp",
        "clframework/src/runtime/CL/functions/CLSoftmaxLayer.cpp",
        "clframework/src/runtime/CL/functions/CLSpaceToBatchLayer.cpp",
        "clframework/src/runtime/CL/functions/CLSplit.cpp",
        "clframework/src/runtime/CL/functions/CLStridedSlice.cpp",
        "clframework/src/runtime/CL/functions/CLTableLookup.cpp",
        "clframework/src/runtime/CL/functions/CLThreshold.cpp",
        "clframework/src/runtime/CL/functions/CLTranspose.cpp",
        "clframework/src/runtime/CL/functions/CLUpsampleLayer.cpp",
        "clframework/src/runtime/CL/functions/CLWarpAffine.cpp",
        "clframework/src/runtime/CL/functions/CLWarpPerspective.cpp",
        "clframework/src/runtime/CL/functions/CLWidthConcatenateLayer.cpp",
        "clframework/src/runtime/CL/functions/CLWinogradConvolutionLayer.cpp",
        "clframework/src/runtime/CL/functions/CLWinogradInputTransform.cpp",
        "clframework/src/runtime/CL/functions/CLYOLOLayer.cpp",
        "clframework/src/runtime/CL/gemm_reshaped/CLGEMMReshapedConfigurationBifrost.cpp",
        "clframework/src/runtime/CL/ICLSimpleFunction.cpp",
        "clframework/src/runtime/CL/tuners/BifrostTuner.cpp",
        "clframework/src/runtime/CL/tuners/MidgardTuner.cpp",
        "clframework/src/runtime/CPP/CPPScheduler.cpp",
        "clframework/src/runtime/CPP/functions/CPPPermute.cpp",
        "clframework/src/runtime/CPP/functions/CPPUpsample.cpp",
        "clframework/src/runtime/CPP/ICPPSimpleFunction.cpp",
        "clframework/src/runtime/CPP/SingleThreadScheduler.cpp",
        "clframework/src/runtime/CPUUtils.cpp",
        "clframework/src/runtime/Distribution1D.cpp",
        "clframework/src/runtime/HOG.cpp",
        "clframework/src/runtime/ILutAllocator.cpp",
        "clframework/src/runtime/IScheduler.cpp",
        "clframework/src/runtime/ISimpleLifetimeManager.cpp",
        "clframework/src/runtime/ITensorAllocator.cpp",
        "clframework/src/runtime/LutAllocator.cpp",
        "clframework/src/runtime/Lut.cpp",
        "clframework/src/runtime/Memory.cpp",
        "clframework/src/runtime/MemoryManagerOnDemand.cpp",
        "clframework/src/runtime/MultiHOG.cpp",
        "clframework/src/runtime/MultiImage.cpp",
        "clframework/src/runtime/NEON/functions/assembly/NEGEMMInterleavedWrapper.cpp",
        "clframework/src/runtime/NEON/functions/NEAbsoluteDifference.cpp",
        "clframework/src/runtime/NEON/functions/NEAccumulate.cpp",
        "clframework/src/runtime/NEON/functions/NEActivationLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEArithmeticAddition.cpp",
        "clframework/src/runtime/NEON/functions/NEArithmeticSubtraction.cpp",
        "clframework/src/runtime/NEON/functions/NEBatchNormalizationLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEBitwiseAnd.cpp",
        "clframework/src/runtime/NEON/functions/NEBitwiseNot.cpp",
        "clframework/src/runtime/NEON/functions/NEBitwiseOr.cpp",
        "clframework/src/runtime/NEON/functions/NEBitwiseXor.cpp",
        "clframework/src/runtime/NEON/functions/NEBox3x3.cpp",
        "clframework/src/runtime/NEON/functions/NECannyEdge.cpp",
        "clframework/src/runtime/NEON/functions/NEChannelCombine.cpp",
        "clframework/src/runtime/NEON/functions/NEChannelExtract.cpp",
        "clframework/src/runtime/NEON/functions/NECol2Im.cpp",
        "clframework/src/runtime/NEON/functions/NEColorConvert.cpp",
        "clframework/src/runtime/NEON/functions/NEConcatenateLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEConvertFullyConnectedWeights.cpp",
        "clframework/src/runtime/NEON/functions/NEConvolution.cpp",
        "clframework/src/runtime/NEON/functions/NEConvolutionLayer.cpp",
        "clframework/src/runtime/NEON/functions/NECopy.cpp",
        "clframework/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEDepthConcatenateLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEDepthConvertLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEDepthwiseConvolutionLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEDepthwiseSeparableConvolutionLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEDequantizationLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEDerivative.cpp",
        "clframework/src/runtime/NEON/functions/NEDilate.cpp",
        "clframework/src/runtime/NEON/functions/NEDirectConvolutionLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEElementwiseOperators.cpp",
        "clframework/src/runtime/NEON/functions/NEEqualizeHistogram.cpp",
        "clframework/src/runtime/NEON/functions/NEErode.cpp",
        "clframework/src/runtime/NEON/functions/NEFastCorners.cpp",
        "clframework/src/runtime/NEON/functions/NEFillBorder.cpp",
        "clframework/src/runtime/NEON/functions/NEFlattenLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEFloor.cpp",
        "clframework/src/runtime/NEON/functions/NEFullyConnectedLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEGaussian3x3.cpp",
        "clframework/src/runtime/NEON/functions/NEGaussian5x5.cpp",
        "clframework/src/runtime/NEON/functions/NEGaussianPyramid.cpp",
        "clframework/src/runtime/NEON/functions/NEGEMMAssemblyDispatch.cpp",
        "clframework/src/runtime/NEON/functions/NEGEMMConvolutionLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEGEMM.cpp",
        "clframework/src/runtime/NEON/functions/NEGEMMInterleave4x4.cpp",
        "clframework/src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp",
        "clframework/src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp",
        "clframework/src/runtime/NEON/functions/NEGEMMLowpOutputStage.cpp",
        "clframework/src/runtime/NEON/functions/NEGEMMTranspose1xW.cpp",
        "clframework/src/runtime/NEON/functions/NEHarrisCorners.cpp",
        "clframework/src/runtime/NEON/functions/NEHistogram.cpp",
        "clframework/src/runtime/NEON/functions/NEHOGDescriptor.cpp",
        "clframework/src/runtime/NEON/functions/NEHOGDetector.cpp",
        "clframework/src/runtime/NEON/functions/NEHOGGradient.cpp",
        "clframework/src/runtime/NEON/functions/NEHOGMultiDetection.cpp",
        "clframework/src/runtime/NEON/functions/NEIm2Col.cpp",
        "clframework/src/runtime/NEON/functions/NEIntegralImage.cpp",
        "clframework/src/runtime/NEON/functions/NEL2NormalizeLayer.cpp",
        "clframework/src/runtime/NEON/functions/NELaplacianPyramid.cpp",
        "clframework/src/runtime/NEON/functions/NELaplacianReconstruct.cpp",
        "clframework/src/runtime/NEON/functions/NELocallyConnectedLayer.cpp",
        "clframework/src/runtime/NEON/functions/NELSTMLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEMagnitude.cpp",
        "clframework/src/runtime/NEON/functions/NEMeanStdDev.cpp",
        "clframework/src/runtime/NEON/functions/NEMedian3x3.cpp",
        "clframework/src/runtime/NEON/functions/NEMinMaxLocation.cpp",
        "clframework/src/runtime/NEON/functions/NENonLinearFilter.cpp",
        "clframework/src/runtime/NEON/functions/NENonMaximaSuppression3x3.cpp",
        "clframework/src/runtime/NEON/functions/NENormalizationLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEOpticalFlow.cpp",
        "clframework/src/runtime/NEON/functions/NEPermute.cpp",
        "clframework/src/runtime/NEON/functions/NEPhase.cpp",
        "clframework/src/runtime/NEON/functions/NEPixelWiseMultiplication.cpp",
        "clframework/src/runtime/NEON/functions/NEPoolingLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEQuantizationLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEReduceMean.cpp",
        "clframework/src/runtime/NEON/functions/NEReductionOperation.cpp",
        "clframework/src/runtime/NEON/functions/NERemap.cpp",
        "clframework/src/runtime/NEON/functions/NEReorgLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEReshapeLayer.cpp",
        "clframework/src/runtime/NEON/functions/NERNNLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEROIPoolingLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEScale.cpp",
        "clframework/src/runtime/NEON/functions/NEScharr3x3.cpp",
        "clframework/src/runtime/NEON/functions/NESimpleAssemblyFunction.cpp",
        "clframework/src/runtime/NEON/functions/NESobel3x3.cpp",
        "clframework/src/runtime/NEON/functions/NESobel5x5.cpp",
        "clframework/src/runtime/NEON/functions/NESobel7x7.cpp",
        "clframework/src/runtime/NEON/functions/NESoftmaxLayer.cpp",
        "clframework/src/runtime/NEON/functions/NETableLookup.cpp",
        "clframework/src/runtime/NEON/functions/NEThreshold.cpp",
        "clframework/src/runtime/NEON/functions/NETranspose.cpp",
        "clframework/src/runtime/NEON/functions/NEWarpAffine.cpp",
        "clframework/src/runtime/NEON/functions/NEWarpPerspective.cpp",
        "clframework/src/runtime/NEON/functions/NEWidthConcatenateLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEWinogradConvolutionLayer.cpp",
        "clframework/src/runtime/NEON/functions/NEYOLOLayer.cpp",
        "clframework/src/runtime/NEON/INESimpleFunction.cpp",
        "clframework/src/runtime/NEON/INESimpleFunctionNoBorder.cpp",
        "clframework/src/runtime/OffsetLifetimeManager.cpp",
        "clframework/src/runtime/OffsetMemoryPool.cpp",
        "clframework/src/runtime/OMP/OMPScheduler.cpp",
        "clframework/src/runtime/PoolManager.cpp",
        "clframework/src/runtime/Pyramid.cpp",
        "clframework/src/runtime/Scheduler.cpp",
        "clframework/src/runtime/SubTensor.cpp",
        "clframework/src/runtime/TensorAllocator.cpp",
        "clframework/src/runtime/Tensor.cpp",
        "clframework/src/runtime/Utils.cpp",
        "clframework/utils/CommonGraphOptions.cpp",
        "clframework/utils/GraphUtils.cpp",
        "clframework/utils/Utils.cpp",
    ],
    arch: {
        arm: {
            srcs: [
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a53.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a55r1.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/generic.cpp"
            ],
        },
        arm64: {
            srcs: [
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s16_12x8/generic.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_12x8/a55r1.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_12x8/generic.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_4x4/generic.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u16_12x8/generic.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_12x8/a55r1.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_12x8/generic.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_4x4/generic.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_24x8/a55r1.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_24x8/generic.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_12x8/a53.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_12x8/a55.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_12x8/a55r1.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_12x8/generic.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_native_16x4/generic.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemv_pretransposed/generic.cpp",
                "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemv_trans/generic.cpp"
            ],
        },
    },
    cppflags: [
        "-std=c++14",
        "-fexceptions",
        "-DEMBEDDED_KERNELS",
        "-DARM_COMPUTE_ASSERTS_ENABLED",
        "-DARM_COMPUTE_CPP_SCHEDULER",
        "-Wno-unused-parameter",
        "-DNO_DOT_IN_TOOLCHAIN",
        "-no-integrated-as"
    ],
    rtti: true,
}

////////////////////////////////////////////
//                                        //
//           static boost libs            //
//                                        //
////////////////////////////////////////////
cc_defaults {
    name: "libboost-defaults",
    proprietary: true,
    export_include_dirs: ["boost_1_64_0"],
    cflags: [
        "-O3",
        "-fexceptions",
        "-Wno-unused-parameter",
    ],
    rtti: true,
}

cc_library_static {
    name: "libboost_log",
    defaults: ["libboost-defaults"],
    srcs: [
        "boost_1_64_0/libs/log/src/attribute_name.cpp",
        "boost_1_64_0/libs/log/src/default_sink.cpp",
        "boost_1_64_0/libs/log/src/global_logger_storage.cpp",
        "boost_1_64_0/libs/log/src/record_ostream.cpp",
        "boost_1_64_0/libs/log/src/thread_id.cpp",
        "boost_1_64_0/libs/log/src/attribute_set.cpp",
        "boost_1_64_0/libs/log/src/named_scope.cpp",
        "boost_1_64_0/libs/log/src/severity_level.cpp",
        "boost_1_64_0/libs/log/src/threadsafe_queue.cpp",
        "boost_1_64_0/libs/log/src/attribute_value_set.cpp",
        "boost_1_64_0/libs/log/src/dump.cpp",
        "boost_1_64_0/libs/log/src/named_scope_format_parser.cpp",
        "boost_1_64_0/libs/log/src/spirit_encoding.cpp",
        "boost_1_64_0/libs/log/src/thread_specific.cpp",
        "boost_1_64_0/libs/log/src/code_conversion.cpp",
        "boost_1_64_0/libs/log/src/once_block.cpp",
        "boost_1_64_0/libs/log/src/syslog_backend.cpp",
        "boost_1_64_0/libs/log/src/timer.cpp",
        "boost_1_64_0/libs/log/src/core.cpp",
        "boost_1_64_0/libs/log/src/event.cpp",
        "boost_1_64_0/libs/log/src/permissions.cpp",
        "boost_1_64_0/libs/log/src/text_file_backend.cpp",
        "boost_1_64_0/libs/log/src/timestamp.cpp",
        "boost_1_64_0/libs/log/src/date_time_format_parser.cpp",
        "boost_1_64_0/libs/log/src/exceptions.cpp",
        "boost_1_64_0/libs/log/src/process_id.cpp",
        "boost_1_64_0/libs/log/src/text_multifile_backend.cpp",
        "boost_1_64_0/libs/log/src/trivial.cpp",
        "boost_1_64_0/libs/log/src/default_attribute_names.cpp",
        "boost_1_64_0/libs/log/src/format_parser.cpp",
        "boost_1_64_0/libs/log/src/process_name.cpp",
        "boost_1_64_0/libs/log/src/text_ostream_backend.cpp",
        "boost_1_64_0/libs/log/src/unhandled_exception_count.cpp",
    ],
}
cc_library_static {
    name: "libboost_system",
    defaults: ["libboost-defaults"],
    srcs: [ "boost_1_64_0/libs/system/src/error_code.cpp", ],
}

cc_library_static {
    name: "libboost_thread",
    defaults: ["libboost-defaults"],
    srcs: [
        "boost_1_64_0/libs/thread/src/pthread/thread.cpp",
        "boost_1_64_0/libs/thread/src/pthread/once_atomic.cpp",
        "boost_1_64_0/libs/thread/src/pthread/once.cpp",
        "boost_1_64_0/libs/thread/src/future.cpp",
        "boost_1_64_0/libs/thread/src/tss_null.cpp",
    ],
}

cc_library_static {
    name: "libboost_unit_test_framework",
    defaults: ["libboost-defaults"],
    srcs: [
        "boost_1_64_0/libs/test/src/compiler_log_formatter.cpp",
        "boost_1_64_0/libs/test/src/framework.cpp",
        "boost_1_64_0/libs/test/src/results_reporter.cpp",
        "boost_1_64_0/libs/test/src/unit_test_main.cpp",
        "boost_1_64_0/libs/test/src/cpp_main.cpp",
        "boost_1_64_0/libs/test/src/junit_log_formatter.cpp",
        "boost_1_64_0/libs/test/src/test_main.cpp",
        "boost_1_64_0/libs/test/src/unit_test_monitor.cpp",
        "boost_1_64_0/libs/test/src/debug.cpp",
        "boost_1_64_0/libs/test/src/plain_report_formatter.cpp",
        "boost_1_64_0/libs/test/src/test_tools.cpp",
        "boost_1_64_0/libs/test/src/unit_test_parameters.cpp",
        "boost_1_64_0/libs/test/src/decorator.cpp",
        "boost_1_64_0/libs/test/src/progress_monitor.cpp",
        "boost_1_64_0/libs/test/src/test_tree.cpp",
        "boost_1_64_0/libs/test/src/xml_log_formatter.cpp",
        "boost_1_64_0/libs/test/src/execution_monitor.cpp",
        "boost_1_64_0/libs/test/src/results_collector.cpp",
        "boost_1_64_0/libs/test/src/unit_test_log.cpp",
        "boost_1_64_0/libs/test/src/xml_report_formatter.cpp",
    ],
}

cc_library_static {
    name: "libboost_program_options",
    defaults: ["libboost-defaults"],
    srcs: [
        "boost_1_64_0/libs/program_options/src/cmdline.cpp",
        "boost_1_64_0/libs/program_options/src/config_file.cpp",
        "boost_1_64_0/libs/program_options/src/convert.cpp",
        "boost_1_64_0/libs/program_options/src/options_description.cpp",
        "boost_1_64_0/libs/program_options/src/parsers.cpp",
        "boost_1_64_0/libs/program_options/src/positional_options.cpp",
        "boost_1_64_0/libs/program_options/src/split.cpp",
        "boost_1_64_0/libs/program_options/src/utf8_codecvt_facet.cpp",
        "boost_1_64_0/libs/program_options/src/value_semantic.cpp",
        "boost_1_64_0/libs/program_options/src/variables_map.cpp",
        "boost_1_64_0/libs/program_options/src/winmain.cpp",
    ],
}

subdirs = [
    "armnn",
]