blob: d4cc5146936e9222c5f5ba2e4e28969e009c957e [file] [log] [blame]
Michele Di Giorgiof9a611a2021-03-12 11:22:55 +00001# Copyright (c) 2017-2021 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01002#
3# SPDX-License-Identifier: MIT
4#
5# Permission is hereby granted, free of charge, to any person obtaining a copy
6# of this software and associated documentation files (the "Software"), to
7# deal in the Software without restriction, including without limitation the
8# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9# sell copies of the Software, and to permit persons to whom the Software is
10# furnished to do so, subject to the following conditions:
11#
12# The above copyright notice and this permission notice shall be included in all
13# copies or substantial portions of the Software.
14#
15# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21# SOFTWARE.
22import SCons
23import os.path
24
25Import('env')
26Import('vars')
Anthony Barbier01bbd5f2018-11-01 15:10:51 +000027Import('install_bin')
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028
29# vars is imported from arm_compute:
30variables = [
Michele Di Giorgiof9a611a2021-03-12 11:22:55 +000031 BoolVariable("benchmark_examples", "Build benchmark examples programs", False),
32 BoolVariable("validate_examples", "Build validate examples programs", False),
Michalis Spyroud1d77222020-04-08 14:10:15 +010033 BoolVariable("reference_openmp", "Build reference validation with openmp", True),
Michele Di Giorgiof9a611a2021-03-12 11:22:55 +000034 BoolVariable("validation_tests", "Build validation test programs", False),
35 BoolVariable("benchmark_tests", "Build benchmark test programs", False),
Pablo Telloea1c9502017-11-09 11:49:18 +000036 ("test_filter", "Pattern to specify the tests' filenames to be compiled", "*.cpp")
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037]
38
39# We need a separate set of Variables for the Help message (Otherwise the global variables will get displayed twice)
40new_options = Variables('scons')
41
42for v in variables:
43 new_options.Add(v)
44 vars.Add(v)
45
46# Clone the environment to make sure we're not polluting the arm_compute one:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010047test_env = env.Clone()
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010048vars.Update(test_env)
49
50Help(new_options.GenerateHelpText(test_env))
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010051
Georgios Pinitas6a342642020-01-28 15:54:20 +000052# Check if we need to build the test framework
53build_test_framework = False
54for opt in new_options.keys():
55 option_value = test_env[opt]
56 if type(option_value) is bool and option_value:
57 build_test_framework = True
58 break
59
60if not build_test_framework:
61 Return()
62else:
63 SConscript('./framework/SConscript', duplicate=0)
64
Anthony Barbier6db0ff52018-01-05 10:59:12 +000065Import("arm_compute_test_framework")
66test_env.Append(LIBS = arm_compute_test_framework)
67
Georgios Pinitas6a342642020-01-28 15:54:20 +000068# Disable floating-point expression contraction (e.g. fused multiply-add operations)
69test_env.Append(CXXFLAGS = ['-ffp-contract=off'])
70
Georgios Pinitasf8d8f3a2018-06-06 17:57:04 +010071# Remove -Wnoexcept from tests
72if 'g++' in test_env['CXX'] and '-Wnoexcept' in test_env['CXXFLAGS']:
73 test_env['CXXFLAGS'].remove("-Wnoexcept")
74
Georgios Pinitas45514032020-12-30 00:03:09 +000075load_whole_archive = '-Wl,--whole-archive'
76noload_whole_archive = '-Wl,--no-whole-archive'
77if 'macos' in test_env['os']:
78 load_whole_archive = '-Wl,-force_load'
79 noload_whole_archive = '-Wl,-noall_load'
80
81if env['os'] in ['android', 'macos', 'bare_metal'] or env['standalone']:
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010082 Import("arm_compute_a")
Anthony Barbierb2881fc2017-09-29 17:12:12 +010083 Import("arm_compute_core_a")
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010084 Import("arm_compute_graph_a")
85 test_env.Append(LIBS = [arm_compute_graph_a, arm_compute_a, arm_compute_core_a])
86 arm_compute_lib = arm_compute_graph_a
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010087else:
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010088 Import("arm_compute_graph_so")
Anthony Barbier2df1f992018-07-11 13:37:23 +010089 Import("arm_compute_core_a")
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010090 test_env.Append(LIBS = ["arm_compute_graph", "arm_compute", "arm_compute_core"])
91 arm_compute_lib = arm_compute_graph_so
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010092
Michalis Spyrou748a7c82019-10-07 13:00:44 +010093if env['os'] in ['bare_metal']:
94 Import("bootcode_o")
95
Michele Di Giorgio72610dc2020-11-18 15:29:08 +000096if env['external_tests_dir']:
97 test_env.Append(CPPPATH = [env['external_tests_dir'] + "/include"])
98 test_env.Append(LIBPATH = [env['external_tests_dir'] + "/%s/%s" % (env['os'], env['arch'])])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010099
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100100common_files = Glob('*.cpp')
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100101common_objects = [test_env.StaticObject(f) for f in common_files]
102
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100103files_benchmark = Glob('benchmark/*.cpp')
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000104if env['external_tests_dir']:
105 files_benchmark += Glob(env['external_tests_dir'] + '/tests/benchmark/*.cpp')
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100106
Abe Mbise925ca0f2017-10-02 19:16:33 +0100107# Add unit tests
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000108files_validation = Glob('validation/UNIT/*/*.cpp')
Abe Mbise925ca0f2017-10-02 19:16:33 +0100109files_validation += Glob('validation/UNIT/*.cpp')
110
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000111# Add CPP tests
112filter_pattern = test_env['test_filter']
113files_validation += Glob('validation/CPP/' + filter_pattern)
114
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100115if env['opencl']:
Pablo Telloea1c9502017-11-09 11:49:18 +0000116 filter_pattern = test_env['test_filter']
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100117
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100118 test_env.Append(CPPDEFINES=['ARM_COMPUTE_CL'])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100119
Pablo Telloea1c9502017-11-09 11:49:18 +0000120 files_benchmark += Glob('benchmark/CL/*/' + filter_pattern)
121 files_benchmark += Glob('benchmark/CL/' + filter_pattern)
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000122 if env['external_tests_dir']:
123 files_benchmark += Glob(env['external_tests_dir'] + '/tests/benchmark/CL/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100124
Pablo Telloea1c9502017-11-09 11:49:18 +0000125 files_validation += Glob('validation/CL/*/' + filter_pattern)
126 files_validation += Glob('validation/CL/' + filter_pattern)
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000127 if env['external_tests_dir']:
128 files_validation += Glob(env['external_tests_dir'] + '/tests/validation/CL/' + filter_pattern)
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000129 files_validation += Glob('validation/gpu/unit/*.cpp')
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100130
131if env['neon']:
Pablo Telloea1c9502017-11-09 11:49:18 +0000132 filter_pattern = test_env['test_filter']
133 files_benchmark += Glob('benchmark/NEON/*/' + filter_pattern)
134 files_benchmark += Glob('benchmark/NEON/' + filter_pattern)
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000135 if env['external_tests_dir']:
136 files_benchmark += Glob(env['external_tests_dir'] + '/tests/benchmark/NEON/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100137
Pablo Telloea1c9502017-11-09 11:49:18 +0000138 files_validation += Glob('validation/NEON/' + filter_pattern)
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100139 if env['os'] == 'bare_metal':
140 files_validation += Glob('validation/NEON/UNIT/MemoryManager.cpp' + filter_pattern)
141 files_validation += Glob('validation/NEON/UNIT/DynamicTensor.cpp' + filter_pattern)
142 files_validation += Glob('validation/NEON/UNIT/TensorAllocator.cpp' + filter_pattern)
143 else:
144 files_validation += Glob('validation/NEON/*/' + filter_pattern)
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000145 if env['external_tests_dir']:
146 files_validation += Glob(env['external_tests_dir'] + '/tests/validation/NEON/' + filter_pattern)
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000147 files_validation += Glob('validation/cpu/unit/*.cpp')
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100148
Michalis Spyrou6a9e8012020-02-07 09:45:55 +0000149extra_link_flags = []
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100150if env['os'] == 'android':
151 test_env.Append(LIBS = ["log"])
Georgios Pinitas45514032020-12-30 00:03:09 +0000152elif env['os'] not in ['bare_metal', 'macos']:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100153 test_env.Append(LIBS = ["rt"])
Michalis Spyrou6a9e8012020-02-07 09:45:55 +0000154 extra_link_flags += ['-fstack-protector-strong']
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100155
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100156if test_env['benchmark_tests']:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100157 arm_compute_benchmark = test_env.Program('arm_compute_benchmark', files_benchmark + common_objects)
Anthony Barbier01bbd5f2018-11-01 15:10:51 +0000158 arm_compute_benchmark = install_bin(arm_compute_benchmark)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100159 Depends(arm_compute_benchmark, arm_compute_test_framework)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100160 Depends(arm_compute_benchmark, arm_compute_lib)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100161 Default(arm_compute_benchmark)
162 Export('arm_compute_benchmark')
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100163
Michalis Spyrou6a9e8012020-02-07 09:45:55 +0000164bm_link_flags = []
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100165if test_env['linker_script']:
Michalis Spyrou7d303522020-01-07 12:56:01 +0000166 bm_link_flags += ['-Wl,--build-id=none', '-T', env['linker_script']]
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100167
Georgios Pinitas45514032020-12-30 00:03:09 +0000168if test_env['reference_openmp'] and env['os'] not in ['bare_metal', 'macos']:
Michalis Spyroud1d77222020-04-08 14:10:15 +0100169 test_env['CXXFLAGS'].append('-fopenmp')
170 test_env['LINKFLAGS'].append('-fopenmp')
171
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100172if test_env['validation_tests']:
Michalis Spyroud1d77222020-04-08 14:10:15 +0100173 arm_compute_validation_framework = 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, arm_compute_core_a])
Anthony Barbier2df1f992018-07-11 13:37:23 +0100174 Depends(arm_compute_validation_framework , arm_compute_test_framework)
175 Depends(arm_compute_validation_framework , arm_compute_core_a)
176
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100177 program_objects = files_validation + common_objects
178 if test_env['os'] == 'bare_metal':
179 Depends(arm_compute_validation_framework , bootcode_o)
180 program_objects += bootcode_o
181
182
183 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 +0000184 arm_compute_validation = install_bin(arm_compute_validation)
Anthony Barbier2df1f992018-07-11 13:37:23 +0100185 Depends(arm_compute_validation, arm_compute_validation_framework)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100186 Depends(arm_compute_validation, arm_compute_test_framework)
187 Depends(arm_compute_validation, arm_compute_lib)
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100188
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100189 Default(arm_compute_validation)
190 Export('arm_compute_validation')
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000191
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000192 if test_env['validate_examples']:
Anthony Barbier2df1f992018-07-11 13:37:23 +0100193 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 +0100194 if test_env['os'] == 'bare_metal':
195 files_validate_examples += bootcode_o
196
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000197 arm_compute_validate_examples = []
198 if test_env['neon']:
199 for file in Glob("validate_examples/neon_*.cpp"):
200 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100201 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 +0000202 if test_env['opencl']:
203 cl_examples = []
204 files = Glob("validate_examples/cl_*.cpp")
205 if test_env['neon']:
206 files += Glob("validate_examples/neoncl_*.cpp")
207 for file in files:
208 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
Anthony Barbier2df1f992018-07-11 13:37:23 +0100209 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 +0000210 arm_compute_validate_examples += cl_examples
211 if test_env['opencl'] and test_env['neon']:
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000212 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
213 for file in Glob("validate_examples/graph_*.cpp"):
214 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
Georgios Pinitas45514032020-12-30 00:03:09 +0000215 if env['os'] in ['android', 'macos', 'bare_metal'] or env['standalone']:
216 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 +0000217 arm_compute_validate_examples += [ prog ]
218 else:
219 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
Anthony Barbier2df1f992018-07-11 13:37:23 +0100220 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 +0000221 arm_compute_validate_examples += [ prog ]
Anthony Barbier01bbd5f2018-11-01 15:10:51 +0000222 arm_compute_validate_examples = install_bin(arm_compute_validate_examples)
Anthony Barbier2df1f992018-07-11 13:37:23 +0100223 Depends(arm_compute_validate_examples, arm_compute_validation_framework)
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000224 Depends(arm_compute_validate_examples, arm_compute_test_framework)
225 Depends(arm_compute_validate_examples, arm_compute_lib)
226 Default(arm_compute_validate_examples)
227 Export('arm_compute_validate_examples')
228
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000229if test_env['benchmark_examples']:
230 files_benchmark_examples = test_env.Object('benchmark_examples/RunExample.cpp')
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100231 if test_env['os'] == 'bare_metal':
232 files_benchmark_examples += bootcode_o
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100233 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100234 graph_params = test_env.Object(source="../utils/CommonGraphOptions.cpp", target="CommonGraphOptions")
Anthony Barbier3b6cdbb2018-09-14 11:58:05 +0100235 arm_compute_benchmark_examples = []
Michele Di Giorgio72610dc2020-11-18 15:29:08 +0000236 all_examples_folders = ["../examples"]
237 if env['external_tests_dir']:
238 all_examples_folders.append(env['external_tests_dir'] + "/examples")
239 for examples_folder in all_examples_folders:
Anthony Barbier3b6cdbb2018-09-14 11:58:05 +0100240 if test_env['neon']:
241 for file in Glob("%s/neon_*.cpp" % examples_folder):
242 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100243 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 +0100244 if test_env['opencl']:
245 cl_examples = []
246 files = Glob("%s/cl_*.cpp" % examples_folder)
247 if test_env['neon']:
248 files += Glob("%s/neoncl_*.cpp" % examples_folder)
249 for file in files:
250 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
251 cl_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_benchmark_examples, LIBS = test_env["LIBS"]) ]
252 arm_compute_benchmark_examples += cl_examples
253
SiCong Li8b4c7302019-09-19 12:18:15 +0100254 if test_env['gemm_tuner'] and test_env['opencl']:
255 gemm_tuner_examples = []
SiCong Li240b79d2019-09-24 15:50:34 +0100256 gemm_tuner_common_options = test_env.Object(source="../examples/gemm_tuner/CommonGemmExampleOptions.cpp", target="CommonGemmExampleOptions")
SiCong Li8b4c7302019-09-19 12:18:15 +0100257 files = Glob("%s/gemm_tuner/cl_*.cpp" % examples_folder)
258 for file in files:
259 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
260 example = os.path.join("gemm_tuner", example)
SiCong Li240b79d2019-09-24 15:50:34 +0100261 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 +0100262 arm_compute_benchmark_examples += gemm_tuner_examples
263
Anthony Barbier3b6cdbb2018-09-14 11:58:05 +0100264 # Graph examples
265 for file in Glob("%s/graph_*.cpp" % examples_folder ):
266 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
Georgios Pinitas45514032020-12-30 00:03:09 +0000267 if env['os'] in ['android', 'macos', 'bare_metal'] or env['standalone']:
268 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 +0100269 arm_compute_benchmark_examples += [ prog ]
270 else:
271 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100272 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 +0100273 arm_compute_benchmark_examples += [ prog ]
Anthony Barbier01bbd5f2018-11-01 15:10:51 +0000274 arm_compute_benchmark_examples = install_bin(arm_compute_benchmark_examples)
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000275 Depends(arm_compute_benchmark_examples, arm_compute_test_framework)
276 Depends(arm_compute_benchmark_examples, arm_compute_lib)
277 Default(arm_compute_benchmark_examples)
SiCong Li7061eb22021-01-08 15:16:02 +0000278 Export('arm_compute_benchmark_examples')