blob: 52f1a806f637438e4d81e294952e73f65798784e [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
Michele Di Giorgio552e11d2020-09-23 15:08:38 +010034/** @dir arm_compute/core/CL/kernels
35 * @brief Folder containing all the OpenCL kernels
36 */
37
38/** @dir arm_compute/core/CPP
39 * @brief CPP backend core: kernels and utilities.
40 */
41
42/** @file arm_compute/core/CPP/CPPKernels.h
43 * @brief Includes all the CPP kernels at once
44 */
45
46/** @dir arm_compute/core/CPP/kernels
47 * @brief Folder containing all the CPP kernels
48 */
49
50/** @dir arm_compute/core/experimental
51 * @brief All experimental interfaces
52 */
53
54/** @dir arm_compute/core/GLES_COMPUTE
55 * @brief OpenGLES backend core: kernels and utilities.
56 */
57
58/** @file arm_compute/core/GLES_COMPUTE/GCKernelLibrary.h
59 * @brief Manages all the GLES kernels compilation and caching, provides accessors for the GLES Context.
60 */
61
62/** @file arm_compute/core/GLES_COMPUTE/GCKernels.h
63 * @brief Includes all the GLES kernels at once
64 */
65
66/** @file arm_compute/core/GLES_COMPUTE/OpenGLES.h
67 * @brief Wrapper to configure the Khronos EGL and OpenGL ES C header
68 */
69
70/** @dir arm_compute/core/GLES_COMPUTE/kernels
71 * @brief Folder containing all the GLES kernels
72 */
73
74/** @dir arm_compute/core/NEON
75 * @brief NEON backend core: kernels and utilities.
76 */
77
78/** @file arm_compute/core/NEON/NEKernels.h
79 * @brief Includes all the NEON kernels at once
80 */
81
82/** @dir arm_compute/core/NEON/kernels
83 * @brief Folder containing all the NEON kernels
84 */
85
Michele Di Giorgio552e11d2020-09-23 15:08:38 +010086/** @dir arm_compute/core/utils
87 * @brief Common core utilities.
88 */
89
90/** @dir arm_compute/graph
91 * @brief Graph API.
92 */
93
94/** @dir arm_compute/graph/algorithms
95 * @brief Generic algorithms used by the graph backend (e.g Order of traversal)
96 */
97
98/** @dir arm_compute/graph/backends
99 * @brief The backend specific code
100 */
101
102/** @dir arm_compute/graph/backends/CL
103 * @brief OpenCL specific operations
104 */
105
106/** @dir arm_compute/graph/backends/GLES
107 * @brief OpenGLES specific operations
108 */
109
110/** @dir arm_compute/graph/backends/NEON
111 * @brief NEON specific operations
112 */
113
114/** @dir arm_compute/graph/detail
115 * @brief Collection of internal utilities.
116 */
117
118/** @dir arm_compute/graph/frontend
119 * @brief Code related to the stream frontend interface.
120 */
121
122/** @dir arm_compute/graph/mutators
123 * @brief Used to modify / optimise the Graph intermediate representation(Operator fusion, in place operations, etc.)
124 */
125
126/** @dir arm_compute/graph/nodes
127 * @brief The various nodes supported by the graph API.
128 */
129
130/** @dir arm_compute/graph/printers
131 * @brief Debug printers.
132 */
133
134/** @file arm_compute/graph.h
135 * @brief Includes all the Graph headers at once.
136 */
137
138/** @dir arm_compute/runtime
139 * @brief Runtime interface: memory, scheduler, functions.
140 */
141
142/** @dir arm_compute/runtime/CL
143 * @brief OpenCL backend runtime interface.
144 */
145
146/** @file arm_compute/runtime/CL/CLFunctions.h
147 * @brief Includes all the OpenCL functions at once
148 */
149
150/** @file arm_compute/runtime/CL/CLScheduler.h
151 * @brief Interface to enqueue OpenCL kernels and get/set the OpenCL CommandQueue and ICLTuner.
152 */
153
154/** @file arm_compute/runtime/CL/ICLTuner.h
155 * @brief Interface used to tune the local work-group size of OpenCL kernels.
156 */
157
158/** @dir arm_compute/runtime/CL/functions
159 * @brief Folder containing all the OpenCL functions.
160 */
161
162/** @dir arm_compute/runtime/CL/tuners
163 * @brief Local workgroup size tuners for specific architectures / GPUs.
164 */
165
166/** @dir arm_compute/runtime/CPP
167 * @brief CPP backend runtime interface.
168 */
169
170/** @file arm_compute/runtime/CPP/CPPScheduler.h
171 * @brief Basic pool of threads to execute CPP/NEON code on several cores in parallel.
172 */
173
174/** @dir arm_compute/runtime/CPP/functions
175 * @brief Folder containing all the CPP functions.
176 */
177
178/** @dir arm_compute/runtime/experimental
179 * @brief Experimental runtime interface.
180 */
181
182/** @dir arm_compute/runtime/GLES_COMPUTE
183 * @brief OpenGLES backend runtime interface.
184 */
185
186/** @file arm_compute/runtime/GLES_COMPUTE/GCFunctions.h
187 * @brief Includes all the OpenGLES functions at once
188 */
189
190/** @file arm_compute/runtime/GLES_COMPUTE/GCScheduler.h
191 * @brief Interface to enqueue GLES kernels and get/set the GLES CommandQueue.
192 */
193
194/** @dir arm_compute/runtime/GLES_COMPUTE/functions
195 * @brief Folder containing all the GLES functions.
196 */
197
198/** @dir arm_compute/runtime/NEON
199 * @brief NEON backend runtime interface.
200 */
201
202/** @file arm_compute/runtime/NEON/NEFunctions.h
203 * @brief Includes all the NEON functions at once.
204 */
205
206/** @dir arm_compute/runtime/NEON/functions
207 * @brief Folder containing all the NEON functions.
208 */
209
210/** @dir arm_compute/runtime/OMP
211 * @brief OpenMP backend runtime interface.
212 */
213
214/** @file arm_compute/runtime/OMP/OMPScheduler.h
215 * @brief OpenMP scheduler (Alternative to the CPPScheduler).
216 */
217
218/** @dir arm_compute/runtime/common
219 * @brief Common utility code used by all backends.
220 */
221
222/** @dir docs
223 * @brief Doxyfile and Doxygen sources used to generate this documentation.
224 */
225
226/** @dir ./examples
227 * @brief Set of examples using the Compute Library
228 *
229 * @details Examples have the following structure:
230 *
231 * -# cl_*.cpp --> OpenCL examples
232 * -# gc_*.cpp --> GLES compute shaders examples
233 * -# graph_*.cpp --> Graph examples
234 * -# neoncl_*.cpp --> NEON / OpenCL interoperability examples
235 * -# neon_*.cpp --> NEON examples
236 */
237
238/** @dir examples/gemm_tuner
239 * @brief OpenCL GEMM tuner utility.
240 */
241
242/** @dir scripts
243 * @brief Utility scripts.
244 */
245
246/** @file scripts/caffe_data_extractor.py
247 * @brief Basic script to export weights from Caffe to npy files.
248 */
249
250/** @file scripts/tensorflow_data_extractor.py
251 * @brief Basic script to export weights from TensorFlow to npy files.
252 */
253
254/** @dir src
255 * @brief Source code implementing all the arm_compute headers.
256 */
257
Georgios Pinitasddb93bb2020-10-02 16:38:59 +0100258/** @dir src/core/NEON/kernels/detail
259 * @brief Common code for several intrinsics implementations.
260 */
261
262/** @dir src/core/NEON/wrapper
263 * @brief NEON wrapper used to simplify code
264 */
265
266/** @file src/core/NEON/wrapper/traits.h
267 * @brief Traits defined on NEON vectors
268 */
269
270/** @file src/core/NEON/wrapper/wrapper.h
271 * @brief Includes all wrapper headers at once
272 */
273
274/** @dir src/core/NEON/wrapper/intrinsics
275 * @brief NEON intrinsics wrappers
276 */
277
278/** @dir src/core/NEON/wrapper/scalar
279 * @brief Scalar operations
280 */
281
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100282/** @dir src/core/CL/gemm
283 * @brief Folder containing all the configuration files for GEMM
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 */