blob: dc6c7020113971756a5c1bbc11619f55093fee9f [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",
SiCong Lia085a0c2020-12-02 14:54:34 +000074 "src/core/CL/gemm/native/CLGEMMDefaultConfigNativeBifrost.cpp",
75 "src/core/CL/gemm/native/CLGEMMDefaultConfigNativeMidgard.cpp",
76 "src/core/CL/gemm/native/CLGEMMDefaultConfigNativeValhall.cpp",
77 "src/core/CL/gemm/reshaped/CLGEMMDefaultConfigReshapedBifrost.cpp",
78 "src/core/CL/gemm/reshaped/CLGEMMDefaultConfigReshapedValhall.cpp",
79 "src/core/CL/gemm/reshaped_only_rhs/CLGEMMDefaultConfigReshapedRHSOnlyBifrost.cpp",
80 "src/core/CL/gemm/reshaped_only_rhs/CLGEMMDefaultConfigReshapedRHSOnlyValhall.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000081 "src/core/CL/kernels/CLAbsoluteDifferenceKernel.cpp",
82 "src/core/CL/kernels/CLAccumulateKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000083 "src/core/CL/kernels/CLArgMinMaxLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000084 "src/core/CL/kernels/CLBatchNormalizationLayerKernel.cpp",
85 "src/core/CL/kernels/CLBatchToSpaceLayerKernel.cpp",
Manuel Bottini63bb7ca2020-12-02 13:22:14 +000086 "src/core/CL/kernels/CLBitwiseKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000087 "src/core/CL/kernels/CLBoundingBoxTransformKernel.cpp",
88 "src/core/CL/kernels/CLBox3x3Kernel.cpp",
89 "src/core/CL/kernels/CLCannyEdgeKernel.cpp",
90 "src/core/CL/kernels/CLChannelCombineKernel.cpp",
91 "src/core/CL/kernels/CLChannelExtractKernel.cpp",
92 "src/core/CL/kernels/CLChannelShuffleLayerKernel.cpp",
93 "src/core/CL/kernels/CLCol2ImKernel.cpp",
94 "src/core/CL/kernels/CLColorConvertKernel.cpp",
95 "src/core/CL/kernels/CLComparisonKernel.cpp",
96 "src/core/CL/kernels/CLConvertFullyConnectedWeightsKernel.cpp",
97 "src/core/CL/kernels/CLConvolutionKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000098 "src/core/CL/kernels/CLDeconvolutionLayerUpsampleKernel.cpp",
99 "src/core/CL/kernels/CLDeconvolutionReshapeOutputKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000100 "src/core/CL/kernels/CLDepthConvertLayerKernel.cpp",
101 "src/core/CL/kernels/CLDepthToSpaceLayerKernel.cpp",
102 "src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NCHWKernel.cpp",
103 "src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NHWCKernel.cpp",
104 "src/core/CL/kernels/CLDepthwiseConvolutionLayerNativeKernel.cpp",
105 "src/core/CL/kernels/CLDepthwiseConvolutionLayerReshapeWeightsKernel.cpp",
106 "src/core/CL/kernels/CLDequantizationLayerKernel.cpp",
107 "src/core/CL/kernels/CLDerivativeKernel.cpp",
108 "src/core/CL/kernels/CLDilateKernel.cpp",
109 "src/core/CL/kernels/CLDirectConvolutionLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000110 "src/core/CL/kernels/CLErodeKernel.cpp",
111 "src/core/CL/kernels/CLFFTDigitReverseKernel.cpp",
112 "src/core/CL/kernels/CLFFTRadixStageKernel.cpp",
113 "src/core/CL/kernels/CLFFTScaleKernel.cpp",
114 "src/core/CL/kernels/CLFastCornersKernel.cpp",
115 "src/core/CL/kernels/CLFillBorderKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000116 "src/core/CL/kernels/CLFuseBatchNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000117 "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyNativeKernel.cpp",
118 "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyReshapedKernel.cpp",
119 "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel.cpp",
120 "src/core/CL/kernels/CLGEMMLowpOffsetContributionKernel.cpp",
121 "src/core/CL/kernels/CLGEMMLowpOffsetContributionOutputStageKernel.cpp",
Michele Di Giorgioba14c922020-10-12 13:27:57 +0100122 "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel.cpp",
Sheri Zhang1b14c752020-03-09 14:29:52 +0000123 "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel.cpp",
Luca Foschiani689c9682020-02-26 14:30:14 +0000124 "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000125 "src/core/CL/kernels/CLGEMMLowpReductionKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000126 "src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp",
127 "src/core/CL/kernels/CLGEMMMatrixMultiplyNativeKernel.cpp",
128 "src/core/CL/kernels/CLGEMMMatrixMultiplyReshapedKernel.cpp",
129 "src/core/CL/kernels/CLGEMMMatrixMultiplyReshapedOnlyRHSKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000130 "src/core/CL/kernels/CLGEMMReshapeLHSMatrixKernel.cpp",
131 "src/core/CL/kernels/CLGEMMReshapeRHSMatrixKernel.cpp",
132 "src/core/CL/kernels/CLGatherKernel.cpp",
133 "src/core/CL/kernels/CLGaussian3x3Kernel.cpp",
134 "src/core/CL/kernels/CLGaussian5x5Kernel.cpp",
135 "src/core/CL/kernels/CLGaussianPyramidKernel.cpp",
136 "src/core/CL/kernels/CLGenerateProposalsLayerKernel.cpp",
137 "src/core/CL/kernels/CLHOGDescriptorKernel.cpp",
138 "src/core/CL/kernels/CLHOGDetectorKernel.cpp",
139 "src/core/CL/kernels/CLHarrisCornersKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000140 "src/core/CL/kernels/CLHistogramKernel.cpp",
141 "src/core/CL/kernels/CLIm2ColKernel.cpp",
142 "src/core/CL/kernels/CLInstanceNormalizationLayerKernel.cpp",
143 "src/core/CL/kernels/CLIntegralImageKernel.cpp",
144 "src/core/CL/kernels/CLL2NormalizeLayerKernel.cpp",
145 "src/core/CL/kernels/CLLKTrackerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000146 "src/core/CL/kernels/CLMagnitudePhaseKernel.cpp",
Gian Marco Iodice4d81d752020-07-14 15:05:31 +0100147 "src/core/CL/kernels/CLMaxUnpoolingLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000148 "src/core/CL/kernels/CLMeanStdDevKernel.cpp",
149 "src/core/CL/kernels/CLMeanStdDevNormalizationKernel.cpp",
150 "src/core/CL/kernels/CLMedian3x3Kernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000151 "src/core/CL/kernels/CLMinMaxLayerKernel.cpp",
152 "src/core/CL/kernels/CLMinMaxLocationKernel.cpp",
153 "src/core/CL/kernels/CLNonLinearFilterKernel.cpp",
154 "src/core/CL/kernels/CLNonMaximaSuppression3x3Kernel.cpp",
155 "src/core/CL/kernels/CLNormalizationLayerKernel.cpp",
156 "src/core/CL/kernels/CLNormalizePlanarYUVLayerKernel.cpp",
157 "src/core/CL/kernels/CLPadLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000158 "src/core/CL/kernels/CLPixelWiseMultiplicationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000159 "src/core/CL/kernels/CLPriorBoxLayerKernel.cpp",
Sheri Zhangb18252d2020-04-07 11:04:57 +0100160 "src/core/CL/kernels/CLQLSTMLayerNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000161 "src/core/CL/kernels/CLQuantizationLayerKernel.cpp",
162 "src/core/CL/kernels/CLROIAlignLayerKernel.cpp",
163 "src/core/CL/kernels/CLROIPoolingLayerKernel.cpp",
164 "src/core/CL/kernels/CLRangeKernel.cpp",
165 "src/core/CL/kernels/CLReductionOperationKernel.cpp",
166 "src/core/CL/kernels/CLRemapKernel.cpp",
167 "src/core/CL/kernels/CLReorgLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000168 "src/core/CL/kernels/CLReverseKernel.cpp",
169 "src/core/CL/kernels/CLScaleKernel.cpp",
170 "src/core/CL/kernels/CLScharr3x3Kernel.cpp",
171 "src/core/CL/kernels/CLSelectKernel.cpp",
172 "src/core/CL/kernels/CLSobel3x3Kernel.cpp",
173 "src/core/CL/kernels/CLSobel5x5Kernel.cpp",
174 "src/core/CL/kernels/CLSobel7x7Kernel.cpp",
175 "src/core/CL/kernels/CLSoftmaxLayerKernel.cpp",
176 "src/core/CL/kernels/CLSpaceToBatchLayerKernel.cpp",
177 "src/core/CL/kernels/CLSpaceToDepthLayerKernel.cpp",
178 "src/core/CL/kernels/CLStackLayerKernel.cpp",
179 "src/core/CL/kernels/CLStridedSliceKernel.cpp",
180 "src/core/CL/kernels/CLTableLookupKernel.cpp",
181 "src/core/CL/kernels/CLThresholdKernel.cpp",
182 "src/core/CL/kernels/CLTileKernel.cpp",
183 "src/core/CL/kernels/CLTransposeKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000184 "src/core/CL/kernels/CLWarpAffineKernel.cpp",
185 "src/core/CL/kernels/CLWarpPerspectiveKernel.cpp",
186 "src/core/CL/kernels/CLWeightsReshapeKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000187 "src/core/CL/kernels/CLWinogradFilterTransformKernel.cpp",
188 "src/core/CL/kernels/CLWinogradInputTransformKernel.cpp",
189 "src/core/CL/kernels/CLWinogradOutputTransformKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000190 "src/core/CPP/CPPTypes.cpp",
191 "src/core/CPP/ICPPSimpleKernel.cpp",
192 "src/core/CPP/kernels/CPPBoxWithNonMaximaSuppressionLimitKernel.cpp",
193 "src/core/CPP/kernels/CPPCornerCandidatesKernel.cpp",
194 "src/core/CPP/kernels/CPPDetectionWindowNonMaximaSuppressionKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000195 "src/core/CPP/kernels/CPPNonMaximumSuppressionKernel.cpp",
196 "src/core/CPP/kernels/CPPPermuteKernel.cpp",
197 "src/core/CPP/kernels/CPPSortEuclideanDistanceKernel.cpp",
198 "src/core/CPP/kernels/CPPTopKVKernel.cpp",
199 "src/core/CPP/kernels/CPPUpsampleKernel.cpp",
200 "src/core/Error.cpp",
201 "src/core/GPUTarget.cpp",
202 "src/core/HOGInfo.cpp",
203 "src/core/Helpers.cpp",
204 "src/core/IAccessWindow.cpp",
205 "src/core/IDistribution.cpp",
206 "src/core/IDistribution1D.cpp",
207 "src/core/IKernel.cpp",
208 "src/core/ITensor.cpp",
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100209 "src/core/ITensorPack.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000210 "src/core/MultiImageInfo.cpp",
211 "src/core/NEON/kernels/NEAbsoluteDifferenceKernel.cpp",
212 "src/core/NEON/kernels/NEAccumulateKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000213 "src/core/NEON/kernels/NEBatchNormalizationLayerKernel.cpp",
214 "src/core/NEON/kernels/NEBatchToSpaceLayerKernel.cpp",
215 "src/core/NEON/kernels/NEBitwiseAndKernel.cpp",
216 "src/core/NEON/kernels/NEBitwiseNotKernel.cpp",
217 "src/core/NEON/kernels/NEBitwiseOrKernel.cpp",
218 "src/core/NEON/kernels/NEBitwiseXorKernel.cpp",
219 "src/core/NEON/kernels/NEBoundingBoxTransformKernel.cpp",
220 "src/core/NEON/kernels/NEBox3x3Kernel.cpp",
221 "src/core/NEON/kernels/NECannyEdgeKernel.cpp",
222 "src/core/NEON/kernels/NEChannelCombineKernel.cpp",
223 "src/core/NEON/kernels/NEChannelExtractKernel.cpp",
224 "src/core/NEON/kernels/NEChannelShuffleLayerKernel.cpp",
225 "src/core/NEON/kernels/NECol2ImKernel.cpp",
226 "src/core/NEON/kernels/NEColorConvertKernel.cpp",
227 "src/core/NEON/kernels/NEConvertFullyConnectedWeightsKernel.cpp",
228 "src/core/NEON/kernels/NEConvertQuantizedSignednessKernel.cpp",
229 "src/core/NEON/kernels/NEConvolutionKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000230 "src/core/NEON/kernels/NECropKernel.cpp",
231 "src/core/NEON/kernels/NECumulativeDistributionKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000232 "src/core/NEON/kernels/NEDepthConvertLayerKernel.cpp",
233 "src/core/NEON/kernels/NEDepthToSpaceLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000234 "src/core/NEON/kernels/NEDepthwiseConvolutionLayerNativeKernel.cpp",
235 "src/core/NEON/kernels/NEDequantizationLayerKernel.cpp",
236 "src/core/NEON/kernels/NEDerivativeKernel.cpp",
237 "src/core/NEON/kernels/NEDilateKernel.cpp",
238 "src/core/NEON/kernels/NEDirectConvolutionLayerKernel.cpp",
239 "src/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000240 "src/core/NEON/kernels/NEErodeKernel.cpp",
241 "src/core/NEON/kernels/NEFFTDigitReverseKernel.cpp",
242 "src/core/NEON/kernels/NEFFTRadixStageKernel.cpp",
243 "src/core/NEON/kernels/NEFFTScaleKernel.cpp",
244 "src/core/NEON/kernels/NEFastCornersKernel.cpp",
245 "src/core/NEON/kernels/NEFillArrayKernel.cpp",
246 "src/core/NEON/kernels/NEFillBorderKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000247 "src/core/NEON/kernels/NEFuseBatchNormalizationKernel.cpp",
248 "src/core/NEON/kernels/NEGEMMInterleave4x4Kernel.cpp",
249 "src/core/NEON/kernels/NEGEMMLowpMatrixMultiplyKernel.cpp",
250 "src/core/NEON/kernels/NEGEMMLowpOffsetContributionKernel.cpp",
251 "src/core/NEON/kernels/NEGEMMLowpOffsetContributionOutputStageKernel.cpp",
Luca Foschiani4b869532020-02-13 15:07:36 +0000252 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ScaleKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000253 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel.cpp",
254 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel.cpp",
255 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000256 "src/core/NEON/kernels/NEGEMMLowpReductionKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000257 "src/core/NEON/kernels/NEGEMMMatrixAdditionKernel.cpp",
258 "src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000259 "src/core/NEON/kernels/NEGEMMTranspose1xWKernel.cpp",
260 "src/core/NEON/kernels/NEGatherKernel.cpp",
261 "src/core/NEON/kernels/NEGaussian3x3Kernel.cpp",
262 "src/core/NEON/kernels/NEGaussian5x5Kernel.cpp",
263 "src/core/NEON/kernels/NEGaussianPyramidKernel.cpp",
264 "src/core/NEON/kernels/NEGenerateProposalsLayerKernel.cpp",
265 "src/core/NEON/kernels/NEHOGDescriptorKernel.cpp",
266 "src/core/NEON/kernels/NEHOGDetectorKernel.cpp",
267 "src/core/NEON/kernels/NEHarrisCornersKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000268 "src/core/NEON/kernels/NEHistogramKernel.cpp",
269 "src/core/NEON/kernels/NEIm2ColKernel.cpp",
270 "src/core/NEON/kernels/NEInstanceNormalizationLayerKernel.cpp",
271 "src/core/NEON/kernels/NEIntegralImageKernel.cpp",
272 "src/core/NEON/kernels/NEL2NormalizeLayerKernel.cpp",
273 "src/core/NEON/kernels/NELKTrackerKernel.cpp",
Georgios Pinitas58bce682020-11-13 11:38:58 +0000274 "src/core/NEON/kernels/NELogicalKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000275 "src/core/NEON/kernels/NEMagnitudePhaseKernel.cpp",
morgolock37722d92020-04-09 14:17:48 +0100276 "src/core/NEON/kernels/NEMaxUnpoolingLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000277 "src/core/NEON/kernels/NEMeanStdDevKernel.cpp",
278 "src/core/NEON/kernels/NEMeanStdDevNormalizationKernel.cpp",
279 "src/core/NEON/kernels/NEMedian3x3Kernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000280 "src/core/NEON/kernels/NEMinMaxLayerKernel.cpp",
281 "src/core/NEON/kernels/NEMinMaxLocationKernel.cpp",
282 "src/core/NEON/kernels/NENonLinearFilterKernel.cpp",
283 "src/core/NEON/kernels/NENonMaximaSuppression3x3Kernel.cpp",
284 "src/core/NEON/kernels/NENormalizationLayerKernel.cpp",
285 "src/core/NEON/kernels/NEPadLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000286 "src/core/NEON/kernels/NEPixelWiseMultiplicationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000287 "src/core/NEON/kernels/NEPriorBoxLayerKernel.cpp",
Sang-Hoon Park0d008f72020-03-13 14:56:05 +0000288 "src/core/NEON/kernels/NEQLSTMLayerNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000289 "src/core/NEON/kernels/NEQuantizationLayerKernel.cpp",
290 "src/core/NEON/kernels/NEROIAlignLayerKernel.cpp",
291 "src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp",
292 "src/core/NEON/kernels/NERangeKernel.cpp",
293 "src/core/NEON/kernels/NEReductionOperationKernel.cpp",
294 "src/core/NEON/kernels/NERemapKernel.cpp",
295 "src/core/NEON/kernels/NEReorgLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000296 "src/core/NEON/kernels/NEReverseKernel.cpp",
297 "src/core/NEON/kernels/NEScaleKernel.cpp",
298 "src/core/NEON/kernels/NEScharr3x3Kernel.cpp",
299 "src/core/NEON/kernels/NESelectKernel.cpp",
300 "src/core/NEON/kernels/NESobel3x3Kernel.cpp",
301 "src/core/NEON/kernels/NESobel5x5Kernel.cpp",
302 "src/core/NEON/kernels/NESobel7x7Kernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000303 "src/core/NEON/kernels/NESpaceToBatchLayerKernel.cpp",
304 "src/core/NEON/kernels/NESpaceToDepthLayerKernel.cpp",
305 "src/core/NEON/kernels/NEStackLayerKernel.cpp",
306 "src/core/NEON/kernels/NEStridedSliceKernel.cpp",
307 "src/core/NEON/kernels/NETableLookupKernel.cpp",
308 "src/core/NEON/kernels/NEThresholdKernel.cpp",
309 "src/core/NEON/kernels/NETileKernel.cpp",
310 "src/core/NEON/kernels/NETransposeKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000311 "src/core/NEON/kernels/NEWarpKernel.cpp",
312 "src/core/NEON/kernels/NEWeightsReshapeKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000313 "src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.cpp",
Michele Di Giorgiod556d7b2020-10-27 10:56:31 +0000314 "src/core/NEON/kernels/arm_conv/pooling/kernels/cpp_nhwc_1x1_stride_any_depthfirst/generic.cpp",
315 "src/core/NEON/kernels/arm_conv/pooling/pooling_fp16.cpp",
316 "src/core/NEON/kernels/arm_conv/pooling/pooling_fp32.cpp",
317 "src/core/NEON/kernels/arm_conv/pooling/pooling_s8.cpp",
318 "src/core/NEON/kernels/arm_conv/pooling/pooling_s8q.cpp",
319 "src/core/NEON/kernels/arm_conv/pooling/pooling_u8.cpp",
320 "src/core/NEON/kernels/arm_conv/pooling/pooling_u8q.cpp",
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000321 "src/core/NEON/kernels/arm_gemm/gemm_bf16.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000322 "src/core/NEON/kernels/arm_gemm/gemm_fp16.cpp",
323 "src/core/NEON/kernels/arm_gemm/gemm_fp32.cpp",
324 "src/core/NEON/kernels/arm_gemm/gemm_int16.cpp",
325 "src/core/NEON/kernels/arm_gemm/gemm_int8.cpp",
326 "src/core/NEON/kernels/arm_gemm/gemm_qint8.cpp",
327 "src/core/NEON/kernels/arm_gemm/gemm_quint8.cpp",
328 "src/core/NEON/kernels/arm_gemm/gemm_uint16.cpp",
329 "src/core/NEON/kernels/arm_gemm/gemm_uint8.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000330 "src/core/NEON/kernels/arm_gemm/interleave_indirect.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000331 "src/core/NEON/kernels/arm_gemm/mergeresults.cpp",
332 "src/core/NEON/kernels/arm_gemm/misc.cpp",
333 "src/core/NEON/kernels/arm_gemm/quantized.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000334 "src/core/NEON/kernels/arm_gemm/rowsum_indirect_s8.cpp",
335 "src/core/NEON/kernels/arm_gemm/rowsum_indirect_u8.cpp",
Sheri Zhang8d5d78b2020-12-15 20:25:31 +0000336 "src/core/NEON/kernels/batchnormalization/impl/NEON/fp16.cpp",
337 "src/core/NEON/kernels/batchnormalization/impl/NEON/fp32.cpp",
338 "src/core/NEON/kernels/batchnormalization/impl/SVE/fp16.cpp",
339 "src/core/NEON/kernels/batchnormalization/impl/SVE/fp32.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000340 "src/core/NEON/kernels/convolution/common/padding.cpp",
341 "src/core/NEON/kernels/convolution/common/qasymm8.cpp",
342 "src/core/NEON/kernels/convolution/common/qsymm8.cpp",
343 "src/core/NEON/kernels/convolution/common/utils.cpp",
344 "src/core/NEON/kernels/convolution/depthwise/depthwise_2x2_3x3_1x1_fp32_fp32.cpp",
345 "src/core/NEON/kernels/convolution/depthwise/depthwise_2x2_3x3_2x2_fp32_fp32.cpp",
346 "src/core/NEON/kernels/convolution/depthwise/depthwise_3x3_3x3_1x1_fp32_fp32.cpp",
347 "src/core/NEON/kernels/convolution/depthwise/depthwise_3x3_3x3_2x2_fp32_fp32.cpp",
348 "src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_1x1_fp32_fp32.cpp",
349 "src/core/NEON/kernels/convolution/depthwise/depthwise_dilated.cpp",
350 "src/core/NEON/kernels/convolution/depthwise/depthwise_dilated_qa8_qa8.cpp",
351 "src/core/NEON/kernels/convolution/depthwise/depthwise_fp16.cpp",
352 "src/core/NEON/kernels/convolution/depthwise/depthwise_fp32.cpp",
353 "src/core/NEON/kernels/convolution/depthwise/depthwise_pack_parameters.cpp",
354 "src/core/NEON/kernels/convolution/depthwise/depthwise_qa8_qa8.cpp",
355 "src/core/NEON/kernels/convolution/depthwise/depthwise_qs8_qs8.cpp",
356 "src/core/NEON/kernels/convolution/winograd/padding.cpp",
357 "src/core/NEON/kernels/convolution/winograd/winograd.cpp",
358 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_1x8_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100359 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_4x4_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000360 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_4x4_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100361 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_6x6_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000362 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_6x6_fp32_fp32_integers.cpp",
363 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2_7_fp32_fp32_integers.cpp",
364 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2x2_3x3_fp32_fp32_integers.cpp",
365 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2x2_5x5_fp32_fp32_integers.cpp",
366 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4_5_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100367 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4x4_3x3_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000368 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4x4_3x3_fp32_fp32_integers.cpp",
369 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_6_3_fp32_fp32_integers.cpp",
370 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2_7_fp32_fp32_integers.cpp",
371 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2x2_3x3_fp32_fp32_integers.cpp",
372 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2x2_5x5_fp32_fp32_integers.cpp",
373 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4_5_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100374 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000375 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp32_fp32_integers.cpp",
376 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_6_3_fp32_fp32_integers.cpp",
Sheri Zhang23adc4c2021-01-05 12:48:45 +0000377 "src/core/NEON/kernels/scale/impl/NEON/qasymm8.cpp",
378 "src/core/NEON/kernels/scale/impl/NEON/qasymm8_signed.cpp",
379 "src/core/NEON/kernels/scale/impl/SVE/fp16.cpp",
380 "src/core/NEON/kernels/scale/impl/SVE/fp32.cpp",
381 "src/core/NEON/kernels/scale/impl/SVE/integer.cpp",
382 "src/core/NEON/kernels/scale/impl/SVE/qasymm8.cpp",
383 "src/core/NEON/kernels/scale/impl/SVE/qasymm8_signed.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000384 "src/core/PyramidInfo.cpp",
385 "src/core/Rounding.cpp",
Matthew Bentham758b5ba2020-03-05 23:37:48 +0000386 "src/core/Size2D.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000387 "src/core/SubTensorInfo.cpp",
388 "src/core/TensorInfo.cpp",
389 "src/core/Utils.cpp",
390 "src/core/Validate.cpp",
Georgios Pinitas51545e42020-02-11 15:29:01 +0000391 "src/core/Version.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000392 "src/core/cpu/kernels/CpuActivationKernel.cpp",
Sheri Zhang61243902021-01-12 18:25:16 +0000393 "src/core/cpu/kernels/CpuAddKernel.cpp",
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000394 "src/core/cpu/kernels/CpuConcatenateBatchKernel.cpp",
395 "src/core/cpu/kernels/CpuConcatenateDepthKernel.cpp",
396 "src/core/cpu/kernels/CpuConcatenateHeightKernel.cpp",
397 "src/core/cpu/kernels/CpuConcatenateWidthKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000398 "src/core/cpu/kernels/CpuCopyKernel.cpp",
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000399 "src/core/cpu/kernels/CpuElementwiseKernel.cpp",
Sang-Hoon Park7249f152021-01-22 11:55:03 +0000400 "src/core/cpu/kernels/CpuElementwiseUnaryKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000401 "src/core/cpu/kernels/CpuFillKernel.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000402 "src/core/cpu/kernels/CpuFloorKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000403 "src/core/cpu/kernels/CpuPermuteKernel.cpp",
Michele Di Giorgio19289042021-02-03 16:05:00 +0000404 "src/core/cpu/kernels/CpuPoolingAssemblyWrapperKernel.cpp",
405 "src/core/cpu/kernels/CpuPoolingKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000406 "src/core/cpu/kernels/CpuReshapeKernel.cpp",
Michalis Spyrou373b4072021-01-20 16:41:12 +0000407 "src/core/cpu/kernels/CpuSoftmaxKernel.cpp",
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000408 "src/core/cpu/kernels/CpuSubKernel.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000409 "src/core/cpu/kernels/activation/NEON/fp16.cpp",
410 "src/core/cpu/kernels/activation/NEON/fp32.cpp",
411 "src/core/cpu/kernels/activation/NEON/qasymm8.cpp",
412 "src/core/cpu/kernels/activation/NEON/qasymm8_signed.cpp",
413 "src/core/cpu/kernels/activation/NEON/qsymm16.cpp",
414 "src/core/cpu/kernels/activation/SVE/fp16.cpp",
415 "src/core/cpu/kernels/activation/SVE/fp32.cpp",
416 "src/core/cpu/kernels/activation/SVE/qasymm8.cpp",
417 "src/core/cpu/kernels/activation/SVE/qasymm8_signed.cpp",
418 "src/core/cpu/kernels/activation/SVE/qsymm16.cpp",
Sheri Zhang61243902021-01-12 18:25:16 +0000419 "src/core/cpu/kernels/add/neon/integer.cpp",
420 "src/core/cpu/kernels/add/neon/qasymm8.cpp",
421 "src/core/cpu/kernels/add/neon/qasymm8_signed.cpp",
422 "src/core/cpu/kernels/add/neon/qsymm16.cpp",
423 "src/core/cpu/kernels/add/sve/integer.cpp",
424 "src/core/cpu/kernels/add/sve/qasymm8.cpp",
425 "src/core/cpu/kernels/add/sve/qasymm8_signed.cpp",
426 "src/core/cpu/kernels/add/sve/qsymm16.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000427 "src/core/cpu/kernels/floor/NEON/fp16.cpp",
428 "src/core/cpu/kernels/floor/NEON/fp32.cpp",
Sheri Zhang79144a62021-02-08 17:43:04 +0000429 "src/core/cpu/kernels/pooling/neon/fp16.cpp",
430 "src/core/cpu/kernels/pooling/neon/fp32.cpp",
431 "src/core/cpu/kernels/pooling/neon/nchw/all.cpp",
432 "src/core/cpu/kernels/pooling/neon/qasymm8.cpp",
433 "src/core/cpu/kernels/pooling/neon/qasymm8_signed.cpp",
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000434 "src/core/cpu/kernels/sub/neon/integer.cpp",
435 "src/core/cpu/kernels/sub/neon/qasymm8.cpp",
436 "src/core/cpu/kernels/sub/neon/qasymm8_signed.cpp",
437 "src/core/cpu/kernels/sub/neon/qsymm16.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000438 "src/core/gpu/cl/kernels/ClActivationKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000439 "src/core/gpu/cl/kernels/ClBatchConcatenateKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000440 "src/core/gpu/cl/kernels/ClCopyKernel.cpp",
441 "src/core/gpu/cl/kernels/ClCropKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000442 "src/core/gpu/cl/kernels/ClDepthConcatenateKernel.cpp",
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000443 "src/core/gpu/cl/kernels/ClElementwiseKernel.cpp",
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000444 "src/core/gpu/cl/kernels/ClElementwiseUnaryKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000445 "src/core/gpu/cl/kernels/ClFillKernel.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000446 "src/core/gpu/cl/kernels/ClFloorKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000447 "src/core/gpu/cl/kernels/ClHeightConcatenateKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000448 "src/core/gpu/cl/kernels/ClPermuteKernel.cpp",
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000449 "src/core/gpu/cl/kernels/ClPoolingKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000450 "src/core/gpu/cl/kernels/ClReshapeKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000451 "src/core/gpu/cl/kernels/ClWidthConcatenate2TensorsKernel.cpp",
452 "src/core/gpu/cl/kernels/ClWidthConcatenate4TensorsKernel.cpp",
453 "src/core/gpu/cl/kernels/ClWidthConcatenateKernel.cpp",
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100454 "src/core/helpers/SoftmaxHelpers.cpp",
455 "src/core/helpers/WindowHelpers.cpp",
Sang-Hoon Park3687ee12020-06-24 13:34:04 +0100456 "src/core/utils/ScaleUtils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000457 "src/core/utils/helpers/fft.cpp",
458 "src/core/utils/helpers/tensor_transform.cpp",
459 "src/core/utils/io/FileHandler.cpp",
460 "src/core/utils/logging/FilePrinter.cpp",
461 "src/core/utils/logging/Helpers.cpp",
462 "src/core/utils/logging/Logger.cpp",
463 "src/core/utils/logging/LoggerRegistry.cpp",
464 "src/core/utils/misc/MMappedFile.cpp",
465 "src/core/utils/quantization/AsymmHelpers.cpp",
466 "src/runtime/Allocator.cpp",
467 "src/runtime/BlobLifetimeManager.cpp",
468 "src/runtime/BlobMemoryPool.cpp",
469 "src/runtime/CL/CLBufferAllocator.cpp",
470 "src/runtime/CL/CLDistribution1D.cpp",
SiCong Li70858d82021-02-05 09:19:51 +0000471 "src/runtime/CL/CLGEMMHeuristicsHandle.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000472 "src/runtime/CL/CLHOG.cpp",
473 "src/runtime/CL/CLHelpers.cpp",
474 "src/runtime/CL/CLLut.cpp",
475 "src/runtime/CL/CLLutAllocator.cpp",
476 "src/runtime/CL/CLMemory.cpp",
477 "src/runtime/CL/CLMemoryRegion.cpp",
478 "src/runtime/CL/CLMultiHOG.cpp",
479 "src/runtime/CL/CLMultiImage.cpp",
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100480 "src/runtime/CL/CLOperator.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000481 "src/runtime/CL/CLPyramid.cpp",
482 "src/runtime/CL/CLRuntimeContext.cpp",
483 "src/runtime/CL/CLScheduler.cpp",
484 "src/runtime/CL/CLSubTensor.cpp",
485 "src/runtime/CL/CLTensor.cpp",
486 "src/runtime/CL/CLTensorAllocator.cpp",
487 "src/runtime/CL/CLTuner.cpp",
488 "src/runtime/CL/ICLSimpleFunction.cpp",
Inki Daeea2ce172020-04-09 10:01:44 +0900489 "src/runtime/CL/Utils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000490 "src/runtime/CL/functions/CLAbsoluteDifference.cpp",
491 "src/runtime/CL/functions/CLAccumulate.cpp",
492 "src/runtime/CL/functions/CLActivationLayer.cpp",
493 "src/runtime/CL/functions/CLArgMinMaxLayer.cpp",
494 "src/runtime/CL/functions/CLBatchNormalizationLayer.cpp",
495 "src/runtime/CL/functions/CLBatchToSpaceLayer.cpp",
496 "src/runtime/CL/functions/CLBitwiseAnd.cpp",
497 "src/runtime/CL/functions/CLBitwiseNot.cpp",
498 "src/runtime/CL/functions/CLBitwiseOr.cpp",
499 "src/runtime/CL/functions/CLBitwiseXor.cpp",
500 "src/runtime/CL/functions/CLBoundingBoxTransform.cpp",
501 "src/runtime/CL/functions/CLBox3x3.cpp",
502 "src/runtime/CL/functions/CLCannyEdge.cpp",
503 "src/runtime/CL/functions/CLCast.cpp",
504 "src/runtime/CL/functions/CLChannelCombine.cpp",
505 "src/runtime/CL/functions/CLChannelExtract.cpp",
506 "src/runtime/CL/functions/CLChannelShuffleLayer.cpp",
507 "src/runtime/CL/functions/CLColorConvert.cpp",
508 "src/runtime/CL/functions/CLComparison.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000509 "src/runtime/CL/functions/CLConcatenateLayer.cpp",
510 "src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp",
511 "src/runtime/CL/functions/CLConvolution.cpp",
512 "src/runtime/CL/functions/CLConvolutionLayer.cpp",
513 "src/runtime/CL/functions/CLCopy.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000514 "src/runtime/CL/functions/CLCrop.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000515 "src/runtime/CL/functions/CLCropResize.cpp",
516 "src/runtime/CL/functions/CLDeconvolutionLayer.cpp",
517 "src/runtime/CL/functions/CLDeconvolutionLayerUpsample.cpp",
518 "src/runtime/CL/functions/CLDepthConvertLayer.cpp",
519 "src/runtime/CL/functions/CLDepthToSpaceLayer.cpp",
520 "src/runtime/CL/functions/CLDepthwiseConvolutionLayer.cpp",
521 "src/runtime/CL/functions/CLDequantizationLayer.cpp",
522 "src/runtime/CL/functions/CLDerivative.cpp",
523 "src/runtime/CL/functions/CLDilate.cpp",
524 "src/runtime/CL/functions/CLDirectConvolutionLayer.cpp",
525 "src/runtime/CL/functions/CLDirectDeconvolutionLayer.cpp",
526 "src/runtime/CL/functions/CLElementWiseUnaryLayer.cpp",
527 "src/runtime/CL/functions/CLElementwiseOperations.cpp",
528 "src/runtime/CL/functions/CLEqualizeHistogram.cpp",
529 "src/runtime/CL/functions/CLErode.cpp",
530 "src/runtime/CL/functions/CLFFT1D.cpp",
531 "src/runtime/CL/functions/CLFFT2D.cpp",
532 "src/runtime/CL/functions/CLFFTConvolutionLayer.cpp",
533 "src/runtime/CL/functions/CLFastCorners.cpp",
534 "src/runtime/CL/functions/CLFill.cpp",
535 "src/runtime/CL/functions/CLFillBorder.cpp",
536 "src/runtime/CL/functions/CLFlattenLayer.cpp",
537 "src/runtime/CL/functions/CLFloor.cpp",
538 "src/runtime/CL/functions/CLFullyConnectedLayer.cpp",
539 "src/runtime/CL/functions/CLFuseBatchNormalization.cpp",
540 "src/runtime/CL/functions/CLGEMM.cpp",
541 "src/runtime/CL/functions/CLGEMMConvolutionLayer.cpp",
542 "src/runtime/CL/functions/CLGEMMDeconvolutionLayer.cpp",
543 "src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp",
544 "src/runtime/CL/functions/CLGEMMLowpOutputStage.cpp",
545 "src/runtime/CL/functions/CLGather.cpp",
546 "src/runtime/CL/functions/CLGaussian3x3.cpp",
547 "src/runtime/CL/functions/CLGaussian5x5.cpp",
548 "src/runtime/CL/functions/CLGaussianPyramid.cpp",
549 "src/runtime/CL/functions/CLGenerateProposalsLayer.cpp",
550 "src/runtime/CL/functions/CLHOGDescriptor.cpp",
551 "src/runtime/CL/functions/CLHOGDetector.cpp",
552 "src/runtime/CL/functions/CLHOGGradient.cpp",
553 "src/runtime/CL/functions/CLHOGMultiDetection.cpp",
554 "src/runtime/CL/functions/CLHarrisCorners.cpp",
555 "src/runtime/CL/functions/CLHistogram.cpp",
556 "src/runtime/CL/functions/CLInstanceNormalizationLayer.cpp",
557 "src/runtime/CL/functions/CLIntegralImage.cpp",
558 "src/runtime/CL/functions/CLL2NormalizeLayer.cpp",
559 "src/runtime/CL/functions/CLLSTMLayer.cpp",
560 "src/runtime/CL/functions/CLLSTMLayerQuantized.cpp",
561 "src/runtime/CL/functions/CLLaplacianPyramid.cpp",
562 "src/runtime/CL/functions/CLLaplacianReconstruct.cpp",
Sang-Hoon Park75eea332020-11-13 13:44:13 +0000563 "src/runtime/CL/functions/CLLogicalAnd.cpp",
564 "src/runtime/CL/functions/CLLogicalNot.cpp",
565 "src/runtime/CL/functions/CLLogicalOr.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000566 "src/runtime/CL/functions/CLMagnitude.cpp",
Gian Marco Iodice4d81d752020-07-14 15:05:31 +0100567 "src/runtime/CL/functions/CLMaxUnpoolingLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000568 "src/runtime/CL/functions/CLMeanStdDev.cpp",
569 "src/runtime/CL/functions/CLMeanStdDevNormalizationLayer.cpp",
570 "src/runtime/CL/functions/CLMedian3x3.cpp",
571 "src/runtime/CL/functions/CLMinMaxLocation.cpp",
572 "src/runtime/CL/functions/CLNonLinearFilter.cpp",
573 "src/runtime/CL/functions/CLNonMaximaSuppression3x3.cpp",
574 "src/runtime/CL/functions/CLNormalizationLayer.cpp",
575 "src/runtime/CL/functions/CLNormalizePlanarYUVLayer.cpp",
576 "src/runtime/CL/functions/CLOpticalFlow.cpp",
577 "src/runtime/CL/functions/CLPReluLayer.cpp",
578 "src/runtime/CL/functions/CLPadLayer.cpp",
579 "src/runtime/CL/functions/CLPermute.cpp",
580 "src/runtime/CL/functions/CLPhase.cpp",
581 "src/runtime/CL/functions/CLPixelWiseMultiplication.cpp",
582 "src/runtime/CL/functions/CLPoolingLayer.cpp",
583 "src/runtime/CL/functions/CLPriorBoxLayer.cpp",
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +0100584 "src/runtime/CL/functions/CLQLSTMLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000585 "src/runtime/CL/functions/CLQuantizationLayer.cpp",
586 "src/runtime/CL/functions/CLRNNLayer.cpp",
587 "src/runtime/CL/functions/CLROIAlignLayer.cpp",
588 "src/runtime/CL/functions/CLROIPoolingLayer.cpp",
589 "src/runtime/CL/functions/CLRange.cpp",
590 "src/runtime/CL/functions/CLReduceMean.cpp",
591 "src/runtime/CL/functions/CLReductionOperation.cpp",
592 "src/runtime/CL/functions/CLRemap.cpp",
593 "src/runtime/CL/functions/CLReorgLayer.cpp",
594 "src/runtime/CL/functions/CLReshapeLayer.cpp",
595 "src/runtime/CL/functions/CLReverse.cpp",
596 "src/runtime/CL/functions/CLScale.cpp",
597 "src/runtime/CL/functions/CLScharr3x3.cpp",
598 "src/runtime/CL/functions/CLSelect.cpp",
599 "src/runtime/CL/functions/CLSlice.cpp",
600 "src/runtime/CL/functions/CLSobel3x3.cpp",
601 "src/runtime/CL/functions/CLSobel5x5.cpp",
602 "src/runtime/CL/functions/CLSobel7x7.cpp",
603 "src/runtime/CL/functions/CLSoftmaxLayer.cpp",
604 "src/runtime/CL/functions/CLSpaceToBatchLayer.cpp",
605 "src/runtime/CL/functions/CLSpaceToDepthLayer.cpp",
606 "src/runtime/CL/functions/CLSplit.cpp",
607 "src/runtime/CL/functions/CLStackLayer.cpp",
608 "src/runtime/CL/functions/CLStridedSlice.cpp",
609 "src/runtime/CL/functions/CLTableLookup.cpp",
610 "src/runtime/CL/functions/CLThreshold.cpp",
611 "src/runtime/CL/functions/CLTile.cpp",
612 "src/runtime/CL/functions/CLTranspose.cpp",
613 "src/runtime/CL/functions/CLUnstack.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000614 "src/runtime/CL/functions/CLWarpAffine.cpp",
615 "src/runtime/CL/functions/CLWarpPerspective.cpp",
616 "src/runtime/CL/functions/CLWinogradConvolutionLayer.cpp",
617 "src/runtime/CL/functions/CLWinogradInputTransform.cpp",
SiCong Lia085a0c2020-12-02 14:54:34 +0000618 "src/runtime/CL/gemm/CLGEMMDefaultTypeBifrost.cpp",
619 "src/runtime/CL/gemm/CLGEMMDefaultTypeMidgard.cpp",
620 "src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.cpp",
SiCong Libd8b1e22021-02-04 13:07:09 +0000621 "src/runtime/CL/gemm_auto_heuristics/CLGEMMAutoHeuristics.cpp",
SiCong Li7061eb22021-01-08 15:16:02 +0000622 "src/runtime/CL/mlgo/HeuristicTree.cpp",
623 "src/runtime/CL/mlgo/MLGOHeuristics.cpp",
624 "src/runtime/CL/mlgo/MLGOParser.cpp",
625 "src/runtime/CL/mlgo/Utils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000626 "src/runtime/CL/tuners/BifrostTuner.cpp",
Manuel Bottinib56c1752020-11-18 17:56:30 +0000627 "src/runtime/CL/tuners/CLTuningParametersList.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000628 "src/runtime/CL/tuners/MidgardTuner.cpp",
629 "src/runtime/CPP/CPPScheduler.cpp",
630 "src/runtime/CPP/ICPPSimpleFunction.cpp",
631 "src/runtime/CPP/SingleThreadScheduler.cpp",
632 "src/runtime/CPP/functions/CPPBoxWithNonMaximaSuppressionLimit.cpp",
633 "src/runtime/CPP/functions/CPPDetectionOutputLayer.cpp",
634 "src/runtime/CPP/functions/CPPDetectionPostProcessLayer.cpp",
635 "src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp",
636 "src/runtime/CPP/functions/CPPPermute.cpp",
637 "src/runtime/CPP/functions/CPPTopKV.cpp",
638 "src/runtime/CPP/functions/CPPUpsample.cpp",
639 "src/runtime/CPUUtils.cpp",
640 "src/runtime/DeviceProperties.cpp",
641 "src/runtime/Distribution1D.cpp",
642 "src/runtime/HOG.cpp",
643 "src/runtime/ILutAllocator.cpp",
644 "src/runtime/IScheduler.cpp",
645 "src/runtime/ISimpleLifetimeManager.cpp",
646 "src/runtime/ITensorAllocator.cpp",
647 "src/runtime/IWeightsManager.cpp",
648 "src/runtime/Lut.cpp",
649 "src/runtime/LutAllocator.cpp",
650 "src/runtime/MEMUtils.cpp",
651 "src/runtime/Memory.cpp",
652 "src/runtime/MemoryManagerOnDemand.cpp",
653 "src/runtime/MultiHOG.cpp",
654 "src/runtime/MultiImage.cpp",
Michalis Spyroubcd23522020-05-21 15:02:36 +0100655 "src/runtime/NEON/INEOperator.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000656 "src/runtime/NEON/INESimpleFunction.cpp",
657 "src/runtime/NEON/INESimpleFunctionNoBorder.cpp",
658 "src/runtime/NEON/functions/NEAbsoluteDifference.cpp",
659 "src/runtime/NEON/functions/NEAccumulate.cpp",
660 "src/runtime/NEON/functions/NEActivationLayer.cpp",
661 "src/runtime/NEON/functions/NEArgMinMaxLayer.cpp",
662 "src/runtime/NEON/functions/NEArithmeticAddition.cpp",
663 "src/runtime/NEON/functions/NEArithmeticSubtraction.cpp",
664 "src/runtime/NEON/functions/NEBatchNormalizationLayer.cpp",
665 "src/runtime/NEON/functions/NEBatchToSpaceLayer.cpp",
666 "src/runtime/NEON/functions/NEBitwiseAnd.cpp",
667 "src/runtime/NEON/functions/NEBitwiseNot.cpp",
668 "src/runtime/NEON/functions/NEBitwiseOr.cpp",
669 "src/runtime/NEON/functions/NEBitwiseXor.cpp",
670 "src/runtime/NEON/functions/NEBoundingBoxTransform.cpp",
671 "src/runtime/NEON/functions/NEBox3x3.cpp",
672 "src/runtime/NEON/functions/NECannyEdge.cpp",
673 "src/runtime/NEON/functions/NECast.cpp",
674 "src/runtime/NEON/functions/NEChannelCombine.cpp",
675 "src/runtime/NEON/functions/NEChannelExtract.cpp",
676 "src/runtime/NEON/functions/NEChannelShuffleLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000677 "src/runtime/NEON/functions/NEColorConvert.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000678 "src/runtime/NEON/functions/NEConcatenateLayer.cpp",
679 "src/runtime/NEON/functions/NEConvertFullyConnectedWeights.cpp",
680 "src/runtime/NEON/functions/NEConvolution.cpp",
681 "src/runtime/NEON/functions/NEConvolutionLayer.cpp",
682 "src/runtime/NEON/functions/NECopy.cpp",
683 "src/runtime/NEON/functions/NECropResize.cpp",
684 "src/runtime/NEON/functions/NEDeconvolutionLayer.cpp",
685 "src/runtime/NEON/functions/NEDepthConvertLayer.cpp",
686 "src/runtime/NEON/functions/NEDepthToSpaceLayer.cpp",
687 "src/runtime/NEON/functions/NEDepthwiseConvolutionLayer.cpp",
688 "src/runtime/NEON/functions/NEDequantizationLayer.cpp",
689 "src/runtime/NEON/functions/NEDerivative.cpp",
690 "src/runtime/NEON/functions/NEDetectionPostProcessLayer.cpp",
691 "src/runtime/NEON/functions/NEDilate.cpp",
692 "src/runtime/NEON/functions/NEDirectConvolutionLayer.cpp",
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000693 "src/runtime/NEON/functions/NEElementwiseOperations.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000694 "src/runtime/NEON/functions/NEElementwiseUnaryLayer.cpp",
695 "src/runtime/NEON/functions/NEEqualizeHistogram.cpp",
696 "src/runtime/NEON/functions/NEErode.cpp",
697 "src/runtime/NEON/functions/NEFFT1D.cpp",
698 "src/runtime/NEON/functions/NEFFT2D.cpp",
699 "src/runtime/NEON/functions/NEFFTConvolutionLayer.cpp",
700 "src/runtime/NEON/functions/NEFastCorners.cpp",
701 "src/runtime/NEON/functions/NEFill.cpp",
702 "src/runtime/NEON/functions/NEFillBorder.cpp",
703 "src/runtime/NEON/functions/NEFlattenLayer.cpp",
704 "src/runtime/NEON/functions/NEFloor.cpp",
705 "src/runtime/NEON/functions/NEFullyConnectedLayer.cpp",
706 "src/runtime/NEON/functions/NEFuseBatchNormalization.cpp",
707 "src/runtime/NEON/functions/NEGEMM.cpp",
708 "src/runtime/NEON/functions/NEGEMMAssemblyDispatch.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000709 "src/runtime/NEON/functions/NEGEMMConv2d.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000710 "src/runtime/NEON/functions/NEGEMMConvolutionLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000711 "src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp",
712 "src/runtime/NEON/functions/NEGEMMLowpOutputStage.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000713 "src/runtime/NEON/functions/NEGather.cpp",
714 "src/runtime/NEON/functions/NEGaussian3x3.cpp",
715 "src/runtime/NEON/functions/NEGaussian5x5.cpp",
716 "src/runtime/NEON/functions/NEGaussianPyramid.cpp",
717 "src/runtime/NEON/functions/NEGenerateProposalsLayer.cpp",
718 "src/runtime/NEON/functions/NEHOGDescriptor.cpp",
719 "src/runtime/NEON/functions/NEHOGDetector.cpp",
720 "src/runtime/NEON/functions/NEHOGGradient.cpp",
721 "src/runtime/NEON/functions/NEHOGMultiDetection.cpp",
722 "src/runtime/NEON/functions/NEHarrisCorners.cpp",
723 "src/runtime/NEON/functions/NEHistogram.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000724 "src/runtime/NEON/functions/NEInstanceNormalizationLayer.cpp",
725 "src/runtime/NEON/functions/NEIntegralImage.cpp",
726 "src/runtime/NEON/functions/NEL2NormalizeLayer.cpp",
727 "src/runtime/NEON/functions/NELSTMLayer.cpp",
728 "src/runtime/NEON/functions/NELSTMLayerQuantized.cpp",
729 "src/runtime/NEON/functions/NELaplacianPyramid.cpp",
730 "src/runtime/NEON/functions/NELaplacianReconstruct.cpp",
Georgios Pinitas58bce682020-11-13 11:38:58 +0000731 "src/runtime/NEON/functions/NELogical.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000732 "src/runtime/NEON/functions/NEMagnitude.cpp",
morgolock37722d92020-04-09 14:17:48 +0100733 "src/runtime/NEON/functions/NEMaxUnpoolingLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000734 "src/runtime/NEON/functions/NEMeanStdDev.cpp",
735 "src/runtime/NEON/functions/NEMeanStdDevNormalizationLayer.cpp",
736 "src/runtime/NEON/functions/NEMedian3x3.cpp",
737 "src/runtime/NEON/functions/NEMinMaxLocation.cpp",
738 "src/runtime/NEON/functions/NENonLinearFilter.cpp",
739 "src/runtime/NEON/functions/NENonMaximaSuppression3x3.cpp",
740 "src/runtime/NEON/functions/NENormalizationLayer.cpp",
741 "src/runtime/NEON/functions/NEOpticalFlow.cpp",
742 "src/runtime/NEON/functions/NEPReluLayer.cpp",
743 "src/runtime/NEON/functions/NEPadLayer.cpp",
744 "src/runtime/NEON/functions/NEPermute.cpp",
745 "src/runtime/NEON/functions/NEPhase.cpp",
746 "src/runtime/NEON/functions/NEPixelWiseMultiplication.cpp",
747 "src/runtime/NEON/functions/NEPoolingLayer.cpp",
748 "src/runtime/NEON/functions/NEPriorBoxLayer.cpp",
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000749 "src/runtime/NEON/functions/NEQLSTMLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000750 "src/runtime/NEON/functions/NEQuantizationLayer.cpp",
751 "src/runtime/NEON/functions/NERNNLayer.cpp",
752 "src/runtime/NEON/functions/NEROIAlignLayer.cpp",
753 "src/runtime/NEON/functions/NEROIPoolingLayer.cpp",
754 "src/runtime/NEON/functions/NERange.cpp",
755 "src/runtime/NEON/functions/NEReduceMean.cpp",
756 "src/runtime/NEON/functions/NEReductionOperation.cpp",
757 "src/runtime/NEON/functions/NERemap.cpp",
758 "src/runtime/NEON/functions/NEReorgLayer.cpp",
759 "src/runtime/NEON/functions/NEReshapeLayer.cpp",
760 "src/runtime/NEON/functions/NEReverse.cpp",
761 "src/runtime/NEON/functions/NEScale.cpp",
762 "src/runtime/NEON/functions/NEScharr3x3.cpp",
763 "src/runtime/NEON/functions/NESelect.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000764 "src/runtime/NEON/functions/NESlice.cpp",
765 "src/runtime/NEON/functions/NESobel3x3.cpp",
766 "src/runtime/NEON/functions/NESobel5x5.cpp",
767 "src/runtime/NEON/functions/NESobel7x7.cpp",
768 "src/runtime/NEON/functions/NESoftmaxLayer.cpp",
769 "src/runtime/NEON/functions/NESpaceToBatchLayer.cpp",
770 "src/runtime/NEON/functions/NESpaceToDepthLayer.cpp",
771 "src/runtime/NEON/functions/NESplit.cpp",
772 "src/runtime/NEON/functions/NEStackLayer.cpp",
773 "src/runtime/NEON/functions/NEStridedSlice.cpp",
774 "src/runtime/NEON/functions/NETableLookup.cpp",
775 "src/runtime/NEON/functions/NEThreshold.cpp",
776 "src/runtime/NEON/functions/NETile.cpp",
777 "src/runtime/NEON/functions/NETranspose.cpp",
778 "src/runtime/NEON/functions/NEUnstack.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000779 "src/runtime/NEON/functions/NEWarpAffine.cpp",
780 "src/runtime/NEON/functions/NEWarpPerspective.cpp",
781 "src/runtime/NEON/functions/NEWinogradConvolutionLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000782 "src/runtime/NEON/functions/assembly/NEDepthwiseConvolutionAssemblyDispatch.cpp",
783 "src/runtime/OMP/OMPScheduler.cpp",
784 "src/runtime/OffsetLifetimeManager.cpp",
785 "src/runtime/OffsetMemoryPool.cpp",
Michalis Spyroubcd23522020-05-21 15:02:36 +0100786 "src/runtime/OperatorTensor.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000787 "src/runtime/PoolManager.cpp",
788 "src/runtime/Pyramid.cpp",
789 "src/runtime/RuntimeContext.cpp",
790 "src/runtime/Scheduler.cpp",
791 "src/runtime/SchedulerFactory.cpp",
morgolock51112642020-08-20 14:51:39 +0100792 "src/runtime/SchedulerUtils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000793 "src/runtime/SubTensor.cpp",
794 "src/runtime/Tensor.cpp",
795 "src/runtime/TensorAllocator.cpp",
796 "src/runtime/Utils.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000797 "src/runtime/cpu/operators/CpuActivation.cpp",
Sheri Zhang61243902021-01-12 18:25:16 +0000798 "src/runtime/cpu/operators/CpuAdd.cpp",
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000799 "src/runtime/cpu/operators/CpuConcatenate.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000800 "src/runtime/cpu/operators/CpuCopy.cpp",
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000801 "src/runtime/cpu/operators/CpuElementwise.cpp",
Sang-Hoon Park7249f152021-01-22 11:55:03 +0000802 "src/runtime/cpu/operators/CpuElementwiseUnary.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000803 "src/runtime/cpu/operators/CpuFill.cpp",
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000804 "src/runtime/cpu/operators/CpuFloor.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000805 "src/runtime/cpu/operators/CpuPermute.cpp",
Michele Di Giorgio19289042021-02-03 16:05:00 +0000806 "src/runtime/cpu/operators/CpuPooling.cpp",
807 "src/runtime/cpu/operators/CpuPoolingAssemblyDispatch.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000808 "src/runtime/cpu/operators/CpuReshape.cpp",
Michalis Spyrou373b4072021-01-20 16:41:12 +0000809 "src/runtime/cpu/operators/CpuSoftmax.cpp",
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000810 "src/runtime/cpu/operators/CpuSub.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000811 "src/runtime/gpu/cl/operators/ClActivation.cpp",
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000812 "src/runtime/gpu/cl/operators/ClAdd.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000813 "src/runtime/gpu/cl/operators/ClConcatenate.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000814 "src/runtime/gpu/cl/operators/ClCopy.cpp",
815 "src/runtime/gpu/cl/operators/ClCrop.cpp",
Michele Di Giorgio237be032021-01-25 15:44:02 +0000816 "src/runtime/gpu/cl/operators/ClElementwiseOperations.cpp",
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000817 "src/runtime/gpu/cl/operators/ClElementwiseUnary.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000818 "src/runtime/gpu/cl/operators/ClFill.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000819 "src/runtime/gpu/cl/operators/ClFloor.cpp",
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000820 "src/runtime/gpu/cl/operators/ClLogicalNot.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000821 "src/runtime/gpu/cl/operators/ClPermute.cpp",
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000822 "src/runtime/gpu/cl/operators/ClPooling.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000823 "src/runtime/gpu/cl/operators/ClReshape.cpp",
Michele Di Giorgio4cfab182021-01-25 11:49:03 +0000824 "src/runtime/gpu/cl/operators/ClSub.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000825 "utils/CommonGraphOptions.cpp",
826 "utils/GraphUtils.cpp",
827 "utils/Utils.cpp",
828
829 ],
830 arch: {
831 arm: {
832 srcs: [
833 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a53.cpp",
834 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a55r1.cpp",
835 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/generic.cpp",
836
837 ],
838 },
839 arm64: {
840 srcs: [
Michele Di Giorgiod556d7b2020-10-27 10:56:31 +0000841 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
842 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_avg_generic_depthfirst/generic.cpp",
843 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
844 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_max_generic_depthfirst/generic.cpp",
845 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
846 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_avg_generic_depthfirst/generic.cpp",
847 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
848 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_max_generic_depthfirst/generic.cpp",
849 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_avg_generic_depthfirst/generic.cpp",
850 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
851 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_max_generic_depthfirst/generic.cpp",
852 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8q_nhwc_avg_generic_depthfirst/generic.cpp",
853 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8q_nhwc_max_generic_depthfirst/generic.cpp",
854 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_avg_generic_depthfirst/generic.cpp",
855 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
856 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_max_generic_depthfirst/generic.cpp",
857 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8q_nhwc_avg_generic_depthfirst/generic.cpp",
858 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8q_nhwc_max_generic_depthfirst/generic.cpp",
859 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
860 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_avg_generic_depthfirst/generic.cpp",
861 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
862 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_max_generic_depthfirst/generic.cpp",
863 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
864 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_avg_generic_depthfirst/generic.cpp",
865 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
866 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_max_generic_depthfirst/generic.cpp",
867 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_avg_generic_depthfirst/generic.cpp",
868 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
869 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_max_generic_depthfirst/generic.cpp",
870 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_avg_generic_depthfirst/generic.cpp",
871 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_max_generic_depthfirst/generic.cpp",
872 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_avg_generic_depthfirst/generic.cpp",
873 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
874 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_max_generic_depthfirst/generic.cpp",
875 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8q_nhwc_avg_generic_depthfirst/generic.cpp",
876 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8q_nhwc_max_generic_depthfirst/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000877 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s16_8x12/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000878 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_4x4/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000879 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/a55r1.cpp",
880 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/generic.cpp",
881 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/x1.cpp",
882 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u16_8x12/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000883 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_4x4/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000884 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/a55r1.cpp",
885 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/generic.cpp",
886 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/x1.cpp",
887 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemv_fp32_mla_32/generic.cpp",
888 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/a55r1.cpp",
889 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/generic.cpp",
890 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/x1.cpp",
891 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_bf16fp32_dot_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000892 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp16_mla_6x32/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000893 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp16_mla_6x32/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000894 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000895 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000896 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_8x4/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000897 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_8x4/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000898 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_dot_4x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000899 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_dot_4x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000900 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_dot_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000901 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_dot_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000902 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000903 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000904 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_dot_4x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000905 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_dot_4x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000906 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000907 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_6x16/generic.cpp",
908 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_dot_8x12/generic.cpp",
909 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_mmla_8x12/generic.cpp",
910 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_s8s32_mmla_8x12/generic.cpp",
911 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_u8u32_mmla_8x12/generic.cpp",
912 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a53.cpp",
913 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55.cpp",
914 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55r1.cpp",
915 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/generic.cpp",
916 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/x1.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000917 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemv_pretransposed/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000918 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_6x4/generic.cpp",
919 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_8x4/generic.cpp",
920 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/a55.cpp",
921 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/generic.cpp",
922 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/a55.cpp",
923 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/generic.cpp",
924 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/a55.cpp",
925 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/generic.cpp",
926 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/a55.cpp",
927 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/generic.cpp",
928 "src/core/NEON/kernels/arm_gemm/kernels/sve_gemv_fp32_mla_8VL/generic.cpp",
929 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_bf16fp32_dot_6x4VL/generic.cpp",
930 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp16_mla_6x4VL/generic.cpp",
931 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_6x4VL/generic.cpp",
932 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_8x1VL/generic.cpp",
933 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qa_dot_4x4VL/generic.cpp",
934 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qs_dot_6x4VL/generic.cpp",
935 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8s32_dot_6x4VL/generic.cpp",
936 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8qa_dot_4x4VL/generic.cpp",
937 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8u32_dot_6x4VL/generic.cpp",
938 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_dot_8x3VL/generic.cpp",
939 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_mmla_8x3VL/generic.cpp",
940 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp16_mla_8x3VL/generic.cpp",
941 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mla_8x3VL/generic.cpp",
942 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mmla_8x3VL/generic.cpp",
943 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_dot_8x3VL/generic.cpp",
944 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_mmla_8x3VL/generic.cpp",
945 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_dot_8x3VL/generic.cpp",
946 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_mmla_8x3VL/generic.cpp",
947 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_fp32_mla_8x1VL/generic.cpp",
948 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_s8s32_dot_8x1VL/generic.cpp",
949 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_u8u32_dot_8x1VL/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000950
951 ],
952 },
953 },
954 rtti: true,
955}