blob: 20095e56fbefe6fda202294211f4f5d181695e17 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001# Copyright (c) 2017, 2018 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 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")
Anthony Barbier9280c922018-03-14 14:23:47 +000063 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 Barbier9280c922018-03-14 14:23:47 +000067 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 Pflanzeree493ae2017-07-05 10:52:21 +010077
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010078common_files = Glob('*.cpp')
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010079common_objects = [test_env.StaticObject(f) for f in common_files]
80
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010081files_benchmark = Glob('benchmark/*.cpp')
Anthony Barbier979dc4f2018-03-07 09:27:48 +000082files_validation_framework = [test_env.Object(f) for f in Glob('validation/*.cpp')]
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010083
84# Always compile reference for validation
Anthony Barbier979dc4f2018-03-07 09:27:48 +000085files_validation_framework += [ test_env.Object(f) for f in Glob('validation/reference/*.cpp')]
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010086
Abe Mbise925ca0f2017-10-02 19:16:33 +010087# Add unit tests
Anthony Barbier979dc4f2018-03-07 09:27:48 +000088files_validation = Glob('validation/UNIT/*/*.cpp')
Abe Mbise925ca0f2017-10-02 19:16:33 +010089files_validation += Glob('validation/UNIT/*.cpp')
90
Georgios Pinitas8795ffb2017-12-01 16:13:40 +000091# Add CPP tests
92filter_pattern = test_env['test_filter']
93files_validation += Glob('validation/CPP/' + filter_pattern)
94
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010095if env['opencl']:
Pablo Telloea1c9502017-11-09 11:49:18 +000096 filter_pattern = test_env['test_filter']
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010097
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010098 test_env.Append(CPPDEFINES=['ARM_COMPUTE_CL'])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010099
Pablo Telloea1c9502017-11-09 11:49:18 +0000100 files_benchmark += Glob('benchmark/CL/*/' + filter_pattern)
101 files_benchmark += Glob('benchmark/CL/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100102
Pablo Telloea1c9502017-11-09 11:49:18 +0000103 files_validation += Glob('validation/CL/*/' + filter_pattern)
104 files_validation += Glob('validation/CL/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100105
106if env['neon']:
Pablo Telloea1c9502017-11-09 11:49:18 +0000107 filter_pattern = test_env['test_filter']
108 files_benchmark += Glob('benchmark/NEON/*/' + filter_pattern)
109 files_benchmark += Glob('benchmark/NEON/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100110
Pablo Telloea1c9502017-11-09 11:49:18 +0000111 files_validation += Glob('validation/NEON/*/' + filter_pattern)
112 files_validation += Glob('validation/NEON/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100113
Anthony Barbier7068f992017-10-26 15:23:08 +0100114if env['gles_compute']:
Anthony Barbier7068f992017-10-26 15:23:08 +0100115 test_env.Append(CPPDEFINES=['ARM_COMPUTE_GC'])
116
117 files_benchmark += Glob('benchmark/GLES_COMPUTE/*/*.cpp')
118 files_benchmark += Glob('benchmark/GLES_COMPUTE/*.cpp')
119
120 files_validation += Glob('validation/GLES_COMPUTE/*/*.cpp')
121 files_validation += Glob('validation/GLES_COMPUTE/*.cpp')
122
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100123if env['os'] == 'android':
124 test_env.Append(LIBS = ["log"])
125else:
126 test_env.Append(LIBS = ["rt"])
127
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100128if test_env['benchmark_tests']:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100129 arm_compute_benchmark = test_env.Program('arm_compute_benchmark', files_benchmark + common_objects)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100130 Depends(arm_compute_benchmark, arm_compute_test_framework)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131 Depends(arm_compute_benchmark, arm_compute_lib)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100132 Default(arm_compute_benchmark)
133 Export('arm_compute_benchmark')
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100134
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100135if test_env['validation_tests']:
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000136 arm_compute_validation = test_env.Program('arm_compute_validation', files_validation_framework + files_validation + common_objects)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100137 Depends(arm_compute_validation, arm_compute_test_framework)
138 Depends(arm_compute_validation, arm_compute_lib)
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100139
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100140 Default(arm_compute_validation)
141 Export('arm_compute_validation')
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000142
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000143 #FIXME: Remove before release!
144 if test_env['validate_examples']:
145 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)]
146 arm_compute_validate_examples = []
147 if test_env['neon']:
148 for file in Glob("validate_examples/neon_*.cpp"):
149 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
150 arm_compute_validate_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_validate_examples) ]
151 if test_env['opencl']:
152 cl_examples = []
153 files = Glob("validate_examples/cl_*.cpp")
154 if test_env['neon']:
155 files += Glob("validate_examples/neoncl_*.cpp")
156 for file in files:
157 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100158 cl_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_validate_examples, LIBS = test_env["LIBS"]) ]
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000159 arm_compute_validate_examples += cl_examples
160 if test_env['opencl'] and test_env['neon']:
161 if env['os'] == 'android':
162 Import('arm_compute_graph_a')
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100163 graph_dependency = [ arm_compute_graph_a]
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000164 else:
165 Import('arm_compute_graph_so')
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100166 graph_dependency = [ arm_compute_graph_so]
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000167
168 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
169 for file in Glob("validate_examples/graph_*.cpp"):
170 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
171 if env['os'] == 'android':
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100172 prog = test_env.Program(example, [ test_env.Object(source=file, target=example), graph_utils]+ files_validate_examples, LIBS = test_env["LIBS"], LINKFLAGS=test_env["LINKFLAGS"]+['-Wl,--whole-archive',graph_dependency,'-Wl,--no-whole-archive'])
173 Depends(prog, graph_dependency)
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000174 arm_compute_validate_examples += [ prog ]
175 else:
176 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100177 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'] )
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000178 Depends(prog, graph_dependency)
179 arm_compute_validate_examples += [ prog ]
180 Depends(arm_compute_validate_examples, arm_compute_test_framework)
181 Depends(arm_compute_validate_examples, arm_compute_lib)
182 Default(arm_compute_validate_examples)
183 Export('arm_compute_validate_examples')
184
Anthony Barbiere8a49832018-01-18 10:04:05 +0000185#FIXME: Remove before release!
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000186if test_env['benchmark_examples']:
187 files_benchmark_examples = test_env.Object('benchmark_examples/RunExample.cpp')
188 arm_compute_benchmark_examples = []
189 if test_env['neon']:
190 for file in Glob("../examples/neon_*.cpp"):
191 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
192 arm_compute_benchmark_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_benchmark_examples) ]
193 if test_env['opencl']:
194 cl_examples = []
195 files = Glob("../examples/cl_*.cpp")
196 if test_env['neon']:
197 files += Glob("../examples/neoncl_*.cpp")
198 for file in files:
199 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100200 cl_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_benchmark_examples, LIBS = test_env["LIBS"]) ]
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000201 arm_compute_benchmark_examples += cl_examples
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000202
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100203 # Graph examples
204 if env['os'] == 'android':
205 Import('arm_compute_graph_a')
206 graph_dependency = [arm_compute_graph_a]
207 else:
208 Import('arm_compute_graph_so')
209 graph_dependency = [arm_compute_graph_so]
210 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
211 for file in Glob("../examples/graph_*.cpp"):
212 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
213 if env['os'] == 'android':
214 prog = test_env.Program(example, [ test_env.Object(source=file, target=example), graph_utils]+ files_benchmark_examples, LIBS = test_env["LIBS"], LINKFLAGS=test_env["LINKFLAGS"]+['-Wl,--whole-archive',graph_dependency,'-Wl,--no-whole-archive'])
215 Depends(prog, [graph_dependency])
216 arm_compute_benchmark_examples += [ prog ]
217 else:
218 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
219 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'] )
220 Depends(prog, graph_dependency)
221 arm_compute_benchmark_examples += [ prog ]
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000222 Depends(arm_compute_benchmark_examples, arm_compute_test_framework)
223 Depends(arm_compute_benchmark_examples, arm_compute_lib)
224 Default(arm_compute_benchmark_examples)
225 Export('arm_compute_benchmark_examples')
226