aboutsummaryrefslogtreecommitdiff
path: root/docs/02_tests.dox
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2020-03-17 11:41:00 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2020-03-17 16:11:51 +0000
commitfd7780d910f3bc4c85bc95b57ea3dd4375d95d41 (patch)
treeeeef46f4d3348bc99a3f2aa6d942c82224acd604 /docs/02_tests.dox
parenta0352d3fd3f0fd5256efe98bf934228374bcf48d (diff)
downloadComputeLibrary-fd7780d910f3bc4c85bc95b57ea3dd4375d95d41.tar.gz
COMPMID-3227: Review documentation
- Rework directory layout in introduction and tests - Remove notes around CL/OpenGLES stubs as we now use dlopen Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Change-Id: Iab824719af3f3b20449ddc0348c40066b63d4bc2 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2891 Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'docs/02_tests.dox')
-rw-r--r--docs/02_tests.dox12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/02_tests.dox b/docs/02_tests.dox
index 02c3c8e504..b636880524 100644
--- a/docs/02_tests.dox
+++ b/docs/02_tests.dox
@@ -1,5 +1,5 @@
///
-/// Copyright (c) 2017-2019 ARM Limited.
+/// Copyright (c) 2017-2020 ARM Limited.
///
/// SPDX-License-Identifier: MIT
///
@@ -50,20 +50,20 @@ information is needed within the test (e.g. to validate the results).
.
`-- tests <- Top level test directory. All files in here are shared among validation and benchmark.
|-- framework <- Underlying test framework.
- |-- CL \
+ |-- CL \
+ |-- GLES_COMPUTE \
|-- NEON -> Backend specific files with helper functions etc.
|-- benchmark <- Top level directory for the benchmarking files.
| |-- fixtures <- Fixtures for benchmark tests.
| |-- CL <- OpenCL backend test cases on a function level.
- | | `-- SYSTEM <- OpenCL system tests, e.g. whole networks
+ | |-- GLES_COMPUTE <- Same of OpenGL ES
| `-- NEON <- Same for NEON
- | `-- SYSTEM
|-- datasets <- Datasets for benchmark and validation tests.
|-- main.cpp <- Main entry point for the tests. Currently shared between validation and benchmarking.
- |-- networks <- Network classes for system level tests.
`-- validation -> Top level directory for validation files.
|-- CPP -> C++ reference code
- |-- CL \
+ |-- CL \
+ |-- GLES_COMPUTE \
|-- NEON -> Backend specific test cases
`-- fixtures -> Fixtures shared among all backends. Used to setup target function and tensors.