blob: dd8509ebcdbb56444e5038342fa5174984ab6306 [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: [
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000054 "src/c/AclContext.cpp",
Georgios Pinitas3f26ef42021-02-23 10:01:33 +000055 "src/c/AclTensor.cpp",
56 "src/c/AclTensorPack.cpp",
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000057 "src/c/AclVersion.cpp",
58 "src/c/cl/AclOpenClExt.cpp",
59 "src/common/AllocatorWrapper.cpp",
Georgios Pinitas3f26ef42021-02-23 10:01:33 +000060 "src/common/TensorPack.cpp",
61 "src/common/utils/LegacySupport.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000062 "src/core/AccessWindowAutoPadding.cpp",
63 "src/core/AccessWindowStatic.cpp",
64 "src/core/AccessWindowTranspose.cpp",
Michalis Spyrou11d49182020-03-26 10:31:32 +000065 "src/core/CL/CLCompileContext.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000066 "src/core/CL/CLCoreRuntimeContext.cpp",
67 "src/core/CL/CLHelpers.cpp",
68 "src/core/CL/CLKernelLibrary.cpp",
Gian Marco Iodice781cba72020-06-19 16:56:57 +010069 "src/core/CL/CLUtils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000070 "src/core/CL/ICLKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000071 "src/core/CL/ICLSimple2DKernel.cpp",
72 "src/core/CL/ICLSimple3DKernel.cpp",
73 "src/core/CL/ICLSimpleKernel.cpp",
74 "src/core/CL/ICLTensor.cpp",
75 "src/core/CL/OpenCL.cpp",
76 "src/core/CL/gemm/CLGEMMHelpers.cpp",
SiCong Lia085a0c2020-12-02 14:54:34 +000077 "src/core/CL/gemm/native/CLGEMMDefaultConfigNativeBifrost.cpp",
78 "src/core/CL/gemm/native/CLGEMMDefaultConfigNativeMidgard.cpp",
79 "src/core/CL/gemm/native/CLGEMMDefaultConfigNativeValhall.cpp",
80 "src/core/CL/gemm/reshaped/CLGEMMDefaultConfigReshapedBifrost.cpp",
81 "src/core/CL/gemm/reshaped/CLGEMMDefaultConfigReshapedValhall.cpp",
82 "src/core/CL/gemm/reshaped_only_rhs/CLGEMMDefaultConfigReshapedRHSOnlyBifrost.cpp",
83 "src/core/CL/gemm/reshaped_only_rhs/CLGEMMDefaultConfigReshapedRHSOnlyValhall.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000084 "src/core/CL/kernels/CLArgMinMaxLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000085 "src/core/CL/kernels/CLBatchNormalizationLayerKernel.cpp",
86 "src/core/CL/kernels/CLBatchToSpaceLayerKernel.cpp",
Manuel Bottini63bb7ca2020-12-02 13:22:14 +000087 "src/core/CL/kernels/CLBitwiseKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000088 "src/core/CL/kernels/CLBoundingBoxTransformKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000089 "src/core/CL/kernels/CLChannelShuffleLayerKernel.cpp",
90 "src/core/CL/kernels/CLCol2ImKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000091 "src/core/CL/kernels/CLComparisonKernel.cpp",
92 "src/core/CL/kernels/CLConvertFullyConnectedWeightsKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000093 "src/core/CL/kernels/CLDeconvolutionLayerUpsampleKernel.cpp",
94 "src/core/CL/kernels/CLDeconvolutionReshapeOutputKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000095 "src/core/CL/kernels/CLDepthConvertLayerKernel.cpp",
96 "src/core/CL/kernels/CLDepthToSpaceLayerKernel.cpp",
97 "src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NCHWKernel.cpp",
98 "src/core/CL/kernels/CLDepthwiseConvolutionLayer3x3NHWCKernel.cpp",
99 "src/core/CL/kernels/CLDepthwiseConvolutionLayerNativeKernel.cpp",
100 "src/core/CL/kernels/CLDepthwiseConvolutionLayerReshapeWeightsKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000101 "src/core/CL/kernels/CLFFTDigitReverseKernel.cpp",
102 "src/core/CL/kernels/CLFFTRadixStageKernel.cpp",
103 "src/core/CL/kernels/CLFFTScaleKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000104 "src/core/CL/kernels/CLFillBorderKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000105 "src/core/CL/kernels/CLFuseBatchNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000106 "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyNativeKernel.cpp",
107 "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyReshapedKernel.cpp",
108 "src/core/CL/kernels/CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel.cpp",
109 "src/core/CL/kernels/CLGEMMLowpOffsetContributionKernel.cpp",
110 "src/core/CL/kernels/CLGEMMLowpOffsetContributionOutputStageKernel.cpp",
Michele Di Giorgioba14c922020-10-12 13:27:57 +0100111 "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel.cpp",
Sheri Zhang1b14c752020-03-09 14:29:52 +0000112 "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel.cpp",
Luca Foschiani689c9682020-02-26 14:30:14 +0000113 "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000114 "src/core/CL/kernels/CLGEMMLowpReductionKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000115 "src/core/CL/kernels/CLGEMMMatrixMultiplyKernel.cpp",
116 "src/core/CL/kernels/CLGEMMMatrixMultiplyNativeKernel.cpp",
117 "src/core/CL/kernels/CLGEMMMatrixMultiplyReshapedKernel.cpp",
118 "src/core/CL/kernels/CLGEMMMatrixMultiplyReshapedOnlyRHSKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000119 "src/core/CL/kernels/CLGEMMReshapeLHSMatrixKernel.cpp",
120 "src/core/CL/kernels/CLGEMMReshapeRHSMatrixKernel.cpp",
121 "src/core/CL/kernels/CLGatherKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000122 "src/core/CL/kernels/CLGenerateProposalsLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000123 "src/core/CL/kernels/CLIm2ColKernel.cpp",
124 "src/core/CL/kernels/CLInstanceNormalizationLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000125 "src/core/CL/kernels/CLL2NormalizeLayerKernel.cpp",
Gian Marco Iodice4d81d752020-07-14 15:05:31 +0100126 "src/core/CL/kernels/CLMaxUnpoolingLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000127 "src/core/CL/kernels/CLMeanStdDevNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000128 "src/core/CL/kernels/CLMinMaxLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000129 "src/core/CL/kernels/CLNormalizationLayerKernel.cpp",
130 "src/core/CL/kernels/CLNormalizePlanarYUVLayerKernel.cpp",
131 "src/core/CL/kernels/CLPadLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000132 "src/core/CL/kernels/CLPriorBoxLayerKernel.cpp",
Sheri Zhangb18252d2020-04-07 11:04:57 +0100133 "src/core/CL/kernels/CLQLSTMLayerNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000134 "src/core/CL/kernels/CLROIAlignLayerKernel.cpp",
135 "src/core/CL/kernels/CLROIPoolingLayerKernel.cpp",
136 "src/core/CL/kernels/CLRangeKernel.cpp",
137 "src/core/CL/kernels/CLReductionOperationKernel.cpp",
138 "src/core/CL/kernels/CLRemapKernel.cpp",
139 "src/core/CL/kernels/CLReorgLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000140 "src/core/CL/kernels/CLReverseKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000141 "src/core/CL/kernels/CLSelectKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000142 "src/core/CL/kernels/CLSpaceToBatchLayerKernel.cpp",
143 "src/core/CL/kernels/CLSpaceToDepthLayerKernel.cpp",
144 "src/core/CL/kernels/CLStackLayerKernel.cpp",
145 "src/core/CL/kernels/CLStridedSliceKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000146 "src/core/CL/kernels/CLTileKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000147 "src/core/CL/kernels/CLWeightsReshapeKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000148 "src/core/CL/kernels/CLWinogradFilterTransformKernel.cpp",
149 "src/core/CL/kernels/CLWinogradInputTransformKernel.cpp",
150 "src/core/CL/kernels/CLWinogradOutputTransformKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000151 "src/core/CPP/CPPTypes.cpp",
152 "src/core/CPP/ICPPSimpleKernel.cpp",
153 "src/core/CPP/kernels/CPPBoxWithNonMaximaSuppressionLimitKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000154 "src/core/CPP/kernels/CPPNonMaximumSuppressionKernel.cpp",
155 "src/core/CPP/kernels/CPPPermuteKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000156 "src/core/CPP/kernels/CPPTopKVKernel.cpp",
157 "src/core/CPP/kernels/CPPUpsampleKernel.cpp",
158 "src/core/Error.cpp",
159 "src/core/GPUTarget.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000160 "src/core/Helpers.cpp",
161 "src/core/IAccessWindow.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000162 "src/core/IKernel.cpp",
163 "src/core/ITensor.cpp",
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100164 "src/core/ITensorPack.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000165 "src/core/NEON/kernels/NEBatchNormalizationLayerKernel.cpp",
166 "src/core/NEON/kernels/NEBatchToSpaceLayerKernel.cpp",
167 "src/core/NEON/kernels/NEBitwiseAndKernel.cpp",
168 "src/core/NEON/kernels/NEBitwiseNotKernel.cpp",
169 "src/core/NEON/kernels/NEBitwiseOrKernel.cpp",
170 "src/core/NEON/kernels/NEBitwiseXorKernel.cpp",
171 "src/core/NEON/kernels/NEBoundingBoxTransformKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000172 "src/core/NEON/kernels/NEChannelShuffleLayerKernel.cpp",
173 "src/core/NEON/kernels/NECol2ImKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000174 "src/core/NEON/kernels/NEConvertFullyConnectedWeightsKernel.cpp",
175 "src/core/NEON/kernels/NEConvertQuantizedSignednessKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000176 "src/core/NEON/kernels/NECropKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000177 "src/core/NEON/kernels/NEDepthConvertLayerKernel.cpp",
178 "src/core/NEON/kernels/NEDepthToSpaceLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000179 "src/core/NEON/kernels/NEDepthwiseConvolutionLayerNativeKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000180 "src/core/NEON/kernels/NEDirectConvolutionLayerKernel.cpp",
181 "src/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000182 "src/core/NEON/kernels/NEFFTDigitReverseKernel.cpp",
183 "src/core/NEON/kernels/NEFFTRadixStageKernel.cpp",
184 "src/core/NEON/kernels/NEFFTScaleKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000185 "src/core/NEON/kernels/NEFillBorderKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000186 "src/core/NEON/kernels/NEFuseBatchNormalizationKernel.cpp",
187 "src/core/NEON/kernels/NEGEMMInterleave4x4Kernel.cpp",
188 "src/core/NEON/kernels/NEGEMMLowpMatrixMultiplyKernel.cpp",
189 "src/core/NEON/kernels/NEGEMMLowpOffsetContributionKernel.cpp",
190 "src/core/NEON/kernels/NEGEMMLowpOffsetContributionOutputStageKernel.cpp",
Luca Foschiani4b869532020-02-13 15:07:36 +0000191 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ScaleKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000192 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel.cpp",
193 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel.cpp",
194 "src/core/NEON/kernels/NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000195 "src/core/NEON/kernels/NEGEMMLowpReductionKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000196 "src/core/NEON/kernels/NEGEMMMatrixAdditionKernel.cpp",
197 "src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000198 "src/core/NEON/kernels/NEGEMMTranspose1xWKernel.cpp",
199 "src/core/NEON/kernels/NEGatherKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000200 "src/core/NEON/kernels/NEGenerateProposalsLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000201 "src/core/NEON/kernels/NEIm2ColKernel.cpp",
202 "src/core/NEON/kernels/NEInstanceNormalizationLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000203 "src/core/NEON/kernels/NEL2NormalizeLayerKernel.cpp",
Georgios Pinitas58bce682020-11-13 11:38:58 +0000204 "src/core/NEON/kernels/NELogicalKernel.cpp",
morgolock37722d92020-04-09 14:17:48 +0100205 "src/core/NEON/kernels/NEMaxUnpoolingLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000206 "src/core/NEON/kernels/NEMeanStdDevNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000207 "src/core/NEON/kernels/NEMinMaxLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000208 "src/core/NEON/kernels/NENormalizationLayerKernel.cpp",
209 "src/core/NEON/kernels/NEPadLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000210 "src/core/NEON/kernels/NEPriorBoxLayerKernel.cpp",
Sang-Hoon Park0d008f72020-03-13 14:56:05 +0000211 "src/core/NEON/kernels/NEQLSTMLayerNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000212 "src/core/NEON/kernels/NEROIAlignLayerKernel.cpp",
213 "src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp",
214 "src/core/NEON/kernels/NERangeKernel.cpp",
215 "src/core/NEON/kernels/NEReductionOperationKernel.cpp",
Michalis Spyrou473cb012021-02-23 11:48:12 +0000216 "src/core/NEON/kernels/NERemapKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000217 "src/core/NEON/kernels/NEReorgLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000218 "src/core/NEON/kernels/NEReverseKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000219 "src/core/NEON/kernels/NESelectKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000220 "src/core/NEON/kernels/NESpaceToBatchLayerKernel.cpp",
221 "src/core/NEON/kernels/NESpaceToDepthLayerKernel.cpp",
222 "src/core/NEON/kernels/NEStackLayerKernel.cpp",
223 "src/core/NEON/kernels/NEStridedSliceKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000224 "src/core/NEON/kernels/NETileKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000225 "src/core/NEON/kernels/NEWeightsReshapeKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000226 "src/core/NEON/kernels/NEWinogradConvolutionLayerKernel.cpp",
Michele Di Giorgiod556d7b2020-10-27 10:56:31 +0000227 "src/core/NEON/kernels/arm_conv/pooling/kernels/cpp_nhwc_1x1_stride_any_depthfirst/generic.cpp",
228 "src/core/NEON/kernels/arm_conv/pooling/pooling_fp16.cpp",
229 "src/core/NEON/kernels/arm_conv/pooling/pooling_fp32.cpp",
230 "src/core/NEON/kernels/arm_conv/pooling/pooling_s8.cpp",
231 "src/core/NEON/kernels/arm_conv/pooling/pooling_s8q.cpp",
232 "src/core/NEON/kernels/arm_conv/pooling/pooling_u8.cpp",
233 "src/core/NEON/kernels/arm_conv/pooling/pooling_u8q.cpp",
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000234 "src/core/NEON/kernels/arm_gemm/gemm_bf16.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000235 "src/core/NEON/kernels/arm_gemm/gemm_fp16.cpp",
236 "src/core/NEON/kernels/arm_gemm/gemm_fp32.cpp",
237 "src/core/NEON/kernels/arm_gemm/gemm_int16.cpp",
238 "src/core/NEON/kernels/arm_gemm/gemm_int8.cpp",
239 "src/core/NEON/kernels/arm_gemm/gemm_qint8.cpp",
240 "src/core/NEON/kernels/arm_gemm/gemm_quint8.cpp",
241 "src/core/NEON/kernels/arm_gemm/gemm_uint16.cpp",
242 "src/core/NEON/kernels/arm_gemm/gemm_uint8.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000243 "src/core/NEON/kernels/arm_gemm/interleave_indirect.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000244 "src/core/NEON/kernels/arm_gemm/mergeresults.cpp",
245 "src/core/NEON/kernels/arm_gemm/misc.cpp",
246 "src/core/NEON/kernels/arm_gemm/quantized.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000247 "src/core/NEON/kernels/arm_gemm/rowsum_indirect_s8.cpp",
248 "src/core/NEON/kernels/arm_gemm/rowsum_indirect_u8.cpp",
Sheri Zhang8d5d78b2020-12-15 20:25:31 +0000249 "src/core/NEON/kernels/batchnormalization/impl/NEON/fp16.cpp",
250 "src/core/NEON/kernels/batchnormalization/impl/NEON/fp32.cpp",
251 "src/core/NEON/kernels/batchnormalization/impl/SVE/fp16.cpp",
252 "src/core/NEON/kernels/batchnormalization/impl/SVE/fp32.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000253 "src/core/NEON/kernels/convolution/common/padding.cpp",
254 "src/core/NEON/kernels/convolution/common/qasymm8.cpp",
255 "src/core/NEON/kernels/convolution/common/qsymm8.cpp",
256 "src/core/NEON/kernels/convolution/common/utils.cpp",
257 "src/core/NEON/kernels/convolution/depthwise/depthwise_2x2_3x3_1x1_fp32_fp32.cpp",
258 "src/core/NEON/kernels/convolution/depthwise/depthwise_2x2_3x3_2x2_fp32_fp32.cpp",
259 "src/core/NEON/kernels/convolution/depthwise/depthwise_3x3_3x3_1x1_fp32_fp32.cpp",
260 "src/core/NEON/kernels/convolution/depthwise/depthwise_3x3_3x3_2x2_fp32_fp32.cpp",
261 "src/core/NEON/kernels/convolution/depthwise/depthwise_4x4_3x3_1x1_fp32_fp32.cpp",
262 "src/core/NEON/kernels/convolution/depthwise/depthwise_dilated.cpp",
263 "src/core/NEON/kernels/convolution/depthwise/depthwise_dilated_qa8_qa8.cpp",
264 "src/core/NEON/kernels/convolution/depthwise/depthwise_fp16.cpp",
265 "src/core/NEON/kernels/convolution/depthwise/depthwise_fp32.cpp",
266 "src/core/NEON/kernels/convolution/depthwise/depthwise_pack_parameters.cpp",
267 "src/core/NEON/kernels/convolution/depthwise/depthwise_qa8_qa8.cpp",
268 "src/core/NEON/kernels/convolution/depthwise/depthwise_qs8_qs8.cpp",
269 "src/core/NEON/kernels/convolution/winograd/padding.cpp",
270 "src/core/NEON/kernels/convolution/winograd/winograd.cpp",
271 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_1x8_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100272 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_4x4_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000273 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_4x4_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100274 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_6x6_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000275 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_6x6_fp32_fp32_integers.cpp",
276 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2_7_fp32_fp32_integers.cpp",
277 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2x2_3x3_fp32_fp32_integers.cpp",
278 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2x2_5x5_fp32_fp32_integers.cpp",
279 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4_5_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100280 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4x4_3x3_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000281 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4x4_3x3_fp32_fp32_integers.cpp",
282 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_6_3_fp32_fp32_integers.cpp",
283 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2_7_fp32_fp32_integers.cpp",
284 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2x2_3x3_fp32_fp32_integers.cpp",
285 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2x2_5x5_fp32_fp32_integers.cpp",
286 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4_5_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100287 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000288 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp32_fp32_integers.cpp",
289 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_6_3_fp32_fp32_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000290 "src/core/Rounding.cpp",
Matthew Bentham758b5ba2020-03-05 23:37:48 +0000291 "src/core/Size2D.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000292 "src/core/SubTensorInfo.cpp",
293 "src/core/TensorInfo.cpp",
294 "src/core/Utils.cpp",
295 "src/core/Validate.cpp",
Georgios Pinitas51545e42020-02-11 15:29:01 +0000296 "src/core/Version.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000297 "src/core/cpu/kernels/CpuActivationKernel.cpp",
Sheri Zhang61243902021-01-12 18:25:16 +0000298 "src/core/cpu/kernels/CpuAddKernel.cpp",
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000299 "src/core/cpu/kernels/CpuConcatenateBatchKernel.cpp",
300 "src/core/cpu/kernels/CpuConcatenateDepthKernel.cpp",
301 "src/core/cpu/kernels/CpuConcatenateHeightKernel.cpp",
302 "src/core/cpu/kernels/CpuConcatenateWidthKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000303 "src/core/cpu/kernels/CpuCopyKernel.cpp",
Manuel Bottini00f4dfc2021-03-10 09:55:14 +0000304 "src/core/cpu/kernels/CpuDequantizationKernel.cpp",
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000305 "src/core/cpu/kernels/CpuElementwiseKernel.cpp",
Sang-Hoon Park7249f152021-01-22 11:55:03 +0000306 "src/core/cpu/kernels/CpuElementwiseUnaryKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000307 "src/core/cpu/kernels/CpuFillKernel.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000308 "src/core/cpu/kernels/CpuFloorKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000309 "src/core/cpu/kernels/CpuPermuteKernel.cpp",
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000310 "src/core/cpu/kernels/CpuPixelWiseMultiplicationKernel.cpp",
Michele Di Giorgio19289042021-02-03 16:05:00 +0000311 "src/core/cpu/kernels/CpuPoolingAssemblyWrapperKernel.cpp",
312 "src/core/cpu/kernels/CpuPoolingKernel.cpp",
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000313 "src/core/cpu/kernels/CpuQuantizationKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000314 "src/core/cpu/kernels/CpuReshapeKernel.cpp",
Manuel Bottini10b38262021-02-19 18:16:44 +0000315 "src/core/cpu/kernels/CpuScaleKernel.cpp",
Michalis Spyrou373b4072021-01-20 16:41:12 +0000316 "src/core/cpu/kernels/CpuSoftmaxKernel.cpp",
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000317 "src/core/cpu/kernels/CpuSubKernel.cpp",
Teresa Charlind1dc09c2021-03-04 15:24:45 +0000318 "src/core/cpu/kernels/CpuTransposeKernel.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000319 "src/core/cpu/kernels/activation/NEON/fp16.cpp",
320 "src/core/cpu/kernels/activation/NEON/fp32.cpp",
321 "src/core/cpu/kernels/activation/NEON/qasymm8.cpp",
322 "src/core/cpu/kernels/activation/NEON/qasymm8_signed.cpp",
323 "src/core/cpu/kernels/activation/NEON/qsymm16.cpp",
324 "src/core/cpu/kernels/activation/SVE/fp16.cpp",
325 "src/core/cpu/kernels/activation/SVE/fp32.cpp",
326 "src/core/cpu/kernels/activation/SVE/qasymm8.cpp",
327 "src/core/cpu/kernels/activation/SVE/qasymm8_signed.cpp",
328 "src/core/cpu/kernels/activation/SVE/qsymm16.cpp",
Sheri Zhang61243902021-01-12 18:25:16 +0000329 "src/core/cpu/kernels/add/neon/integer.cpp",
330 "src/core/cpu/kernels/add/neon/qasymm8.cpp",
331 "src/core/cpu/kernels/add/neon/qasymm8_signed.cpp",
332 "src/core/cpu/kernels/add/neon/qsymm16.cpp",
333 "src/core/cpu/kernels/add/sve/integer.cpp",
334 "src/core/cpu/kernels/add/sve/qasymm8.cpp",
335 "src/core/cpu/kernels/add/sve/qasymm8_signed.cpp",
336 "src/core/cpu/kernels/add/sve/qsymm16.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000337 "src/core/cpu/kernels/floor/NEON/fp16.cpp",
338 "src/core/cpu/kernels/floor/NEON/fp32.cpp",
Sheri Zhang79144a62021-02-08 17:43:04 +0000339 "src/core/cpu/kernels/pooling/neon/fp16.cpp",
340 "src/core/cpu/kernels/pooling/neon/fp32.cpp",
341 "src/core/cpu/kernels/pooling/neon/nchw/all.cpp",
342 "src/core/cpu/kernels/pooling/neon/qasymm8.cpp",
343 "src/core/cpu/kernels/pooling/neon/qasymm8_signed.cpp",
Manuel Bottini10b38262021-02-19 18:16:44 +0000344 "src/core/cpu/kernels/scale/neon/fp16.cpp",
345 "src/core/cpu/kernels/scale/neon/integer.cpp",
346 "src/core/cpu/kernels/scale/neon/qasymm8.cpp",
347 "src/core/cpu/kernels/scale/neon/qasymm8_signed.cpp",
348 "src/core/cpu/kernels/scale/sve/fp16.cpp",
349 "src/core/cpu/kernels/scale/sve/fp32.cpp",
350 "src/core/cpu/kernels/scale/sve/integer.cpp",
351 "src/core/cpu/kernels/scale/sve/qasymm8.cpp",
352 "src/core/cpu/kernels/scale/sve/qasymm8_signed.cpp",
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000353 "src/core/cpu/kernels/sub/neon/integer.cpp",
354 "src/core/cpu/kernels/sub/neon/qasymm8.cpp",
355 "src/core/cpu/kernels/sub/neon/qasymm8_signed.cpp",
356 "src/core/cpu/kernels/sub/neon/qsymm16.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000357 "src/core/gpu/cl/kernels/ClActivationKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000358 "src/core/gpu/cl/kernels/ClBatchConcatenateKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000359 "src/core/gpu/cl/kernels/ClCopyKernel.cpp",
360 "src/core/gpu/cl/kernels/ClCropKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000361 "src/core/gpu/cl/kernels/ClDepthConcatenateKernel.cpp",
Manuel Bottini9e73c932021-03-02 17:40:42 +0000362 "src/core/gpu/cl/kernels/ClDequantizationKernel.cpp",
Sheri Zhang1efed922021-03-10 22:43:38 +0000363 "src/core/gpu/cl/kernels/ClDirectConvolutionKernel.cpp",
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000364 "src/core/gpu/cl/kernels/ClElementwiseKernel.cpp",
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000365 "src/core/gpu/cl/kernels/ClElementwiseUnaryKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000366 "src/core/gpu/cl/kernels/ClFillKernel.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000367 "src/core/gpu/cl/kernels/ClFloorKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000368 "src/core/gpu/cl/kernels/ClHeightConcatenateKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000369 "src/core/gpu/cl/kernels/ClPermuteKernel.cpp",
Sheri Zhangf9ab9f92021-03-16 12:09:15 +0000370 "src/core/gpu/cl/kernels/ClPixelWiseMultiplicationKernel.cpp",
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000371 "src/core/gpu/cl/kernels/ClPoolingKernel.cpp",
Manuel Bottini5a1bf622021-03-01 17:39:36 +0000372 "src/core/gpu/cl/kernels/ClQuantizationKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000373 "src/core/gpu/cl/kernels/ClReshapeKernel.cpp",
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000374 "src/core/gpu/cl/kernels/ClScaleKernel.cpp",
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000375 "src/core/gpu/cl/kernels/ClSoftmaxKernel.cpp",
Teresa Charlin27886092021-02-25 20:15:01 +0000376 "src/core/gpu/cl/kernels/ClTransposeKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000377 "src/core/gpu/cl/kernels/ClWidthConcatenate2TensorsKernel.cpp",
378 "src/core/gpu/cl/kernels/ClWidthConcatenate4TensorsKernel.cpp",
379 "src/core/gpu/cl/kernels/ClWidthConcatenateKernel.cpp",
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100380 "src/core/helpers/SoftmaxHelpers.cpp",
381 "src/core/helpers/WindowHelpers.cpp",
Sang-Hoon Park3687ee12020-06-24 13:34:04 +0100382 "src/core/utils/ScaleUtils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000383 "src/core/utils/helpers/fft.cpp",
384 "src/core/utils/helpers/tensor_transform.cpp",
385 "src/core/utils/io/FileHandler.cpp",
386 "src/core/utils/logging/FilePrinter.cpp",
387 "src/core/utils/logging/Helpers.cpp",
388 "src/core/utils/logging/Logger.cpp",
389 "src/core/utils/logging/LoggerRegistry.cpp",
390 "src/core/utils/misc/MMappedFile.cpp",
391 "src/core/utils/quantization/AsymmHelpers.cpp",
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000392 "src/cpu/CpuContext.cpp",
Georgios Pinitas3f26ef42021-02-23 10:01:33 +0000393 "src/cpu/CpuTensor.cpp",
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000394 "src/gpu/cl/ClContext.cpp",
Georgios Pinitas3f26ef42021-02-23 10:01:33 +0000395 "src/gpu/cl/ClTensor.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000396 "src/runtime/Allocator.cpp",
397 "src/runtime/BlobLifetimeManager.cpp",
398 "src/runtime/BlobMemoryPool.cpp",
399 "src/runtime/CL/CLBufferAllocator.cpp",
SiCong Li70858d82021-02-05 09:19:51 +0000400 "src/runtime/CL/CLGEMMHeuristicsHandle.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000401 "src/runtime/CL/CLHelpers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000402 "src/runtime/CL/CLMemory.cpp",
403 "src/runtime/CL/CLMemoryRegion.cpp",
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100404 "src/runtime/CL/CLOperator.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000405 "src/runtime/CL/CLRuntimeContext.cpp",
406 "src/runtime/CL/CLScheduler.cpp",
407 "src/runtime/CL/CLSubTensor.cpp",
408 "src/runtime/CL/CLTensor.cpp",
409 "src/runtime/CL/CLTensorAllocator.cpp",
410 "src/runtime/CL/CLTuner.cpp",
411 "src/runtime/CL/ICLSimpleFunction.cpp",
Inki Daeea2ce172020-04-09 10:01:44 +0900412 "src/runtime/CL/Utils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000413 "src/runtime/CL/functions/CLActivationLayer.cpp",
414 "src/runtime/CL/functions/CLArgMinMaxLayer.cpp",
415 "src/runtime/CL/functions/CLBatchNormalizationLayer.cpp",
416 "src/runtime/CL/functions/CLBatchToSpaceLayer.cpp",
417 "src/runtime/CL/functions/CLBitwiseAnd.cpp",
418 "src/runtime/CL/functions/CLBitwiseNot.cpp",
419 "src/runtime/CL/functions/CLBitwiseOr.cpp",
420 "src/runtime/CL/functions/CLBitwiseXor.cpp",
421 "src/runtime/CL/functions/CLBoundingBoxTransform.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000422 "src/runtime/CL/functions/CLCast.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000423 "src/runtime/CL/functions/CLChannelShuffleLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000424 "src/runtime/CL/functions/CLComparison.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000425 "src/runtime/CL/functions/CLConcatenateLayer.cpp",
426 "src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000427 "src/runtime/CL/functions/CLConvolutionLayer.cpp",
428 "src/runtime/CL/functions/CLCopy.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000429 "src/runtime/CL/functions/CLCrop.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000430 "src/runtime/CL/functions/CLCropResize.cpp",
431 "src/runtime/CL/functions/CLDeconvolutionLayer.cpp",
432 "src/runtime/CL/functions/CLDeconvolutionLayerUpsample.cpp",
433 "src/runtime/CL/functions/CLDepthConvertLayer.cpp",
434 "src/runtime/CL/functions/CLDepthToSpaceLayer.cpp",
435 "src/runtime/CL/functions/CLDepthwiseConvolutionLayer.cpp",
436 "src/runtime/CL/functions/CLDequantizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000437 "src/runtime/CL/functions/CLDirectConvolutionLayer.cpp",
438 "src/runtime/CL/functions/CLDirectDeconvolutionLayer.cpp",
439 "src/runtime/CL/functions/CLElementWiseUnaryLayer.cpp",
440 "src/runtime/CL/functions/CLElementwiseOperations.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000441 "src/runtime/CL/functions/CLFFT1D.cpp",
442 "src/runtime/CL/functions/CLFFT2D.cpp",
443 "src/runtime/CL/functions/CLFFTConvolutionLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000444 "src/runtime/CL/functions/CLFill.cpp",
445 "src/runtime/CL/functions/CLFillBorder.cpp",
446 "src/runtime/CL/functions/CLFlattenLayer.cpp",
447 "src/runtime/CL/functions/CLFloor.cpp",
448 "src/runtime/CL/functions/CLFullyConnectedLayer.cpp",
449 "src/runtime/CL/functions/CLFuseBatchNormalization.cpp",
450 "src/runtime/CL/functions/CLGEMM.cpp",
451 "src/runtime/CL/functions/CLGEMMConvolutionLayer.cpp",
452 "src/runtime/CL/functions/CLGEMMDeconvolutionLayer.cpp",
453 "src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp",
454 "src/runtime/CL/functions/CLGEMMLowpOutputStage.cpp",
455 "src/runtime/CL/functions/CLGather.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000456 "src/runtime/CL/functions/CLGenerateProposalsLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000457 "src/runtime/CL/functions/CLInstanceNormalizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000458 "src/runtime/CL/functions/CLL2NormalizeLayer.cpp",
459 "src/runtime/CL/functions/CLLSTMLayer.cpp",
460 "src/runtime/CL/functions/CLLSTMLayerQuantized.cpp",
Sang-Hoon Park75eea332020-11-13 13:44:13 +0000461 "src/runtime/CL/functions/CLLogicalAnd.cpp",
462 "src/runtime/CL/functions/CLLogicalNot.cpp",
463 "src/runtime/CL/functions/CLLogicalOr.cpp",
Gian Marco Iodice4d81d752020-07-14 15:05:31 +0100464 "src/runtime/CL/functions/CLMaxUnpoolingLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000465 "src/runtime/CL/functions/CLMeanStdDevNormalizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000466 "src/runtime/CL/functions/CLNormalizationLayer.cpp",
467 "src/runtime/CL/functions/CLNormalizePlanarYUVLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000468 "src/runtime/CL/functions/CLPReluLayer.cpp",
469 "src/runtime/CL/functions/CLPadLayer.cpp",
470 "src/runtime/CL/functions/CLPermute.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000471 "src/runtime/CL/functions/CLPixelWiseMultiplication.cpp",
472 "src/runtime/CL/functions/CLPoolingLayer.cpp",
473 "src/runtime/CL/functions/CLPriorBoxLayer.cpp",
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +0100474 "src/runtime/CL/functions/CLQLSTMLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000475 "src/runtime/CL/functions/CLQuantizationLayer.cpp",
476 "src/runtime/CL/functions/CLRNNLayer.cpp",
477 "src/runtime/CL/functions/CLROIAlignLayer.cpp",
478 "src/runtime/CL/functions/CLROIPoolingLayer.cpp",
479 "src/runtime/CL/functions/CLRange.cpp",
480 "src/runtime/CL/functions/CLReduceMean.cpp",
481 "src/runtime/CL/functions/CLReductionOperation.cpp",
482 "src/runtime/CL/functions/CLRemap.cpp",
483 "src/runtime/CL/functions/CLReorgLayer.cpp",
484 "src/runtime/CL/functions/CLReshapeLayer.cpp",
485 "src/runtime/CL/functions/CLReverse.cpp",
486 "src/runtime/CL/functions/CLScale.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000487 "src/runtime/CL/functions/CLSelect.cpp",
488 "src/runtime/CL/functions/CLSlice.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000489 "src/runtime/CL/functions/CLSoftmaxLayer.cpp",
490 "src/runtime/CL/functions/CLSpaceToBatchLayer.cpp",
491 "src/runtime/CL/functions/CLSpaceToDepthLayer.cpp",
492 "src/runtime/CL/functions/CLSplit.cpp",
493 "src/runtime/CL/functions/CLStackLayer.cpp",
494 "src/runtime/CL/functions/CLStridedSlice.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000495 "src/runtime/CL/functions/CLTile.cpp",
496 "src/runtime/CL/functions/CLTranspose.cpp",
497 "src/runtime/CL/functions/CLUnstack.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000498 "src/runtime/CL/functions/CLWinogradConvolutionLayer.cpp",
499 "src/runtime/CL/functions/CLWinogradInputTransform.cpp",
SiCong Lia085a0c2020-12-02 14:54:34 +0000500 "src/runtime/CL/gemm/CLGEMMDefaultTypeBifrost.cpp",
501 "src/runtime/CL/gemm/CLGEMMDefaultTypeMidgard.cpp",
502 "src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.cpp",
SiCong Libd8b1e22021-02-04 13:07:09 +0000503 "src/runtime/CL/gemm_auto_heuristics/CLGEMMAutoHeuristics.cpp",
SiCong Li7061eb22021-01-08 15:16:02 +0000504 "src/runtime/CL/mlgo/HeuristicTree.cpp",
505 "src/runtime/CL/mlgo/MLGOHeuristics.cpp",
506 "src/runtime/CL/mlgo/MLGOParser.cpp",
507 "src/runtime/CL/mlgo/Utils.cpp",
Manuel Bottinib56c1752020-11-18 17:56:30 +0000508 "src/runtime/CL/tuners/CLTuningParametersList.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000509 "src/runtime/CPP/CPPScheduler.cpp",
510 "src/runtime/CPP/ICPPSimpleFunction.cpp",
511 "src/runtime/CPP/SingleThreadScheduler.cpp",
512 "src/runtime/CPP/functions/CPPBoxWithNonMaximaSuppressionLimit.cpp",
513 "src/runtime/CPP/functions/CPPDetectionOutputLayer.cpp",
514 "src/runtime/CPP/functions/CPPDetectionPostProcessLayer.cpp",
515 "src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp",
516 "src/runtime/CPP/functions/CPPPermute.cpp",
517 "src/runtime/CPP/functions/CPPTopKV.cpp",
518 "src/runtime/CPP/functions/CPPUpsample.cpp",
519 "src/runtime/CPUUtils.cpp",
520 "src/runtime/DeviceProperties.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000521 "src/runtime/IScheduler.cpp",
522 "src/runtime/ISimpleLifetimeManager.cpp",
523 "src/runtime/ITensorAllocator.cpp",
524 "src/runtime/IWeightsManager.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000525 "src/runtime/MEMUtils.cpp",
526 "src/runtime/Memory.cpp",
527 "src/runtime/MemoryManagerOnDemand.cpp",
Michalis Spyroubcd23522020-05-21 15:02:36 +0100528 "src/runtime/NEON/INEOperator.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000529 "src/runtime/NEON/INESimpleFunction.cpp",
530 "src/runtime/NEON/INESimpleFunctionNoBorder.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000531 "src/runtime/NEON/functions/NEActivationLayer.cpp",
532 "src/runtime/NEON/functions/NEArgMinMaxLayer.cpp",
533 "src/runtime/NEON/functions/NEArithmeticAddition.cpp",
534 "src/runtime/NEON/functions/NEArithmeticSubtraction.cpp",
535 "src/runtime/NEON/functions/NEBatchNormalizationLayer.cpp",
536 "src/runtime/NEON/functions/NEBatchToSpaceLayer.cpp",
537 "src/runtime/NEON/functions/NEBitwiseAnd.cpp",
538 "src/runtime/NEON/functions/NEBitwiseNot.cpp",
539 "src/runtime/NEON/functions/NEBitwiseOr.cpp",
540 "src/runtime/NEON/functions/NEBitwiseXor.cpp",
541 "src/runtime/NEON/functions/NEBoundingBoxTransform.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000542 "src/runtime/NEON/functions/NECast.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000543 "src/runtime/NEON/functions/NEChannelShuffleLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000544 "src/runtime/NEON/functions/NEConcatenateLayer.cpp",
545 "src/runtime/NEON/functions/NEConvertFullyConnectedWeights.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000546 "src/runtime/NEON/functions/NEConvolutionLayer.cpp",
547 "src/runtime/NEON/functions/NECopy.cpp",
548 "src/runtime/NEON/functions/NECropResize.cpp",
549 "src/runtime/NEON/functions/NEDeconvolutionLayer.cpp",
550 "src/runtime/NEON/functions/NEDepthConvertLayer.cpp",
551 "src/runtime/NEON/functions/NEDepthToSpaceLayer.cpp",
552 "src/runtime/NEON/functions/NEDepthwiseConvolutionLayer.cpp",
553 "src/runtime/NEON/functions/NEDequantizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000554 "src/runtime/NEON/functions/NEDetectionPostProcessLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000555 "src/runtime/NEON/functions/NEDirectConvolutionLayer.cpp",
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000556 "src/runtime/NEON/functions/NEElementwiseOperations.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000557 "src/runtime/NEON/functions/NEElementwiseUnaryLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000558 "src/runtime/NEON/functions/NEFFT1D.cpp",
559 "src/runtime/NEON/functions/NEFFT2D.cpp",
560 "src/runtime/NEON/functions/NEFFTConvolutionLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000561 "src/runtime/NEON/functions/NEFill.cpp",
562 "src/runtime/NEON/functions/NEFillBorder.cpp",
563 "src/runtime/NEON/functions/NEFlattenLayer.cpp",
564 "src/runtime/NEON/functions/NEFloor.cpp",
565 "src/runtime/NEON/functions/NEFullyConnectedLayer.cpp",
566 "src/runtime/NEON/functions/NEFuseBatchNormalization.cpp",
567 "src/runtime/NEON/functions/NEGEMM.cpp",
568 "src/runtime/NEON/functions/NEGEMMAssemblyDispatch.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000569 "src/runtime/NEON/functions/NEGEMMConv2d.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000570 "src/runtime/NEON/functions/NEGEMMConvolutionLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000571 "src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp",
572 "src/runtime/NEON/functions/NEGEMMLowpOutputStage.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000573 "src/runtime/NEON/functions/NEGather.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000574 "src/runtime/NEON/functions/NEGenerateProposalsLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000575 "src/runtime/NEON/functions/NEInstanceNormalizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000576 "src/runtime/NEON/functions/NEL2NormalizeLayer.cpp",
577 "src/runtime/NEON/functions/NELSTMLayer.cpp",
578 "src/runtime/NEON/functions/NELSTMLayerQuantized.cpp",
Georgios Pinitas58bce682020-11-13 11:38:58 +0000579 "src/runtime/NEON/functions/NELogical.cpp",
morgolock37722d92020-04-09 14:17:48 +0100580 "src/runtime/NEON/functions/NEMaxUnpoolingLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000581 "src/runtime/NEON/functions/NEMeanStdDevNormalizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000582 "src/runtime/NEON/functions/NENormalizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000583 "src/runtime/NEON/functions/NEPReluLayer.cpp",
584 "src/runtime/NEON/functions/NEPadLayer.cpp",
585 "src/runtime/NEON/functions/NEPermute.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000586 "src/runtime/NEON/functions/NEPixelWiseMultiplication.cpp",
587 "src/runtime/NEON/functions/NEPoolingLayer.cpp",
588 "src/runtime/NEON/functions/NEPriorBoxLayer.cpp",
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000589 "src/runtime/NEON/functions/NEQLSTMLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000590 "src/runtime/NEON/functions/NEQuantizationLayer.cpp",
591 "src/runtime/NEON/functions/NERNNLayer.cpp",
592 "src/runtime/NEON/functions/NEROIAlignLayer.cpp",
593 "src/runtime/NEON/functions/NEROIPoolingLayer.cpp",
594 "src/runtime/NEON/functions/NERange.cpp",
595 "src/runtime/NEON/functions/NEReduceMean.cpp",
596 "src/runtime/NEON/functions/NEReductionOperation.cpp",
Michalis Spyrou473cb012021-02-23 11:48:12 +0000597 "src/runtime/NEON/functions/NERemap.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000598 "src/runtime/NEON/functions/NEReorgLayer.cpp",
599 "src/runtime/NEON/functions/NEReshapeLayer.cpp",
600 "src/runtime/NEON/functions/NEReverse.cpp",
601 "src/runtime/NEON/functions/NEScale.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000602 "src/runtime/NEON/functions/NESelect.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000603 "src/runtime/NEON/functions/NESlice.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000604 "src/runtime/NEON/functions/NESoftmaxLayer.cpp",
605 "src/runtime/NEON/functions/NESpaceToBatchLayer.cpp",
606 "src/runtime/NEON/functions/NESpaceToDepthLayer.cpp",
607 "src/runtime/NEON/functions/NESplit.cpp",
608 "src/runtime/NEON/functions/NEStackLayer.cpp",
609 "src/runtime/NEON/functions/NEStridedSlice.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000610 "src/runtime/NEON/functions/NETile.cpp",
611 "src/runtime/NEON/functions/NETranspose.cpp",
612 "src/runtime/NEON/functions/NEUnstack.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000613 "src/runtime/NEON/functions/NEWinogradConvolutionLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000614 "src/runtime/NEON/functions/assembly/NEDepthwiseConvolutionAssemblyDispatch.cpp",
615 "src/runtime/OMP/OMPScheduler.cpp",
616 "src/runtime/OffsetLifetimeManager.cpp",
617 "src/runtime/OffsetMemoryPool.cpp",
Michalis Spyroubcd23522020-05-21 15:02:36 +0100618 "src/runtime/OperatorTensor.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000619 "src/runtime/PoolManager.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000620 "src/runtime/RuntimeContext.cpp",
621 "src/runtime/Scheduler.cpp",
622 "src/runtime/SchedulerFactory.cpp",
morgolock51112642020-08-20 14:51:39 +0100623 "src/runtime/SchedulerUtils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000624 "src/runtime/SubTensor.cpp",
625 "src/runtime/Tensor.cpp",
626 "src/runtime/TensorAllocator.cpp",
627 "src/runtime/Utils.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000628 "src/runtime/cpu/operators/CpuActivation.cpp",
Sheri Zhang61243902021-01-12 18:25:16 +0000629 "src/runtime/cpu/operators/CpuAdd.cpp",
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000630 "src/runtime/cpu/operators/CpuConcatenate.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000631 "src/runtime/cpu/operators/CpuCopy.cpp",
Manuel Bottini00f4dfc2021-03-10 09:55:14 +0000632 "src/runtime/cpu/operators/CpuDequantization.cpp",
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000633 "src/runtime/cpu/operators/CpuElementwise.cpp",
Sang-Hoon Park7249f152021-01-22 11:55:03 +0000634 "src/runtime/cpu/operators/CpuElementwiseUnary.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000635 "src/runtime/cpu/operators/CpuFill.cpp",
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000636 "src/runtime/cpu/operators/CpuFloor.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000637 "src/runtime/cpu/operators/CpuPermute.cpp",
Sheri Zhang1e3ab422021-03-16 17:35:08 +0000638 "src/runtime/cpu/operators/CpuPixelWiseMultiplication.cpp",
Michele Di Giorgio19289042021-02-03 16:05:00 +0000639 "src/runtime/cpu/operators/CpuPooling.cpp",
640 "src/runtime/cpu/operators/CpuPoolingAssemblyDispatch.cpp",
Manuel Bottini0ded4c42021-03-09 14:15:27 +0000641 "src/runtime/cpu/operators/CpuQuantization.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000642 "src/runtime/cpu/operators/CpuReshape.cpp",
Manuel Bottini10b38262021-02-19 18:16:44 +0000643 "src/runtime/cpu/operators/CpuScale.cpp",
Michalis Spyrou373b4072021-01-20 16:41:12 +0000644 "src/runtime/cpu/operators/CpuSoftmax.cpp",
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000645 "src/runtime/cpu/operators/CpuSub.cpp",
Teresa Charlind1dc09c2021-03-04 15:24:45 +0000646 "src/runtime/cpu/operators/CpuTranspose.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000647 "src/runtime/gpu/cl/operators/ClActivation.cpp",
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000648 "src/runtime/gpu/cl/operators/ClAdd.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000649 "src/runtime/gpu/cl/operators/ClConcatenate.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000650 "src/runtime/gpu/cl/operators/ClCopy.cpp",
651 "src/runtime/gpu/cl/operators/ClCrop.cpp",
Manuel Bottini9e73c932021-03-02 17:40:42 +0000652 "src/runtime/gpu/cl/operators/ClDequantization.cpp",
Sheri Zhang1efed922021-03-10 22:43:38 +0000653 "src/runtime/gpu/cl/operators/ClDirectConvolution.cpp",
Michele Di Giorgio237be032021-01-25 15:44:02 +0000654 "src/runtime/gpu/cl/operators/ClElementwiseOperations.cpp",
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000655 "src/runtime/gpu/cl/operators/ClElementwiseUnary.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000656 "src/runtime/gpu/cl/operators/ClFill.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000657 "src/runtime/gpu/cl/operators/ClFloor.cpp",
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000658 "src/runtime/gpu/cl/operators/ClLogicalNot.cpp",
Sang-Hoon Park5ff38da2021-03-02 09:41:13 +0000659 "src/runtime/gpu/cl/operators/ClPRelu.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000660 "src/runtime/gpu/cl/operators/ClPermute.cpp",
Sheri Zhangf9ab9f92021-03-16 12:09:15 +0000661 "src/runtime/gpu/cl/operators/ClPixelWiseMultiplication.cpp",
Michele Di Giorgioe1314662021-02-01 17:09:32 +0000662 "src/runtime/gpu/cl/operators/ClPooling.cpp",
Manuel Bottini5a1bf622021-03-01 17:39:36 +0000663 "src/runtime/gpu/cl/operators/ClQuantization.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000664 "src/runtime/gpu/cl/operators/ClReshape.cpp",
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000665 "src/runtime/gpu/cl/operators/ClScale.cpp",
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000666 "src/runtime/gpu/cl/operators/ClSoftmax.cpp",
Michele Di Giorgio4cfab182021-01-25 11:49:03 +0000667 "src/runtime/gpu/cl/operators/ClSub.cpp",
Teresa Charlin27886092021-02-25 20:15:01 +0000668 "src/runtime/gpu/cl/operators/ClTranspose.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000669 "utils/CommonGraphOptions.cpp",
670 "utils/GraphUtils.cpp",
671 "utils/Utils.cpp",
672
673 ],
674 arch: {
675 arm: {
676 srcs: [
677 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a53.cpp",
678 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a55r1.cpp",
679 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/generic.cpp",
680
681 ],
682 },
683 arm64: {
684 srcs: [
Michele Di Giorgiod556d7b2020-10-27 10:56:31 +0000685 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
686 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_avg_generic_depthfirst/generic.cpp",
687 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
688 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_max_generic_depthfirst/generic.cpp",
689 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
690 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_avg_generic_depthfirst/generic.cpp",
691 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
692 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_max_generic_depthfirst/generic.cpp",
693 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_avg_generic_depthfirst/generic.cpp",
694 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
695 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_max_generic_depthfirst/generic.cpp",
696 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8q_nhwc_avg_generic_depthfirst/generic.cpp",
697 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8q_nhwc_max_generic_depthfirst/generic.cpp",
698 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_avg_generic_depthfirst/generic.cpp",
699 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
700 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_max_generic_depthfirst/generic.cpp",
701 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8q_nhwc_avg_generic_depthfirst/generic.cpp",
702 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8q_nhwc_max_generic_depthfirst/generic.cpp",
703 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
704 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_avg_generic_depthfirst/generic.cpp",
705 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
706 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_max_generic_depthfirst/generic.cpp",
707 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
708 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_avg_generic_depthfirst/generic.cpp",
709 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
710 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_max_generic_depthfirst/generic.cpp",
711 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_avg_generic_depthfirst/generic.cpp",
712 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
713 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_max_generic_depthfirst/generic.cpp",
714 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_avg_generic_depthfirst/generic.cpp",
715 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_max_generic_depthfirst/generic.cpp",
716 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_avg_generic_depthfirst/generic.cpp",
717 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
718 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_max_generic_depthfirst/generic.cpp",
719 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8q_nhwc_avg_generic_depthfirst/generic.cpp",
720 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8q_nhwc_max_generic_depthfirst/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000721 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s16_8x12/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000722 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_4x4/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000723 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/a55r1.cpp",
724 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/generic.cpp",
725 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/x1.cpp",
726 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u16_8x12/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000727 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_4x4/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000728 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/a55r1.cpp",
729 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/generic.cpp",
730 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/x1.cpp",
731 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemv_fp32_mla_32/generic.cpp",
732 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/a55r1.cpp",
733 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/generic.cpp",
734 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/x1.cpp",
735 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_bf16fp32_dot_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000736 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp16_mla_6x32/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000737 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp16_mla_6x32/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000738 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000739 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000740 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_8x4/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000741 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_8x4/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000742 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_dot_4x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000743 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_dot_4x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000744 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_dot_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000745 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_dot_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000746 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000747 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000748 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_dot_4x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000749 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_dot_4x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000750 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000751 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_6x16/generic.cpp",
752 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_dot_8x12/generic.cpp",
753 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_mmla_8x12/generic.cpp",
754 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_s8s32_mmla_8x12/generic.cpp",
755 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_u8u32_mmla_8x12/generic.cpp",
756 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a53.cpp",
757 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55.cpp",
758 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55r1.cpp",
759 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/generic.cpp",
760 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/x1.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000761 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemv_pretransposed/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000762 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_6x4/generic.cpp",
763 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_8x4/generic.cpp",
764 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/a55.cpp",
765 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/generic.cpp",
766 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/a55.cpp",
767 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/generic.cpp",
768 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/a55.cpp",
769 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/generic.cpp",
770 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/a55.cpp",
771 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/generic.cpp",
772 "src/core/NEON/kernels/arm_gemm/kernels/sve_gemv_fp32_mla_8VL/generic.cpp",
773 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_bf16fp32_dot_6x4VL/generic.cpp",
774 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp16_mla_6x4VL/generic.cpp",
775 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_6x4VL/generic.cpp",
776 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_8x1VL/generic.cpp",
777 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qa_dot_4x4VL/generic.cpp",
778 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qs_dot_6x4VL/generic.cpp",
779 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8s32_dot_6x4VL/generic.cpp",
780 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8qa_dot_4x4VL/generic.cpp",
781 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8u32_dot_6x4VL/generic.cpp",
782 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_dot_8x3VL/generic.cpp",
783 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_mmla_8x3VL/generic.cpp",
784 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp16_mla_8x3VL/generic.cpp",
785 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mla_8x3VL/generic.cpp",
786 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mmla_8x3VL/generic.cpp",
787 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_dot_8x3VL/generic.cpp",
788 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_mmla_8x3VL/generic.cpp",
789 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_dot_8x3VL/generic.cpp",
790 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_mmla_8x3VL/generic.cpp",
791 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_fp32_mla_8x1VL/generic.cpp",
792 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_s8s32_dot_8x1VL/generic.cpp",
793 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_u8u32_dot_8x1VL/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000794
795 ],
796 },
797 },
798 rtti: true,
799}