blob: a4ca5c79e806cedf1bb7dd98bf96cc338bcad8eb [file] [log] [blame]
Georgios Pinitas41984a02019-12-11 12:05:17 +00001//
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002// Copyright © 2020 Arm Ltd. All rights reserved.
Georgios Pinitas41984a02019-12-11 12:05:17 +00003// SPDX-License-Identifier: MIT
4//
5
6bootstrap_go_package {
7 name: "arm_compute_library_nn_driver",
8 pkgPath: "arm_compute_library_nn_driver",
9 deps: [
10 "blueprint",
11 "blueprint-pathtools",
12 "blueprint-proptools",
13 "soong",
14 "soong-android",
15 "soong-cc",
16 ],
17 srcs: [
18 "scripts/arm_compute_library_nn_driver.go",
19 ],
20 pluginFor: [ "soong_build" ],
21}
22
23arm_compute_library_defaults {
24 name: "acl-default-cppflags",
25 cppflags: [
26 "-std=c++14",
27 "-fexceptions",
28 "-DBOOST_NO_AUTO_PTR",
29 "-DEMBEDDED_KERNELS",
30 "-DARM_COMPUTE_ASSERTS_ENABLED",
31 "-DARM_COMPUTE_CPP_SCHEDULER",
32 "-Wno-unused-parameter",
33 "-DNO_DOT_IN_TOOLCHAIN",
morgolockf8f812b2020-11-17 09:37:37 +000034 "-no-integrated-as",
35 "-Wno-implicit-fallthrough"
Georgios Pinitas41984a02019-12-11 12:05:17 +000036 ],
37 rtti: true,
38}
39
40cc_library_static {
41 name: "arm_compute_library",
42 defaults: ["acl-default-cppflags"],
43 proprietary: true,
44 local_include_dirs: ["build/android-arm64v8a/src/core",
45 "build/android-arm64v8a/src/core/CL",
Georgios Pinitasde5930f2020-10-21 10:45:44 +010046 "src/core/common",
47 "src/core/helpers",
Michele Di Giorgiof3ad9512020-07-01 10:37:11 +010048 "src/core/NEON/kernels/assembly",
Georgios Pinitasde5930f2020-10-21 10:45:44 +010049 "src/core/NEON/kernels/convolution/common",
50 "src/core/NEON/kernels/convolution/depthwise",
Michele Di Giorgiof3ad9512020-07-01 10:37:11 +010051 "src/core/NEON/kernels/convolution/winograd"],
Georgios Pinitas41984a02019-12-11 12:05:17 +000052 export_include_dirs: [".", "./include"],
53 srcs: [
54 "src/core/AccessWindowAutoPadding.cpp",
55 "src/core/AccessWindowStatic.cpp",
56 "src/core/AccessWindowTranspose.cpp",
Michalis Spyrou11d49182020-03-26 10:31:32 +000057 "src/core/CL/CLCompileContext.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000058 "src/core/CL/CLCoreRuntimeContext.cpp",
59 "src/core/CL/CLHelpers.cpp",
60 "src/core/CL/CLKernelLibrary.cpp",
Gian Marco Iodice781cba72020-06-19 16:56:57 +010061 "src/core/CL/CLUtils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000062 "src/core/CL/ICLDistribution1D.cpp",
63 "src/core/CL/ICLHOG.cpp",
64 "src/core/CL/ICLKernel.cpp",
65 "src/core/CL/ICLLut.cpp",
66 "src/core/CL/ICLMultiHOG.cpp",
67 "src/core/CL/ICLMultiImage.cpp",
68 "src/core/CL/ICLSimple2DKernel.cpp",
69 "src/core/CL/ICLSimple3DKernel.cpp",
70 "src/core/CL/ICLSimpleKernel.cpp",
71 "src/core/CL/ICLTensor.cpp",
72 "src/core/CL/OpenCL.cpp",
73 "src/core/CL/gemm/CLGEMMHelpers.cpp",
74 "src/core/CL/gemm/native/CLGEMMNativeKernelConfigurationBifrost.cpp",
Gian Marco Iodiceeb65f6d2020-04-15 11:42:15 +010075 "src/core/CL/gemm/native/CLGEMMNativeKernelConfigurationMidgard.cpp",
Gian Marco Iodice12f2b8c2020-02-13 12:27:37 +000076 "src/core/CL/gemm/native/CLGEMMNativeKernelConfigurationValhall.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000077 "src/core/CL/gemm/reshaped/CLGEMMReshapedKernelConfigurationBifrost.cpp",
Gian Marco Iodice12f2b8c2020-02-13 12:27:37 +000078 "src/core/CL/gemm/reshaped/CLGEMMReshapedKernelConfigurationValhall.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000079 "src/core/CL/gemm/reshaped_only_rhs/CLGEMMReshapedOnlyRHSKernelConfigurationBifrost.cpp",
Gian Marco Iodice12f2b8c2020-02-13 12:27:37 +000080 "src/core/CL/gemm/reshaped_only_rhs/CLGEMMReshapedOnlyRHSKernelConfigurationValhall.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000081 "src/core/CL/kernels/CLAbsoluteDifferenceKernel.cpp",
82 "src/core/CL/kernels/CLAccumulateKernel.cpp",
83 "src/core/CL/kernels/CLActivationLayerKernel.cpp",
84 "src/core/CL/kernels/CLArgMinMaxLayerKernel.cpp",
85 "src/core/CL/kernels/CLBatchConcatenateLayerKernel.cpp",
86 "src/core/CL/kernels/CLBatchNormalizationLayerKernel.cpp",
87 "src/core/CL/kernels/CLBatchToSpaceLayerKernel.cpp",
88 "src/core/CL/kernels/CLBitwiseAndKernel.cpp",
89 "src/core/CL/kernels/CLBitwiseNotKernel.cpp",
90 "src/core/CL/kernels/CLBitwiseOrKernel.cpp",
91 "src/core/CL/kernels/CLBitwiseXorKernel.cpp",
92 "src/core/CL/kernels/CLBoundingBoxTransformKernel.cpp",
93 "src/core/CL/kernels/CLBox3x3Kernel.cpp",
94 "src/core/CL/kernels/CLCannyEdgeKernel.cpp",
95 "src/core/CL/kernels/CLChannelCombineKernel.cpp",
96 "src/core/CL/kernels/CLChannelExtractKernel.cpp",
97 "src/core/CL/kernels/CLChannelShuffleLayerKernel.cpp",
98 "src/core/CL/kernels/CLCol2ImKernel.cpp",
99 "src/core/CL/kernels/CLColorConvertKernel.cpp",
100 "src/core/CL/kernels/CLComparisonKernel.cpp",
101 "src/core/CL/kernels/CLConvertFullyConnectedWeightsKernel.cpp",
102 "src/core/CL/kernels/CLConvolutionKernel.cpp",
103 "src/core/CL/kernels/CLCopyKernel.cpp",
104 "src/core/CL/kernels/CLCropKernel.cpp",
105 "src/core/CL/kernels/CLDeconvolutionLayerUpsampleKernel.cpp",
106 "src/core/CL/kernels/CLDeconvolutionReshapeOutputKernel.cpp",
107 "src/core/CL/kernels/CLDepthConcatenateLayerKernel.cpp",
108 "src/core/CL/kernels/CLDepthConvertLayerKernel.cpp",
109 "src/core/CL/kernels/CLDepthToSpaceLayerKernel.cpp",
110 "src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NCHWKernel.cpp",
111 "src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NHWCKernel.cpp",
112 "src/core/CL/kernels/CLDepthwiseConvolutionLayerNativeKernel.cpp",
113 "src/core/CL/kernels/CLDepthwiseConvolutionLayerReshapeWeightsKernel.cpp",
114 "src/core/CL/kernels/CLDequantizationLayerKernel.cpp",
115 "src/core/CL/kernels/CLDerivativeKernel.cpp",
116 "src/core/CL/kernels/CLDilateKernel.cpp",
117 "src/core/CL/kernels/CLDirectConvolutionLayerKernel.cpp",
118 "src/core/CL/kernels/CLElementWiseUnaryLayerKernel.cpp",
119 "src/core/CL/kernels/CLElementwiseOperationKernel.cpp",
120 "src/core/CL/kernels/CLErodeKernel.cpp",
121 "src/core/CL/kernels/CLFFTDigitReverseKernel.cpp",
122 "src/core/CL/kernels/CLFFTRadixStageKernel.cpp",
123 "src/core/CL/kernels/CLFFTScaleKernel.cpp",
124 "src/core/CL/kernels/CLFastCornersKernel.cpp",
125 "src/core/CL/kernels/CLFillBorderKernel.cpp",
126 "src/core/CL/kernels/CLFlattenLayerKernel.cpp",
127 "src/core/CL/kernels/CLFloorKernel.cpp",
128 "src/core/CL/kernels/CLFuseBatchNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000129 "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyNativeKernel.cpp",
130 "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyReshapedKernel.cpp",
131 "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel.cpp",
132 "src/core/CL/kernels/CLGEMMLowpOffsetContributionKernel.cpp",
133 "src/core/CL/kernels/CLGEMMLowpOffsetContributionOutputStageKernel.cpp",
Michele Di Giorgioba14c922020-10-12 13:27:57 +0100134 "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel.cpp",
Sheri Zhang1b14c752020-03-09 14:29:52 +0000135 "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel.cpp",
Luca Foschiani689c9682020-02-26 14:30:14 +0000136 "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000137 "src/core/CL/kernels/CLGEMMLowpReductionKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000138 "src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp",
139 "src/core/CL/kernels/CLGEMMMatrixMultiplyNativeKernel.cpp",
140 "src/core/CL/kernels/CLGEMMMatrixMultiplyReshapedKernel.cpp",
141 "src/core/CL/kernels/CLGEMMMatrixMultiplyReshapedOnlyRHSKernel.cpp",
142 "src/core/CL/kernels/CLGEMMMatrixVectorMultiplyKernel.cpp",
143 "src/core/CL/kernels/CLGEMMReshapeLHSMatrixKernel.cpp",
144 "src/core/CL/kernels/CLGEMMReshapeRHSMatrixKernel.cpp",
145 "src/core/CL/kernels/CLGatherKernel.cpp",
146 "src/core/CL/kernels/CLGaussian3x3Kernel.cpp",
147 "src/core/CL/kernels/CLGaussian5x5Kernel.cpp",
148 "src/core/CL/kernels/CLGaussianPyramidKernel.cpp",
149 "src/core/CL/kernels/CLGenerateProposalsLayerKernel.cpp",
150 "src/core/CL/kernels/CLHOGDescriptorKernel.cpp",
151 "src/core/CL/kernels/CLHOGDetectorKernel.cpp",
152 "src/core/CL/kernels/CLHarrisCornersKernel.cpp",
153 "src/core/CL/kernels/CLHeightConcatenateLayerKernel.cpp",
154 "src/core/CL/kernels/CLHistogramKernel.cpp",
155 "src/core/CL/kernels/CLIm2ColKernel.cpp",
156 "src/core/CL/kernels/CLInstanceNormalizationLayerKernel.cpp",
157 "src/core/CL/kernels/CLIntegralImageKernel.cpp",
158 "src/core/CL/kernels/CLL2NormalizeLayerKernel.cpp",
159 "src/core/CL/kernels/CLLKTrackerKernel.cpp",
160 "src/core/CL/kernels/CLLocallyConnectedMatrixMultiplyKernel.cpp",
161 "src/core/CL/kernels/CLMagnitudePhaseKernel.cpp",
Gian Marco Iodice4d81d752020-07-14 15:05:31 +0100162 "src/core/CL/kernels/CLMaxUnpoolingLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000163 "src/core/CL/kernels/CLMeanStdDevKernel.cpp",
164 "src/core/CL/kernels/CLMeanStdDevNormalizationKernel.cpp",
165 "src/core/CL/kernels/CLMedian3x3Kernel.cpp",
166 "src/core/CL/kernels/CLMemsetKernel.cpp",
167 "src/core/CL/kernels/CLMinMaxLayerKernel.cpp",
168 "src/core/CL/kernels/CLMinMaxLocationKernel.cpp",
169 "src/core/CL/kernels/CLNonLinearFilterKernel.cpp",
170 "src/core/CL/kernels/CLNonMaximaSuppression3x3Kernel.cpp",
171 "src/core/CL/kernels/CLNormalizationLayerKernel.cpp",
172 "src/core/CL/kernels/CLNormalizePlanarYUVLayerKernel.cpp",
173 "src/core/CL/kernels/CLPadLayerKernel.cpp",
174 "src/core/CL/kernels/CLPermuteKernel.cpp",
175 "src/core/CL/kernels/CLPixelWiseMultiplicationKernel.cpp",
176 "src/core/CL/kernels/CLPoolingLayerKernel.cpp",
177 "src/core/CL/kernels/CLPriorBoxLayerKernel.cpp",
Sheri Zhangb18252d2020-04-07 11:04:57 +0100178 "src/core/CL/kernels/CLQLSTMLayerNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000179 "src/core/CL/kernels/CLQuantizationLayerKernel.cpp",
180 "src/core/CL/kernels/CLROIAlignLayerKernel.cpp",
181 "src/core/CL/kernels/CLROIPoolingLayerKernel.cpp",
182 "src/core/CL/kernels/CLRangeKernel.cpp",
183 "src/core/CL/kernels/CLReductionOperationKernel.cpp",
184 "src/core/CL/kernels/CLRemapKernel.cpp",
185 "src/core/CL/kernels/CLReorgLayerKernel.cpp",
186 "src/core/CL/kernels/CLReshapeLayerKernel.cpp",
187 "src/core/CL/kernels/CLReverseKernel.cpp",
188 "src/core/CL/kernels/CLScaleKernel.cpp",
189 "src/core/CL/kernels/CLScharr3x3Kernel.cpp",
190 "src/core/CL/kernels/CLSelectKernel.cpp",
191 "src/core/CL/kernels/CLSobel3x3Kernel.cpp",
192 "src/core/CL/kernels/CLSobel5x5Kernel.cpp",
193 "src/core/CL/kernels/CLSobel7x7Kernel.cpp",
194 "src/core/CL/kernels/CLSoftmaxLayerKernel.cpp",
195 "src/core/CL/kernels/CLSpaceToBatchLayerKernel.cpp",
196 "src/core/CL/kernels/CLSpaceToDepthLayerKernel.cpp",
197 "src/core/CL/kernels/CLStackLayerKernel.cpp",
198 "src/core/CL/kernels/CLStridedSliceKernel.cpp",
199 "src/core/CL/kernels/CLTableLookupKernel.cpp",
200 "src/core/CL/kernels/CLThresholdKernel.cpp",
201 "src/core/CL/kernels/CLTileKernel.cpp",
202 "src/core/CL/kernels/CLTransposeKernel.cpp",
203 "src/core/CL/kernels/CLUpsampleLayerKernel.cpp",
204 "src/core/CL/kernels/CLWarpAffineKernel.cpp",
205 "src/core/CL/kernels/CLWarpPerspectiveKernel.cpp",
206 "src/core/CL/kernels/CLWeightsReshapeKernel.cpp",
207 "src/core/CL/kernels/CLWidthConcatenate2TensorsKernel.cpp",
208 "src/core/CL/kernels/CLWidthConcatenate4TensorsKernel.cpp",
209 "src/core/CL/kernels/CLWidthConcatenateLayerKernel.cpp",
210 "src/core/CL/kernels/CLWinogradFilterTransformKernel.cpp",
211 "src/core/CL/kernels/CLWinogradInputTransformKernel.cpp",
212 "src/core/CL/kernels/CLWinogradOutputTransformKernel.cpp",
213 "src/core/CL/kernels/CLYOLOLayerKernel.cpp",
214 "src/core/CPP/CPPTypes.cpp",
215 "src/core/CPP/ICPPSimpleKernel.cpp",
216 "src/core/CPP/kernels/CPPBoxWithNonMaximaSuppressionLimitKernel.cpp",
217 "src/core/CPP/kernels/CPPCornerCandidatesKernel.cpp",
218 "src/core/CPP/kernels/CPPDetectionWindowNonMaximaSuppressionKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000219 "src/core/CPP/kernels/CPPNonMaximumSuppressionKernel.cpp",
220 "src/core/CPP/kernels/CPPPermuteKernel.cpp",
221 "src/core/CPP/kernels/CPPSortEuclideanDistanceKernel.cpp",
222 "src/core/CPP/kernels/CPPTopKVKernel.cpp",
223 "src/core/CPP/kernels/CPPUpsampleKernel.cpp",
224 "src/core/Error.cpp",
225 "src/core/GPUTarget.cpp",
226 "src/core/HOGInfo.cpp",
227 "src/core/Helpers.cpp",
228 "src/core/IAccessWindow.cpp",
229 "src/core/IDistribution.cpp",
230 "src/core/IDistribution1D.cpp",
231 "src/core/IKernel.cpp",
232 "src/core/ITensor.cpp",
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100233 "src/core/ITensorPack.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000234 "src/core/MultiImageInfo.cpp",
235 "src/core/NEON/kernels/NEAbsoluteDifferenceKernel.cpp",
236 "src/core/NEON/kernels/NEAccumulateKernel.cpp",
237 "src/core/NEON/kernels/NEActivationLayerKernel.cpp",
238 "src/core/NEON/kernels/NEArithmeticAdditionKernel.cpp",
239 "src/core/NEON/kernels/NEArithmeticSubtractionKernel.cpp",
240 "src/core/NEON/kernels/NEBatchConcatenateLayerKernel.cpp",
241 "src/core/NEON/kernels/NEBatchNormalizationLayerKernel.cpp",
242 "src/core/NEON/kernels/NEBatchToSpaceLayerKernel.cpp",
243 "src/core/NEON/kernels/NEBitwiseAndKernel.cpp",
244 "src/core/NEON/kernels/NEBitwiseNotKernel.cpp",
245 "src/core/NEON/kernels/NEBitwiseOrKernel.cpp",
246 "src/core/NEON/kernels/NEBitwiseXorKernel.cpp",
247 "src/core/NEON/kernels/NEBoundingBoxTransformKernel.cpp",
248 "src/core/NEON/kernels/NEBox3x3Kernel.cpp",
249 "src/core/NEON/kernels/NECannyEdgeKernel.cpp",
250 "src/core/NEON/kernels/NEChannelCombineKernel.cpp",
251 "src/core/NEON/kernels/NEChannelExtractKernel.cpp",
252 "src/core/NEON/kernels/NEChannelShuffleLayerKernel.cpp",
253 "src/core/NEON/kernels/NECol2ImKernel.cpp",
254 "src/core/NEON/kernels/NEColorConvertKernel.cpp",
255 "src/core/NEON/kernels/NEConvertFullyConnectedWeightsKernel.cpp",
256 "src/core/NEON/kernels/NEConvertQuantizedSignednessKernel.cpp",
257 "src/core/NEON/kernels/NEConvolutionKernel.cpp",
258 "src/core/NEON/kernels/NECopyKernel.cpp",
259 "src/core/NEON/kernels/NECropKernel.cpp",
260 "src/core/NEON/kernels/NECumulativeDistributionKernel.cpp",
261 "src/core/NEON/kernels/NEDepthConcatenateLayerKernel.cpp",
262 "src/core/NEON/kernels/NEDepthConvertLayerKernel.cpp",
263 "src/core/NEON/kernels/NEDepthToSpaceLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000264 "src/core/NEON/kernels/NEDepthwiseConvolutionLayerNativeKernel.cpp",
265 "src/core/NEON/kernels/NEDequantizationLayerKernel.cpp",
266 "src/core/NEON/kernels/NEDerivativeKernel.cpp",
267 "src/core/NEON/kernels/NEDilateKernel.cpp",
268 "src/core/NEON/kernels/NEDirectConvolutionLayerKernel.cpp",
269 "src/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.cpp",
270 "src/core/NEON/kernels/NEElementwiseOperationKernel.cpp",
271 "src/core/NEON/kernels/NEElementwiseUnaryKernel.cpp",
272 "src/core/NEON/kernels/NEErodeKernel.cpp",
273 "src/core/NEON/kernels/NEFFTDigitReverseKernel.cpp",
274 "src/core/NEON/kernels/NEFFTRadixStageKernel.cpp",
275 "src/core/NEON/kernels/NEFFTScaleKernel.cpp",
276 "src/core/NEON/kernels/NEFastCornersKernel.cpp",
277 "src/core/NEON/kernels/NEFillArrayKernel.cpp",
278 "src/core/NEON/kernels/NEFillBorderKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000279 "src/core/NEON/kernels/NEFlattenLayerKernel.cpp",
280 "src/core/NEON/kernels/NEFloorKernel.cpp",
281 "src/core/NEON/kernels/NEFuseBatchNormalizationKernel.cpp",
282 "src/core/NEON/kernels/NEGEMMInterleave4x4Kernel.cpp",
283 "src/core/NEON/kernels/NEGEMMLowpMatrixMultiplyKernel.cpp",
284 "src/core/NEON/kernels/NEGEMMLowpOffsetContributionKernel.cpp",
285 "src/core/NEON/kernels/NEGEMMLowpOffsetContributionOutputStageKernel.cpp",
Luca Foschiani4b869532020-02-13 15:07:36 +0000286 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ScaleKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000287 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel.cpp",
288 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel.cpp",
289 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000290 "src/core/NEON/kernels/NEGEMMLowpReductionKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000291 "src/core/NEON/kernels/NEGEMMMatrixAdditionKernel.cpp",
292 "src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000293 "src/core/NEON/kernels/NEGEMMTranspose1xWKernel.cpp",
294 "src/core/NEON/kernels/NEGatherKernel.cpp",
295 "src/core/NEON/kernels/NEGaussian3x3Kernel.cpp",
296 "src/core/NEON/kernels/NEGaussian5x5Kernel.cpp",
297 "src/core/NEON/kernels/NEGaussianPyramidKernel.cpp",
298 "src/core/NEON/kernels/NEGenerateProposalsLayerKernel.cpp",
299 "src/core/NEON/kernels/NEHOGDescriptorKernel.cpp",
300 "src/core/NEON/kernels/NEHOGDetectorKernel.cpp",
301 "src/core/NEON/kernels/NEHarrisCornersKernel.cpp",
302 "src/core/NEON/kernels/NEHeightConcatenateLayerKernel.cpp",
303 "src/core/NEON/kernels/NEHistogramKernel.cpp",
304 "src/core/NEON/kernels/NEIm2ColKernel.cpp",
305 "src/core/NEON/kernels/NEInstanceNormalizationLayerKernel.cpp",
306 "src/core/NEON/kernels/NEIntegralImageKernel.cpp",
307 "src/core/NEON/kernels/NEL2NormalizeLayerKernel.cpp",
308 "src/core/NEON/kernels/NELKTrackerKernel.cpp",
309 "src/core/NEON/kernels/NELocallyConnectedMatrixMultiplyKernel.cpp",
Georgios Pinitas58bce682020-11-13 11:38:58 +0000310 "src/core/NEON/kernels/NELogicalKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000311 "src/core/NEON/kernels/NEMagnitudePhaseKernel.cpp",
morgolock37722d92020-04-09 14:17:48 +0100312 "src/core/NEON/kernels/NEMaxUnpoolingLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000313 "src/core/NEON/kernels/NEMeanStdDevKernel.cpp",
314 "src/core/NEON/kernels/NEMeanStdDevNormalizationKernel.cpp",
315 "src/core/NEON/kernels/NEMedian3x3Kernel.cpp",
316 "src/core/NEON/kernels/NEMemsetKernel.cpp",
317 "src/core/NEON/kernels/NEMinMaxLayerKernel.cpp",
318 "src/core/NEON/kernels/NEMinMaxLocationKernel.cpp",
319 "src/core/NEON/kernels/NENonLinearFilterKernel.cpp",
320 "src/core/NEON/kernels/NENonMaximaSuppression3x3Kernel.cpp",
321 "src/core/NEON/kernels/NENormalizationLayerKernel.cpp",
322 "src/core/NEON/kernels/NEPadLayerKernel.cpp",
323 "src/core/NEON/kernels/NEPermuteKernel.cpp",
324 "src/core/NEON/kernels/NEPixelWiseMultiplicationKernel.cpp",
325 "src/core/NEON/kernels/NEPoolingLayerKernel.cpp",
326 "src/core/NEON/kernels/NEPriorBoxLayerKernel.cpp",
Sang-Hoon Park0d008f72020-03-13 14:56:05 +0000327 "src/core/NEON/kernels/NEQLSTMLayerNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000328 "src/core/NEON/kernels/NEQuantizationLayerKernel.cpp",
329 "src/core/NEON/kernels/NEROIAlignLayerKernel.cpp",
330 "src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp",
331 "src/core/NEON/kernels/NERangeKernel.cpp",
332 "src/core/NEON/kernels/NEReductionOperationKernel.cpp",
333 "src/core/NEON/kernels/NERemapKernel.cpp",
334 "src/core/NEON/kernels/NEReorgLayerKernel.cpp",
335 "src/core/NEON/kernels/NEReshapeLayerKernel.cpp",
336 "src/core/NEON/kernels/NEReverseKernel.cpp",
337 "src/core/NEON/kernels/NEScaleKernel.cpp",
338 "src/core/NEON/kernels/NEScharr3x3Kernel.cpp",
339 "src/core/NEON/kernels/NESelectKernel.cpp",
340 "src/core/NEON/kernels/NESobel3x3Kernel.cpp",
341 "src/core/NEON/kernels/NESobel5x5Kernel.cpp",
342 "src/core/NEON/kernels/NESobel7x7Kernel.cpp",
343 "src/core/NEON/kernels/NESoftmaxLayerKernel.cpp",
344 "src/core/NEON/kernels/NESpaceToBatchLayerKernel.cpp",
345 "src/core/NEON/kernels/NESpaceToDepthLayerKernel.cpp",
346 "src/core/NEON/kernels/NEStackLayerKernel.cpp",
347 "src/core/NEON/kernels/NEStridedSliceKernel.cpp",
348 "src/core/NEON/kernels/NETableLookupKernel.cpp",
349 "src/core/NEON/kernels/NEThresholdKernel.cpp",
350 "src/core/NEON/kernels/NETileKernel.cpp",
351 "src/core/NEON/kernels/NETransposeKernel.cpp",
352 "src/core/NEON/kernels/NEUpsampleLayerKernel.cpp",
353 "src/core/NEON/kernels/NEWarpKernel.cpp",
354 "src/core/NEON/kernels/NEWeightsReshapeKernel.cpp",
355 "src/core/NEON/kernels/NEWidthConcatenateLayerKernel.cpp",
356 "src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.cpp",
357 "src/core/NEON/kernels/NEYOLOLayerKernel.cpp",
Michalis Spyrouc4d45552020-10-19 12:41:30 +0100358 "src/core/NEON/kernels/activation/impl/fp16_neon_activation.cpp",
359 "src/core/NEON/kernels/activation/impl/fp32_neon_activation.cpp",
360 "src/core/NEON/kernels/activation/impl/qasymm8_neon_activation.cpp",
361 "src/core/NEON/kernels/activation/impl/qasymm8_signed_neon_activation.cpp",
362 "src/core/NEON/kernels/activation/impl/qsymm16_neon_activation.cpp",
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000363 "src/core/NEON/kernels/arm_gemm/gemm_bf16.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000364 "src/core/NEON/kernels/arm_gemm/gemm_fp16.cpp",
365 "src/core/NEON/kernels/arm_gemm/gemm_fp32.cpp",
366 "src/core/NEON/kernels/arm_gemm/gemm_int16.cpp",
367 "src/core/NEON/kernels/arm_gemm/gemm_int8.cpp",
368 "src/core/NEON/kernels/arm_gemm/gemm_qint8.cpp",
369 "src/core/NEON/kernels/arm_gemm/gemm_quint8.cpp",
370 "src/core/NEON/kernels/arm_gemm/gemm_uint16.cpp",
371 "src/core/NEON/kernels/arm_gemm/gemm_uint8.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000372 "src/core/NEON/kernels/arm_gemm/interleave_indirect.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000373 "src/core/NEON/kernels/arm_gemm/mergeresults.cpp",
374 "src/core/NEON/kernels/arm_gemm/misc.cpp",
375 "src/core/NEON/kernels/arm_gemm/quantized.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000376 "src/core/NEON/kernels/arm_gemm/rowsum_indirect_s8.cpp",
377 "src/core/NEON/kernels/arm_gemm/rowsum_indirect_u8.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000378 "src/core/NEON/kernels/convolution/common/padding.cpp",
379 "src/core/NEON/kernels/convolution/common/qasymm8.cpp",
380 "src/core/NEON/kernels/convolution/common/qsymm8.cpp",
381 "src/core/NEON/kernels/convolution/common/utils.cpp",
382 "src/core/NEON/kernels/convolution/depthwise/depthwise_2x2_3x3_1x1_fp32_fp32.cpp",
383 "src/core/NEON/kernels/convolution/depthwise/depthwise_2x2_3x3_2x2_fp32_fp32.cpp",
384 "src/core/NEON/kernels/convolution/depthwise/depthwise_3x3_3x3_1x1_fp32_fp32.cpp",
385 "src/core/NEON/kernels/convolution/depthwise/depthwise_3x3_3x3_2x2_fp32_fp32.cpp",
386 "src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_1x1_fp32_fp32.cpp",
387 "src/core/NEON/kernels/convolution/depthwise/depthwise_dilated.cpp",
388 "src/core/NEON/kernels/convolution/depthwise/depthwise_dilated_qa8_qa8.cpp",
389 "src/core/NEON/kernels/convolution/depthwise/depthwise_fp16.cpp",
390 "src/core/NEON/kernels/convolution/depthwise/depthwise_fp32.cpp",
391 "src/core/NEON/kernels/convolution/depthwise/depthwise_pack_parameters.cpp",
392 "src/core/NEON/kernels/convolution/depthwise/depthwise_qa8_qa8.cpp",
393 "src/core/NEON/kernels/convolution/depthwise/depthwise_qs8_qs8.cpp",
394 "src/core/NEON/kernels/convolution/winograd/padding.cpp",
395 "src/core/NEON/kernels/convolution/winograd/winograd.cpp",
396 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_1x8_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100397 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_4x4_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000398 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_4x4_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100399 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_6x6_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000400 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_6x6_fp32_fp32_integers.cpp",
401 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2_7_fp32_fp32_integers.cpp",
402 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2x2_3x3_fp32_fp32_integers.cpp",
403 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2x2_5x5_fp32_fp32_integers.cpp",
404 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4_5_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100405 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4x4_3x3_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000406 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4x4_3x3_fp32_fp32_integers.cpp",
407 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_6_3_fp32_fp32_integers.cpp",
408 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2_7_fp32_fp32_integers.cpp",
409 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2x2_3x3_fp32_fp32_integers.cpp",
410 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2x2_5x5_fp32_fp32_integers.cpp",
411 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4_5_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100412 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000413 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp32_fp32_integers.cpp",
414 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_6_3_fp32_fp32_integers.cpp",
Georgios Pinitasff4fca02020-10-02 21:00:00 +0100415 "src/core/NEON/kernels/floor/impl/fp16_neon_floor.cpp",
416 "src/core/NEON/kernels/floor/impl/fp32_neon_floor.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000417 "src/core/PyramidInfo.cpp",
418 "src/core/Rounding.cpp",
Matthew Bentham758b5ba2020-03-05 23:37:48 +0000419 "src/core/Size2D.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000420 "src/core/SubTensorInfo.cpp",
421 "src/core/TensorInfo.cpp",
422 "src/core/Utils.cpp",
423 "src/core/Validate.cpp",
Georgios Pinitas51545e42020-02-11 15:29:01 +0000424 "src/core/Version.cpp",
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100425 "src/core/helpers/SoftmaxHelpers.cpp",
426 "src/core/helpers/WindowHelpers.cpp",
Sang-Hoon Park3687ee12020-06-24 13:34:04 +0100427 "src/core/utils/ScaleUtils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000428 "src/core/utils/helpers/fft.cpp",
429 "src/core/utils/helpers/tensor_transform.cpp",
430 "src/core/utils/io/FileHandler.cpp",
431 "src/core/utils/logging/FilePrinter.cpp",
432 "src/core/utils/logging/Helpers.cpp",
433 "src/core/utils/logging/Logger.cpp",
434 "src/core/utils/logging/LoggerRegistry.cpp",
435 "src/core/utils/misc/MMappedFile.cpp",
436 "src/core/utils/quantization/AsymmHelpers.cpp",
437 "src/runtime/Allocator.cpp",
438 "src/runtime/BlobLifetimeManager.cpp",
439 "src/runtime/BlobMemoryPool.cpp",
440 "src/runtime/CL/CLBufferAllocator.cpp",
441 "src/runtime/CL/CLDistribution1D.cpp",
442 "src/runtime/CL/CLHOG.cpp",
443 "src/runtime/CL/CLHelpers.cpp",
444 "src/runtime/CL/CLLut.cpp",
445 "src/runtime/CL/CLLutAllocator.cpp",
446 "src/runtime/CL/CLMemory.cpp",
447 "src/runtime/CL/CLMemoryRegion.cpp",
448 "src/runtime/CL/CLMultiHOG.cpp",
449 "src/runtime/CL/CLMultiImage.cpp",
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100450 "src/runtime/CL/CLOperator.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000451 "src/runtime/CL/CLPyramid.cpp",
452 "src/runtime/CL/CLRuntimeContext.cpp",
453 "src/runtime/CL/CLScheduler.cpp",
454 "src/runtime/CL/CLSubTensor.cpp",
455 "src/runtime/CL/CLTensor.cpp",
456 "src/runtime/CL/CLTensorAllocator.cpp",
457 "src/runtime/CL/CLTuner.cpp",
458 "src/runtime/CL/ICLSimpleFunction.cpp",
Inki Daeea2ce172020-04-09 10:01:44 +0900459 "src/runtime/CL/Utils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000460 "src/runtime/CL/functions/CLAbsoluteDifference.cpp",
461 "src/runtime/CL/functions/CLAccumulate.cpp",
462 "src/runtime/CL/functions/CLActivationLayer.cpp",
463 "src/runtime/CL/functions/CLArgMinMaxLayer.cpp",
464 "src/runtime/CL/functions/CLBatchNormalizationLayer.cpp",
465 "src/runtime/CL/functions/CLBatchToSpaceLayer.cpp",
466 "src/runtime/CL/functions/CLBitwiseAnd.cpp",
467 "src/runtime/CL/functions/CLBitwiseNot.cpp",
468 "src/runtime/CL/functions/CLBitwiseOr.cpp",
469 "src/runtime/CL/functions/CLBitwiseXor.cpp",
470 "src/runtime/CL/functions/CLBoundingBoxTransform.cpp",
471 "src/runtime/CL/functions/CLBox3x3.cpp",
472 "src/runtime/CL/functions/CLCannyEdge.cpp",
473 "src/runtime/CL/functions/CLCast.cpp",
474 "src/runtime/CL/functions/CLChannelCombine.cpp",
475 "src/runtime/CL/functions/CLChannelExtract.cpp",
476 "src/runtime/CL/functions/CLChannelShuffleLayer.cpp",
477 "src/runtime/CL/functions/CLColorConvert.cpp",
478 "src/runtime/CL/functions/CLComparison.cpp",
479 "src/runtime/CL/functions/CLComputeAllAnchors.cpp",
480 "src/runtime/CL/functions/CLConcatenateLayer.cpp",
481 "src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp",
482 "src/runtime/CL/functions/CLConvolution.cpp",
483 "src/runtime/CL/functions/CLConvolutionLayer.cpp",
484 "src/runtime/CL/functions/CLCopy.cpp",
485 "src/runtime/CL/functions/CLCropResize.cpp",
486 "src/runtime/CL/functions/CLDeconvolutionLayer.cpp",
487 "src/runtime/CL/functions/CLDeconvolutionLayerUpsample.cpp",
488 "src/runtime/CL/functions/CLDepthConvertLayer.cpp",
489 "src/runtime/CL/functions/CLDepthToSpaceLayer.cpp",
490 "src/runtime/CL/functions/CLDepthwiseConvolutionLayer.cpp",
491 "src/runtime/CL/functions/CLDequantizationLayer.cpp",
492 "src/runtime/CL/functions/CLDerivative.cpp",
493 "src/runtime/CL/functions/CLDilate.cpp",
494 "src/runtime/CL/functions/CLDirectConvolutionLayer.cpp",
495 "src/runtime/CL/functions/CLDirectDeconvolutionLayer.cpp",
496 "src/runtime/CL/functions/CLElementWiseUnaryLayer.cpp",
497 "src/runtime/CL/functions/CLElementwiseOperations.cpp",
498 "src/runtime/CL/functions/CLEqualizeHistogram.cpp",
499 "src/runtime/CL/functions/CLErode.cpp",
500 "src/runtime/CL/functions/CLFFT1D.cpp",
501 "src/runtime/CL/functions/CLFFT2D.cpp",
502 "src/runtime/CL/functions/CLFFTConvolutionLayer.cpp",
503 "src/runtime/CL/functions/CLFastCorners.cpp",
504 "src/runtime/CL/functions/CLFill.cpp",
505 "src/runtime/CL/functions/CLFillBorder.cpp",
506 "src/runtime/CL/functions/CLFlattenLayer.cpp",
507 "src/runtime/CL/functions/CLFloor.cpp",
508 "src/runtime/CL/functions/CLFullyConnectedLayer.cpp",
509 "src/runtime/CL/functions/CLFuseBatchNormalization.cpp",
510 "src/runtime/CL/functions/CLGEMM.cpp",
511 "src/runtime/CL/functions/CLGEMMConvolutionLayer.cpp",
512 "src/runtime/CL/functions/CLGEMMDeconvolutionLayer.cpp",
513 "src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp",
514 "src/runtime/CL/functions/CLGEMMLowpOutputStage.cpp",
515 "src/runtime/CL/functions/CLGather.cpp",
516 "src/runtime/CL/functions/CLGaussian3x3.cpp",
517 "src/runtime/CL/functions/CLGaussian5x5.cpp",
518 "src/runtime/CL/functions/CLGaussianPyramid.cpp",
519 "src/runtime/CL/functions/CLGenerateProposalsLayer.cpp",
520 "src/runtime/CL/functions/CLHOGDescriptor.cpp",
521 "src/runtime/CL/functions/CLHOGDetector.cpp",
522 "src/runtime/CL/functions/CLHOGGradient.cpp",
523 "src/runtime/CL/functions/CLHOGMultiDetection.cpp",
524 "src/runtime/CL/functions/CLHarrisCorners.cpp",
525 "src/runtime/CL/functions/CLHistogram.cpp",
526 "src/runtime/CL/functions/CLInstanceNormalizationLayer.cpp",
527 "src/runtime/CL/functions/CLIntegralImage.cpp",
528 "src/runtime/CL/functions/CLL2NormalizeLayer.cpp",
529 "src/runtime/CL/functions/CLLSTMLayer.cpp",
530 "src/runtime/CL/functions/CLLSTMLayerQuantized.cpp",
531 "src/runtime/CL/functions/CLLaplacianPyramid.cpp",
532 "src/runtime/CL/functions/CLLaplacianReconstruct.cpp",
533 "src/runtime/CL/functions/CLLocallyConnectedLayer.cpp",
Sang-Hoon Park75eea332020-11-13 13:44:13 +0000534 "src/runtime/CL/functions/CLLogicalAnd.cpp",
535 "src/runtime/CL/functions/CLLogicalNot.cpp",
536 "src/runtime/CL/functions/CLLogicalOr.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000537 "src/runtime/CL/functions/CLMagnitude.cpp",
Gian Marco Iodice4d81d752020-07-14 15:05:31 +0100538 "src/runtime/CL/functions/CLMaxUnpoolingLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000539 "src/runtime/CL/functions/CLMeanStdDev.cpp",
540 "src/runtime/CL/functions/CLMeanStdDevNormalizationLayer.cpp",
541 "src/runtime/CL/functions/CLMedian3x3.cpp",
542 "src/runtime/CL/functions/CLMinMaxLocation.cpp",
543 "src/runtime/CL/functions/CLNonLinearFilter.cpp",
544 "src/runtime/CL/functions/CLNonMaximaSuppression3x3.cpp",
545 "src/runtime/CL/functions/CLNormalizationLayer.cpp",
546 "src/runtime/CL/functions/CLNormalizePlanarYUVLayer.cpp",
547 "src/runtime/CL/functions/CLOpticalFlow.cpp",
548 "src/runtime/CL/functions/CLPReluLayer.cpp",
549 "src/runtime/CL/functions/CLPadLayer.cpp",
550 "src/runtime/CL/functions/CLPermute.cpp",
551 "src/runtime/CL/functions/CLPhase.cpp",
552 "src/runtime/CL/functions/CLPixelWiseMultiplication.cpp",
553 "src/runtime/CL/functions/CLPoolingLayer.cpp",
554 "src/runtime/CL/functions/CLPriorBoxLayer.cpp",
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +0100555 "src/runtime/CL/functions/CLQLSTMLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000556 "src/runtime/CL/functions/CLQuantizationLayer.cpp",
557 "src/runtime/CL/functions/CLRNNLayer.cpp",
558 "src/runtime/CL/functions/CLROIAlignLayer.cpp",
559 "src/runtime/CL/functions/CLROIPoolingLayer.cpp",
560 "src/runtime/CL/functions/CLRange.cpp",
561 "src/runtime/CL/functions/CLReduceMean.cpp",
562 "src/runtime/CL/functions/CLReductionOperation.cpp",
563 "src/runtime/CL/functions/CLRemap.cpp",
564 "src/runtime/CL/functions/CLReorgLayer.cpp",
565 "src/runtime/CL/functions/CLReshapeLayer.cpp",
566 "src/runtime/CL/functions/CLReverse.cpp",
567 "src/runtime/CL/functions/CLScale.cpp",
568 "src/runtime/CL/functions/CLScharr3x3.cpp",
569 "src/runtime/CL/functions/CLSelect.cpp",
570 "src/runtime/CL/functions/CLSlice.cpp",
571 "src/runtime/CL/functions/CLSobel3x3.cpp",
572 "src/runtime/CL/functions/CLSobel5x5.cpp",
573 "src/runtime/CL/functions/CLSobel7x7.cpp",
574 "src/runtime/CL/functions/CLSoftmaxLayer.cpp",
575 "src/runtime/CL/functions/CLSpaceToBatchLayer.cpp",
576 "src/runtime/CL/functions/CLSpaceToDepthLayer.cpp",
577 "src/runtime/CL/functions/CLSplit.cpp",
578 "src/runtime/CL/functions/CLStackLayer.cpp",
579 "src/runtime/CL/functions/CLStridedSlice.cpp",
580 "src/runtime/CL/functions/CLTableLookup.cpp",
581 "src/runtime/CL/functions/CLThreshold.cpp",
582 "src/runtime/CL/functions/CLTile.cpp",
583 "src/runtime/CL/functions/CLTranspose.cpp",
584 "src/runtime/CL/functions/CLUnstack.cpp",
585 "src/runtime/CL/functions/CLUpsampleLayer.cpp",
586 "src/runtime/CL/functions/CLWarpAffine.cpp",
587 "src/runtime/CL/functions/CLWarpPerspective.cpp",
588 "src/runtime/CL/functions/CLWinogradConvolutionLayer.cpp",
589 "src/runtime/CL/functions/CLWinogradInputTransform.cpp",
590 "src/runtime/CL/functions/CLYOLOLayer.cpp",
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +0000591 "src/runtime/CL/gemm/CLGEMMKernelSelectionBifrost.cpp",
592 "src/runtime/CL/gemm/CLGEMMKernelSelectionMidgard.cpp",
593 "src/runtime/CL/gemm/CLGEMMKernelSelectionValhall.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000594 "src/runtime/CL/tuners/BifrostTuner.cpp",
595 "src/runtime/CL/tuners/CLLWSList.cpp",
596 "src/runtime/CL/tuners/MidgardTuner.cpp",
597 "src/runtime/CPP/CPPScheduler.cpp",
598 "src/runtime/CPP/ICPPSimpleFunction.cpp",
599 "src/runtime/CPP/SingleThreadScheduler.cpp",
600 "src/runtime/CPP/functions/CPPBoxWithNonMaximaSuppressionLimit.cpp",
601 "src/runtime/CPP/functions/CPPDetectionOutputLayer.cpp",
602 "src/runtime/CPP/functions/CPPDetectionPostProcessLayer.cpp",
603 "src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp",
604 "src/runtime/CPP/functions/CPPPermute.cpp",
605 "src/runtime/CPP/functions/CPPTopKV.cpp",
606 "src/runtime/CPP/functions/CPPUpsample.cpp",
607 "src/runtime/CPUUtils.cpp",
608 "src/runtime/DeviceProperties.cpp",
609 "src/runtime/Distribution1D.cpp",
610 "src/runtime/HOG.cpp",
611 "src/runtime/ILutAllocator.cpp",
612 "src/runtime/IScheduler.cpp",
613 "src/runtime/ISimpleLifetimeManager.cpp",
614 "src/runtime/ITensorAllocator.cpp",
615 "src/runtime/IWeightsManager.cpp",
616 "src/runtime/Lut.cpp",
617 "src/runtime/LutAllocator.cpp",
618 "src/runtime/MEMUtils.cpp",
619 "src/runtime/Memory.cpp",
620 "src/runtime/MemoryManagerOnDemand.cpp",
621 "src/runtime/MultiHOG.cpp",
622 "src/runtime/MultiImage.cpp",
Michalis Spyroubcd23522020-05-21 15:02:36 +0100623 "src/runtime/NEON/INEOperator.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000624 "src/runtime/NEON/INESimpleFunction.cpp",
625 "src/runtime/NEON/INESimpleFunctionNoBorder.cpp",
626 "src/runtime/NEON/functions/NEAbsoluteDifference.cpp",
627 "src/runtime/NEON/functions/NEAccumulate.cpp",
628 "src/runtime/NEON/functions/NEActivationLayer.cpp",
629 "src/runtime/NEON/functions/NEArgMinMaxLayer.cpp",
630 "src/runtime/NEON/functions/NEArithmeticAddition.cpp",
631 "src/runtime/NEON/functions/NEArithmeticSubtraction.cpp",
632 "src/runtime/NEON/functions/NEBatchNormalizationLayer.cpp",
633 "src/runtime/NEON/functions/NEBatchToSpaceLayer.cpp",
634 "src/runtime/NEON/functions/NEBitwiseAnd.cpp",
635 "src/runtime/NEON/functions/NEBitwiseNot.cpp",
636 "src/runtime/NEON/functions/NEBitwiseOr.cpp",
637 "src/runtime/NEON/functions/NEBitwiseXor.cpp",
638 "src/runtime/NEON/functions/NEBoundingBoxTransform.cpp",
639 "src/runtime/NEON/functions/NEBox3x3.cpp",
640 "src/runtime/NEON/functions/NECannyEdge.cpp",
641 "src/runtime/NEON/functions/NECast.cpp",
642 "src/runtime/NEON/functions/NEChannelCombine.cpp",
643 "src/runtime/NEON/functions/NEChannelExtract.cpp",
644 "src/runtime/NEON/functions/NEChannelShuffleLayer.cpp",
645 "src/runtime/NEON/functions/NECol2Im.cpp",
646 "src/runtime/NEON/functions/NEColorConvert.cpp",
647 "src/runtime/NEON/functions/NEComputeAllAnchors.cpp",
648 "src/runtime/NEON/functions/NEConcatenateLayer.cpp",
649 "src/runtime/NEON/functions/NEConvertFullyConnectedWeights.cpp",
650 "src/runtime/NEON/functions/NEConvolution.cpp",
651 "src/runtime/NEON/functions/NEConvolutionLayer.cpp",
652 "src/runtime/NEON/functions/NECopy.cpp",
653 "src/runtime/NEON/functions/NECropResize.cpp",
654 "src/runtime/NEON/functions/NEDeconvolutionLayer.cpp",
655 "src/runtime/NEON/functions/NEDepthConvertLayer.cpp",
656 "src/runtime/NEON/functions/NEDepthToSpaceLayer.cpp",
657 "src/runtime/NEON/functions/NEDepthwiseConvolutionLayer.cpp",
658 "src/runtime/NEON/functions/NEDequantizationLayer.cpp",
659 "src/runtime/NEON/functions/NEDerivative.cpp",
660 "src/runtime/NEON/functions/NEDetectionPostProcessLayer.cpp",
661 "src/runtime/NEON/functions/NEDilate.cpp",
662 "src/runtime/NEON/functions/NEDirectConvolutionLayer.cpp",
663 "src/runtime/NEON/functions/NEElementwiseOperators.cpp",
664 "src/runtime/NEON/functions/NEElementwiseUnaryLayer.cpp",
665 "src/runtime/NEON/functions/NEEqualizeHistogram.cpp",
666 "src/runtime/NEON/functions/NEErode.cpp",
667 "src/runtime/NEON/functions/NEFFT1D.cpp",
668 "src/runtime/NEON/functions/NEFFT2D.cpp",
669 "src/runtime/NEON/functions/NEFFTConvolutionLayer.cpp",
670 "src/runtime/NEON/functions/NEFastCorners.cpp",
671 "src/runtime/NEON/functions/NEFill.cpp",
672 "src/runtime/NEON/functions/NEFillBorder.cpp",
673 "src/runtime/NEON/functions/NEFlattenLayer.cpp",
674 "src/runtime/NEON/functions/NEFloor.cpp",
675 "src/runtime/NEON/functions/NEFullyConnectedLayer.cpp",
676 "src/runtime/NEON/functions/NEFuseBatchNormalization.cpp",
677 "src/runtime/NEON/functions/NEGEMM.cpp",
678 "src/runtime/NEON/functions/NEGEMMAssemblyDispatch.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000679 "src/runtime/NEON/functions/NEGEMMConv2d.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000680 "src/runtime/NEON/functions/NEGEMMConvolutionLayer.cpp",
681 "src/runtime/NEON/functions/NEGEMMInterleave4x4.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000682 "src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp",
683 "src/runtime/NEON/functions/NEGEMMLowpOutputStage.cpp",
684 "src/runtime/NEON/functions/NEGEMMTranspose1xW.cpp",
685 "src/runtime/NEON/functions/NEGather.cpp",
686 "src/runtime/NEON/functions/NEGaussian3x3.cpp",
687 "src/runtime/NEON/functions/NEGaussian5x5.cpp",
688 "src/runtime/NEON/functions/NEGaussianPyramid.cpp",
689 "src/runtime/NEON/functions/NEGenerateProposalsLayer.cpp",
690 "src/runtime/NEON/functions/NEHOGDescriptor.cpp",
691 "src/runtime/NEON/functions/NEHOGDetector.cpp",
692 "src/runtime/NEON/functions/NEHOGGradient.cpp",
693 "src/runtime/NEON/functions/NEHOGMultiDetection.cpp",
694 "src/runtime/NEON/functions/NEHarrisCorners.cpp",
695 "src/runtime/NEON/functions/NEHistogram.cpp",
696 "src/runtime/NEON/functions/NEIm2Col.cpp",
697 "src/runtime/NEON/functions/NEInstanceNormalizationLayer.cpp",
698 "src/runtime/NEON/functions/NEIntegralImage.cpp",
699 "src/runtime/NEON/functions/NEL2NormalizeLayer.cpp",
700 "src/runtime/NEON/functions/NELSTMLayer.cpp",
701 "src/runtime/NEON/functions/NELSTMLayerQuantized.cpp",
702 "src/runtime/NEON/functions/NELaplacianPyramid.cpp",
703 "src/runtime/NEON/functions/NELaplacianReconstruct.cpp",
704 "src/runtime/NEON/functions/NELocallyConnectedLayer.cpp",
Georgios Pinitas58bce682020-11-13 11:38:58 +0000705 "src/runtime/NEON/functions/NELogical.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000706 "src/runtime/NEON/functions/NEMagnitude.cpp",
morgolock37722d92020-04-09 14:17:48 +0100707 "src/runtime/NEON/functions/NEMaxUnpoolingLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000708 "src/runtime/NEON/functions/NEMeanStdDev.cpp",
709 "src/runtime/NEON/functions/NEMeanStdDevNormalizationLayer.cpp",
710 "src/runtime/NEON/functions/NEMedian3x3.cpp",
711 "src/runtime/NEON/functions/NEMinMaxLocation.cpp",
712 "src/runtime/NEON/functions/NENonLinearFilter.cpp",
713 "src/runtime/NEON/functions/NENonMaximaSuppression3x3.cpp",
714 "src/runtime/NEON/functions/NENormalizationLayer.cpp",
715 "src/runtime/NEON/functions/NEOpticalFlow.cpp",
716 "src/runtime/NEON/functions/NEPReluLayer.cpp",
717 "src/runtime/NEON/functions/NEPadLayer.cpp",
718 "src/runtime/NEON/functions/NEPermute.cpp",
719 "src/runtime/NEON/functions/NEPhase.cpp",
720 "src/runtime/NEON/functions/NEPixelWiseMultiplication.cpp",
721 "src/runtime/NEON/functions/NEPoolingLayer.cpp",
722 "src/runtime/NEON/functions/NEPriorBoxLayer.cpp",
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000723 "src/runtime/NEON/functions/NEQLSTMLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000724 "src/runtime/NEON/functions/NEQuantizationLayer.cpp",
725 "src/runtime/NEON/functions/NERNNLayer.cpp",
726 "src/runtime/NEON/functions/NEROIAlignLayer.cpp",
727 "src/runtime/NEON/functions/NEROIPoolingLayer.cpp",
728 "src/runtime/NEON/functions/NERange.cpp",
729 "src/runtime/NEON/functions/NEReduceMean.cpp",
730 "src/runtime/NEON/functions/NEReductionOperation.cpp",
731 "src/runtime/NEON/functions/NERemap.cpp",
732 "src/runtime/NEON/functions/NEReorgLayer.cpp",
733 "src/runtime/NEON/functions/NEReshapeLayer.cpp",
734 "src/runtime/NEON/functions/NEReverse.cpp",
735 "src/runtime/NEON/functions/NEScale.cpp",
736 "src/runtime/NEON/functions/NEScharr3x3.cpp",
737 "src/runtime/NEON/functions/NESelect.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000738 "src/runtime/NEON/functions/NESlice.cpp",
739 "src/runtime/NEON/functions/NESobel3x3.cpp",
740 "src/runtime/NEON/functions/NESobel5x5.cpp",
741 "src/runtime/NEON/functions/NESobel7x7.cpp",
742 "src/runtime/NEON/functions/NESoftmaxLayer.cpp",
743 "src/runtime/NEON/functions/NESpaceToBatchLayer.cpp",
744 "src/runtime/NEON/functions/NESpaceToDepthLayer.cpp",
745 "src/runtime/NEON/functions/NESplit.cpp",
746 "src/runtime/NEON/functions/NEStackLayer.cpp",
747 "src/runtime/NEON/functions/NEStridedSlice.cpp",
748 "src/runtime/NEON/functions/NETableLookup.cpp",
749 "src/runtime/NEON/functions/NEThreshold.cpp",
750 "src/runtime/NEON/functions/NETile.cpp",
751 "src/runtime/NEON/functions/NETranspose.cpp",
752 "src/runtime/NEON/functions/NEUnstack.cpp",
753 "src/runtime/NEON/functions/NEUpsampleLayer.cpp",
754 "src/runtime/NEON/functions/NEWarpAffine.cpp",
755 "src/runtime/NEON/functions/NEWarpPerspective.cpp",
756 "src/runtime/NEON/functions/NEWinogradConvolutionLayer.cpp",
757 "src/runtime/NEON/functions/NEYOLOLayer.cpp",
758 "src/runtime/NEON/functions/assembly/NEDepthwiseConvolutionAssemblyDispatch.cpp",
759 "src/runtime/OMP/OMPScheduler.cpp",
760 "src/runtime/OffsetLifetimeManager.cpp",
761 "src/runtime/OffsetMemoryPool.cpp",
Michalis Spyroubcd23522020-05-21 15:02:36 +0100762 "src/runtime/OperatorTensor.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000763 "src/runtime/PoolManager.cpp",
764 "src/runtime/Pyramid.cpp",
765 "src/runtime/RuntimeContext.cpp",
766 "src/runtime/Scheduler.cpp",
767 "src/runtime/SchedulerFactory.cpp",
morgolock51112642020-08-20 14:51:39 +0100768 "src/runtime/SchedulerUtils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000769 "src/runtime/SubTensor.cpp",
770 "src/runtime/Tensor.cpp",
771 "src/runtime/TensorAllocator.cpp",
772 "src/runtime/Utils.cpp",
773 "utils/CommonGraphOptions.cpp",
774 "utils/GraphUtils.cpp",
775 "utils/Utils.cpp",
776
777 ],
778 arch: {
779 arm: {
780 srcs: [
781 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a53.cpp",
782 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a55r1.cpp",
783 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/generic.cpp",
784
785 ],
786 },
787 arm64: {
788 srcs: [
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000789 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s16_8x12/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000790 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_4x4/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000791 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/a55r1.cpp",
792 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/generic.cpp",
793 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/x1.cpp",
794 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u16_8x12/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000795 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_4x4/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000796 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/a55r1.cpp",
797 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/generic.cpp",
798 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/x1.cpp",
799 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemv_fp32_mla_32/generic.cpp",
800 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/a55r1.cpp",
801 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/generic.cpp",
802 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/x1.cpp",
803 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_bf16fp32_dot_6x16/generic.cpp",
804 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp16_mla_6x32/generic.cpp",
805 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_6x16/generic.cpp",
806 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_8x4/generic.cpp",
807 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_dot_4x16/generic.cpp",
808 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_dot_6x16/generic.cpp",
809 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_6x16/generic.cpp",
810 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_dot_4x16/generic.cpp",
811 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_6x16/generic.cpp",
812 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_dot_8x12/generic.cpp",
813 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_mmla_8x12/generic.cpp",
814 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_s8s32_mmla_8x12/generic.cpp",
815 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_u8u32_mmla_8x12/generic.cpp",
816 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a53.cpp",
817 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55.cpp",
818 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55r1.cpp",
819 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/generic.cpp",
820 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/x1.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000821 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemv_pretransposed/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000822 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_6x4/generic.cpp",
823 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_8x4/generic.cpp",
824 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/a55.cpp",
825 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/generic.cpp",
826 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/a55.cpp",
827 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/generic.cpp",
828 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/a55.cpp",
829 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/generic.cpp",
830 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/a55.cpp",
831 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/generic.cpp",
832 "src/core/NEON/kernels/arm_gemm/kernels/sve_gemv_fp32_mla_8VL/generic.cpp",
833 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_bf16fp32_dot_6x4VL/generic.cpp",
834 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp16_mla_6x4VL/generic.cpp",
835 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_6x4VL/generic.cpp",
836 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_8x1VL/generic.cpp",
837 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qa_dot_4x4VL/generic.cpp",
838 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qs_dot_6x4VL/generic.cpp",
839 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8s32_dot_6x4VL/generic.cpp",
840 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8qa_dot_4x4VL/generic.cpp",
841 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8u32_dot_6x4VL/generic.cpp",
842 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_dot_8x3VL/generic.cpp",
843 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_mmla_8x3VL/generic.cpp",
844 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp16_mla_8x3VL/generic.cpp",
845 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mla_8x3VL/generic.cpp",
846 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mmla_8x3VL/generic.cpp",
847 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_dot_8x3VL/generic.cpp",
848 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_mmla_8x3VL/generic.cpp",
849 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_dot_8x3VL/generic.cpp",
850 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_mmla_8x3VL/generic.cpp",
851 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_fp32_mla_8x1VL/generic.cpp",
852 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_s8s32_dot_8x1VL/generic.cpp",
853 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_u8u32_dot_8x1VL/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000854
855 ],
856 },
857 },
858 rtti: true,
859}