blob: 89c606b933ed170924e7e0354758f683fc9334de [file] [log] [blame]
telsoa015307bc12018-03-09 13:51:08 +00001//
2// Copyright © 2017 ARM Ltd. All rights reserved.
David Beck93e48982018-09-05 13:05:09 +01003// SPDX-License-Identifier: MIT
telsoa015307bc12018-03-09 13:51:08 +00004//
5
6////////////////////////////////////////////
7// //
8// Arm Compute //
9// //
10////////////////////////////////////////////
11cc_library_static {
12 name: "armnn-arm_compute",
13 proprietary: true,
14 local_include_dirs: ["clframework/build/android-arm64v8a/src/core",
15 "clframework/build/android-arm64v8a/src/core/CL",
16 "clframework/arm_compute/core/NEON/kernels/assembly"],
17 export_include_dirs: ["clframework", "clframework/include"],
18 srcs: [
19 "clframework/src/core/AccessWindowAutoPadding.cpp",
20 "clframework/src/core/AccessWindowStatic.cpp",
21 "clframework/src/core/AccessWindowTranspose.cpp",
22 "clframework/src/core/CL/CLHelpers.cpp",
23 "clframework/src/core/CL/CLKernelLibrary.cpp",
24 "clframework/src/core/CL/ICLDistribution1D.cpp",
25 "clframework/src/core/CL/ICLHOG.cpp",
26 "clframework/src/core/CL/ICLKernel.cpp",
27 "clframework/src/core/CL/ICLLut.cpp",
28 "clframework/src/core/CL/ICLMultiHOG.cpp",
29 "clframework/src/core/CL/ICLMultiImage.cpp",
30 "clframework/src/core/CL/ICLSimple2DKernel.cpp",
31 "clframework/src/core/CL/ICLSimple3DKernel.cpp",
32 "clframework/src/core/CL/ICLSimpleKernel.cpp",
33 "clframework/src/core/CL/ICLTensor.cpp",
34 "clframework/src/core/CL/kernels/CLAbsoluteDifferenceKernel.cpp",
35 "clframework/src/core/CL/kernels/CLAccumulateKernel.cpp",
36 "clframework/src/core/CL/kernels/CLActivationLayerKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000037 "clframework/src/core/CL/kernels/CLBatchNormalizationLayerKernel.cpp",
jimfly017a1518e2018-09-24 12:59:11 +010038 "clframework/src/core/CL/kernels/CLBatchToSpaceLayerKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000039 "clframework/src/core/CL/kernels/CLBitwiseAndKernel.cpp",
40 "clframework/src/core/CL/kernels/CLBitwiseNotKernel.cpp",
41 "clframework/src/core/CL/kernels/CLBitwiseOrKernel.cpp",
42 "clframework/src/core/CL/kernels/CLBitwiseXorKernel.cpp",
43 "clframework/src/core/CL/kernels/CLBox3x3Kernel.cpp",
44 "clframework/src/core/CL/kernels/CLCannyEdgeKernel.cpp",
45 "clframework/src/core/CL/kernels/CLChannelCombineKernel.cpp",
46 "clframework/src/core/CL/kernels/CLChannelExtractKernel.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +010047 "clframework/src/core/CL/kernels/CLChannelShuffleLayerKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000048 "clframework/src/core/CL/kernels/CLCol2ImKernel.cpp",
49 "clframework/src/core/CL/kernels/CLColorConvertKernel.cpp",
Nattapat Chaimanowong6975d542019-01-25 10:52:26 +000050 "clframework/src/core/CL/kernels/CLComparisonKernel.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +010051 "clframework/src/core/CL/kernels/CLConvertFullyConnectedWeightsKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000052 "clframework/src/core/CL/kernels/CLConvolutionKernel.cpp",
surmeh0149b9e102018-05-17 14:11:25 +010053 "clframework/src/core/CL/kernels/CLCopyKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000054 "clframework/src/core/CL/kernels/CLDeconvolutionLayerUpsampleKernel.cpp",
55 "clframework/src/core/CL/kernels/CLDepthConcatenateLayerKernel.cpp",
56 "clframework/src/core/CL/kernels/CLDepthConvertLayerKernel.cpp",
surmeh0149b9e102018-05-17 14:11:25 +010057 "clframework/src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NCHWKernel.cpp",
58 "clframework/src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NHWCKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000059 "clframework/src/core/CL/kernels/CLDepthwiseIm2ColKernel.cpp",
60 "clframework/src/core/CL/kernels/CLDepthwiseVectorToTensorKernel.cpp",
Matthew Bentham216ce862019-02-06 14:45:39 +000061 "clframework/src/core/CL/kernels/CLDepthwiseConvolutionLayerReshapeWeightsGenericKernel.cpp",
62 "clframework/src/core/CL/kernels/CLDepthwiseConvolutionLayerReshapeWeightsKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000063 "clframework/src/core/CL/kernels/CLDequantizationLayerKernel.cpp",
64 "clframework/src/core/CL/kernels/CLDerivativeKernel.cpp",
65 "clframework/src/core/CL/kernels/CLDilateKernel.cpp",
66 "clframework/src/core/CL/kernels/CLDirectConvolutionLayerKernel.cpp",
67 "clframework/src/core/CL/kernels/CLDirectConvolutionOutputStageKernel.cpp",
Matteo Martincighd58725e2018-12-14 13:02:14 +000068 "clframework/src/core/CL/kernels/CLElementwiseOperationKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000069 "clframework/src/core/CL/kernels/CLErodeKernel.cpp",
70 "clframework/src/core/CL/kernels/CLFastCornersKernel.cpp",
71 "clframework/src/core/CL/kernels/CLFillBorderKernel.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +010072 "clframework/src/core/CL/kernels/CLFlattenLayerKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000073 "clframework/src/core/CL/kernels/CLFloorKernel.cpp",
74 "clframework/src/core/CL/kernels/CLGaussian3x3Kernel.cpp",
75 "clframework/src/core/CL/kernels/CLGaussian5x5Kernel.cpp",
76 "clframework/src/core/CL/kernels/CLGaussianPyramidKernel.cpp",
77 "clframework/src/core/CL/kernels/CLGEMMInterleave4x4Kernel.cpp",
78 "clframework/src/core/CL/kernels/CLGEMMLowpMatrixMultiplyKernel.cpp",
Conor Kennedy2036f852019-01-28 10:26:43 +000079 "clframework/src/core/CL/kernels/CLGEMMLowpMatrixMultiplyReshapedKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000080 "clframework/src/core/CL/kernels/CLGEMMLowpOffsetContributionKernel.cpp",
Matteo Martincigh214301c2018-10-31 11:12:56 +000081 "clframework/src/core/CL/kernels/CLGEMMLowpOffsetContributionOutputStageKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000082 "clframework/src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.cpp",
83 "clframework/src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel.cpp",
84 "clframework/src/core/CL/kernels/CLGEMMLowpReductionKernel.cpp",
85 "clframework/src/core/CL/kernels/CLGEMMMatrixAccumulateBiasesKernel.cpp",
86 "clframework/src/core/CL/kernels/CLGEMMMatrixAdditionKernel.cpp",
87 "clframework/src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp",
Matteo Martincighd58725e2018-12-14 13:02:14 +000088 "clframework/src/core/CL/kernels/CLGEMMMatrixMultiplyReshapedKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000089 "clframework/src/core/CL/kernels/CLGEMMMatrixVectorMultiplyKernel.cpp",
Matteo Martincighd58725e2018-12-14 13:02:14 +000090 "clframework/src/core/CL/kernels/CLGEMMReshapeLHSMatrixKernel.cpp",
91 "clframework/src/core/CL/kernels/CLGEMMReshapeRHSMatrixKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +000092 "clframework/src/core/CL/kernels/CLGEMMTranspose1xWKernel.cpp",
93 "clframework/src/core/CL/kernels/CLHarrisCornersKernel.cpp",
94 "clframework/src/core/CL/kernels/CLHistogramKernel.cpp",
95 "clframework/src/core/CL/kernels/CLHOGDescriptorKernel.cpp",
96 "clframework/src/core/CL/kernels/CLHOGDetectorKernel.cpp",
97 "clframework/src/core/CL/kernels/CLIm2ColKernel.cpp",
98 "clframework/src/core/CL/kernels/CLIntegralImageKernel.cpp",
99 "clframework/src/core/CL/kernels/CLL2NormalizeLayerKernel.cpp",
100 "clframework/src/core/CL/kernels/CLLKTrackerKernel.cpp",
101 "clframework/src/core/CL/kernels/CLLocallyConnectedMatrixMultiplyKernel.cpp",
102 "clframework/src/core/CL/kernels/CLMagnitudePhaseKernel.cpp",
103 "clframework/src/core/CL/kernels/CLMeanStdDevKernel.cpp",
104 "clframework/src/core/CL/kernels/CLMedian3x3Kernel.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100105 "clframework/src/core/CL/kernels/CLMemsetKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000106 "clframework/src/core/CL/kernels/CLMinMaxLayerKernel.cpp",
107 "clframework/src/core/CL/kernels/CLMinMaxLocationKernel.cpp",
108 "clframework/src/core/CL/kernels/CLNonLinearFilterKernel.cpp",
109 "clframework/src/core/CL/kernels/CLNonMaximaSuppression3x3Kernel.cpp",
110 "clframework/src/core/CL/kernels/CLNormalizationLayerKernel.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100111 "clframework/src/core/CL/kernels/CLNormalizePlanarYUVLayerKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000112 "clframework/src/core/CL/kernels/CLPermuteKernel.cpp",
113 "clframework/src/core/CL/kernels/CLPixelWiseMultiplicationKernel.cpp",
114 "clframework/src/core/CL/kernels/CLPoolingLayerKernel.cpp",
115 "clframework/src/core/CL/kernels/CLQuantizationLayerKernel.cpp",
116 "clframework/src/core/CL/kernels/CLReductionOperationKernel.cpp",
117 "clframework/src/core/CL/kernels/CLRemapKernel.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100118 "clframework/src/core/CL/kernels/CLReorgLayerKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000119 "clframework/src/core/CL/kernels/CLReshapeLayerKernel.cpp",
120 "clframework/src/core/CL/kernels/CLROIPoolingLayerKernel.cpp",
121 "clframework/src/core/CL/kernels/CLScaleKernel.cpp",
122 "clframework/src/core/CL/kernels/CLScharr3x3Kernel.cpp",
123 "clframework/src/core/CL/kernels/CLSobel3x3Kernel.cpp",
124 "clframework/src/core/CL/kernels/CLSobel5x5Kernel.cpp",
125 "clframework/src/core/CL/kernels/CLSobel7x7Kernel.cpp",
126 "clframework/src/core/CL/kernels/CLSoftmaxLayerKernel.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100127 "clframework/src/core/CL/kernels/CLSpaceToBatchLayerKernel.cpp",
128 "clframework/src/core/CL/kernels/CLStridedSliceKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000129 "clframework/src/core/CL/kernels/CLTableLookupKernel.cpp",
130 "clframework/src/core/CL/kernels/CLThresholdKernel.cpp",
131 "clframework/src/core/CL/kernels/CLTransposeKernel.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100132 "clframework/src/core/CL/kernels/CLUpsampleLayerKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000133 "clframework/src/core/CL/kernels/CLWarpAffineKernel.cpp",
134 "clframework/src/core/CL/kernels/CLWarpPerspectiveKernel.cpp",
135 "clframework/src/core/CL/kernels/CLWeightsReshapeKernel.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100136 "clframework/src/core/CL/kernels/CLWidthConcatenateLayerKernel.cpp",
Matteo Martincighc7434122018-11-14 12:27:04 +0000137 "clframework/src/core/CL/kernels/CLWidthConcatenate2TensorsKernel.cpp",
138 "clframework/src/core/CL/kernels/CLWidthConcatenate4TensorsKernel.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100139 "clframework/src/core/CL/kernels/CLWinogradFilterTransformKernel.cpp",
140 "clframework/src/core/CL/kernels/CLWinogradInputTransformKernel.cpp",
141 "clframework/src/core/CL/kernels/CLWinogradOutputTransformKernel.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100142 "clframework/src/core/CL/kernels/CLYOLOLayerKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000143 "clframework/src/core/CL/OpenCL.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100144 "clframework/src/core/CPP/CPPTypes.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000145 "clframework/src/core/CPP/ICPPSimpleKernel.cpp",
146 "clframework/src/core/CPP/kernels/CPPCornerCandidatesKernel.cpp",
147 "clframework/src/core/CPP/kernels/CPPDetectionWindowNonMaximaSuppressionKernel.cpp",
148 "clframework/src/core/CPP/kernels/CPPPermuteKernel.cpp",
149 "clframework/src/core/CPP/kernels/CPPSortEuclideanDistanceKernel.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100150 "clframework/src/core/CPP/kernels/CPPUpsampleKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000151 "clframework/src/core/Error.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100152 "clframework/src/core/GPUTarget.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000153 "clframework/src/core/Helpers.cpp",
154 "clframework/src/core/HOGInfo.cpp",
155 "clframework/src/core/IAccessWindow.cpp",
156 "clframework/src/core/IDistribution1D.cpp",
157 "clframework/src/core/IDistribution.cpp",
158 "clframework/src/core/IKernel.cpp",
159 "clframework/src/core/ITensor.cpp",
160 "clframework/src/core/MultiImageInfo.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100161 "clframework/src/core/NEON/kernels/arm_gemm/gemm_fp16.cpp",
162 "clframework/src/core/NEON/kernels/arm_gemm/gemm_fp32.cpp",
163 "clframework/src/core/NEON/kernels/arm_gemm/gemm_int16.cpp",
164 "clframework/src/core/NEON/kernels/arm_gemm/gemm_int8.cpp",
165 "clframework/src/core/NEON/kernels/arm_gemm/gemm_uint16.cpp",
166 "clframework/src/core/NEON/kernels/arm_gemm/gemm_uint8.cpp",
Matthew Bentham15fb9332019-01-22 13:09:12 +0000167 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_nativeA_pretransposeB_16x4/generic.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100168 "clframework/src/core/NEON/kernels/assembly/Helpers.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100169 "clframework/src/core/NEON/kernels/assembly/INEGEMMWrapperKernel.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100170 "clframework/src/core/NEON/kernels/assembly/NEGEMMNativeWrapperKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000171 "clframework/src/core/NEON/kernels/convolution/common/utils.cpp",
172 "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_2x2_3x3_1x1_fp32_fp32.cpp",
173 "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_2x2_3x3_2x2_fp32_fp32.cpp",
174 "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_3x3_3x3_1x1_fp32_fp32.cpp",
175 "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_3x3_3x3_2x2_fp32_fp32.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100176 "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_1x1_fp16_fp16.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000177 "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_1x1_fp32_fp32.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100178 "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_1x1_u8_s32.cpp",
179 "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_2x2_fp16_fp16.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000180 "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_2x2_fp32_fp32.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100181 "clframework/src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_2x2_u8_s32.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000182 "clframework/src/core/NEON/kernels/convolution/winograd/batched_blocked_gemm.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100183 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/input_1x8_fp32.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000184 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/input_2x2_3x3_fp32.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100185 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/input_6x6_fp32.cpp",
186 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_2_7_fp32.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000187 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_2x2_3x3_fp32.cpp",
188 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_2x2_5x5_fp32.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100189 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_4_5_fp32.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000190 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_4x4_3x3_fp32.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100191 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/output_6_3_fp32.cpp",
192 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_2_7_fp32.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000193 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_2x2_3x3_fp32.cpp",
194 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_2x2_5x5_fp32.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100195 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_4_5_fp32.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000196 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_4x4_3x3_fp32.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100197 "clframework/src/core/NEON/kernels/convolution/winograd/transforms/weights_6_3_fp32.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000198 "clframework/src/core/NEON/kernels/convolution/winograd/winograd_gemm.cpp",
199 "clframework/src/core/NEON/kernels/NEAbsoluteDifferenceKernel.cpp",
200 "clframework/src/core/NEON/kernels/NEAccumulateKernel.cpp",
201 "clframework/src/core/NEON/kernels/NEActivationLayerKernel.cpp",
202 "clframework/src/core/NEON/kernels/NEArithmeticAdditionKernel.cpp",
203 "clframework/src/core/NEON/kernels/NEArithmeticSubtractionKernel.cpp",
204 "clframework/src/core/NEON/kernels/NEBatchNormalizationLayerKernel.cpp",
205 "clframework/src/core/NEON/kernels/NEBitwiseAndKernel.cpp",
206 "clframework/src/core/NEON/kernels/NEBitwiseNotKernel.cpp",
207 "clframework/src/core/NEON/kernels/NEBitwiseOrKernel.cpp",
208 "clframework/src/core/NEON/kernels/NEBitwiseXorKernel.cpp",
209 "clframework/src/core/NEON/kernels/NEBox3x3Kernel.cpp",
210 "clframework/src/core/NEON/kernels/NECannyEdgeKernel.cpp",
211 "clframework/src/core/NEON/kernels/NEChannelCombineKernel.cpp",
212 "clframework/src/core/NEON/kernels/NEChannelExtractKernel.cpp",
213 "clframework/src/core/NEON/kernels/NECol2ImKernel.cpp",
214 "clframework/src/core/NEON/kernels/NEColorConvertKernel.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100215 "clframework/src/core/NEON/kernels/NEConvertFullyConnectedWeightsKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000216 "clframework/src/core/NEON/kernels/NEConvolutionKernel.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100217 "clframework/src/core/NEON/kernels/NECopyKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000218 "clframework/src/core/NEON/kernels/NECumulativeDistributionKernel.cpp",
219 "clframework/src/core/NEON/kernels/NEDepthConcatenateLayerKernel.cpp",
220 "clframework/src/core/NEON/kernels/NEDepthConvertLayerKernel.cpp",
221 "clframework/src/core/NEON/kernels/NEDepthwiseConvolutionLayer3x3Kernel.cpp",
222 "clframework/src/core/NEON/kernels/NEDepthwiseIm2ColKernel.cpp",
223 "clframework/src/core/NEON/kernels/NEDepthwiseVectorToTensorKernel.cpp",
224 "clframework/src/core/NEON/kernels/NEDepthwiseWeightsReshapeKernel.cpp",
225 "clframework/src/core/NEON/kernels/NEDequantizationLayerKernel.cpp",
226 "clframework/src/core/NEON/kernels/NEDerivativeKernel.cpp",
227 "clframework/src/core/NEON/kernels/NEDilateKernel.cpp",
228 "clframework/src/core/NEON/kernels/NEDirectConvolutionLayerKernel.cpp",
229 "clframework/src/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.cpp",
Nattapat Chaimanowonga960bc92018-12-19 14:28:12 +0000230 "clframework/src/core/NEON/kernels/NEElementwiseOperationKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000231 "clframework/src/core/NEON/kernels/NEErodeKernel.cpp",
232 "clframework/src/core/NEON/kernels/NEFastCornersKernel.cpp",
233 "clframework/src/core/NEON/kernels/NEFillArrayKernel.cpp",
234 "clframework/src/core/NEON/kernels/NEFillBorderKernel.cpp",
235 "clframework/src/core/NEON/kernels/NEFillInnerBorderKernel.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100236 "clframework/src/core/NEON/kernels/NEFlattenLayerKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000237 "clframework/src/core/NEON/kernels/NEFloorKernel.cpp",
238 "clframework/src/core/NEON/kernels/NEGaussian3x3Kernel.cpp",
239 "clframework/src/core/NEON/kernels/NEGaussian5x5Kernel.cpp",
240 "clframework/src/core/NEON/kernels/NEGaussianPyramidKernel.cpp",
241 "clframework/src/core/NEON/kernels/NEGEMMInterleave4x4Kernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000242 "clframework/src/core/NEON/kernels/NEGEMMLowpMatrixMultiplyKernel.cpp",
243 "clframework/src/core/NEON/kernels/NEGEMMLowpOffsetContributionKernel.cpp",
244 "clframework/src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.cpp",
245 "clframework/src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToUint8ScaleKernel.cpp",
246 "clframework/src/core/NEON/kernels/NEGEMMLowpReductionKernel.cpp",
247 "clframework/src/core/NEON/kernels/NEGEMMMatrixAccumulateBiasesKernel.cpp",
248 "clframework/src/core/NEON/kernels/NEGEMMMatrixAdditionKernel.cpp",
249 "clframework/src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp",
250 "clframework/src/core/NEON/kernels/NEGEMMMatrixVectorMultiplyKernel.cpp",
251 "clframework/src/core/NEON/kernels/NEGEMMTranspose1xWKernel.cpp",
252 "clframework/src/core/NEON/kernels/NEHarrisCornersKernel.cpp",
253 "clframework/src/core/NEON/kernels/NEHistogramKernel.cpp",
254 "clframework/src/core/NEON/kernels/NEHOGDescriptorKernel.cpp",
255 "clframework/src/core/NEON/kernels/NEHOGDetectorKernel.cpp",
256 "clframework/src/core/NEON/kernels/NEIm2ColKernel.cpp",
257 "clframework/src/core/NEON/kernels/NEIntegralImageKernel.cpp",
258 "clframework/src/core/NEON/kernels/NEL2NormalizeLayerKernel.cpp",
259 "clframework/src/core/NEON/kernels/NELKTrackerKernel.cpp",
260 "clframework/src/core/NEON/kernels/NELocallyConnectedMatrixMultiplyKernel.cpp",
261 "clframework/src/core/NEON/kernels/NEMagnitudePhaseKernel.cpp",
262 "clframework/src/core/NEON/kernels/NEMeanStdDevKernel.cpp",
263 "clframework/src/core/NEON/kernels/NEMedian3x3Kernel.cpp",
saoste01be9e6772019-01-25 09:45:38 +0000264 "clframework/src/core/NEON/kernels/NEMemsetKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000265 "clframework/src/core/NEON/kernels/NEMinMaxLayerKernel.cpp",
266 "clframework/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp",
267 "clframework/src/core/NEON/kernels/NENonLinearFilterKernel.cpp",
268 "clframework/src/core/NEON/kernels/NENonMaximaSuppression3x3Kernel.cpp",
269 "clframework/src/core/NEON/kernels/NENormalizationLayerKernel.cpp",
270 "clframework/src/core/NEON/kernels/NEPermuteKernel.cpp",
271 "clframework/src/core/NEON/kernels/NEPixelWiseMultiplicationKernel.cpp",
272 "clframework/src/core/NEON/kernels/NEPoolingLayerKernel.cpp",
273 "clframework/src/core/NEON/kernels/NEQuantizationLayerKernel.cpp",
274 "clframework/src/core/NEON/kernels/NEReductionOperationKernel.cpp",
275 "clframework/src/core/NEON/kernels/NERemapKernel.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100276 "clframework/src/core/NEON/kernels/NEReorgLayerKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000277 "clframework/src/core/NEON/kernels/NEReshapeLayerKernel.cpp",
278 "clframework/src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp",
279 "clframework/src/core/NEON/kernels/NEScaleKernel.cpp",
280 "clframework/src/core/NEON/kernels/NEScharr3x3Kernel.cpp",
281 "clframework/src/core/NEON/kernels/NESobel3x3Kernel.cpp",
282 "clframework/src/core/NEON/kernels/NESobel5x5Kernel.cpp",
283 "clframework/src/core/NEON/kernels/NESobel7x7Kernel.cpp",
284 "clframework/src/core/NEON/kernels/NESoftmaxLayerKernel.cpp",
285 "clframework/src/core/NEON/kernels/NETableLookupKernel.cpp",
286 "clframework/src/core/NEON/kernels/NEThresholdKernel.cpp",
287 "clframework/src/core/NEON/kernels/NETransposeKernel.cpp",
288 "clframework/src/core/NEON/kernels/NEWarpKernel.cpp",
289 "clframework/src/core/NEON/kernels/NEWeightsReshapeKernel.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100290 "clframework/src/core/NEON/kernels/NEWidthConcatenateLayerKernel.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100291 "clframework/src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100292 "clframework/src/core/NEON/kernels/NEYOLOLayerKernel.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000293 "clframework/src/core/PyramidInfo.cpp",
294 "clframework/src/core/Rounding.cpp",
295 "clframework/src/core/SubTensorInfo.cpp",
296 "clframework/src/core/TensorInfo.cpp",
297 "clframework/src/core/Utils.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100298 "clframework/src/core/utils/helpers/tensor_transform.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000299 "clframework/src/core/utils/io/FileHandler.cpp",
300 "clframework/src/core/utils/logging/FilePrinter.cpp",
301 "clframework/src/core/utils/logging/Helpers.cpp",
302 "clframework/src/core/utils/logging/Logger.cpp",
303 "clframework/src/core/utils/logging/LoggerRegistry.cpp",
304 "clframework/src/core/utils/quantization/AsymmHelpers.cpp",
305 "clframework/src/core/Validate.cpp",
306 "clframework/src/runtime/Allocator.cpp",
307 "clframework/src/runtime/BlobLifetimeManager.cpp",
308 "clframework/src/runtime/BlobMemoryPool.cpp",
Matteo Martincigh46e9d1e2018-11-12 09:13:31 +0000309 "clframework/src/runtime/MEMUtils.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000310 "clframework/src/runtime/CL/CLBufferAllocator.cpp",
311 "clframework/src/runtime/CL/CLDistribution1D.cpp",
312 "clframework/src/runtime/CL/CLHOG.cpp",
313 "clframework/src/runtime/CL/CLLutAllocator.cpp",
314 "clframework/src/runtime/CL/CLLut.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100315 "clframework/src/runtime/CL/CLMemory.cpp",
316 "clframework/src/runtime/CL/CLMemoryRegion.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000317 "clframework/src/runtime/CL/CLMultiHOG.cpp",
318 "clframework/src/runtime/CL/CLMultiImage.cpp",
319 "clframework/src/runtime/CL/CLPyramid.cpp",
320 "clframework/src/runtime/CL/CLScheduler.cpp",
321 "clframework/src/runtime/CL/CLSubTensor.cpp",
322 "clframework/src/runtime/CL/CLTensorAllocator.cpp",
323 "clframework/src/runtime/CL/CLTensor.cpp",
324 "clframework/src/runtime/CL/CLTuner.cpp",
325 "clframework/src/runtime/CL/functions/CLAbsoluteDifference.cpp",
326 "clframework/src/runtime/CL/functions/CLAccumulate.cpp",
327 "clframework/src/runtime/CL/functions/CLActivationLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000328 "clframework/src/runtime/CL/functions/CLBatchNormalizationLayer.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100329 "clframework/src/runtime/CL/functions/CLBatchToSpaceLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000330 "clframework/src/runtime/CL/functions/CLBitwiseAnd.cpp",
331 "clframework/src/runtime/CL/functions/CLBitwiseNot.cpp",
332 "clframework/src/runtime/CL/functions/CLBitwiseOr.cpp",
333 "clframework/src/runtime/CL/functions/CLBitwiseXor.cpp",
334 "clframework/src/runtime/CL/functions/CLBox3x3.cpp",
335 "clframework/src/runtime/CL/functions/CLCannyEdge.cpp",
336 "clframework/src/runtime/CL/functions/CLChannelCombine.cpp",
337 "clframework/src/runtime/CL/functions/CLChannelExtract.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100338 "clframework/src/runtime/CL/functions/CLChannelShuffleLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000339 "clframework/src/runtime/CL/functions/CLColorConvert.cpp",
Nattapat Chaimanowong6975d542019-01-25 10:52:26 +0000340 "clframework/src/runtime/CL/functions/CLComparison.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100341 "clframework/src/runtime/CL/functions/CLConcatenateLayer.cpp",
342 "clframework/src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000343 "clframework/src/runtime/CL/functions/CLConvolution.cpp",
344 "clframework/src/runtime/CL/functions/CLConvolutionLayer.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100345 "clframework/src/runtime/CL/functions/CLCopy.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000346 "clframework/src/runtime/CL/functions/CLDeconvolutionLayer.cpp",
347 "clframework/src/runtime/CL/functions/CLDeconvolutionLayerUpsample.cpp",
348 "clframework/src/runtime/CL/functions/CLDepthConcatenateLayer.cpp",
349 "clframework/src/runtime/CL/functions/CLDepthConvertLayer.cpp",
350 "clframework/src/runtime/CL/functions/CLDepthwiseConvolutionLayer.cpp",
351 "clframework/src/runtime/CL/functions/CLDepthwiseSeparableConvolutionLayer.cpp",
352 "clframework/src/runtime/CL/functions/CLDequantizationLayer.cpp",
353 "clframework/src/runtime/CL/functions/CLDerivative.cpp",
354 "clframework/src/runtime/CL/functions/CLDilate.cpp",
355 "clframework/src/runtime/CL/functions/CLDirectConvolutionLayer.cpp",
Matteo Martincighd58725e2018-12-14 13:02:14 +0000356 "clframework/src/runtime/CL/functions/CLElementwiseOperations.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000357 "clframework/src/runtime/CL/functions/CLEqualizeHistogram.cpp",
358 "clframework/src/runtime/CL/functions/CLErode.cpp",
359 "clframework/src/runtime/CL/functions/CLFastCorners.cpp",
360 "clframework/src/runtime/CL/functions/CLFillBorder.cpp",
361 "clframework/src/runtime/CL/functions/CLFlattenLayer.cpp",
362 "clframework/src/runtime/CL/functions/CLFloor.cpp",
363 "clframework/src/runtime/CL/functions/CLFullyConnectedLayer.cpp",
364 "clframework/src/runtime/CL/functions/CLGaussian3x3.cpp",
365 "clframework/src/runtime/CL/functions/CLGaussian5x5.cpp",
366 "clframework/src/runtime/CL/functions/CLGaussianPyramid.cpp",
367 "clframework/src/runtime/CL/functions/CLGEMMConvolutionLayer.cpp",
368 "clframework/src/runtime/CL/functions/CLGEMM.cpp",
369 "clframework/src/runtime/CL/functions/CLGEMMInterleave4x4.cpp",
370 "clframework/src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp",
371 "clframework/src/runtime/CL/functions/CLGEMMLowpOutputStage.cpp",
372 "clframework/src/runtime/CL/functions/CLGEMMTranspose1xW.cpp",
373 "clframework/src/runtime/CL/functions/CLHarrisCorners.cpp",
374 "clframework/src/runtime/CL/functions/CLHistogram.cpp",
375 "clframework/src/runtime/CL/functions/CLHOGDescriptor.cpp",
376 "clframework/src/runtime/CL/functions/CLHOGDetector.cpp",
377 "clframework/src/runtime/CL/functions/CLHOGGradient.cpp",
378 "clframework/src/runtime/CL/functions/CLHOGMultiDetection.cpp",
379 "clframework/src/runtime/CL/functions/CLIntegralImage.cpp",
380 "clframework/src/runtime/CL/functions/CLL2NormalizeLayer.cpp",
381 "clframework/src/runtime/CL/functions/CLLaplacianPyramid.cpp",
382 "clframework/src/runtime/CL/functions/CLLaplacianReconstruct.cpp",
383 "clframework/src/runtime/CL/functions/CLLocallyConnectedLayer.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100384 "clframework/src/runtime/CL/functions/CLLSTMLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000385 "clframework/src/runtime/CL/functions/CLMagnitude.cpp",
386 "clframework/src/runtime/CL/functions/CLMeanStdDev.cpp",
387 "clframework/src/runtime/CL/functions/CLMedian3x3.cpp",
388 "clframework/src/runtime/CL/functions/CLMinMaxLocation.cpp",
389 "clframework/src/runtime/CL/functions/CLNonLinearFilter.cpp",
390 "clframework/src/runtime/CL/functions/CLNonMaximaSuppression3x3.cpp",
391 "clframework/src/runtime/CL/functions/CLNormalizationLayer.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100392 "clframework/src/runtime/CL/functions/CLNormalizePlanarYUVLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000393 "clframework/src/runtime/CL/functions/CLOpticalFlow.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100394 "clframework/src/runtime/CL/functions/CLPadLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000395 "clframework/src/runtime/CL/functions/CLPermute.cpp",
396 "clframework/src/runtime/CL/functions/CLPhase.cpp",
397 "clframework/src/runtime/CL/functions/CLPixelWiseMultiplication.cpp",
398 "clframework/src/runtime/CL/functions/CLPoolingLayer.cpp",
399 "clframework/src/runtime/CL/functions/CLQuantizationLayer.cpp",
Matteo Martincighdadab6d2018-10-22 15:19:05 +0100400 "clframework/src/runtime/CL/functions/CLReduceMean.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000401 "clframework/src/runtime/CL/functions/CLReductionOperation.cpp",
402 "clframework/src/runtime/CL/functions/CLRemap.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100403 "clframework/src/runtime/CL/functions/CLReorgLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000404 "clframework/src/runtime/CL/functions/CLReshapeLayer.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100405 "clframework/src/runtime/CL/functions/CLRNNLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000406 "clframework/src/runtime/CL/functions/CLROIPoolingLayer.cpp",
407 "clframework/src/runtime/CL/functions/CLScale.cpp",
408 "clframework/src/runtime/CL/functions/CLScharr3x3.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100409 "clframework/src/runtime/CL/functions/CLSlice.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000410 "clframework/src/runtime/CL/functions/CLSobel3x3.cpp",
411 "clframework/src/runtime/CL/functions/CLSobel5x5.cpp",
412 "clframework/src/runtime/CL/functions/CLSobel7x7.cpp",
413 "clframework/src/runtime/CL/functions/CLSoftmaxLayer.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100414 "clframework/src/runtime/CL/functions/CLSpaceToBatchLayer.cpp",
415 "clframework/src/runtime/CL/functions/CLSplit.cpp",
416 "clframework/src/runtime/CL/functions/CLStridedSlice.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000417 "clframework/src/runtime/CL/functions/CLTableLookup.cpp",
418 "clframework/src/runtime/CL/functions/CLThreshold.cpp",
419 "clframework/src/runtime/CL/functions/CLTranspose.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100420 "clframework/src/runtime/CL/functions/CLUpsampleLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000421 "clframework/src/runtime/CL/functions/CLWarpAffine.cpp",
422 "clframework/src/runtime/CL/functions/CLWarpPerspective.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100423 "clframework/src/runtime/CL/functions/CLWidthConcatenateLayer.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100424 "clframework/src/runtime/CL/functions/CLWinogradConvolutionLayer.cpp",
425 "clframework/src/runtime/CL/functions/CLWinogradInputTransform.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100426 "clframework/src/runtime/CL/functions/CLYOLOLayer.cpp",
Matthew Bentham15fb9332019-01-22 13:09:12 +0000427 "clframework/src/runtime/CL/gemm_reshaped/CLGEMMReshapedConfigurationBifrost.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000428 "clframework/src/runtime/CL/ICLSimpleFunction.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100429 "clframework/src/runtime/CL/tuners/BifrostTuner.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100430 "clframework/src/runtime/CL/tuners/MidgardTuner.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000431 "clframework/src/runtime/CPP/CPPScheduler.cpp",
432 "clframework/src/runtime/CPP/functions/CPPPermute.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100433 "clframework/src/runtime/CPP/functions/CPPUpsample.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000434 "clframework/src/runtime/CPP/ICPPSimpleFunction.cpp",
435 "clframework/src/runtime/CPP/SingleThreadScheduler.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100436 "clframework/src/runtime/CPUUtils.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000437 "clframework/src/runtime/Distribution1D.cpp",
438 "clframework/src/runtime/HOG.cpp",
439 "clframework/src/runtime/ILutAllocator.cpp",
440 "clframework/src/runtime/IScheduler.cpp",
441 "clframework/src/runtime/ISimpleLifetimeManager.cpp",
442 "clframework/src/runtime/ITensorAllocator.cpp",
443 "clframework/src/runtime/LutAllocator.cpp",
444 "clframework/src/runtime/Lut.cpp",
445 "clframework/src/runtime/Memory.cpp",
446 "clframework/src/runtime/MemoryManagerOnDemand.cpp",
447 "clframework/src/runtime/MultiHOG.cpp",
448 "clframework/src/runtime/MultiImage.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100449 "clframework/src/runtime/NEON/functions/assembly/NEGEMMInterleavedWrapper.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000450 "clframework/src/runtime/NEON/functions/NEAbsoluteDifference.cpp",
451 "clframework/src/runtime/NEON/functions/NEAccumulate.cpp",
452 "clframework/src/runtime/NEON/functions/NEActivationLayer.cpp",
453 "clframework/src/runtime/NEON/functions/NEArithmeticAddition.cpp",
454 "clframework/src/runtime/NEON/functions/NEArithmeticSubtraction.cpp",
455 "clframework/src/runtime/NEON/functions/NEBatchNormalizationLayer.cpp",
456 "clframework/src/runtime/NEON/functions/NEBitwiseAnd.cpp",
457 "clframework/src/runtime/NEON/functions/NEBitwiseNot.cpp",
458 "clframework/src/runtime/NEON/functions/NEBitwiseOr.cpp",
459 "clframework/src/runtime/NEON/functions/NEBitwiseXor.cpp",
460 "clframework/src/runtime/NEON/functions/NEBox3x3.cpp",
461 "clframework/src/runtime/NEON/functions/NECannyEdge.cpp",
462 "clframework/src/runtime/NEON/functions/NEChannelCombine.cpp",
463 "clframework/src/runtime/NEON/functions/NEChannelExtract.cpp",
464 "clframework/src/runtime/NEON/functions/NECol2Im.cpp",
465 "clframework/src/runtime/NEON/functions/NEColorConvert.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100466 "clframework/src/runtime/NEON/functions/NEConcatenateLayer.cpp",
467 "clframework/src/runtime/NEON/functions/NEConvertFullyConnectedWeights.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000468 "clframework/src/runtime/NEON/functions/NEConvolution.cpp",
469 "clframework/src/runtime/NEON/functions/NEConvolutionLayer.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100470 "clframework/src/runtime/NEON/functions/NECopy.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000471 "clframework/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp",
472 "clframework/src/runtime/NEON/functions/NEDepthConcatenateLayer.cpp",
473 "clframework/src/runtime/NEON/functions/NEDepthConvertLayer.cpp",
474 "clframework/src/runtime/NEON/functions/NEDepthwiseConvolutionLayer.cpp",
475 "clframework/src/runtime/NEON/functions/NEDepthwiseSeparableConvolutionLayer.cpp",
476 "clframework/src/runtime/NEON/functions/NEDequantizationLayer.cpp",
477 "clframework/src/runtime/NEON/functions/NEDerivative.cpp",
478 "clframework/src/runtime/NEON/functions/NEDilate.cpp",
479 "clframework/src/runtime/NEON/functions/NEDirectConvolutionLayer.cpp",
Nattapat Chaimanowonga960bc92018-12-19 14:28:12 +0000480 "clframework/src/runtime/NEON/functions/NEElementwiseOperators.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000481 "clframework/src/runtime/NEON/functions/NEEqualizeHistogram.cpp",
482 "clframework/src/runtime/NEON/functions/NEErode.cpp",
483 "clframework/src/runtime/NEON/functions/NEFastCorners.cpp",
484 "clframework/src/runtime/NEON/functions/NEFillBorder.cpp",
485 "clframework/src/runtime/NEON/functions/NEFlattenLayer.cpp",
486 "clframework/src/runtime/NEON/functions/NEFloor.cpp",
487 "clframework/src/runtime/NEON/functions/NEFullyConnectedLayer.cpp",
488 "clframework/src/runtime/NEON/functions/NEGaussian3x3.cpp",
489 "clframework/src/runtime/NEON/functions/NEGaussian5x5.cpp",
490 "clframework/src/runtime/NEON/functions/NEGaussianPyramid.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100491 "clframework/src/runtime/NEON/functions/NEGEMMAssemblyDispatch.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000492 "clframework/src/runtime/NEON/functions/NEGEMMConvolutionLayer.cpp",
493 "clframework/src/runtime/NEON/functions/NEGEMM.cpp",
494 "clframework/src/runtime/NEON/functions/NEGEMMInterleave4x4.cpp",
495 "clframework/src/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.cpp",
496 "clframework/src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp",
497 "clframework/src/runtime/NEON/functions/NEGEMMLowpOutputStage.cpp",
498 "clframework/src/runtime/NEON/functions/NEGEMMTranspose1xW.cpp",
499 "clframework/src/runtime/NEON/functions/NEHarrisCorners.cpp",
500 "clframework/src/runtime/NEON/functions/NEHistogram.cpp",
501 "clframework/src/runtime/NEON/functions/NEHOGDescriptor.cpp",
502 "clframework/src/runtime/NEON/functions/NEHOGDetector.cpp",
503 "clframework/src/runtime/NEON/functions/NEHOGGradient.cpp",
504 "clframework/src/runtime/NEON/functions/NEHOGMultiDetection.cpp",
505 "clframework/src/runtime/NEON/functions/NEIm2Col.cpp",
506 "clframework/src/runtime/NEON/functions/NEIntegralImage.cpp",
507 "clframework/src/runtime/NEON/functions/NEL2NormalizeLayer.cpp",
508 "clframework/src/runtime/NEON/functions/NELaplacianPyramid.cpp",
509 "clframework/src/runtime/NEON/functions/NELaplacianReconstruct.cpp",
510 "clframework/src/runtime/NEON/functions/NELocallyConnectedLayer.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100511 "clframework/src/runtime/NEON/functions/NELSTMLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000512 "clframework/src/runtime/NEON/functions/NEMagnitude.cpp",
513 "clframework/src/runtime/NEON/functions/NEMeanStdDev.cpp",
514 "clframework/src/runtime/NEON/functions/NEMedian3x3.cpp",
515 "clframework/src/runtime/NEON/functions/NEMinMaxLocation.cpp",
516 "clframework/src/runtime/NEON/functions/NENonLinearFilter.cpp",
517 "clframework/src/runtime/NEON/functions/NENonMaximaSuppression3x3.cpp",
518 "clframework/src/runtime/NEON/functions/NENormalizationLayer.cpp",
519 "clframework/src/runtime/NEON/functions/NEOpticalFlow.cpp",
saoste01be9e6772019-01-25 09:45:38 +0000520 "clframework/src/runtime/NEON/functions/NEPadLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000521 "clframework/src/runtime/NEON/functions/NEPermute.cpp",
522 "clframework/src/runtime/NEON/functions/NEPhase.cpp",
523 "clframework/src/runtime/NEON/functions/NEPixelWiseMultiplication.cpp",
524 "clframework/src/runtime/NEON/functions/NEPoolingLayer.cpp",
525 "clframework/src/runtime/NEON/functions/NEQuantizationLayer.cpp",
Matthew Benthamc1944472018-12-31 16:46:45 +0000526 "clframework/src/runtime/NEON/functions/NEReduceMean.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000527 "clframework/src/runtime/NEON/functions/NEReductionOperation.cpp",
528 "clframework/src/runtime/NEON/functions/NERemap.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100529 "clframework/src/runtime/NEON/functions/NEReorgLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000530 "clframework/src/runtime/NEON/functions/NEReshapeLayer.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100531 "clframework/src/runtime/NEON/functions/NERNNLayer.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100532 "clframework/src/runtime/NEON/functions/NEROIPoolingLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000533 "clframework/src/runtime/NEON/functions/NEScale.cpp",
534 "clframework/src/runtime/NEON/functions/NEScharr3x3.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100535 "clframework/src/runtime/NEON/functions/NESimpleAssemblyFunction.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000536 "clframework/src/runtime/NEON/functions/NESobel3x3.cpp",
537 "clframework/src/runtime/NEON/functions/NESobel5x5.cpp",
538 "clframework/src/runtime/NEON/functions/NESobel7x7.cpp",
539 "clframework/src/runtime/NEON/functions/NESoftmaxLayer.cpp",
540 "clframework/src/runtime/NEON/functions/NETableLookup.cpp",
541 "clframework/src/runtime/NEON/functions/NEThreshold.cpp",
542 "clframework/src/runtime/NEON/functions/NETranspose.cpp",
543 "clframework/src/runtime/NEON/functions/NEWarpAffine.cpp",
544 "clframework/src/runtime/NEON/functions/NEWarpPerspective.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100545 "clframework/src/runtime/NEON/functions/NEWidthConcatenateLayer.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100546 "clframework/src/runtime/NEON/functions/NEWinogradConvolutionLayer.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100547 "clframework/src/runtime/NEON/functions/NEYOLOLayer.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000548 "clframework/src/runtime/NEON/INESimpleFunction.cpp",
Matteo Martincighd58725e2018-12-14 13:02:14 +0000549 "clframework/src/runtime/NEON/INESimpleFunctionNoBorder.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000550 "clframework/src/runtime/OffsetLifetimeManager.cpp",
551 "clframework/src/runtime/OffsetMemoryPool.cpp",
jimfly017a1518e2018-09-24 12:59:11 +0100552 "clframework/src/runtime/OMP/OMPScheduler.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000553 "clframework/src/runtime/PoolManager.cpp",
554 "clframework/src/runtime/Pyramid.cpp",
555 "clframework/src/runtime/Scheduler.cpp",
556 "clframework/src/runtime/SubTensor.cpp",
557 "clframework/src/runtime/TensorAllocator.cpp",
558 "clframework/src/runtime/Tensor.cpp",
559 "clframework/src/runtime/Utils.cpp",
telsoa01ce3e84a2018-08-31 09:31:35 +0100560 "clframework/utils/CommonGraphOptions.cpp",
telsoa015307bc12018-03-09 13:51:08 +0000561 "clframework/utils/GraphUtils.cpp",
562 "clframework/utils/Utils.cpp",
563 ],
564 arch: {
565 arm: {
surmeh0149b9e102018-05-17 14:11:25 +0100566 srcs: [
567 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a53.cpp",
568 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a55r1.cpp",
569 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/generic.cpp"
570 ],
telsoa015307bc12018-03-09 13:51:08 +0000571 },
572 arm64: {
surmeh0149b9e102018-05-17 14:11:25 +0100573 srcs: [
574 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s16_12x8/generic.cpp",
575 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_12x8/a55r1.cpp",
576 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_12x8/generic.cpp",
577 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_4x4/generic.cpp",
578 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u16_12x8/generic.cpp",
579 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_12x8/a55r1.cpp",
580 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_12x8/generic.cpp",
581 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_4x4/generic.cpp",
582 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_24x8/a55r1.cpp",
583 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_24x8/generic.cpp",
Conor Kennedy2036f852019-01-28 10:26:43 +0000584 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_16x4/a55.cpp",
585 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_16x4/generic.cpp",
586 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_16x4/a55.cpp",
587 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_16x4/generic.cpp",
surmeh0149b9e102018-05-17 14:11:25 +0100588 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_12x8/a53.cpp",
589 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_12x8/a55.cpp",
590 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_12x8/a55r1.cpp",
591 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_12x8/generic.cpp",
592 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_native_16x4/generic.cpp",
593 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemv_pretransposed/generic.cpp",
594 "clframework/src/core/NEON/kernels/arm_gemm/kernels/a64_sgemv_trans/generic.cpp"
595 ],
telsoa015307bc12018-03-09 13:51:08 +0000596 },
597 },
598 cppflags: [
599 "-std=c++14",
600 "-fexceptions",
601 "-DEMBEDDED_KERNELS",
602 "-DARM_COMPUTE_ASSERTS_ENABLED",
telsoa01ce3e84a2018-08-31 09:31:35 +0100603 "-DARM_COMPUTE_CPP_SCHEDULER",
telsoa015307bc12018-03-09 13:51:08 +0000604 "-Wno-unused-parameter",
surmeh0149b9e102018-05-17 14:11:25 +0100605 "-DNO_DOT_IN_TOOLCHAIN",
606 "-no-integrated-as"
telsoa015307bc12018-03-09 13:51:08 +0000607 ],
608 rtti: true,
609}
610
611////////////////////////////////////////////
612// //
613// static boost libs //
614// //
615////////////////////////////////////////////
616cc_defaults {
617 name: "libboost-defaults",
surmeh0149b9e102018-05-17 14:11:25 +0100618 proprietary: true,
telsoa015307bc12018-03-09 13:51:08 +0000619 export_include_dirs: ["boost_1_64_0"],
620 cflags: [
621 "-O3",
622 "-fexceptions",
623 "-Wno-unused-parameter",
624 ],
625 rtti: true,
626}
627
628cc_library_static {
629 name: "libboost_log",
630 defaults: ["libboost-defaults"],
631 srcs: [
632 "boost_1_64_0/libs/log/src/attribute_name.cpp",
633 "boost_1_64_0/libs/log/src/default_sink.cpp",
634 "boost_1_64_0/libs/log/src/global_logger_storage.cpp",
635 "boost_1_64_0/libs/log/src/record_ostream.cpp",
636 "boost_1_64_0/libs/log/src/thread_id.cpp",
637 "boost_1_64_0/libs/log/src/attribute_set.cpp",
638 "boost_1_64_0/libs/log/src/named_scope.cpp",
639 "boost_1_64_0/libs/log/src/severity_level.cpp",
640 "boost_1_64_0/libs/log/src/threadsafe_queue.cpp",
641 "boost_1_64_0/libs/log/src/attribute_value_set.cpp",
642 "boost_1_64_0/libs/log/src/dump.cpp",
643 "boost_1_64_0/libs/log/src/named_scope_format_parser.cpp",
644 "boost_1_64_0/libs/log/src/spirit_encoding.cpp",
645 "boost_1_64_0/libs/log/src/thread_specific.cpp",
646 "boost_1_64_0/libs/log/src/code_conversion.cpp",
647 "boost_1_64_0/libs/log/src/once_block.cpp",
648 "boost_1_64_0/libs/log/src/syslog_backend.cpp",
649 "boost_1_64_0/libs/log/src/timer.cpp",
650 "boost_1_64_0/libs/log/src/core.cpp",
651 "boost_1_64_0/libs/log/src/event.cpp",
652 "boost_1_64_0/libs/log/src/permissions.cpp",
653 "boost_1_64_0/libs/log/src/text_file_backend.cpp",
654 "boost_1_64_0/libs/log/src/timestamp.cpp",
655 "boost_1_64_0/libs/log/src/date_time_format_parser.cpp",
656 "boost_1_64_0/libs/log/src/exceptions.cpp",
657 "boost_1_64_0/libs/log/src/process_id.cpp",
658 "boost_1_64_0/libs/log/src/text_multifile_backend.cpp",
659 "boost_1_64_0/libs/log/src/trivial.cpp",
660 "boost_1_64_0/libs/log/src/default_attribute_names.cpp",
661 "boost_1_64_0/libs/log/src/format_parser.cpp",
662 "boost_1_64_0/libs/log/src/process_name.cpp",
663 "boost_1_64_0/libs/log/src/text_ostream_backend.cpp",
664 "boost_1_64_0/libs/log/src/unhandled_exception_count.cpp",
665 ],
666}
667cc_library_static {
668 name: "libboost_system",
669 defaults: ["libboost-defaults"],
670 srcs: [ "boost_1_64_0/libs/system/src/error_code.cpp", ],
671}
672
673cc_library_static {
674 name: "libboost_thread",
675 defaults: ["libboost-defaults"],
676 srcs: [
677 "boost_1_64_0/libs/thread/src/pthread/thread.cpp",
678 "boost_1_64_0/libs/thread/src/pthread/once_atomic.cpp",
679 "boost_1_64_0/libs/thread/src/pthread/once.cpp",
680 "boost_1_64_0/libs/thread/src/future.cpp",
681 "boost_1_64_0/libs/thread/src/tss_null.cpp",
682 ],
683}
684
685cc_library_static {
686 name: "libboost_unit_test_framework",
687 defaults: ["libboost-defaults"],
688 srcs: [
689 "boost_1_64_0/libs/test/src/compiler_log_formatter.cpp",
690 "boost_1_64_0/libs/test/src/framework.cpp",
691 "boost_1_64_0/libs/test/src/results_reporter.cpp",
692 "boost_1_64_0/libs/test/src/unit_test_main.cpp",
693 "boost_1_64_0/libs/test/src/cpp_main.cpp",
694 "boost_1_64_0/libs/test/src/junit_log_formatter.cpp",
695 "boost_1_64_0/libs/test/src/test_main.cpp",
696 "boost_1_64_0/libs/test/src/unit_test_monitor.cpp",
697 "boost_1_64_0/libs/test/src/debug.cpp",
698 "boost_1_64_0/libs/test/src/plain_report_formatter.cpp",
699 "boost_1_64_0/libs/test/src/test_tools.cpp",
700 "boost_1_64_0/libs/test/src/unit_test_parameters.cpp",
701 "boost_1_64_0/libs/test/src/decorator.cpp",
702 "boost_1_64_0/libs/test/src/progress_monitor.cpp",
703 "boost_1_64_0/libs/test/src/test_tree.cpp",
704 "boost_1_64_0/libs/test/src/xml_log_formatter.cpp",
705 "boost_1_64_0/libs/test/src/execution_monitor.cpp",
706 "boost_1_64_0/libs/test/src/results_collector.cpp",
707 "boost_1_64_0/libs/test/src/unit_test_log.cpp",
708 "boost_1_64_0/libs/test/src/xml_report_formatter.cpp",
709 ],
710}
711
712cc_library_static {
713 name: "libboost_program_options",
714 defaults: ["libboost-defaults"],
715 srcs: [
716 "boost_1_64_0/libs/program_options/src/cmdline.cpp",
717 "boost_1_64_0/libs/program_options/src/config_file.cpp",
718 "boost_1_64_0/libs/program_options/src/convert.cpp",
719 "boost_1_64_0/libs/program_options/src/options_description.cpp",
720 "boost_1_64_0/libs/program_options/src/parsers.cpp",
721 "boost_1_64_0/libs/program_options/src/positional_options.cpp",
722 "boost_1_64_0/libs/program_options/src/split.cpp",
723 "boost_1_64_0/libs/program_options/src/utf8_codecvt_facet.cpp",
724 "boost_1_64_0/libs/program_options/src/value_semantic.cpp",
725 "boost_1_64_0/libs/program_options/src/variables_map.cpp",
726 "boost_1_64_0/libs/program_options/src/winmain.cpp",
727 ],
728}
729
730subdirs = [
731 "armnn",
732]