blob: a58e1f2ea97ed572437f0b51481a57c01c2c1b71 [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 Pinitasf8d8f3a2018-06-06 17:57:04 +010060# Remove -Wnoexcept from tests
61if 'g++' in test_env['CXX'] and '-Wnoexcept' in test_env['CXXFLAGS']:
62 test_env['CXXFLAGS'].remove("-Wnoexcept")
63
Georgios Pinitas9873ea32017-12-05 15:28:55 +000064if env['os'] in ['android', 'bare_metal'] or env['standalone']:
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010065 Import("arm_compute_a")
Anthony Barbierb2881fc2017-09-29 17:12:12 +010066 Import("arm_compute_core_a")
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010067 Import("arm_compute_graph_a")
68 test_env.Append(LIBS = [arm_compute_graph_a, arm_compute_a, arm_compute_core_a])
69 arm_compute_lib = arm_compute_graph_a
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010070else:
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010071 Import("arm_compute_graph_so")
72 test_env.Append(LIBS = ["arm_compute_graph", "arm_compute", "arm_compute_core"])
73 arm_compute_lib = arm_compute_graph_so
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010074
75#FIXME Delete before release
Anthony Barbiera4e5e1e2017-10-05 14:55:34 +010076if env['internal_only']:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010077 test_env.Append(CPPDEFINES=['INTERNAL_ONLY'])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010078
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010079test_env.Append(CPPPATH = ["#3rdparty/include"])
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010080test_env.Append(LIBPATH = ["#3rdparty/%s/%s" % (env['os'], env['arch'])])
81test_env.Append(LIBPATH = ["#build/%s" % env['build_dir']])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010082
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010083common_files = Glob('*.cpp')
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010084common_objects = [test_env.StaticObject(f) for f in common_files]
85
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010086files_benchmark = Glob('benchmark/*.cpp')
Anthony Barbier979dc4f2018-03-07 09:27:48 +000087files_validation_framework = [test_env.Object(f) for f in Glob('validation/*.cpp')]
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010088
89# Always compile reference for validation
Anthony Barbier979dc4f2018-03-07 09:27:48 +000090files_validation_framework += [ test_env.Object(f) for f in Glob('validation/reference/*.cpp')]
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010091
Abe Mbise925ca0f2017-10-02 19:16:33 +010092# Add unit tests
Anthony Barbier979dc4f2018-03-07 09:27:48 +000093files_validation = Glob('validation/UNIT/*/*.cpp')
Abe Mbise925ca0f2017-10-02 19:16:33 +010094files_validation += Glob('validation/UNIT/*.cpp')
95
Georgios Pinitas8795ffb2017-12-01 16:13:40 +000096# Add CPP tests
97filter_pattern = test_env['test_filter']
98files_validation += Glob('validation/CPP/' + filter_pattern)
99
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100100if env['opencl']:
Pablo Telloea1c9502017-11-09 11:49:18 +0000101 filter_pattern = test_env['test_filter']
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100102
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100103 test_env.Append(CPPDEFINES=['ARM_COMPUTE_CL'])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100104
Pablo Telloea1c9502017-11-09 11:49:18 +0000105 files_benchmark += Glob('benchmark/CL/*/' + filter_pattern)
106 files_benchmark += Glob('benchmark/CL/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100107
Pablo Telloea1c9502017-11-09 11:49:18 +0000108 files_validation += Glob('validation/CL/*/' + filter_pattern)
109 files_validation += Glob('validation/CL/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100110
111if env['neon']:
Pablo Telloea1c9502017-11-09 11:49:18 +0000112 filter_pattern = test_env['test_filter']
113 files_benchmark += Glob('benchmark/NEON/*/' + filter_pattern)
114 files_benchmark += Glob('benchmark/NEON/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100115
Pablo Telloea1c9502017-11-09 11:49:18 +0000116 files_validation += Glob('validation/NEON/*/' + filter_pattern)
117 files_validation += Glob('validation/NEON/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100118
Anthony Barbier7068f992017-10-26 15:23:08 +0100119if env['gles_compute']:
Anthony Barbier7068f992017-10-26 15:23:08 +0100120 test_env.Append(CPPDEFINES=['ARM_COMPUTE_GC'])
121
122 files_benchmark += Glob('benchmark/GLES_COMPUTE/*/*.cpp')
123 files_benchmark += Glob('benchmark/GLES_COMPUTE/*.cpp')
124
125 files_validation += Glob('validation/GLES_COMPUTE/*/*.cpp')
126 files_validation += Glob('validation/GLES_COMPUTE/*.cpp')
127
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100128if env['os'] == 'android':
129 test_env.Append(LIBS = ["log"])
130else:
131 test_env.Append(LIBS = ["rt"])
132
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100133if test_env['benchmark_tests']:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100134 arm_compute_benchmark = test_env.Program('arm_compute_benchmark', files_benchmark + common_objects)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100135 Depends(arm_compute_benchmark, arm_compute_test_framework)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100136 Depends(arm_compute_benchmark, arm_compute_lib)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100137 Default(arm_compute_benchmark)
138 Export('arm_compute_benchmark')
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100139
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100140if test_env['validation_tests']:
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000141 arm_compute_validation = test_env.Program('arm_compute_validation', files_validation_framework + files_validation + common_objects)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100142 Depends(arm_compute_validation, arm_compute_test_framework)
143 Depends(arm_compute_validation, arm_compute_lib)
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100144
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100145 Default(arm_compute_validation)
146 Export('arm_compute_validation')
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000147
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000148 #FIXME: Remove before release!
149 if test_env['validate_examples']:
150 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)]
151 arm_compute_validate_examples = []
152 if test_env['neon']:
153 for file in Glob("validate_examples/neon_*.cpp"):
154 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
155 arm_compute_validate_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_validate_examples) ]
156 if test_env['opencl']:
157 cl_examples = []
158 files = Glob("validate_examples/cl_*.cpp")
159 if test_env['neon']:
160 files += Glob("validate_examples/neoncl_*.cpp")
161 for file in files:
162 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100163 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 +0000164 arm_compute_validate_examples += cl_examples
165 if test_env['opencl'] and test_env['neon']:
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000166 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
167 for file in Glob("validate_examples/graph_*.cpp"):
168 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100169 if env['os'] in ['android', 'bare_metal'] or env['standalone']:
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100170 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',arm_compute_lib,'-Wl,--no-whole-archive'])
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000171 arm_compute_validate_examples += [ prog ]
172 else:
173 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100174 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 +0000175 arm_compute_validate_examples += [ prog ]
176 Depends(arm_compute_validate_examples, arm_compute_test_framework)
177 Depends(arm_compute_validate_examples, arm_compute_lib)
178 Default(arm_compute_validate_examples)
179 Export('arm_compute_validate_examples')
180
Anthony Barbiere8a49832018-01-18 10:04:05 +0000181#FIXME: Remove before release!
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000182if test_env['benchmark_examples']:
183 files_benchmark_examples = test_env.Object('benchmark_examples/RunExample.cpp')
184 arm_compute_benchmark_examples = []
185 if test_env['neon']:
186 for file in Glob("../examples/neon_*.cpp"):
187 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
188 arm_compute_benchmark_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_benchmark_examples) ]
189 if test_env['opencl']:
190 cl_examples = []
191 files = Glob("../examples/cl_*.cpp")
192 if test_env['neon']:
193 files += Glob("../examples/neoncl_*.cpp")
194 for file in files:
195 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100196 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 +0000197 arm_compute_benchmark_examples += cl_examples
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000198
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100199 # Graph examples
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100200 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
201 for file in Glob("../examples/graph_*.cpp"):
202 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100203 if env['os'] in ['android', 'bare_metal'] or env['standalone']:
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100204 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',arm_compute_lib,'-Wl,--no-whole-archive'])
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100205 arm_compute_benchmark_examples += [ prog ]
206 else:
207 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
208 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'] )
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100209 arm_compute_benchmark_examples += [ prog ]
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000210 Depends(arm_compute_benchmark_examples, arm_compute_test_framework)
211 Depends(arm_compute_benchmark_examples, arm_compute_lib)
212 Default(arm_compute_benchmark_examples)
213 Export('arm_compute_benchmark_examples')
214