blob: 6a6ee623b2aa5e2f987673c5fb1857004abe8496 [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")
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010063 Import("arm_compute_graph_a")
64 test_env.Append(LIBS = [arm_compute_graph_a, arm_compute_a, arm_compute_core_a])
65 arm_compute_lib = arm_compute_graph_a
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010066else:
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010067 Import("arm_compute_graph_so")
68 test_env.Append(LIBS = ["arm_compute_graph", "arm_compute", "arm_compute_core"])
69 arm_compute_lib = arm_compute_graph_so
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010070
71#FIXME Delete before release
Anthony Barbiera4e5e1e2017-10-05 14:55:34 +010072if env['internal_only']:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010073 test_env.Append(CPPDEFINES=['INTERNAL_ONLY'])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010074
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010075test_env.Append(CPPPATH = ["#3rdparty/include"])
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010076test_env.Append(LIBPATH = ["#3rdparty/%s/%s" % (env['os'], env['arch'])])
77test_env.Append(LIBPATH = ["#build/%s" % 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']:
Pablo Telloea1c9502017-11-09 11:49:18 +000097 filter_pattern = test_env['test_filter']
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010098
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010099 test_env.Append(CPPDEFINES=['ARM_COMPUTE_CL'])
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100100
Pablo Telloea1c9502017-11-09 11:49:18 +0000101 files_benchmark += Glob('benchmark/CL/*/' + filter_pattern)
102 files_benchmark += Glob('benchmark/CL/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100103
Pablo Telloea1c9502017-11-09 11:49:18 +0000104 files_validation += Glob('validation/CL/*/' + filter_pattern)
105 files_validation += Glob('validation/CL/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100106
107if env['neon']:
Pablo Telloea1c9502017-11-09 11:49:18 +0000108 filter_pattern = test_env['test_filter']
109 files_benchmark += Glob('benchmark/NEON/*/' + filter_pattern)
110 files_benchmark += Glob('benchmark/NEON/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100111
Pablo Telloea1c9502017-11-09 11:49:18 +0000112 files_validation += Glob('validation/NEON/*/' + filter_pattern)
113 files_validation += Glob('validation/NEON/' + filter_pattern)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100114
Anthony Barbier7068f992017-10-26 15:23:08 +0100115if env['gles_compute']:
Anthony Barbier7068f992017-10-26 15:23:08 +0100116 test_env.Append(CPPDEFINES=['ARM_COMPUTE_GC'])
117
118 files_benchmark += Glob('benchmark/GLES_COMPUTE/*/*.cpp')
119 files_benchmark += Glob('benchmark/GLES_COMPUTE/*.cpp')
120
121 files_validation += Glob('validation/GLES_COMPUTE/*/*.cpp')
122 files_validation += Glob('validation/GLES_COMPUTE/*.cpp')
123
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100124if env['os'] == 'android':
125 test_env.Append(LIBS = ["log"])
126else:
127 test_env.Append(LIBS = ["rt"])
128
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100129if test_env['benchmark_tests']:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100130 arm_compute_benchmark = test_env.Program('arm_compute_benchmark', files_benchmark + common_objects)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100131 Depends(arm_compute_benchmark, arm_compute_test_framework)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100132 Depends(arm_compute_benchmark, arm_compute_lib)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100133 Default(arm_compute_benchmark)
134 Export('arm_compute_benchmark')
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100135
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100136if test_env['validation_tests']:
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000137 arm_compute_validation = test_env.Program('arm_compute_validation', files_validation_framework + files_validation + common_objects)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100138 Depends(arm_compute_validation, arm_compute_test_framework)
139 Depends(arm_compute_validation, arm_compute_lib)
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100140
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100141 Default(arm_compute_validation)
142 Export('arm_compute_validation')
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000143
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000144 #FIXME: Remove before release!
145 if test_env['validate_examples']:
146 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)]
147 arm_compute_validate_examples = []
148 if test_env['neon']:
149 for file in Glob("validate_examples/neon_*.cpp"):
150 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
151 arm_compute_validate_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_validate_examples) ]
152 if test_env['opencl']:
153 cl_examples = []
154 files = Glob("validate_examples/cl_*.cpp")
155 if test_env['neon']:
156 files += Glob("validate_examples/neoncl_*.cpp")
157 for file in files:
158 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100159 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 +0000160 arm_compute_validate_examples += cl_examples
161 if test_env['opencl'] and test_env['neon']:
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000162 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
163 for file in Glob("validate_examples/graph_*.cpp"):
164 example = "validate_" + os.path.basename(os.path.splitext(str(file))[0])
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100165 if env['os'] in ['android', 'bare_metal'] or env['standalone']:
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100166 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 +0000167 arm_compute_validate_examples += [ prog ]
168 else:
169 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100170 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 +0000171 arm_compute_validate_examples += [ prog ]
172 Depends(arm_compute_validate_examples, arm_compute_test_framework)
173 Depends(arm_compute_validate_examples, arm_compute_lib)
174 Default(arm_compute_validate_examples)
175 Export('arm_compute_validate_examples')
176
Anthony Barbiere8a49832018-01-18 10:04:05 +0000177#FIXME: Remove before release!
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000178if test_env['benchmark_examples']:
179 files_benchmark_examples = test_env.Object('benchmark_examples/RunExample.cpp')
180 arm_compute_benchmark_examples = []
181 if test_env['neon']:
182 for file in Glob("../examples/neon_*.cpp"):
183 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
184 arm_compute_benchmark_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_benchmark_examples) ]
185 if test_env['opencl']:
186 cl_examples = []
187 files = Glob("../examples/cl_*.cpp")
188 if test_env['neon']:
189 files += Glob("../examples/neoncl_*.cpp")
190 for file in files:
191 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100192 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 +0000193 arm_compute_benchmark_examples += cl_examples
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000194
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100195 # Graph examples
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100196 graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")
197 for file in Glob("../examples/graph_*.cpp"):
198 example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100199 if env['os'] in ['android', 'bare_metal'] or env['standalone']:
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100200 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 +0100201 arm_compute_benchmark_examples += [ prog ]
202 else:
203 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
204 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 +0100205 arm_compute_benchmark_examples += [ prog ]
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000206 Depends(arm_compute_benchmark_examples, arm_compute_test_framework)
207 Depends(arm_compute_benchmark_examples, arm_compute_lib)
208 Default(arm_compute_benchmark_examples)
209 Export('arm_compute_benchmark_examples')
210