blob: 9f8bb54dec8a00aebe30fef445f10e796c8b1894 [file] [log] [blame]
Michalis Spyroua8caa022022-05-18 17:43:39 +01001#!/usr/bin/python
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00002# -*- coding: utf-8 -*-
3
Quoc Khanh Leea6c6d42024-05-17 14:39:49 +01004# Copyright (c) 2017-2023, 2024 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01005#
6# SPDX-License-Identifier: MIT
7#
8# Permission is hereby granted, free of charge, to any person obtaining a copy
9# of this software and associated documentation files (the "Software"), to
10# deal in the Software without restriction, including without limitation the
11# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
12# sell copies of the Software, and to permit persons to whom the Software is
13# furnished to do so, subject to the following conditions:
14#
15# The above copyright notice and this permission notice shall be included in all
16# copies or substantial portions of the Software.
17#
18# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24# SOFTWARE.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010025import os.path
Quoc Khanh Leea6c6d42024-05-17 14:39:49 +010026import SCons
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027
28Import('env')
29Import('vars')
Anthony Barbier01bbd5f2018-11-01 15:10:51 +000030Import('install_bin')
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031
32# vars is imported from arm_compute:
33variables = [
Michele Di Giorgiof9a611a2021-03-12 11:22:55 +000034 BoolVariable("benchmark_examples", "Build benchmark examples programs", False),
35 BoolVariable("validate_examples", "Build validate examples programs", False),
Michalis Spyroud1d77222020-04-08 14:10:15 +010036 BoolVariable("reference_openmp", "Build reference validation with openmp", True),
Michele Di Giorgiof9a611a2021-03-12 11:22:55 +000037 BoolVariable("validation_tests", "Build validation test programs", False),
38 BoolVariable("benchmark_tests", "Build benchmark test programs", False),
Pablo Telloea1c9502017-11-09 11:49:18 +000039 ("test_filter", "Pattern to specify the tests' filenames to be compiled", "*.cpp")
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040]
41
42# We need a separate set of Variables for the Help message (Otherwise the global variables will get displayed twice)
43new_options = Variables('scons')
44
45for v in variables:
46 new_options.Add(v)
47 vars.Add(v)
48
49# Clone the environment to make sure we're not polluting the arm_compute one:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010050test_env = env.Clone()
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010051vars.Update(test_env)
52
53Help(new_options.GenerateHelpText(test_env))
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010054
Georgios Pinitas6a342642020-01-28 15:54:20 +000055# Check if we need to build the test framework
56build_test_framework = False
57for opt in new_options.keys():
58 option_value = test_env[opt]
59 if type(option_value) is bool and option_value:
60 build_test_framework = True
61 break
62
63if not build_test_framework:
64 Return()
65else:
66 SConscript('./framework/SConscript', duplicate=0)
67
Anthony Barbier6db0ff52018-01-05 10:59:12 +000068Import("arm_compute_test_framework")
69test_env.Append(LIBS = arm_compute_test_framework)
70
Georgios Pinitas6a342642020-01-28 15:54:20 +000071# Disable floating-point expression contraction (e.g. fused multiply-add operations)
Pablo Tello29cab362022-03-10 17:05:34 +000072if not 'windows' in env['os']:
73 test_env.Append(CXXFLAGS = ['-ffp-contract=off'])
Georgios Pinitas6a342642020-01-28 15:54:20 +000074
Georgios Pinitasf8d8f3a2018-06-06 17:57:04 +010075# Remove -Wnoexcept from tests
76if 'g++' in test_env['CXX'] and '-Wnoexcept' in test_env['CXXFLAGS']:
77 test_env['CXXFLAGS'].remove("-Wnoexcept")
78
Georgios Pinitas45514032020-12-30 00:03:09 +000079load_whole_archive = '-Wl,--whole-archive'
80noload_whole_archive = '-Wl,--no-whole-archive'
81if 'macos' in test_env['os']:
82 load_whole_archive = '-Wl,-force_load'
Jakub Sujakebce2802023-09-29 11:11:59 +010083 noload_whole_archive = ''
Georgios Pinitas45514032020-12-30 00:03:09 +000084
Renato Arantes36a75da2024-01-26 17:31:18 +000085if (env['multi_isa']):
86 test_env.Append(CPPDEFINES=['ARM_COMPUTE_ENABLE_BF16'])
87
Georgios Pinitas45514032020-12-30 00:03:09 +000088if env['os'] in ['android', 'macos', 'bare_metal'] or env['standalone']:
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010089 Import("arm_compute_a")
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010090 Import("arm_compute_graph_a")
Jakub Sujake30c8742023-11-13 14:57:16 +000091 test_env.Append(LIBS = [arm_compute_graph_a, arm_compute_a])
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010092 arm_compute_lib = arm_compute_graph_a
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010093else:
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010094 Import("arm_compute_graph_so")
Jakub Sujake30c8742023-11-13 14:57:16 +000095 test_env.Append(LIBS = ["arm_compute_graph", "arm_compute"])
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010096 arm_compute_lib = arm_compute_graph_so
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010097
Michalis Spyrou748a7c82019-10-07 13:00:44 +010098if env['os'] in ['bare_metal']:
99 Import("bootcode_o")
100
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000101if env['external_tests_dir']:
102 test_env.Append(CPPPATH = [env['external_tests_dir'] + "/include"])
103 test_env.Append(LIBPATH = [env['external_tests_dir'] + "/%s/%s" % (env['os'], env['arch'])])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100104
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100105common_files = Glob('*.cpp')
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100106common_objects = [test_env.StaticObject(f) for f in common_files]
107
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100108files_benchmark = Glob('benchmark/*.cpp')
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000109if env['external_tests_dir']:
110 files_benchmark += Glob(env['external_tests_dir'] + '/tests/benchmark/*.cpp')
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100111
Abe Mbise925ca0f2017-10-02 19:16:33 +0100112# Add unit tests
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000113files_validation = Glob('validation/UNIT/*/*.cpp')
Abe Mbise925ca0f2017-10-02 19:16:33 +0100114files_validation += Glob('validation/UNIT/*.cpp')
115
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000116# Add CPP tests
117filter_pattern = test_env['test_filter']
118files_validation += Glob('validation/CPP/' + filter_pattern)
119
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100120if env['opencl']:
Giorgio Arena892b70a2022-03-30 12:23:10 +0100121 if env['experimental_dynamic_fusion']:
SiCong Lif44bbc52022-08-29 18:25:51 +0100122 files_validation += Glob('validation/dynamic_fusion/gpu/' + filter_pattern)
Ramy Elgammal73f19af2022-10-23 11:44:49 +0100123 files_validation += Glob('validation/dynamic_fusion/gpu/cl/' + filter_pattern)
Giorgio Arena232c4522022-03-03 10:09:01 +0000124
Pablo Telloea1c9502017-11-09 11:49:18 +0000125 filter_pattern = test_env['test_filter']
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100126
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100127 test_env.Append(CPPDEFINES=['ARM_COMPUTE_CL'])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100128
Pablo Telloea1c9502017-11-09 11:49:18 +0000129 files_benchmark += Glob('benchmark/CL/*/' + filter_pattern)
130 files_benchmark += Glob('benchmark/CL/' + filter_pattern)
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000131 if env['external_tests_dir']:
132 files_benchmark += Glob(env['external_tests_dir'] + '/tests/benchmark/CL/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100133
Pablo Telloea1c9502017-11-09 11:49:18 +0000134 files_validation += Glob('validation/CL/*/' + filter_pattern)
135 files_validation += Glob('validation/CL/' + filter_pattern)
Giorgio Arena892b70a2022-03-30 12:23:10 +0100136
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000137 if env['external_tests_dir']:
138 files_validation += Glob(env['external_tests_dir'] + '/tests/validation/CL/' + filter_pattern)
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000139 files_validation += Glob('validation/gpu/unit/*.cpp')
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100140
141if env['neon']:
Pablo Telloea1c9502017-11-09 11:49:18 +0000142 filter_pattern = test_env['test_filter']
143 files_benchmark += Glob('benchmark/NEON/*/' + filter_pattern)
144 files_benchmark += Glob('benchmark/NEON/' + filter_pattern)
Georgios Pinitas7891a732021-08-20 21:39:25 +0100145 test_env.Append(CPPPATH = ["#/src/cpu/kernels/assembly/"])
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000146 if env['external_tests_dir']:
147 files_benchmark += Glob(env['external_tests_dir'] + '/tests/benchmark/NEON/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100148
Pablo Telloea1c9502017-11-09 11:49:18 +0000149 files_validation += Glob('validation/NEON/' + filter_pattern)
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100150 if env['os'] == 'bare_metal':
151 files_validation += Glob('validation/NEON/UNIT/MemoryManager.cpp' + filter_pattern)
152 files_validation += Glob('validation/NEON/UNIT/DynamicTensor.cpp' + filter_pattern)
153 files_validation += Glob('validation/NEON/UNIT/TensorAllocator.cpp' + filter_pattern)
154 else:
155 files_validation += Glob('validation/NEON/*/' + filter_pattern)
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000156 if env['external_tests_dir']:
157 files_validation += Glob(env['external_tests_dir'] + '/tests/validation/NEON/' + filter_pattern)
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000158 files_validation += Glob('validation/cpu/unit/*.cpp')
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100159
Ryo Suzuki232c9ad2024-06-19 09:37:24 +0000160 # Add wrapper tests
161 files_validation += Glob('validation/runtime/experimental/*/' + filter_pattern)
162
Michalis Spyrou6a9e8012020-02-07 09:45:55 +0000163extra_link_flags = []
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100164if env['os'] == 'android':
165 test_env.Append(LIBS = ["log"])
Pablo Tello29cab362022-03-10 17:05:34 +0000166elif env['os'] not in ['windows','bare_metal', 'macos']:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100167 test_env.Append(LIBS = ["rt"])
Michalis Spyrou6a9e8012020-02-07 09:45:55 +0000168 extra_link_flags += ['-fstack-protector-strong']
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100169
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100170if test_env['benchmark_tests']:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100171 arm_compute_benchmark = test_env.Program('arm_compute_benchmark', files_benchmark + common_objects)
Anthony Barbier01bbd5f2018-11-01 15:10:51 +0000172 arm_compute_benchmark = install_bin(arm_compute_benchmark)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100173 Depends(arm_compute_benchmark, arm_compute_test_framework)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100174 Depends(arm_compute_benchmark, arm_compute_lib)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100175 Default(arm_compute_benchmark)
176 Export('arm_compute_benchmark')
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100177
Michalis Spyrou6a9e8012020-02-07 09:45:55 +0000178bm_link_flags = []
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100179if test_env['linker_script']:
Michalis Spyrou7d303522020-01-07 12:56:01 +0000180 bm_link_flags += ['-Wl,--build-id=none', '-T', env['linker_script']]
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100181
Pablo Tello29cab362022-03-10 17:05:34 +0000182if test_env['reference_openmp'] and env['os'] not in ['bare_metal', 'macos','windows']:
Giorgio Arenab83e6722022-03-24 14:23:07 +0000183 test_env['CXXFLAGS'].append('-fopenmp')
184 test_env['LINKFLAGS'].append('-fopenmp')
185
186 if 'ndk_above_r21' in env:
187 test_env['LINKFLAGS'].append('-static-openmp')
Michalis Spyroud1d77222020-04-08 14:10:15 +0100188
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000189# Testing for fixed format GEMM kernels.
Nathan John Sircombed7113e42023-04-26 15:02:43 +0100190if env['fixed_format_kernels'] and test_env['validation_tests']:
Francesco Petrogalli553f6952022-06-30 10:22:01 +0000191 test_env.Append(CPPDEFINES = ['ARM_COMPUTE_ENABLE_FIXED_FORMAT_KERNELS'])
192
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100193if test_env['validation_tests']:
Quoc Khanh Lec2237ec2024-06-21 11:07:38 +0100194 #The following set up only works for posix system, RANLIBCOM env variable isn't available on win32 HOST_OS
195 if test_env['HOST_OS'] == 'posix':
196 #Set up to use temp file for long command when building and linking libraries
197 test_env['TEMPFILE'] = SCons.Platform.TempFileMunge
Quoc Khanh Leea6c6d42024-05-17 14:39:49 +0100198
Quoc Khanh Lec2237ec2024-06-21 11:07:38 +0100199 #To use temp file for any command, the following pattern should be used:
200 # env['COMMAND'] = "{$TEMPFILE('$COMMANDSTRING')}"
201 #See: https://github.com/SCons/scons/blob/05f2992377844bbfec9bcd4a9c7f5479c634b91b/SCons/Platform/__init__.py#L147
202 #The commands' string are taken from https://github.com/SCons/scons
203 #The commands' explanations are taken from Scons userguide
Quoc Khanh Leea6c6d42024-05-17 14:39:49 +0100204
Quoc Khanh Lec2237ec2024-06-21 11:07:38 +0100205 #The command line used to compile C++ source file to an object files
206 test_env['CXXCOM'] = "${TEMPFILE('"+ test_env['CXXCOM'] + "')}"
207 #The command line used to generate a static library from object files
208 test_env['ARCOM'] = "${TEMPFILE('"+ test_env['ARCOM'] + "')}"
209 #The command line used to index a static library archive
210 test_env['RANLIBCOM'] = "${TEMPFILE('"+ test_env['RANLIBCOM'] + "')}"
211 #The command line used to link object files into an executable
212 test_env['LINKCOM'] = "${TEMPFILE('"+ test_env['LINKCOM'] + "')}"
213 #Set up directory for temp files. To prevent permission issue, the temp files are in the same directory with output files
214 test_env['TEMPFILEDIR'] = test_env['build_dir']
Quoc Khanh Leea6c6d42024-05-17 14:39:49 +0100215
216 arm_compute_validation_framework = test_env.StaticLibrary('arm_compute_validation_framework', Glob('validation/reference/*.cpp') + Glob('validation/*.cpp'), LINKFLAGS=test_env['LINKFLAGS'], CXXFLAGS=test_env['CXXFLAGS'], LIBS= [ arm_compute_test_framework ])
Anthony Barbier2df1f992018-07-11 13:37:23 +0100217 Depends(arm_compute_validation_framework , arm_compute_test_framework)
Anthony Barbier2df1f992018-07-11 13:37:23 +0100218
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100219 program_objects = files_validation + common_objects
220 if test_env['os'] == 'bare_metal':
221 Depends(arm_compute_validation_framework , bootcode_o)
222 program_objects += bootcode_o
223
224
225 arm_compute_validation = test_env.Program('arm_compute_validation', program_objects, LIBS=[arm_compute_validation_framework] + test_env['LIBS'], LINKFLAGS=test_env['LINKFLAGS'] + bm_link_flags)
Anthony Barbier01bbd5f2018-11-01 15:10:51 +0000226 arm_compute_validation = install_bin(arm_compute_validation)
Anthony Barbier2df1f992018-07-11 13:37:23 +0100227 Depends(arm_compute_validation, arm_compute_validation_framework)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100228 Depends(arm_compute_validation, arm_compute_test_framework)
229 Depends(arm_compute_validation, arm_compute_lib)
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100230
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100231 Default(arm_compute_validation)
232 Export('arm_compute_validation')
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000233
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000234 if test_env['validate_examples']:
Anthony Barbier2df1f992018-07-11 13:37:23 +0100235 files_validate_examples = [ test_env.Object('validate_examples/RunExample.cpp') ] + [ x for x in common_objects if not "main.o" in str(x)]
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100236 if test_env['os'] == 'bare_metal':
237 files_validate_examples += bootcode_o
238
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000239 arm_compute_validate_examples = []
240 if test_env['neon']:
241 for file in Glob("validate_examples/neon_*.cpp"):
242 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100243 arm_compute_validate_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_validate_examples, LIBS = [ arm_compute_validation_framework], LINKFLAGS=test_env['LINKFLAGS'] + bm_link_flags) ]
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000244 if test_env['opencl']:
245 cl_examples = []
246 files = Glob("validate_examples/cl_*.cpp")
247 if test_env['neon']:
248 files += Glob("validate_examples/neoncl_*.cpp")
249 for file in files:
250 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
Anthony Barbier2df1f992018-07-11 13:37:23 +0100251 cl_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_validate_examples, LIBS = test_env["LIBS"] + [ arm_compute_validation_framework ]) ]
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000252 arm_compute_validate_examples += cl_examples
253 if test_env['opencl'] and test_env['neon']:
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000254 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
255 for file in Glob("validate_examples/graph_*.cpp"):
256 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
Georgios Pinitas45514032020-12-30 00:03:09 +0000257 if env['os'] in ['android', 'macos', 'bare_metal'] or env['standalone']:
258 prog = test_env.Program(example, [ test_env.Object(source=file, target=example), graph_utils]+ files_validate_examples, LIBS = test_env["LIBS"] + [ arm_compute_validation_framework ], LINKFLAGS=test_env["LINKFLAGS"]+[load_whole_archive, arm_compute_lib, noload_whole_archive] + bm_link_flags + extra_link_flags)
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000259 arm_compute_validate_examples += [ prog ]
260 else:
261 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
Anthony Barbier2df1f992018-07-11 13:37:23 +0100262 prog = test_env.Program(example, [ test_env.Object(source=file, target=example), graph_utils]+ files_validate_examples, LIBS = test_env["LIBS"] + ["arm_compute_graph", arm_compute_validation_framework], LINKFLAGS=test_env["LINKFLAGS"]+['-Wl,--allow-shlib-undefined'] )
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000263 arm_compute_validate_examples += [ prog ]
Anthony Barbier01bbd5f2018-11-01 15:10:51 +0000264 arm_compute_validate_examples = install_bin(arm_compute_validate_examples)
Anthony Barbier2df1f992018-07-11 13:37:23 +0100265 Depends(arm_compute_validate_examples, arm_compute_validation_framework)
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000266 Depends(arm_compute_validate_examples, arm_compute_test_framework)
267 Depends(arm_compute_validate_examples, arm_compute_lib)
268 Default(arm_compute_validate_examples)
269 Export('arm_compute_validate_examples')
270
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000271if test_env['benchmark_examples']:
272 files_benchmark_examples = test_env.Object('benchmark_examples/RunExample.cpp')
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100273 if test_env['os'] == 'bare_metal':
274 files_benchmark_examples += bootcode_o
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100275 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100276 graph_params = test_env.Object(source="../utils/CommonGraphOptions.cpp", target="CommonGraphOptions")
Anthony Barbier3b6cdbb2018-09-14 11:58:05 +0100277 arm_compute_benchmark_examples = []
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000278 all_examples_folders = ["../examples"]
279 if env['external_tests_dir']:
280 all_examples_folders.append(env['external_tests_dir'] + "/examples")
281 for examples_folder in all_examples_folders:
Anthony Barbier3b6cdbb2018-09-14 11:58:05 +0100282 if test_env['neon']:
283 for file in Glob("%s/neon_*.cpp" % examples_folder):
284 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100285 arm_compute_benchmark_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_benchmark_examples, LINKFLAGS=test_env["LINKFLAGS"]+ bm_link_flags) ]
Anthony Barbier3b6cdbb2018-09-14 11:58:05 +0100286 if test_env['opencl']:
287 cl_examples = []
288 files = Glob("%s/cl_*.cpp" % examples_folder)
289 if test_env['neon']:
290 files += Glob("%s/neoncl_*.cpp" % examples_folder)
291 for file in files:
292 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
293 cl_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_benchmark_examples, LIBS = test_env["LIBS"]) ]
294 arm_compute_benchmark_examples += cl_examples
295
SiCong Li8b4c7302019-09-19 12:18:15 +0100296 if test_env['gemm_tuner'] and test_env['opencl']:
297 gemm_tuner_examples = []
SiCong Li240b79d2019-09-24 15:50:34 +0100298 gemm_tuner_common_options = test_env.Object(source="../examples/gemm_tuner/CommonGemmExampleOptions.cpp", target="CommonGemmExampleOptions")
SiCong Li8b4c7302019-09-19 12:18:15 +0100299 files = Glob("%s/gemm_tuner/cl_*.cpp" % examples_folder)
300 for file in files:
301 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
302 example = os.path.join("gemm_tuner", example)
SiCong Li240b79d2019-09-24 15:50:34 +0100303 gemm_tuner_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example), gemm_tuner_common_options ] + files_benchmark_examples, LIBS = test_env["LIBS"]) ]
SiCong Li8b4c7302019-09-19 12:18:15 +0100304 arm_compute_benchmark_examples += gemm_tuner_examples
305
Anthony Barbier3b6cdbb2018-09-14 11:58:05 +0100306 # Graph examples
307 for file in Glob("%s/graph_*.cpp" % examples_folder ):
308 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
Georgios Pinitas45514032020-12-30 00:03:09 +0000309 if env['os'] in ['android', 'macos', 'bare_metal'] or env['standalone']:
310 prog = test_env.Program(example, [ test_env.Object(source=file, target=example), graph_utils, graph_params]+ files_benchmark_examples, LIBS = test_env["LIBS"], LINKFLAGS=test_env["LINKFLAGS"]+[load_whole_archive, arm_compute_lib, noload_whole_archive] + bm_link_flags + extra_link_flags)
Anthony Barbier3b6cdbb2018-09-14 11:58:05 +0100311 arm_compute_benchmark_examples += [ prog ]
312 else:
313 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100314 prog = test_env.Program(example, [ test_env.Object(source=file, target=example), graph_utils, graph_params]+ files_benchmark_examples, LIBS = test_env["LIBS"] + ["arm_compute_graph"], LINKFLAGS=test_env["LINKFLAGS"]+['-Wl,--allow-shlib-undefined'])
Anthony Barbier3b6cdbb2018-09-14 11:58:05 +0100315 arm_compute_benchmark_examples += [ prog ]
SiCong Lib63b1192022-01-28 18:24:39 +0000316
Anthony Barbier01bbd5f2018-11-01 15:10:51 +0000317 arm_compute_benchmark_examples = install_bin(arm_compute_benchmark_examples)
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000318 Depends(arm_compute_benchmark_examples, arm_compute_test_framework)
319 Depends(arm_compute_benchmark_examples, arm_compute_lib)
320 Default(arm_compute_benchmark_examples)
Pablo Tello29cab362022-03-10 17:05:34 +0000321 Export('arm_compute_benchmark_examples')