blob: 270e7fac9c4438f00f69951d964b3e86600624bf [file] [log] [blame]
Michele Di Giorgio552e11d2020-09-23 15:08:38 +01001//
2// Copyright © 2020 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6/** @file Android.bp
7 * @brief Generation script for building AndroidNN driver.
8 */
9
10/** @dir arm_compute
11 * @brief All the arm_compute headers.
12 */
13
14/** @dir arm_compute/core
15 * @brief Core module: common basic types and kernels.
16 */
17
18/** @dir arm_compute/core/CL
19 * @brief OpenCL backend core: kernels and utilities.
20 */
21
22/** @file arm_compute/core/CL/CLKernelLibrary.h
23 * @brief Manages all the OpenCL kernels compilation and caching, provides accessors for the OpenCL Context.
24 */
25
26/** @file arm_compute/core/CL/CLKernels.h
27 * @brief Includes all the OpenCL kernels at once
28 */
29
30/** @file arm_compute/core/CL/OpenCL.h
31 * @brief Wrapper to configure the Khronos OpenCL C++ header
32 */
33
34/** @dir arm_compute/core/CL/gemm
35 * @brief Folder containing all the configuration files for GEMM
36 */
37
38/** @dir arm_compute/core/CL/kernels
39 * @brief Folder containing all the OpenCL kernels
40 */
41
42/** @dir arm_compute/core/CPP
43 * @brief CPP backend core: kernels and utilities.
44 */
45
46/** @file arm_compute/core/CPP/CPPKernels.h
47 * @brief Includes all the CPP kernels at once
48 */
49
50/** @dir arm_compute/core/CPP/kernels
51 * @brief Folder containing all the CPP kernels
52 */
53
54/** @dir arm_compute/core/experimental
55 * @brief All experimental interfaces
56 */
57
58/** @dir arm_compute/core/GLES_COMPUTE
59 * @brief OpenGLES backend core: kernels and utilities.
60 */
61
62/** @file arm_compute/core/GLES_COMPUTE/GCKernelLibrary.h
63 * @brief Manages all the GLES kernels compilation and caching, provides accessors for the GLES Context.
64 */
65
66/** @file arm_compute/core/GLES_COMPUTE/GCKernels.h
67 * @brief Includes all the GLES kernels at once
68 */
69
70/** @file arm_compute/core/GLES_COMPUTE/OpenGLES.h
71 * @brief Wrapper to configure the Khronos EGL and OpenGL ES C header
72 */
73
74/** @dir arm_compute/core/GLES_COMPUTE/kernels
75 * @brief Folder containing all the GLES kernels
76 */
77
78/** @dir arm_compute/core/NEON
79 * @brief NEON backend core: kernels and utilities.
80 */
81
82/** @file arm_compute/core/NEON/NEKernels.h
83 * @brief Includes all the NEON kernels at once
84 */
85
86/** @dir arm_compute/core/NEON/kernels
87 * @brief Folder containing all the NEON kernels
88 */
89
Michele Di Giorgio552e11d2020-09-23 15:08:38 +010090/** @dir arm_compute/core/utils
91 * @brief Common core utilities.
92 */
93
94/** @dir arm_compute/graph
95 * @brief Graph API.
96 */
97
98/** @dir arm_compute/graph/algorithms
99 * @brief Generic algorithms used by the graph backend (e.g Order of traversal)
100 */
101
102/** @dir arm_compute/graph/backends
103 * @brief The backend specific code
104 */
105
106/** @dir arm_compute/graph/backends/CL
107 * @brief OpenCL specific operations
108 */
109
110/** @dir arm_compute/graph/backends/GLES
111 * @brief OpenGLES specific operations
112 */
113
114/** @dir arm_compute/graph/backends/NEON
115 * @brief NEON specific operations
116 */
117
118/** @dir arm_compute/graph/detail
119 * @brief Collection of internal utilities.
120 */
121
122/** @dir arm_compute/graph/frontend
123 * @brief Code related to the stream frontend interface.
124 */
125
126/** @dir arm_compute/graph/mutators
127 * @brief Used to modify / optimise the Graph intermediate representation(Operator fusion, in place operations, etc.)
128 */
129
130/** @dir arm_compute/graph/nodes
131 * @brief The various nodes supported by the graph API.
132 */
133
134/** @dir arm_compute/graph/printers
135 * @brief Debug printers.
136 */
137
138/** @file arm_compute/graph.h
139 * @brief Includes all the Graph headers at once.
140 */
141
142/** @dir arm_compute/runtime
143 * @brief Runtime interface: memory, scheduler, functions.
144 */
145
146/** @dir arm_compute/runtime/CL
147 * @brief OpenCL backend runtime interface.
148 */
149
150/** @file arm_compute/runtime/CL/CLFunctions.h
151 * @brief Includes all the OpenCL functions at once
152 */
153
154/** @file arm_compute/runtime/CL/CLScheduler.h
155 * @brief Interface to enqueue OpenCL kernels and get/set the OpenCL CommandQueue and ICLTuner.
156 */
157
158/** @file arm_compute/runtime/CL/ICLTuner.h
159 * @brief Interface used to tune the local work-group size of OpenCL kernels.
160 */
161
162/** @dir arm_compute/runtime/CL/functions
163 * @brief Folder containing all the OpenCL functions.
164 */
165
166/** @dir arm_compute/runtime/CL/tuners
167 * @brief Local workgroup size tuners for specific architectures / GPUs.
168 */
169
170/** @dir arm_compute/runtime/CPP
171 * @brief CPP backend runtime interface.
172 */
173
174/** @file arm_compute/runtime/CPP/CPPScheduler.h
175 * @brief Basic pool of threads to execute CPP/NEON code on several cores in parallel.
176 */
177
178/** @dir arm_compute/runtime/CPP/functions
179 * @brief Folder containing all the CPP functions.
180 */
181
182/** @dir arm_compute/runtime/experimental
183 * @brief Experimental runtime interface.
184 */
185
186/** @dir arm_compute/runtime/GLES_COMPUTE
187 * @brief OpenGLES backend runtime interface.
188 */
189
190/** @file arm_compute/runtime/GLES_COMPUTE/GCFunctions.h
191 * @brief Includes all the OpenGLES functions at once
192 */
193
194/** @file arm_compute/runtime/GLES_COMPUTE/GCScheduler.h
195 * @brief Interface to enqueue GLES kernels and get/set the GLES CommandQueue.
196 */
197
198/** @dir arm_compute/runtime/GLES_COMPUTE/functions
199 * @brief Folder containing all the GLES functions.
200 */
201
202/** @dir arm_compute/runtime/NEON
203 * @brief NEON backend runtime interface.
204 */
205
206/** @file arm_compute/runtime/NEON/NEFunctions.h
207 * @brief Includes all the NEON functions at once.
208 */
209
210/** @dir arm_compute/runtime/NEON/functions
211 * @brief Folder containing all the NEON functions.
212 */
213
214/** @dir arm_compute/runtime/OMP
215 * @brief OpenMP backend runtime interface.
216 */
217
218/** @file arm_compute/runtime/OMP/OMPScheduler.h
219 * @brief OpenMP scheduler (Alternative to the CPPScheduler).
220 */
221
222/** @dir arm_compute/runtime/common
223 * @brief Common utility code used by all backends.
224 */
225
226/** @dir docs
227 * @brief Doxyfile and Doxygen sources used to generate this documentation.
228 */
229
230/** @dir ./examples
231 * @brief Set of examples using the Compute Library
232 *
233 * @details Examples have the following structure:
234 *
235 * -# cl_*.cpp --> OpenCL examples
236 * -# gc_*.cpp --> GLES compute shaders examples
237 * -# graph_*.cpp --> Graph examples
238 * -# neoncl_*.cpp --> NEON / OpenCL interoperability examples
239 * -# neon_*.cpp --> NEON examples
240 */
241
242/** @dir examples/gemm_tuner
243 * @brief OpenCL GEMM tuner utility.
244 */
245
246/** @dir scripts
247 * @brief Utility scripts.
248 */
249
250/** @file scripts/caffe_data_extractor.py
251 * @brief Basic script to export weights from Caffe to npy files.
252 */
253
254/** @file scripts/tensorflow_data_extractor.py
255 * @brief Basic script to export weights from TensorFlow to npy files.
256 */
257
258/** @dir src
259 * @brief Source code implementing all the arm_compute headers.
260 */
261
Georgios Pinitasddb93bb2020-10-02 16:38:59 +0100262/** @dir src/core/NEON/kernels/detail
263 * @brief Common code for several intrinsics implementations.
264 */
265
266/** @dir src/core/NEON/wrapper
267 * @brief NEON wrapper used to simplify code
268 */
269
270/** @file src/core/NEON/wrapper/traits.h
271 * @brief Traits defined on NEON vectors
272 */
273
274/** @file src/core/NEON/wrapper/wrapper.h
275 * @brief Includes all wrapper headers at once
276 */
277
278/** @dir src/core/NEON/wrapper/intrinsics
279 * @brief NEON intrinsics wrappers
280 */
281
282/** @dir src/core/NEON/wrapper/scalar
283 * @brief Scalar operations
284 */
285
Michele Di Giorgio552e11d2020-09-23 15:08:38 +0100286/** @dir src/core/CL/cl_kernels
287 * @brief All the OpenCL kernels
288 */
289
290/** @dir support
291 * @brief Various headers to work around toolchains / platform issues.
292 */
293
294/** @dir tests
295 * @brief All test related files shared between validation and benchmark.
296 */
297
298/** @dir tests/CL
299 * @brief OpenCL accessors.
300 */
301
302/** @dir tests/GLES_COMPUTE
303 * @brief GLES accessors.
304 */
305
306/** @dir tests/NEON
307 * @brief NEON accessors.
308 */
309
310/** @dir tests/benchmark
311 * @brief Sources for benchmarking.
312 */
313
314/** @dir tests/benchmark/CL
315 * @brief OpenCL benchmarking tests.
316 */
317
318/** @dir tests/benchmark/GLES_COMPUTE
319 * @brief GLES benchmarking tests.
320 */
321
322/** @dir tests/benchmark/NEON
323 * @brief NEON benchmarking tests.
324 */
325
326/** @dir tests/benchmark_examples
327 * @brief Sources needed to wrap examples to run through our benchmarking framework.
328 */
329
330/** @dir tests/framework
331 * @brief Boiler plate code for both validation and benchmark test suites (Command line parsers, instruments, output loggers, etc.)
332 */
333
334/** @dir tests/instruments
335 * @brief User defined instruments that can be registered to the framework.
336 */
337
338/** @dir tests/validate_examples
339 * @brief Sources needed to wrap examples to run through our validation framework.
340 */
341
342/** @dir tests/validation
343 * @brief Source for validation.
344 */
345
346/** @dir tests/validation/CL
347 * @brief OpenCL validation tests.
348 */
349
350/** @dir tests/validation/CPP
351 * @brief C++ validation tests.
352 */
353
354/** @dir tests/validation/GLES_COMPUTE
355 * @brief GLES validation tests.
356 */
357
358/** @dir tests/validation/NEON
359 * @brief NEON validation tests.
360 */
361
362/** @dir tests/validation/reference
363 * @brief Reference implementation used to validate the results of the various backends.
364 */