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