blob: 6b1c3c56c4b1422e6c43e0db6f482483a85be02d [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",
Georgios Pinitas84f8aa7e2021-06-08 18:54:48 +010032 "-DENABLE_NEON",
Michalis Spyrou31c7c262021-06-23 13:31:59 +010033 "-DARM_COMPUTE_ENABLE_NEON",
Georgios Pinitas41984a02019-12-11 12:05:17 +000034 "-Wno-unused-parameter",
35 "-DNO_DOT_IN_TOOLCHAIN",
morgolockf8f812b2020-11-17 09:37:37 +000036 "-no-integrated-as",
37 "-Wno-implicit-fallthrough"
Georgios Pinitas41984a02019-12-11 12:05:17 +000038 ],
39 rtti: true,
40}
41
42cc_library_static {
43 name: "arm_compute_library",
44 defaults: ["acl-default-cppflags"],
45 proprietary: true,
46 local_include_dirs: ["build/android-arm64v8a/src/core",
47 "build/android-arm64v8a/src/core/CL",
Georgios Pinitasde5930f2020-10-21 10:45:44 +010048 "src/core/common",
49 "src/core/helpers",
Michele Di Giorgiof3ad9512020-07-01 10:37:11 +010050 "src/core/NEON/kernels/assembly",
Georgios Pinitasde5930f2020-10-21 10:45:44 +010051 "src/core/NEON/kernels/convolution/common",
Sang-Hoon Park37f4b2e2021-05-18 10:50:26 +010052 "src/core/NEON/kernels/convolution/winograd",
53 "src/core/cpu/kernels/assembly"],
Georgios Pinitas41984a02019-12-11 12:05:17 +000054 export_include_dirs: [".", "./include"],
55 srcs: [
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000056 "src/c/AclContext.cpp",
Georgios Pinitas06ac6e42021-07-05 08:08:52 +010057 "src/c/AclOperator.cpp",
Georgios Pinitasc3c352e2021-03-18 10:59:40 +000058 "src/c/AclQueue.cpp",
Georgios Pinitas3f26ef42021-02-23 10:01:33 +000059 "src/c/AclTensor.cpp",
60 "src/c/AclTensorPack.cpp",
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000061 "src/c/AclVersion.cpp",
62 "src/c/cl/AclOpenClExt.cpp",
63 "src/common/AllocatorWrapper.cpp",
Sang-Hoon Parkc6fcfb42021-03-31 15:18:16 +010064 "src/common/ITensorV2.cpp",
Georgios Pinitas3f26ef42021-02-23 10:01:33 +000065 "src/common/TensorPack.cpp",
Georgios Pinitas08302c12021-06-09 10:08:27 +010066 "src/common/cpuinfo/CpuInfo.cpp",
67 "src/common/cpuinfo/CpuIsaInfo.cpp",
68 "src/common/cpuinfo/CpuModel.cpp",
Georgios Pinitas3f26ef42021-02-23 10:01:33 +000069 "src/common/utils/LegacySupport.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000070 "src/core/AccessWindowAutoPadding.cpp",
71 "src/core/AccessWindowStatic.cpp",
72 "src/core/AccessWindowTranspose.cpp",
Michalis Spyrou11d49182020-03-26 10:31:32 +000073 "src/core/CL/CLCompileContext.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000074 "src/core/CL/CLHelpers.cpp",
75 "src/core/CL/CLKernelLibrary.cpp",
Gian Marco Iodice781cba72020-06-19 16:56:57 +010076 "src/core/CL/CLUtils.cpp",
Giorgio Arenaba2dd822021-07-28 16:10:03 +010077 "src/core/CL/DefaultLWSHeuristics.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000078 "src/core/CL/ICLKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000079 "src/core/CL/ICLSimple2DKernel.cpp",
80 "src/core/CL/ICLSimple3DKernel.cpp",
81 "src/core/CL/ICLSimpleKernel.cpp",
82 "src/core/CL/ICLTensor.cpp",
83 "src/core/CL/OpenCL.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",
Georgios Pinitas41984a02019-12-11 12:05:17 +000090 "src/core/CL/kernels/CLComparisonKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000091 "src/core/CL/kernels/CLDeconvolutionLayerUpsampleKernel.cpp",
92 "src/core/CL/kernels/CLDeconvolutionReshapeOutputKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000093 "src/core/CL/kernels/CLDepthToSpaceLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000094 "src/core/CL/kernels/CLDepthwiseConvolutionLayerNativeKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000095 "src/core/CL/kernels/CLFFTDigitReverseKernel.cpp",
96 "src/core/CL/kernels/CLFFTRadixStageKernel.cpp",
97 "src/core/CL/kernels/CLFFTScaleKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000098 "src/core/CL/kernels/CLFillBorderKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +000099 "src/core/CL/kernels/CLFuseBatchNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000100 "src/core/CL/kernels/CLGatherKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000101 "src/core/CL/kernels/CLGenerateProposalsLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000102 "src/core/CL/kernels/CLInstanceNormalizationLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000103 "src/core/CL/kernels/CLL2NormalizeLayerKernel.cpp",
Gian Marco Iodice4d81d752020-07-14 15:05:31 +0100104 "src/core/CL/kernels/CLMaxUnpoolingLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000105 "src/core/CL/kernels/CLMeanStdDevNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000106 "src/core/CL/kernels/CLMinMaxLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000107 "src/core/CL/kernels/CLNormalizationLayerKernel.cpp",
108 "src/core/CL/kernels/CLNormalizePlanarYUVLayerKernel.cpp",
109 "src/core/CL/kernels/CLPadLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000110 "src/core/CL/kernels/CLPriorBoxLayerKernel.cpp",
Sheri Zhangb18252d2020-04-07 11:04:57 +0100111 "src/core/CL/kernels/CLQLSTMLayerNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000112 "src/core/CL/kernels/CLROIAlignLayerKernel.cpp",
113 "src/core/CL/kernels/CLROIPoolingLayerKernel.cpp",
114 "src/core/CL/kernels/CLRangeKernel.cpp",
115 "src/core/CL/kernels/CLReductionOperationKernel.cpp",
116 "src/core/CL/kernels/CLRemapKernel.cpp",
117 "src/core/CL/kernels/CLReorgLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000118 "src/core/CL/kernels/CLReverseKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000119 "src/core/CL/kernels/CLSelectKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000120 "src/core/CL/kernels/CLSpaceToBatchLayerKernel.cpp",
121 "src/core/CL/kernels/CLSpaceToDepthLayerKernel.cpp",
122 "src/core/CL/kernels/CLStackLayerKernel.cpp",
123 "src/core/CL/kernels/CLStridedSliceKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000124 "src/core/CL/kernels/CLTileKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000125 "src/core/CPP/CPPTypes.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000126 "src/core/CPP/kernels/CPPBoxWithNonMaximaSuppressionLimitKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000127 "src/core/CPP/kernels/CPPNonMaximumSuppressionKernel.cpp",
128 "src/core/CPP/kernels/CPPPermuteKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000129 "src/core/CPP/kernels/CPPTopKVKernel.cpp",
130 "src/core/CPP/kernels/CPPUpsampleKernel.cpp",
131 "src/core/Error.cpp",
132 "src/core/GPUTarget.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000133 "src/core/Helpers.cpp",
134 "src/core/IAccessWindow.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000135 "src/core/IKernel.cpp",
136 "src/core/ITensor.cpp",
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100137 "src/core/ITensorPack.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000138 "src/core/NEON/kernels/NEBatchNormalizationLayerKernel.cpp",
139 "src/core/NEON/kernels/NEBatchToSpaceLayerKernel.cpp",
140 "src/core/NEON/kernels/NEBitwiseAndKernel.cpp",
141 "src/core/NEON/kernels/NEBitwiseNotKernel.cpp",
142 "src/core/NEON/kernels/NEBitwiseOrKernel.cpp",
143 "src/core/NEON/kernels/NEBitwiseXorKernel.cpp",
144 "src/core/NEON/kernels/NEBoundingBoxTransformKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000145 "src/core/NEON/kernels/NEChannelShuffleLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000146 "src/core/NEON/kernels/NECropKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000147 "src/core/NEON/kernels/NEDepthToSpaceLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000148 "src/core/NEON/kernels/NEFFTDigitReverseKernel.cpp",
149 "src/core/NEON/kernels/NEFFTRadixStageKernel.cpp",
150 "src/core/NEON/kernels/NEFFTScaleKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000151 "src/core/NEON/kernels/NEFillBorderKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000152 "src/core/NEON/kernels/NEFuseBatchNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000153 "src/core/NEON/kernels/NEGatherKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000154 "src/core/NEON/kernels/NEGenerateProposalsLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000155 "src/core/NEON/kernels/NEInstanceNormalizationLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000156 "src/core/NEON/kernels/NEL2NormalizeLayerKernel.cpp",
Georgios Pinitas58bce682020-11-13 11:38:58 +0000157 "src/core/NEON/kernels/NELogicalKernel.cpp",
morgolock37722d92020-04-09 14:17:48 +0100158 "src/core/NEON/kernels/NEMaxUnpoolingLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000159 "src/core/NEON/kernels/NEMeanStdDevNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000160 "src/core/NEON/kernels/NEMinMaxLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000161 "src/core/NEON/kernels/NENormalizationLayerKernel.cpp",
162 "src/core/NEON/kernels/NEPadLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000163 "src/core/NEON/kernels/NEPriorBoxLayerKernel.cpp",
Sang-Hoon Park0d008f72020-03-13 14:56:05 +0000164 "src/core/NEON/kernels/NEQLSTMLayerNormalizationKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000165 "src/core/NEON/kernels/NEROIAlignLayerKernel.cpp",
166 "src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp",
167 "src/core/NEON/kernels/NERangeKernel.cpp",
168 "src/core/NEON/kernels/NEReductionOperationKernel.cpp",
Michalis Spyrou473cb012021-02-23 11:48:12 +0000169 "src/core/NEON/kernels/NERemapKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000170 "src/core/NEON/kernels/NEReorgLayerKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000171 "src/core/NEON/kernels/NEReverseKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000172 "src/core/NEON/kernels/NESelectKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000173 "src/core/NEON/kernels/NESpaceToBatchLayerKernel.cpp",
174 "src/core/NEON/kernels/NESpaceToDepthLayerKernel.cpp",
175 "src/core/NEON/kernels/NEStackLayerKernel.cpp",
176 "src/core/NEON/kernels/NEStridedSliceKernel.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000177 "src/core/NEON/kernels/NETileKernel.cpp",
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000178 "src/core/NEON/kernels/arm_conv/depthwise/depthwise_fp16.cpp",
179 "src/core/NEON/kernels/arm_conv/depthwise/depthwise_fp32.cpp",
180 "src/core/NEON/kernels/arm_conv/depthwise/depthwise_s8q.cpp",
181 "src/core/NEON/kernels/arm_conv/depthwise/depthwise_u8q.cpp",
182 "src/core/NEON/kernels/arm_conv/depthwise/depthwise_u8s8u8q.cpp",
183 "src/core/NEON/kernels/arm_conv/depthwise/interleaves/8b_mla.cpp",
Michele Di Giorgiod556d7b2020-10-27 10:56:31 +0000184 "src/core/NEON/kernels/arm_conv/pooling/kernels/cpp_nhwc_1x1_stride_any_depthfirst/generic.cpp",
185 "src/core/NEON/kernels/arm_conv/pooling/pooling_fp16.cpp",
186 "src/core/NEON/kernels/arm_conv/pooling/pooling_fp32.cpp",
187 "src/core/NEON/kernels/arm_conv/pooling/pooling_s8.cpp",
188 "src/core/NEON/kernels/arm_conv/pooling/pooling_s8q.cpp",
189 "src/core/NEON/kernels/arm_conv/pooling/pooling_u8.cpp",
190 "src/core/NEON/kernels/arm_conv/pooling/pooling_u8q.cpp",
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000191 "src/core/NEON/kernels/arm_gemm/gemm_bf16.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000192 "src/core/NEON/kernels/arm_gemm/gemm_fp16.cpp",
193 "src/core/NEON/kernels/arm_gemm/gemm_fp32.cpp",
194 "src/core/NEON/kernels/arm_gemm/gemm_int16.cpp",
195 "src/core/NEON/kernels/arm_gemm/gemm_int8.cpp",
196 "src/core/NEON/kernels/arm_gemm/gemm_qint8.cpp",
197 "src/core/NEON/kernels/arm_gemm/gemm_quint8.cpp",
198 "src/core/NEON/kernels/arm_gemm/gemm_uint16.cpp",
199 "src/core/NEON/kernels/arm_gemm/gemm_uint8.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000200 "src/core/NEON/kernels/arm_gemm/interleave_indirect.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100201 "src/core/NEON/kernels/arm_gemm/mergeresults-fp16.cpp",
Michalis Spyrou20fca522021-06-07 14:23:57 +0100202 "src/core/NEON/kernels/arm_gemm/mergeresults-sve.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000203 "src/core/NEON/kernels/arm_gemm/mergeresults.cpp",
204 "src/core/NEON/kernels/arm_gemm/misc.cpp",
205 "src/core/NEON/kernels/arm_gemm/quantized.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000206 "src/core/NEON/kernels/arm_gemm/rowsum_indirect_s8.cpp",
207 "src/core/NEON/kernels/arm_gemm/rowsum_indirect_u8.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100208 "src/core/NEON/kernels/arm_gemm/transform-sve.cpp",
209 "src/core/NEON/kernels/arm_gemm/transform.cpp",
Sheri Zhang8d5d78b2020-12-15 20:25:31 +0000210 "src/core/NEON/kernels/batchnormalization/impl/NEON/fp16.cpp",
211 "src/core/NEON/kernels/batchnormalization/impl/NEON/fp32.cpp",
212 "src/core/NEON/kernels/batchnormalization/impl/SVE/fp16.cpp",
213 "src/core/NEON/kernels/batchnormalization/impl/SVE/fp32.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000214 "src/core/NEON/kernels/convolution/common/padding.cpp",
215 "src/core/NEON/kernels/convolution/common/qasymm8.cpp",
216 "src/core/NEON/kernels/convolution/common/qsymm8.cpp",
217 "src/core/NEON/kernels/convolution/common/utils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000218 "src/core/NEON/kernels/convolution/winograd/padding.cpp",
219 "src/core/NEON/kernels/convolution/winograd/winograd.cpp",
220 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_1x8_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100221 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_4x4_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000222 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_4x4_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100223 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_6x6_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000224 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/input_6x6_fp32_fp32_integers.cpp",
225 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2_7_fp32_fp32_integers.cpp",
226 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2x2_3x3_fp32_fp32_integers.cpp",
227 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_2x2_5x5_fp32_fp32_integers.cpp",
228 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4_5_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100229 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4x4_3x3_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000230 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_4x4_3x3_fp32_fp32_integers.cpp",
231 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/output_6_3_fp32_fp32_integers.cpp",
232 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2_7_fp32_fp32_integers.cpp",
233 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2x2_3x3_fp32_fp32_integers.cpp",
234 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_2x2_5x5_fp32_fp32_integers.cpp",
235 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4_5_fp32_fp32_integers.cpp",
Georgios Pinitas5ce897f2020-04-29 11:44:10 +0100236 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp16_fp16_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000237 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_4x4_3x3_fp32_fp32_integers.cpp",
238 "src/core/NEON/kernels/convolution/winograd/winograd_transforms/weights_6_3_fp32_fp32_integers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000239 "src/core/Rounding.cpp",
Matthew Bentham758b5ba2020-03-05 23:37:48 +0000240 "src/core/Size2D.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000241 "src/core/SubTensorInfo.cpp",
242 "src/core/TensorInfo.cpp",
243 "src/core/Utils.cpp",
244 "src/core/Validate.cpp",
Georgios Pinitas51545e42020-02-11 15:29:01 +0000245 "src/core/Version.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000246 "src/core/cpu/kernels/CpuActivationKernel.cpp",
Sheri Zhang61243902021-01-12 18:25:16 +0000247 "src/core/cpu/kernels/CpuAddKernel.cpp",
Georgios Pinitas11d84152021-04-28 10:20:18 +0100248 "src/core/cpu/kernels/CpuCastKernel.cpp",
Manuel Bottini24b89202021-07-01 18:13:33 +0100249 "src/core/cpu/kernels/CpuCol2ImKernel.cpp",
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000250 "src/core/cpu/kernels/CpuConcatenateBatchKernel.cpp",
251 "src/core/cpu/kernels/CpuConcatenateDepthKernel.cpp",
252 "src/core/cpu/kernels/CpuConcatenateHeightKernel.cpp",
253 "src/core/cpu/kernels/CpuConcatenateWidthKernel.cpp",
Teresa Charlin562bee52021-04-13 17:44:15 +0100254 "src/core/cpu/kernels/CpuConvertFullyConnectedWeightsKernel.cpp",
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100255 "src/core/cpu/kernels/CpuConvertQuantizedSignednessKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000256 "src/core/cpu/kernels/CpuCopyKernel.cpp",
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100257 "src/core/cpu/kernels/CpuDepthwiseConv2dNativeKernel.cpp",
Georgios Pinitasef516e82021-04-30 14:46:05 +0100258 "src/core/cpu/kernels/CpuDequantizeKernel.cpp",
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100259 "src/core/cpu/kernels/CpuDirectConv2dKernel.cpp",
260 "src/core/cpu/kernels/CpuDirectConv2dOutputStageKernel.cpp",
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000261 "src/core/cpu/kernels/CpuElementwiseKernel.cpp",
Sang-Hoon Park7249f152021-01-22 11:55:03 +0000262 "src/core/cpu/kernels/CpuElementwiseUnaryKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000263 "src/core/cpu/kernels/CpuFillKernel.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000264 "src/core/cpu/kernels/CpuFloorKernel.cpp",
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100265 "src/core/cpu/kernels/CpuGemmInterleave4x4Kernel.cpp",
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100266 "src/core/cpu/kernels/CpuGemmLowpMatrixMultiplyKernel.cpp",
267 "src/core/cpu/kernels/CpuGemmLowpMatrixReductionKernel.cpp",
268 "src/core/cpu/kernels/CpuGemmLowpOffsetContributionKernel.cpp",
269 "src/core/cpu/kernels/CpuGemmLowpOffsetContributionOutputStageKernel.cpp",
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100270 "src/core/cpu/kernels/CpuGemmLowpQuantizeDownInt32ScaleKernel.cpp",
271 "src/core/cpu/kernels/CpuGemmLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel.cpp",
272 "src/core/cpu/kernels/CpuGemmLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel.cpp",
273 "src/core/cpu/kernels/CpuGemmLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.cpp",
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100274 "src/core/cpu/kernels/CpuGemmMatrixAdditionKernel.cpp",
Michele Di Giorgio53832b22021-06-21 14:45:44 +0100275 "src/core/cpu/kernels/CpuGemmMatrixMultiplyKernel.cpp",
Michele Di Giorgio93b75e02021-06-21 12:00:43 +0100276 "src/core/cpu/kernels/CpuGemmTranspose1xWKernel.cpp",
Manuel Bottini90028992021-06-30 18:29:18 +0100277 "src/core/cpu/kernels/CpuIm2ColKernel.cpp",
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +0100278 "src/core/cpu/kernels/CpuMulKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000279 "src/core/cpu/kernels/CpuPermuteKernel.cpp",
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100280 "src/core/cpu/kernels/CpuPool2dKernel.cpp",
Georgios Pinitasef516e82021-04-30 14:46:05 +0100281 "src/core/cpu/kernels/CpuQuantizeKernel.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000282 "src/core/cpu/kernels/CpuReshapeKernel.cpp",
Manuel Bottini10b38262021-02-19 18:16:44 +0000283 "src/core/cpu/kernels/CpuScaleKernel.cpp",
Michalis Spyrou373b4072021-01-20 16:41:12 +0000284 "src/core/cpu/kernels/CpuSoftmaxKernel.cpp",
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000285 "src/core/cpu/kernels/CpuSubKernel.cpp",
Teresa Charlind1dc09c2021-03-04 15:24:45 +0000286 "src/core/cpu/kernels/CpuTransposeKernel.cpp",
Manuel Bottini29599d02021-07-06 15:01:35 +0100287 "src/core/cpu/kernels/CpuWeightsReshapeKernel.cpp",
Michalis Spyrou96f977e2021-07-01 12:20:56 +0100288 "src/core/cpu/kernels/CpuWinogradConv2dKernel.cpp",
Georgios Pinitasc3c352e2021-03-18 10:59:40 +0000289 "src/core/cpu/kernels/activation/neon/fp16.cpp",
290 "src/core/cpu/kernels/activation/neon/fp32.cpp",
291 "src/core/cpu/kernels/activation/neon/qasymm8.cpp",
292 "src/core/cpu/kernels/activation/neon/qasymm8_signed.cpp",
293 "src/core/cpu/kernels/activation/neon/qsymm16.cpp",
294 "src/core/cpu/kernels/activation/sve/fp16.cpp",
295 "src/core/cpu/kernels/activation/sve/fp32.cpp",
296 "src/core/cpu/kernels/activation/sve/qasymm8.cpp",
297 "src/core/cpu/kernels/activation/sve/qasymm8_signed.cpp",
298 "src/core/cpu/kernels/activation/sve/qsymm16.cpp",
Sheri Zhang61243902021-01-12 18:25:16 +0000299 "src/core/cpu/kernels/add/neon/qasymm8.cpp",
300 "src/core/cpu/kernels/add/neon/qasymm8_signed.cpp",
301 "src/core/cpu/kernels/add/neon/qsymm16.cpp",
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100302 "src/core/cpu/kernels/add/sve/impl.cpp",
Sheri Zhang61243902021-01-12 18:25:16 +0000303 "src/core/cpu/kernels/add/sve/qasymm8.cpp",
304 "src/core/cpu/kernels/add/sve/qasymm8_signed.cpp",
305 "src/core/cpu/kernels/add/sve/qsymm16.cpp",
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100306 "src/core/cpu/kernels/elementwise/sve/elementwise.cpp",
307 "src/core/cpu/kernels/elementwise/sve/elementwise_unary.cpp",
308 "src/core/cpu/kernels/floor/neon/fp16.cpp",
309 "src/core/cpu/kernels/floor/neon/fp32.cpp",
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000310 "src/core/cpu/kernels/internal/CpuDepthwiseConv2dAssemblyWrapperKernel.cpp",
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100311 "src/core/cpu/kernels/internal/CpuPool2dAssemblyWrapperKernel.cpp",
Georgios Pinitascd060c42021-06-25 06:00:17 +0100312 "src/core/cpu/kernels/pool2d/neon/fp16.cpp",
313 "src/core/cpu/kernels/pool2d/neon/fp32.cpp",
314 "src/core/cpu/kernels/pool2d/neon/nchw/all.cpp",
315 "src/core/cpu/kernels/pool2d/neon/qasymm8.cpp",
316 "src/core/cpu/kernels/pool2d/neon/qasymm8_signed.cpp",
Manuel Bottini10b38262021-02-19 18:16:44 +0000317 "src/core/cpu/kernels/scale/neon/fp16.cpp",
318 "src/core/cpu/kernels/scale/neon/integer.cpp",
319 "src/core/cpu/kernels/scale/neon/qasymm8.cpp",
320 "src/core/cpu/kernels/scale/neon/qasymm8_signed.cpp",
321 "src/core/cpu/kernels/scale/sve/fp16.cpp",
322 "src/core/cpu/kernels/scale/sve/fp32.cpp",
323 "src/core/cpu/kernels/scale/sve/integer.cpp",
324 "src/core/cpu/kernels/scale/sve/qasymm8.cpp",
325 "src/core/cpu/kernels/scale/sve/qasymm8_signed.cpp",
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100326 "src/core/cpu/kernels/softmax/impl/sve/impl.cpp",
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000327 "src/core/cpu/kernels/sub/neon/qasymm8.cpp",
328 "src/core/cpu/kernels/sub/neon/qasymm8_signed.cpp",
329 "src/core/cpu/kernels/sub/neon/qsymm16.cpp",
Georgios Pinitas908f6162021-05-04 10:11:09 +0100330 "src/core/gpu/cl/ClKernelLibrary.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000331 "src/core/gpu/cl/kernels/ClActivationKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000332 "src/core/gpu/cl/kernels/ClBatchConcatenateKernel.cpp",
Georgios Pinitas11d84152021-04-28 10:20:18 +0100333 "src/core/gpu/cl/kernels/ClCastKernel.cpp",
Manuel Bottini7b237322021-07-14 17:07:23 +0100334 "src/core/gpu/cl/kernels/ClCol2ImKernel.cpp",
Teresa Charlin91b7f742021-04-12 13:57:00 +0100335 "src/core/gpu/cl/kernels/ClConvertFullyConnectedWeightsKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000336 "src/core/gpu/cl/kernels/ClCopyKernel.cpp",
337 "src/core/gpu/cl/kernels/ClCropKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000338 "src/core/gpu/cl/kernels/ClDepthConcatenateKernel.cpp",
Georgios Pinitasef516e82021-04-30 14:46:05 +0100339 "src/core/gpu/cl/kernels/ClDequantizeKernel.cpp",
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100340 "src/core/gpu/cl/kernels/ClDirectConv2dKernel.cpp",
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000341 "src/core/gpu/cl/kernels/ClElementwiseKernel.cpp",
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000342 "src/core/gpu/cl/kernels/ClElementwiseUnaryKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000343 "src/core/gpu/cl/kernels/ClFillKernel.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000344 "src/core/gpu/cl/kernels/ClFloorKernel.cpp",
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100345 "src/core/gpu/cl/kernels/ClGemmLowpMatrixMultiplyNativeKernel.cpp",
346 "src/core/gpu/cl/kernels/ClGemmLowpMatrixMultiplyReshapedKernel.cpp",
347 "src/core/gpu/cl/kernels/ClGemmLowpMatrixMultiplyReshapedOnlyRhsKernel.cpp",
348 "src/core/gpu/cl/kernels/ClGemmLowpOffsetContributionKernel.cpp",
349 "src/core/gpu/cl/kernels/ClGemmLowpOffsetContributionOutputStageKernel.cpp",
350 "src/core/gpu/cl/kernels/ClGemmLowpQuantizeDownInt32ScaleByFixedPointKernel.cpp",
351 "src/core/gpu/cl/kernels/ClGemmLowpQuantizeDownInt32ScaleByFloatKernel.cpp",
352 "src/core/gpu/cl/kernels/ClGemmLowpQuantizeDownInt32ScaleKernel.cpp",
353 "src/core/gpu/cl/kernels/ClGemmLowpReductionKernel.cpp",
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100354 "src/core/gpu/cl/kernels/ClGemmMatrixMultiplyKernel.cpp",
355 "src/core/gpu/cl/kernels/ClGemmMatrixMultiplyNativeKernel.cpp",
356 "src/core/gpu/cl/kernels/ClGemmMatrixMultiplyReshapedKernel.cpp",
357 "src/core/gpu/cl/kernels/ClGemmMatrixMultiplyReshapedOnlyRhsKernel.cpp",
358 "src/core/gpu/cl/kernels/ClGemmReshapeLhsMatrixKernel.cpp",
359 "src/core/gpu/cl/kernels/ClGemmReshapeRhsMatrixKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000360 "src/core/gpu/cl/kernels/ClHeightConcatenateKernel.cpp",
Manuel Bottinid844c082021-07-14 12:58:54 +0100361 "src/core/gpu/cl/kernels/ClIm2ColKernel.cpp",
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +0100362 "src/core/gpu/cl/kernels/ClMulKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000363 "src/core/gpu/cl/kernels/ClPermuteKernel.cpp",
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100364 "src/core/gpu/cl/kernels/ClPool2dKernel.cpp",
Georgios Pinitasef516e82021-04-30 14:46:05 +0100365 "src/core/gpu/cl/kernels/ClQuantizeKernel.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000366 "src/core/gpu/cl/kernels/ClReshapeKernel.cpp",
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000367 "src/core/gpu/cl/kernels/ClScaleKernel.cpp",
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000368 "src/core/gpu/cl/kernels/ClSoftmaxKernel.cpp",
Teresa Charlin27886092021-02-25 20:15:01 +0000369 "src/core/gpu/cl/kernels/ClTransposeKernel.cpp",
Manuel Bottinid87aded2021-07-16 10:23:31 +0100370 "src/core/gpu/cl/kernels/ClWeightsReshapeKernel.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000371 "src/core/gpu/cl/kernels/ClWidthConcatenate2TensorsKernel.cpp",
372 "src/core/gpu/cl/kernels/ClWidthConcatenate4TensorsKernel.cpp",
373 "src/core/gpu/cl/kernels/ClWidthConcatenateKernel.cpp",
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100374 "src/core/gpu/cl/kernels/ClWinogradFilterTransformKernel.cpp",
375 "src/core/gpu/cl/kernels/ClWinogradInputTransformKernel.cpp",
376 "src/core/gpu/cl/kernels/ClWinogradOutputTransformKernel.cpp",
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100377 "src/core/gpu/cl/kernels/gemm/ClGemmHelpers.cpp",
378 "src/core/gpu/cl/kernels/gemm/native/ClGemmDefaultConfigNativeBifrost.cpp",
379 "src/core/gpu/cl/kernels/gemm/native/ClGemmDefaultConfigNativeMidgard.cpp",
380 "src/core/gpu/cl/kernels/gemm/native/ClGemmDefaultConfigNativeValhall.cpp",
381 "src/core/gpu/cl/kernels/gemm/reshaped/ClGemmDefaultConfigReshapedBifrost.cpp",
382 "src/core/gpu/cl/kernels/gemm/reshaped/ClGemmDefaultConfigReshapedValhall.cpp",
383 "src/core/gpu/cl/kernels/gemm/reshaped_only_rhs/ClGemmDefaultConfigReshapedRhsOnlyBifrost.cpp",
384 "src/core/gpu/cl/kernels/gemm/reshaped_only_rhs/ClGemmDefaultConfigReshapedRhsOnlyValhall.cpp",
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100385 "src/core/helpers/SoftmaxHelpers.cpp",
386 "src/core/helpers/WindowHelpers.cpp",
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000387 "src/core/utils/AssemblyUtils.cpp",
Sang-Hoon Park3687ee12020-06-24 13:34:04 +0100388 "src/core/utils/ScaleUtils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000389 "src/core/utils/helpers/fft.cpp",
390 "src/core/utils/helpers/tensor_transform.cpp",
391 "src/core/utils/io/FileHandler.cpp",
392 "src/core/utils/logging/FilePrinter.cpp",
393 "src/core/utils/logging/Helpers.cpp",
394 "src/core/utils/logging/Logger.cpp",
395 "src/core/utils/logging/LoggerRegistry.cpp",
396 "src/core/utils/misc/MMappedFile.cpp",
397 "src/core/utils/quantization/AsymmHelpers.cpp",
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000398 "src/cpu/CpuContext.cpp",
Georgios Pinitasc3c352e2021-03-18 10:59:40 +0000399 "src/cpu/CpuQueue.cpp",
Georgios Pinitas3f26ef42021-02-23 10:01:33 +0000400 "src/cpu/CpuTensor.cpp",
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000401 "src/gpu/cl/ClContext.cpp",
Georgios Pinitasc3c352e2021-03-18 10:59:40 +0000402 "src/gpu/cl/ClQueue.cpp",
Georgios Pinitas3f26ef42021-02-23 10:01:33 +0000403 "src/gpu/cl/ClTensor.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000404 "src/runtime/Allocator.cpp",
405 "src/runtime/BlobLifetimeManager.cpp",
406 "src/runtime/BlobMemoryPool.cpp",
407 "src/runtime/CL/CLBufferAllocator.cpp",
SiCong Li70858d82021-02-05 09:19:51 +0000408 "src/runtime/CL/CLGEMMHeuristicsHandle.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000409 "src/runtime/CL/CLHelpers.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000410 "src/runtime/CL/CLMemory.cpp",
411 "src/runtime/CL/CLMemoryRegion.cpp",
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100412 "src/runtime/CL/CLOperator.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000413 "src/runtime/CL/CLRuntimeContext.cpp",
414 "src/runtime/CL/CLScheduler.cpp",
415 "src/runtime/CL/CLSubTensor.cpp",
416 "src/runtime/CL/CLTensor.cpp",
417 "src/runtime/CL/CLTensorAllocator.cpp",
418 "src/runtime/CL/CLTuner.cpp",
419 "src/runtime/CL/ICLSimpleFunction.cpp",
Inki Daeea2ce172020-04-09 10:01:44 +0900420 "src/runtime/CL/Utils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000421 "src/runtime/CL/functions/CLActivationLayer.cpp",
422 "src/runtime/CL/functions/CLArgMinMaxLayer.cpp",
423 "src/runtime/CL/functions/CLBatchNormalizationLayer.cpp",
424 "src/runtime/CL/functions/CLBatchToSpaceLayer.cpp",
425 "src/runtime/CL/functions/CLBitwiseAnd.cpp",
426 "src/runtime/CL/functions/CLBitwiseNot.cpp",
427 "src/runtime/CL/functions/CLBitwiseOr.cpp",
428 "src/runtime/CL/functions/CLBitwiseXor.cpp",
429 "src/runtime/CL/functions/CLBoundingBoxTransform.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000430 "src/runtime/CL/functions/CLCast.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000431 "src/runtime/CL/functions/CLChannelShuffleLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000432 "src/runtime/CL/functions/CLComparison.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000433 "src/runtime/CL/functions/CLConcatenateLayer.cpp",
434 "src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000435 "src/runtime/CL/functions/CLConvolutionLayer.cpp",
436 "src/runtime/CL/functions/CLCopy.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000437 "src/runtime/CL/functions/CLCrop.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000438 "src/runtime/CL/functions/CLCropResize.cpp",
439 "src/runtime/CL/functions/CLDeconvolutionLayer.cpp",
440 "src/runtime/CL/functions/CLDeconvolutionLayerUpsample.cpp",
441 "src/runtime/CL/functions/CLDepthConvertLayer.cpp",
442 "src/runtime/CL/functions/CLDepthToSpaceLayer.cpp",
443 "src/runtime/CL/functions/CLDepthwiseConvolutionLayer.cpp",
444 "src/runtime/CL/functions/CLDequantizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000445 "src/runtime/CL/functions/CLDirectConvolutionLayer.cpp",
446 "src/runtime/CL/functions/CLDirectDeconvolutionLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000447 "src/runtime/CL/functions/CLElementwiseOperations.cpp",
Jakub Sujakee301b32021-06-04 09:46:08 +0100448 "src/runtime/CL/functions/CLElementwiseUnaryLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000449 "src/runtime/CL/functions/CLFFT1D.cpp",
450 "src/runtime/CL/functions/CLFFT2D.cpp",
451 "src/runtime/CL/functions/CLFFTConvolutionLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000452 "src/runtime/CL/functions/CLFill.cpp",
453 "src/runtime/CL/functions/CLFillBorder.cpp",
454 "src/runtime/CL/functions/CLFlattenLayer.cpp",
455 "src/runtime/CL/functions/CLFloor.cpp",
456 "src/runtime/CL/functions/CLFullyConnectedLayer.cpp",
457 "src/runtime/CL/functions/CLFuseBatchNormalization.cpp",
458 "src/runtime/CL/functions/CLGEMM.cpp",
459 "src/runtime/CL/functions/CLGEMMConvolutionLayer.cpp",
460 "src/runtime/CL/functions/CLGEMMDeconvolutionLayer.cpp",
461 "src/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.cpp",
462 "src/runtime/CL/functions/CLGEMMLowpOutputStage.cpp",
463 "src/runtime/CL/functions/CLGather.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000464 "src/runtime/CL/functions/CLGenerateProposalsLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000465 "src/runtime/CL/functions/CLInstanceNormalizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000466 "src/runtime/CL/functions/CLL2NormalizeLayer.cpp",
467 "src/runtime/CL/functions/CLLSTMLayer.cpp",
468 "src/runtime/CL/functions/CLLSTMLayerQuantized.cpp",
Sang-Hoon Park75eea332020-11-13 13:44:13 +0000469 "src/runtime/CL/functions/CLLogicalAnd.cpp",
470 "src/runtime/CL/functions/CLLogicalNot.cpp",
471 "src/runtime/CL/functions/CLLogicalOr.cpp",
Gian Marco Iodice4d81d752020-07-14 15:05:31 +0100472 "src/runtime/CL/functions/CLMaxUnpoolingLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000473 "src/runtime/CL/functions/CLMeanStdDevNormalizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000474 "src/runtime/CL/functions/CLNormalizationLayer.cpp",
475 "src/runtime/CL/functions/CLNormalizePlanarYUVLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000476 "src/runtime/CL/functions/CLPReluLayer.cpp",
477 "src/runtime/CL/functions/CLPadLayer.cpp",
478 "src/runtime/CL/functions/CLPermute.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000479 "src/runtime/CL/functions/CLPixelWiseMultiplication.cpp",
480 "src/runtime/CL/functions/CLPoolingLayer.cpp",
481 "src/runtime/CL/functions/CLPriorBoxLayer.cpp",
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +0100482 "src/runtime/CL/functions/CLQLSTMLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000483 "src/runtime/CL/functions/CLQuantizationLayer.cpp",
484 "src/runtime/CL/functions/CLRNNLayer.cpp",
485 "src/runtime/CL/functions/CLROIAlignLayer.cpp",
486 "src/runtime/CL/functions/CLROIPoolingLayer.cpp",
487 "src/runtime/CL/functions/CLRange.cpp",
488 "src/runtime/CL/functions/CLReduceMean.cpp",
489 "src/runtime/CL/functions/CLReductionOperation.cpp",
490 "src/runtime/CL/functions/CLRemap.cpp",
491 "src/runtime/CL/functions/CLReorgLayer.cpp",
492 "src/runtime/CL/functions/CLReshapeLayer.cpp",
493 "src/runtime/CL/functions/CLReverse.cpp",
494 "src/runtime/CL/functions/CLScale.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000495 "src/runtime/CL/functions/CLSelect.cpp",
496 "src/runtime/CL/functions/CLSlice.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000497 "src/runtime/CL/functions/CLSoftmaxLayer.cpp",
498 "src/runtime/CL/functions/CLSpaceToBatchLayer.cpp",
499 "src/runtime/CL/functions/CLSpaceToDepthLayer.cpp",
500 "src/runtime/CL/functions/CLSplit.cpp",
501 "src/runtime/CL/functions/CLStackLayer.cpp",
502 "src/runtime/CL/functions/CLStridedSlice.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000503 "src/runtime/CL/functions/CLTile.cpp",
504 "src/runtime/CL/functions/CLTranspose.cpp",
505 "src/runtime/CL/functions/CLUnstack.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000506 "src/runtime/CL/functions/CLWinogradConvolutionLayer.cpp",
SiCong Lia085a0c2020-12-02 14:54:34 +0000507 "src/runtime/CL/gemm/CLGEMMDefaultTypeBifrost.cpp",
508 "src/runtime/CL/gemm/CLGEMMDefaultTypeMidgard.cpp",
509 "src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.cpp",
SiCong Libd8b1e22021-02-04 13:07:09 +0000510 "src/runtime/CL/gemm_auto_heuristics/CLGEMMAutoHeuristics.cpp",
SiCong Li7061eb22021-01-08 15:16:02 +0000511 "src/runtime/CL/mlgo/HeuristicTree.cpp",
512 "src/runtime/CL/mlgo/MLGOHeuristics.cpp",
513 "src/runtime/CL/mlgo/MLGOParser.cpp",
514 "src/runtime/CL/mlgo/Utils.cpp",
Manuel Bottinib56c1752020-11-18 17:56:30 +0000515 "src/runtime/CL/tuners/CLTuningParametersList.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000516 "src/runtime/CPP/CPPScheduler.cpp",
517 "src/runtime/CPP/ICPPSimpleFunction.cpp",
518 "src/runtime/CPP/SingleThreadScheduler.cpp",
519 "src/runtime/CPP/functions/CPPBoxWithNonMaximaSuppressionLimit.cpp",
520 "src/runtime/CPP/functions/CPPDetectionOutputLayer.cpp",
521 "src/runtime/CPP/functions/CPPDetectionPostProcessLayer.cpp",
522 "src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp",
523 "src/runtime/CPP/functions/CPPPermute.cpp",
524 "src/runtime/CPP/functions/CPPTopKV.cpp",
525 "src/runtime/CPP/functions/CPPUpsample.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000526 "src/runtime/IScheduler.cpp",
527 "src/runtime/ISimpleLifetimeManager.cpp",
528 "src/runtime/ITensorAllocator.cpp",
529 "src/runtime/IWeightsManager.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000530 "src/runtime/Memory.cpp",
531 "src/runtime/MemoryManagerOnDemand.cpp",
Michalis Spyroubcd23522020-05-21 15:02:36 +0100532 "src/runtime/NEON/INEOperator.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000533 "src/runtime/NEON/INESimpleFunction.cpp",
534 "src/runtime/NEON/INESimpleFunctionNoBorder.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000535 "src/runtime/NEON/functions/NEActivationLayer.cpp",
536 "src/runtime/NEON/functions/NEArgMinMaxLayer.cpp",
537 "src/runtime/NEON/functions/NEArithmeticAddition.cpp",
538 "src/runtime/NEON/functions/NEArithmeticSubtraction.cpp",
539 "src/runtime/NEON/functions/NEBatchNormalizationLayer.cpp",
540 "src/runtime/NEON/functions/NEBatchToSpaceLayer.cpp",
541 "src/runtime/NEON/functions/NEBitwiseAnd.cpp",
542 "src/runtime/NEON/functions/NEBitwiseNot.cpp",
543 "src/runtime/NEON/functions/NEBitwiseOr.cpp",
544 "src/runtime/NEON/functions/NEBitwiseXor.cpp",
545 "src/runtime/NEON/functions/NEBoundingBoxTransform.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000546 "src/runtime/NEON/functions/NECast.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000547 "src/runtime/NEON/functions/NEChannelShuffleLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000548 "src/runtime/NEON/functions/NEConcatenateLayer.cpp",
549 "src/runtime/NEON/functions/NEConvertFullyConnectedWeights.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000550 "src/runtime/NEON/functions/NEConvolutionLayer.cpp",
551 "src/runtime/NEON/functions/NECopy.cpp",
552 "src/runtime/NEON/functions/NECropResize.cpp",
553 "src/runtime/NEON/functions/NEDeconvolutionLayer.cpp",
554 "src/runtime/NEON/functions/NEDepthConvertLayer.cpp",
555 "src/runtime/NEON/functions/NEDepthToSpaceLayer.cpp",
556 "src/runtime/NEON/functions/NEDepthwiseConvolutionLayer.cpp",
557 "src/runtime/NEON/functions/NEDequantizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000558 "src/runtime/NEON/functions/NEDetectionPostProcessLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000559 "src/runtime/NEON/functions/NEDirectConvolutionLayer.cpp",
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000560 "src/runtime/NEON/functions/NEElementwiseOperations.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000561 "src/runtime/NEON/functions/NEElementwiseUnaryLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000562 "src/runtime/NEON/functions/NEFFT1D.cpp",
563 "src/runtime/NEON/functions/NEFFT2D.cpp",
564 "src/runtime/NEON/functions/NEFFTConvolutionLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000565 "src/runtime/NEON/functions/NEFill.cpp",
566 "src/runtime/NEON/functions/NEFillBorder.cpp",
567 "src/runtime/NEON/functions/NEFlattenLayer.cpp",
568 "src/runtime/NEON/functions/NEFloor.cpp",
569 "src/runtime/NEON/functions/NEFullyConnectedLayer.cpp",
570 "src/runtime/NEON/functions/NEFuseBatchNormalization.cpp",
571 "src/runtime/NEON/functions/NEGEMM.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000572 "src/runtime/NEON/functions/NEGEMMConv2d.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000573 "src/runtime/NEON/functions/NEGEMMConvolutionLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000574 "src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp",
575 "src/runtime/NEON/functions/NEGEMMLowpOutputStage.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000576 "src/runtime/NEON/functions/NEGather.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000577 "src/runtime/NEON/functions/NEGenerateProposalsLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000578 "src/runtime/NEON/functions/NEInstanceNormalizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000579 "src/runtime/NEON/functions/NEL2NormalizeLayer.cpp",
580 "src/runtime/NEON/functions/NELSTMLayer.cpp",
581 "src/runtime/NEON/functions/NELSTMLayerQuantized.cpp",
Georgios Pinitas58bce682020-11-13 11:38:58 +0000582 "src/runtime/NEON/functions/NELogical.cpp",
morgolock37722d92020-04-09 14:17:48 +0100583 "src/runtime/NEON/functions/NEMaxUnpoolingLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000584 "src/runtime/NEON/functions/NEMeanStdDevNormalizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000585 "src/runtime/NEON/functions/NENormalizationLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000586 "src/runtime/NEON/functions/NEPReluLayer.cpp",
587 "src/runtime/NEON/functions/NEPadLayer.cpp",
588 "src/runtime/NEON/functions/NEPermute.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000589 "src/runtime/NEON/functions/NEPixelWiseMultiplication.cpp",
590 "src/runtime/NEON/functions/NEPoolingLayer.cpp",
591 "src/runtime/NEON/functions/NEPriorBoxLayer.cpp",
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000592 "src/runtime/NEON/functions/NEQLSTMLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000593 "src/runtime/NEON/functions/NEQuantizationLayer.cpp",
594 "src/runtime/NEON/functions/NERNNLayer.cpp",
595 "src/runtime/NEON/functions/NEROIAlignLayer.cpp",
596 "src/runtime/NEON/functions/NEROIPoolingLayer.cpp",
597 "src/runtime/NEON/functions/NERange.cpp",
598 "src/runtime/NEON/functions/NEReduceMean.cpp",
599 "src/runtime/NEON/functions/NEReductionOperation.cpp",
Michalis Spyrou473cb012021-02-23 11:48:12 +0000600 "src/runtime/NEON/functions/NERemap.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000601 "src/runtime/NEON/functions/NEReorgLayer.cpp",
602 "src/runtime/NEON/functions/NEReshapeLayer.cpp",
603 "src/runtime/NEON/functions/NEReverse.cpp",
604 "src/runtime/NEON/functions/NEScale.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000605 "src/runtime/NEON/functions/NESelect.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000606 "src/runtime/NEON/functions/NESlice.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000607 "src/runtime/NEON/functions/NESoftmaxLayer.cpp",
608 "src/runtime/NEON/functions/NESpaceToBatchLayer.cpp",
609 "src/runtime/NEON/functions/NESpaceToDepthLayer.cpp",
610 "src/runtime/NEON/functions/NESplit.cpp",
611 "src/runtime/NEON/functions/NEStackLayer.cpp",
612 "src/runtime/NEON/functions/NEStridedSlice.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000613 "src/runtime/NEON/functions/NETile.cpp",
614 "src/runtime/NEON/functions/NETranspose.cpp",
615 "src/runtime/NEON/functions/NEUnstack.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000616 "src/runtime/NEON/functions/NEWinogradConvolutionLayer.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000617 "src/runtime/OMP/OMPScheduler.cpp",
618 "src/runtime/OffsetLifetimeManager.cpp",
619 "src/runtime/OffsetMemoryPool.cpp",
Michalis Spyroubcd23522020-05-21 15:02:36 +0100620 "src/runtime/OperatorTensor.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000621 "src/runtime/PoolManager.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000622 "src/runtime/RuntimeContext.cpp",
623 "src/runtime/Scheduler.cpp",
624 "src/runtime/SchedulerFactory.cpp",
morgolock51112642020-08-20 14:51:39 +0100625 "src/runtime/SchedulerUtils.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000626 "src/runtime/SubTensor.cpp",
627 "src/runtime/Tensor.cpp",
628 "src/runtime/TensorAllocator.cpp",
629 "src/runtime/Utils.cpp",
Georgios Pinitasf8f04422021-01-08 17:25:55 +0000630 "src/runtime/cpu/operators/CpuActivation.cpp",
Sheri Zhang61243902021-01-12 18:25:16 +0000631 "src/runtime/cpu/operators/CpuAdd.cpp",
Georgios Pinitas11d84152021-04-28 10:20:18 +0100632 "src/runtime/cpu/operators/CpuCast.cpp",
Georgios Pinitas61ba0692021-01-10 04:07:39 +0000633 "src/runtime/cpu/operators/CpuConcatenate.cpp",
Michalis Spyroub55f8e82021-07-22 11:23:11 +0100634 "src/runtime/cpu/operators/CpuConv2d.cpp",
Teresa Charlin562bee52021-04-13 17:44:15 +0100635 "src/runtime/cpu/operators/CpuConvertFullyConnectedWeights.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000636 "src/runtime/cpu/operators/CpuCopy.cpp",
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100637 "src/runtime/cpu/operators/CpuDepthwiseConv2d.cpp",
638 "src/runtime/cpu/operators/CpuDepthwiseConv2dAssemblyDispatch.cpp",
Georgios Pinitasef516e82021-04-30 14:46:05 +0100639 "src/runtime/cpu/operators/CpuDequantize.cpp",
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100640 "src/runtime/cpu/operators/CpuDirectConv2d.cpp",
Sang-Hoon Park63001ac2021-01-18 14:20:27 +0000641 "src/runtime/cpu/operators/CpuElementwise.cpp",
Sang-Hoon Park7249f152021-01-22 11:55:03 +0000642 "src/runtime/cpu/operators/CpuElementwiseUnary.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000643 "src/runtime/cpu/operators/CpuFill.cpp",
Georgios Pinitas9e1f0742021-05-17 03:06:08 +0100644 "src/runtime/cpu/operators/CpuFlatten.cpp",
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000645 "src/runtime/cpu/operators/CpuFloor.cpp",
Michele Di Giorgiod9cdf142021-07-02 15:17:08 +0100646 "src/runtime/cpu/operators/CpuFullyConnected.cpp",
Michele Di Giorgio4dfc5532021-06-30 12:05:34 +0100647 "src/runtime/cpu/operators/CpuGemm.cpp",
Manuel Bottini29599d02021-07-06 15:01:35 +0100648 "src/runtime/cpu/operators/CpuGemmConvolution.cpp",
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100649 "src/runtime/cpu/operators/CpuGemmDirectConv2d.cpp",
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100650 "src/runtime/cpu/operators/CpuGemmLowpMatrixMultiplyCore.cpp",
Manuel Bottiniae58bdf2021-06-17 17:18:45 +0100651 "src/runtime/cpu/operators/CpuGemmLowpOutputStage.cpp",
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +0100652 "src/runtime/cpu/operators/CpuMul.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000653 "src/runtime/cpu/operators/CpuPermute.cpp",
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100654 "src/runtime/cpu/operators/CpuPool2d.cpp",
Georgios Pinitasef516e82021-04-30 14:46:05 +0100655 "src/runtime/cpu/operators/CpuQuantize.cpp",
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000656 "src/runtime/cpu/operators/CpuReshape.cpp",
Manuel Bottini10b38262021-02-19 18:16:44 +0000657 "src/runtime/cpu/operators/CpuScale.cpp",
Michalis Spyrou373b4072021-01-20 16:41:12 +0000658 "src/runtime/cpu/operators/CpuSoftmax.cpp",
Sheri Zhangfc6744a2021-01-13 15:54:05 +0000659 "src/runtime/cpu/operators/CpuSub.cpp",
Teresa Charlind1dc09c2021-03-04 15:24:45 +0000660 "src/runtime/cpu/operators/CpuTranspose.cpp",
Michalis Spyrou96f977e2021-07-01 12:20:56 +0100661 "src/runtime/cpu/operators/CpuWinogradConv2d.cpp",
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100662 "src/runtime/cpu/operators/internal/CpuGemmAssemblyDispatch.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000663 "src/runtime/gpu/cl/operators/ClActivation.cpp",
Michele Di Giorgio1e0208a2021-01-22 15:42:59 +0000664 "src/runtime/gpu/cl/operators/ClAdd.cpp",
Georgios Pinitas11d84152021-04-28 10:20:18 +0100665 "src/runtime/gpu/cl/operators/ClCast.cpp",
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000666 "src/runtime/gpu/cl/operators/ClConcatenate.cpp",
Sheri Zhang06d1efd2021-07-28 11:20:04 +0100667 "src/runtime/gpu/cl/operators/ClConv2d.cpp",
Teresa Charlin91b7f742021-04-12 13:57:00 +0100668 "src/runtime/gpu/cl/operators/ClConvertFullyConnectedWeights.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000669 "src/runtime/gpu/cl/operators/ClCopy.cpp",
670 "src/runtime/gpu/cl/operators/ClCrop.cpp",
Georgios Pinitasef516e82021-04-30 14:46:05 +0100671 "src/runtime/gpu/cl/operators/ClDequantize.cpp",
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100672 "src/runtime/gpu/cl/operators/ClDirectConv2d.cpp",
Michele Di Giorgio237be032021-01-25 15:44:02 +0000673 "src/runtime/gpu/cl/operators/ClElementwiseOperations.cpp",
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000674 "src/runtime/gpu/cl/operators/ClElementwiseUnary.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000675 "src/runtime/gpu/cl/operators/ClFill.cpp",
Georgios Pinitas494b97a2021-05-17 02:42:04 +0100676 "src/runtime/gpu/cl/operators/ClFlatten.cpp",
Georgios Pinitasf47f7182021-01-15 09:29:50 +0000677 "src/runtime/gpu/cl/operators/ClFloor.cpp",
Georgios Pinitas529b5a22021-07-27 15:55:30 +0100678 "src/runtime/gpu/cl/operators/ClFullyConnected.cpp",
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100679 "src/runtime/gpu/cl/operators/ClGemm.cpp",
Manuel Bottinid87aded2021-07-16 10:23:31 +0100680 "src/runtime/gpu/cl/operators/ClGemmConvolution.cpp",
Georgios Pinitasf4e84fb2021-07-08 15:36:07 +0100681 "src/runtime/gpu/cl/operators/ClGemmLowpMatrixMultiplyCore.cpp",
Georgios Pinitas399f6232021-06-29 15:31:58 +0100682 "src/runtime/gpu/cl/operators/ClGemmLowpOutputStage.cpp",
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000683 "src/runtime/gpu/cl/operators/ClLogicalNot.cpp",
Georgios Pinitas0dc0d8e2021-04-30 03:18:37 +0100684 "src/runtime/gpu/cl/operators/ClMul.cpp",
Sang-Hoon Park5ff38da2021-03-02 09:41:13 +0000685 "src/runtime/gpu/cl/operators/ClPRelu.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000686 "src/runtime/gpu/cl/operators/ClPermute.cpp",
Manuel Bottinib4bb6a02021-05-24 16:01:32 +0100687 "src/runtime/gpu/cl/operators/ClPool2d.cpp",
Georgios Pinitasef516e82021-04-30 14:46:05 +0100688 "src/runtime/gpu/cl/operators/ClQuantize.cpp",
Sheri Zhang7e20e292021-02-02 11:49:34 +0000689 "src/runtime/gpu/cl/operators/ClReshape.cpp",
Manuel Bottini3b131ab2021-02-19 18:16:44 +0000690 "src/runtime/gpu/cl/operators/ClScale.cpp",
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000691 "src/runtime/gpu/cl/operators/ClSoftmax.cpp",
Michele Di Giorgio4cfab182021-01-25 11:49:03 +0000692 "src/runtime/gpu/cl/operators/ClSub.cpp",
Teresa Charlin27886092021-02-25 20:15:01 +0000693 "src/runtime/gpu/cl/operators/ClTranspose.cpp",
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100694 "src/runtime/gpu/cl/operators/ClWinogradConv2d.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000695 "utils/CommonGraphOptions.cpp",
696 "utils/GraphUtils.cpp",
697 "utils/Utils.cpp",
698
699 ],
700 arch: {
701 arm: {
702 srcs: [
703 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a53.cpp",
704 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/a55r1.cpp",
705 "src/core/NEON/kernels/arm_gemm/kernels/a32_sgemm_8x6/generic.cpp",
706
707 ],
708 },
709 arm64: {
710 srcs: [
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000711 "src/core/NEON/kernels/arm_conv/depthwise/interleaves/a64_s8q_3x3_dot.cpp",
712 "src/core/NEON/kernels/arm_conv/depthwise/interleaves/a64_u8q_3x3_dot.cpp",
713 "src/core/NEON/kernels/arm_conv/depthwise/interleaves/sve_s8q_3x3_dot.cpp",
714 "src/core/NEON/kernels/arm_conv/depthwise/interleaves/sve_u8q_3x3_dot.cpp",
715 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
716 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
717 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
718 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
719 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
720 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
721 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
722 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
723 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
724 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
725 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_nhwc_generic_output9_mla_depthfirst/generic.cpp",
726 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp16_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
727 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
728 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
729 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
730 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
731 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
732 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
733 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
734 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
735 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
736 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
737 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_nhwc_generic_output9_mla_depthfirst/generic.cpp",
738 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_packed_to_nhwc_3x3_s2_with_multiplier_output3x3_mla_depthfirst/generic.cpp",
739 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_packed_to_nhwc_5x5_s1_with_multiplier_output2x4_mla_depthfirst/generic.cpp",
740 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_fp32_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
741 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
742 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
743 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
744 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
745 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_nhwc_generic_output9_mla_depthfirst/generic.cpp",
746 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
747 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
748 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8q_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
749 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_s8qs_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
750 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
751 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
752 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
753 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
754 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_nhwc_generic_output9_mla_depthfirst/generic.cpp",
755 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
756 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
757 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8q_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
758 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
759 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
760 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
761 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_nhwc_generic_output9_mla_depthfirst/generic.cpp",
762 "src/core/NEON/kernels/arm_conv/depthwise/kernels/a64_u8s8u8q_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
763 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
764 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
765 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
766 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
767 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
768 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
769 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
770 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
771 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
772 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp16_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
773 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
774 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_direct.cpp",
775 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
776 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output2x2_mla_depthfirst_strided/generic.cpp",
777 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_direct.cpp",
778 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output3x3_mla_depthfirst/generic_indirect.cpp",
779 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_direct.cpp",
780 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst/generic_indirect.cpp",
781 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_direct.cpp",
782 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_3x3_s2_output2x2_mla_depthfirst/generic_indirect.cpp",
783 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_direct.cpp",
784 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_5x5_s1_output2x2_mla_depthfirst/generic_indirect.cpp",
785 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_nhwc_generic_output9_mla_depthfirst/generic.cpp",
786 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_packed_to_nhwc_3x3_s2_with_multiplier_output3x3_mla_depthfirst/generic.cpp",
787 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_packed_to_nhwc_5x5_s1_with_multiplier_output2x4_mla_depthfirst/generic.cpp",
788 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_fp32_packed_to_nhwc_generic_with_multiplier_output2x8_mla_depthfirst/generic.cpp",
789 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
790 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
791 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
792 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
793 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
794 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
795 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_s8qs_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
796 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_3x3_s1_output2x2_dot_depthfirst/generic.cpp",
797 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
798 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
799 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
800 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_packed_to_nhwc_3x3_s2_with_multiplier_output2x4_dot_depthfirst/generic.cpp",
801 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8q_packed_to_nhwc_5x5_s1_with_multiplier_output4x2_dot_depthfirst/generic.cpp",
802 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8s8u8q_nhwc_3x3_s1_output2x2_mla_depthfirst/generic.cpp",
803 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8s8u8q_nhwc_3x3_s2_output2x2_mla_depthfirst/generic.cpp",
804 "src/core/NEON/kernels/arm_conv/depthwise/kernels/sve_u8s8u8q_nhwc_5x5_s1_output2x2_mla_depthfirst/generic.cpp",
Michele Di Giorgiod556d7b2020-10-27 10:56:31 +0000805 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
806 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_avg_generic_depthfirst/generic.cpp",
807 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
808 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp16_nhwc_max_generic_depthfirst/generic.cpp",
809 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
810 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_avg_generic_depthfirst/generic.cpp",
811 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
812 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_fp32_nhwc_max_generic_depthfirst/generic.cpp",
813 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_avg_generic_depthfirst/generic.cpp",
814 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
815 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8_nhwc_max_generic_depthfirst/generic.cpp",
816 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8q_nhwc_avg_generic_depthfirst/generic.cpp",
817 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_s8q_nhwc_max_generic_depthfirst/generic.cpp",
818 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_avg_generic_depthfirst/generic.cpp",
819 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
820 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8_nhwc_max_generic_depthfirst/generic.cpp",
821 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8q_nhwc_avg_generic_depthfirst/generic.cpp",
822 "src/core/NEON/kernels/arm_conv/pooling/kernels/a64_u8q_nhwc_max_generic_depthfirst/generic.cpp",
823 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
824 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_avg_generic_depthfirst/generic.cpp",
825 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
826 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp16_nhwc_max_generic_depthfirst/generic.cpp",
827 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_avg_3x3_s1_output2x2_depthfirst/generic.cpp",
828 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_avg_generic_depthfirst/generic.cpp",
829 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
830 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_fp32_nhwc_max_generic_depthfirst/generic.cpp",
831 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_avg_generic_depthfirst/generic.cpp",
832 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
833 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8_nhwc_max_generic_depthfirst/generic.cpp",
834 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_avg_generic_depthfirst/generic.cpp",
835 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_max_generic_depthfirst/generic.cpp",
836 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_avg_generic_depthfirst/generic.cpp",
837 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_max_2x2_s1_output2x2_depthfirst/generic.cpp",
838 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8_nhwc_max_generic_depthfirst/generic.cpp",
839 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8q_nhwc_avg_generic_depthfirst/generic.cpp",
840 "src/core/NEON/kernels/arm_conv/pooling/kernels/sve_u8q_nhwc_max_generic_depthfirst/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000841 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s16_8x12/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000842 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_4x4/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000843 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/a55r1.cpp",
844 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/generic.cpp",
845 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_s8_8x12/x1.cpp",
846 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u16_8x12/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000847 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_4x4/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000848 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/a55r1.cpp",
849 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/generic.cpp",
850 "src/core/NEON/kernels/arm_gemm/kernels/a64_gemm_u8_8x12/x1.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000851 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/a55r1.cpp",
852 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/generic.cpp",
853 "src/core/NEON/kernels/arm_gemm/kernels/a64_hgemm_8x24/x1.cpp",
854 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_bf16fp32_dot_6x16/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100855 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_bf16fp32_mmla_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000856 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp16_mla_6x32/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000857 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp16_mla_6x32/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100858 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_4x24/a55.cpp",
859 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_4x24/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000860 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000861 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000862 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_8x4/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000863 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32_mla_8x4/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100864 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32bf16fp32_mmla_4x24/generic.cpp",
865 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_fp32bf16fp32_mmla_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000866 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_dot_4x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000867 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_dot_4x16/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100868 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qa_mmla_4x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000869 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_dot_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000870 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_dot_6x16/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100871 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8qs_mmla_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000872 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000873 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_dot_6x16/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100874 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_s8s32_mmla_6x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000875 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_dot_4x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000876 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_dot_4x16/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100877 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8qa_mmla_4x16/generic.cpp",
Georgios Pinitase28cf392021-01-31 05:18:43 +0000878 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_6x16/a55.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000879 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_dot_6x16/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100880 "src/core/NEON/kernels/arm_gemm/kernels/a64_hybrid_u8u32_mmla_6x16/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000881 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_dot_8x12/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100882 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_dot_8x12/x1.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000883 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_bf16fp32_mmla_8x12/generic.cpp",
884 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_s8s32_mmla_8x12/generic.cpp",
885 "src/core/NEON/kernels/arm_gemm/kernels/a64_interleaved_u8u32_mmla_8x12/generic.cpp",
886 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a53.cpp",
887 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55.cpp",
888 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/a55r1.cpp",
889 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/generic.cpp",
890 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x12/x1.cpp",
Michalis Spyrou778b95c2021-04-20 12:15:52 +0100891 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemm_8x6/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000892 "src/core/NEON/kernels/arm_gemm/kernels/a64_sgemv_pretransposed/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000893 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_6x4/generic.cpp",
894 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_fp32_mla_8x4/generic.cpp",
895 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/a55.cpp",
896 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_6x4/generic.cpp",
897 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/a55.cpp",
898 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_s8s32_dot_8x4/generic.cpp",
899 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/a55.cpp",
900 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_6x4/generic.cpp",
901 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/a55.cpp",
902 "src/core/NEON/kernels/arm_gemm/kernels/a64_smallK_hybrid_u8u32_dot_8x4/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000903 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_bf16fp32_dot_6x4VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100904 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_bf16fp32_mmla_6x4VL/generic.cpp",
905 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp16_mla_6x4VL/a64fx.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000906 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp16_mla_6x4VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100907 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_6x4VL/a64fx.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000908 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_6x4VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100909 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_8x1VL/a64fx.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000910 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32_mla_8x1VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100911 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32bf16fp32_mmla_4x6VL/generic.cpp",
912 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_fp32bf16fp32_mmla_6x4VL/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000913 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qa_dot_4x4VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100914 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qa_mmla_4x4VL/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000915 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qs_dot_6x4VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100916 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8qs_mmla_6x4VL/generic.cpp",
917 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8s32_dot_6x4VL/a64fx.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000918 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8s32_dot_6x4VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100919 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_s8s32_mmla_6x4VL/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000920 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8qa_dot_4x4VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100921 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8qa_mmla_4x4VL/generic.cpp",
922 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8u32_dot_6x4VL/a64fx.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000923 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8u32_dot_6x4VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100924 "src/core/NEON/kernels/arm_gemm/kernels/sve_hybrid_u8u32_mmla_6x4VL/generic.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000925 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_dot_8x3VL/generic.cpp",
926 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_bf16fp32_mmla_8x3VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100927 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp16_mla_8x3VL/a64fx.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000928 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp16_mla_8x3VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100929 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mla_8x3VL/a64fx.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000930 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mla_8x3VL/generic.cpp",
931 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_fp32_mmla_8x3VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100932 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_dot_8x3VL/a64fx.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000933 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_dot_8x3VL/generic.cpp",
934 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_s8s32_mmla_8x3VL/generic.cpp",
Georgios Pinitas4ee8b152021-07-16 16:16:43 +0100935 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_dot_8x3VL/a64fx.cpp",
Georgios Pinitasc0b6f762020-11-02 01:37:17 +0000936 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_dot_8x3VL/generic.cpp",
937 "src/core/NEON/kernels/arm_gemm/kernels/sve_interleaved_u8u32_mmla_8x3VL/generic.cpp",
938 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_fp32_mla_8x1VL/generic.cpp",
939 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_s8s32_dot_8x1VL/generic.cpp",
940 "src/core/NEON/kernels/arm_gemm/kernels/sve_smallK_hybrid_u8u32_dot_8x1VL/generic.cpp",
Georgios Pinitas41984a02019-12-11 12:05:17 +0000941
942 ],
943 },
944 },
945 rtti: true,
946}