blob: f6fe49ad1d7dec31dcc4aa54a3c4a8b323b4317b [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001# Copyright (c) 2017 ARM Limited.
2#
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 Barbier6ff3b192017-09-04 18:44:23 +010027
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010028SConscript('./framework/SConscript', duplicate=0)
29
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030# vars is imported from arm_compute:
31variables = [
Anthony Barbiere8a49832018-01-18 10:04:05 +000032 #FIXME: Remove before release!
33 BoolVariable("benchmark_examples", "Build benchmark examples programs", True),
Anthony Barbier979dc4f2018-03-07 09:27:48 +000034 BoolVariable("validate_examples", "Build benchmark examples programs", True),
Anthony Barbiere4904c72018-02-21 15:57:15 +000035 #FIXME Switch the following two options to False before releasing
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036 BoolVariable("validation_tests", "Build validation test programs", True),
Pablo Telloea1c9502017-11-09 11:49:18 +000037 BoolVariable("benchmark_tests", "Build benchmark test programs", True),
38 ("test_filter", "Pattern to specify the tests' filenames to be compiled", "*.cpp")
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039]
40
41# We need a separate set of Variables for the Help message (Otherwise the global variables will get displayed twice)
42new_options = Variables('scons')
43
44for v in variables:
45 new_options.Add(v)
46 vars.Add(v)
47
Gian Marco Iodicef2399532017-09-13 14:16:41 +010048# Disable floating-point expression contraction (e.g. fused multiply-add operations)
49env.Append(CXXFLAGS = ['-ffp-contract=off'])
50
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051# Clone the environment to make sure we're not polluting the arm_compute one:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010052test_env = env.Clone()
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010053vars.Update(test_env)
54
55Help(new_options.GenerateHelpText(test_env))
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010056
Anthony Barbier6db0ff52018-01-05 10:59:12 +000057Import("arm_compute_test_framework")
58test_env.Append(LIBS = arm_compute_test_framework)
59
Georgios Pinitas9873ea32017-12-05 15:28:55 +000060if env['os'] in ['android', 'bare_metal'] or env['standalone']:
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010061 Import("arm_compute_a")
Anthony Barbierb2881fc2017-09-29 17:12:12 +010062 Import("arm_compute_core_a")
63 test_env.Append(LIBS = [arm_compute_a, arm_compute_core_a])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010064 arm_compute_lib = arm_compute_a
65else:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010066 Import("arm_compute_so")
Anthony Barbierb2881fc2017-09-29 17:12:12 +010067 test_env.Append(LIBS = ["arm_compute", "arm_compute_core"])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010068 arm_compute_lib = arm_compute_so
69
70#FIXME Delete before release
Anthony Barbiera4e5e1e2017-10-05 14:55:34 +010071if env['internal_only']:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010072 test_env.Append(CPPDEFINES=['INTERNAL_ONLY'])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010073
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010074test_env.Append(CPPPATH = ["#3rdparty/include"])
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010075test_env.Append(LIBPATH = ["#3rdparty/%s/%s" % (env['os'], env['arch'])])
76test_env.Append(LIBPATH = ["#build/%s" % env['build_dir']])
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010077test_env.Append(LIBPATH = ["#build/%s/opencl-1.2-stubs" % env['build_dir']])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010078
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010079common_files = Glob('*.cpp')
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010080common_objects = [test_env.StaticObject(f) for f in common_files]
81
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010082files_benchmark = Glob('benchmark/*.cpp')
Anthony Barbier979dc4f2018-03-07 09:27:48 +000083files_validation_framework = [test_env.Object(f) for f in Glob('validation/*.cpp')]
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010084
85# Always compile reference for validation
Anthony Barbier979dc4f2018-03-07 09:27:48 +000086files_validation_framework += [ test_env.Object(f) for f in Glob('validation/reference/*.cpp')]
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010087
Abe Mbise925ca0f2017-10-02 19:16:33 +010088# Add unit tests
Anthony Barbier979dc4f2018-03-07 09:27:48 +000089files_validation = Glob('validation/UNIT/*/*.cpp')
Abe Mbise925ca0f2017-10-02 19:16:33 +010090files_validation += Glob('validation/UNIT/*.cpp')
91
Georgios Pinitas8795ffb2017-12-01 16:13:40 +000092# Add CPP tests
93filter_pattern = test_env['test_filter']
94files_validation += Glob('validation/CPP/' + filter_pattern)
95
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010096if env['opencl']:
97 Import('opencl')
Pablo Telloea1c9502017-11-09 11:49:18 +000098 filter_pattern = test_env['test_filter']
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010099
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100100 test_env.Append(CPPDEFINES=['ARM_COMPUTE_CL'])
101 test_env.Append(LIBS = ["OpenCL"])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100102
Pablo Telloea1c9502017-11-09 11:49:18 +0000103 files_benchmark += Glob('benchmark/CL/*/' + filter_pattern)
104 files_benchmark += Glob('benchmark/CL/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100105
Pablo Telloea1c9502017-11-09 11:49:18 +0000106 files_validation += Glob('validation/CL/*/' + filter_pattern)
107 files_validation += Glob('validation/CL/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100108
109if env['neon']:
Pablo Telloea1c9502017-11-09 11:49:18 +0000110 filter_pattern = test_env['test_filter']
111 files_benchmark += Glob('benchmark/NEON/*/' + filter_pattern)
112 files_benchmark += Glob('benchmark/NEON/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100113
Pablo Telloea1c9502017-11-09 11:49:18 +0000114 files_validation += Glob('validation/NEON/*/' + filter_pattern)
115 files_validation += Glob('validation/NEON/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100116
Anthony Barbier7068f992017-10-26 15:23:08 +0100117if env['gles_compute']:
118 if env['os'] != 'android':
119 Import('egl')
120 Import('glesv2')
121
Anthony Barbier7068f992017-10-26 15:23:08 +0100122 test_env.Append(LIBS = ["EGL", "GLESv2"])
123 else:
124 if env['arch'] != 'armv7a':
125 test_env.Append(LIBS = ["EGL", "GLESv3"])
126 else:
127 test_env.Append(LIBS = ["EGL", "GLESv2"])
128
129 test_env.Append(CPPDEFINES=['ARM_COMPUTE_GC'])
130
131 files_benchmark += Glob('benchmark/GLES_COMPUTE/*/*.cpp')
132 files_benchmark += Glob('benchmark/GLES_COMPUTE/*.cpp')
133
134 files_validation += Glob('validation/GLES_COMPUTE/*/*.cpp')
135 files_validation += Glob('validation/GLES_COMPUTE/*.cpp')
136
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100137if env['os'] == 'android':
138 test_env.Append(LIBS = ["log"])
139else:
140 test_env.Append(LIBS = ["rt"])
141
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100142if test_env['benchmark_tests']:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100143 arm_compute_benchmark = test_env.Program('arm_compute_benchmark', files_benchmark + common_objects)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100144 Depends(arm_compute_benchmark, arm_compute_test_framework)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100145 Depends(arm_compute_benchmark, arm_compute_lib)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100146
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147 if env['opencl']:
148 Depends(arm_compute_benchmark, opencl)
Anthony Barbier7068f992017-10-26 15:23:08 +0100149 if env['gles_compute'] and env['os'] != 'android':
150 Depends(arm_compute_benchmark, egl)
151 Depends(arm_compute_benchmark, glesv2)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100152
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153 Default(arm_compute_benchmark)
154 Export('arm_compute_benchmark')
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100155
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100156if test_env['validation_tests']:
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000157 arm_compute_validation = test_env.Program('arm_compute_validation', files_validation_framework + files_validation + common_objects)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100158 Depends(arm_compute_validation, arm_compute_test_framework)
159 Depends(arm_compute_validation, arm_compute_lib)
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100160
161 if env['opencl']:
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100162 Depends(arm_compute_validation, opencl)
Anthony Barbier7068f992017-10-26 15:23:08 +0100163 if env['gles_compute'] and env['os'] != 'android':
164 Depends(arm_compute_validation, egl)
165 Depends(arm_compute_validation, glesv2)
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100166
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100167 Default(arm_compute_validation)
168 Export('arm_compute_validation')
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000169
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000170 #FIXME: Remove before release!
171 if test_env['validate_examples']:
172 files_validate_examples = [ test_env.Object('validate_examples/RunExample.cpp') ] + files_validation_framework + [ x for x in common_objects if not "main.o" in str(x)]
173 arm_compute_validate_examples = []
174 if test_env['neon']:
175 for file in Glob("validate_examples/neon_*.cpp"):
176 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
177 arm_compute_validate_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_validate_examples) ]
178 if test_env['opencl']:
179 cl_examples = []
180 files = Glob("validate_examples/cl_*.cpp")
181 if test_env['neon']:
182 files += Glob("validate_examples/neoncl_*.cpp")
183 for file in files:
184 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
185 cl_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_validate_examples, CPPDEFINES=['ARM_COMPUTE_CL'], LIBS = test_env["LIBS"] + ["OpenCL"]) ]
186 Depends(cl_examples, opencl)
187 arm_compute_validate_examples += cl_examples
188 if test_env['opencl'] and test_env['neon']:
189 if env['os'] == 'android':
190 Import('arm_compute_graph_a')
191 graph_dependency = arm_compute_graph_a
192 else:
193 Import('arm_compute_graph_so')
194 graph_dependency = arm_compute_graph_so
195
196 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
197 for file in Glob("validate_examples/graph_*.cpp"):
198 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
199 if env['os'] == 'android':
200 prog = test_env.Program(example, [ test_env.Object(source=file, target=example), graph_utils]+ files_validate_examples, LIBS = test_env["LIBS"] + ["OpenCL"], LINKFLAGS=test_env["LINKFLAGS"]+['-Wl,--whole-archive',graph_dependency,'-Wl,--no-whole-archive'])
201 Depends(prog, [graph_dependency, opencl])
202 arm_compute_validate_examples += [ prog ]
203 else:
204 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
205 prog = test_env.Program(example, [ test_env.Object(source=file, target=example), graph_utils]+ files_validate_examples, LIBS = test_env["LIBS"] + ["arm_compute_graph"], LINKFLAGS=test_env["LINKFLAGS"]+['-Wl,--allow-shlib-undefined'] )
206 Depends(prog, graph_dependency)
207 arm_compute_validate_examples += [ prog ]
208 Depends(arm_compute_validate_examples, arm_compute_test_framework)
209 Depends(arm_compute_validate_examples, arm_compute_lib)
210 Default(arm_compute_validate_examples)
211 Export('arm_compute_validate_examples')
212
Anthony Barbiere8a49832018-01-18 10:04:05 +0000213#FIXME: Remove before release!
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000214if test_env['benchmark_examples']:
215 files_benchmark_examples = test_env.Object('benchmark_examples/RunExample.cpp')
216 arm_compute_benchmark_examples = []
217 if test_env['neon']:
218 for file in Glob("../examples/neon_*.cpp"):
219 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
220 arm_compute_benchmark_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_benchmark_examples) ]
221 if test_env['opencl']:
222 cl_examples = []
223 files = Glob("../examples/cl_*.cpp")
224 if test_env['neon']:
225 files += Glob("../examples/neoncl_*.cpp")
226 for file in files:
227 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
228 cl_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_benchmark_examples, CPPDEFINES=['ARM_COMPUTE_CL'], LIBS = test_env["LIBS"] + ["OpenCL"]) ]
229 Depends(cl_examples, opencl)
230 arm_compute_benchmark_examples += cl_examples
231 if test_env['opencl'] and test_env['neon']:
232 if env['os'] == 'android':
233 Import('arm_compute_graph_a')
234 graph_dependency = arm_compute_graph_a
235 else:
236 Import('arm_compute_graph_so')
237 graph_dependency = arm_compute_graph_so
238
239 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
240 for file in Glob("../examples/graph_*.cpp"):
241 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
242 if env['os'] == 'android':
243 prog = test_env.Program(example, [ test_env.Object(source=file, target=example), graph_utils]+ files_benchmark_examples, LIBS = test_env["LIBS"] + ["OpenCL"], LINKFLAGS=test_env["LINKFLAGS"]+['-Wl,--whole-archive',graph_dependency,'-Wl,--no-whole-archive'])
244 Depends(prog, [graph_dependency, opencl])
245 arm_compute_benchmark_examples += [ prog ]
246 else:
247 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
248 prog = test_env.Program(example, [ test_env.Object(source=file, target=example), graph_utils]+ files_benchmark_examples, LIBS = test_env["LIBS"] + ["arm_compute_graph"], LINKFLAGS=test_env["LINKFLAGS"]+['-Wl,--allow-shlib-undefined'] )
249 Depends(prog, graph_dependency)
250 arm_compute_benchmark_examples += [ prog ]
251 Depends(arm_compute_benchmark_examples, arm_compute_test_framework)
252 Depends(arm_compute_benchmark_examples, arm_compute_lib)
253 Default(arm_compute_benchmark_examples)
254 Export('arm_compute_benchmark_examples')
255