blob: 2b70ca18b88512cd8cbc016a2741c3cfbe154b7f [file] [log] [blame]
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01001# Copyright (c) 2016, 2017 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 collections
23import os.path
24import re
25import subprocess
26
27VERSION = "v0.0-unreleased"
morgolock16846ab2020-11-19 15:27:30 +000028LIBRARY_VERSION_MAJOR = 21
Sang-Hoon Park6d0b3842020-08-14 14:48:08 +010029LIBRARY_VERSION_MINOR = 0
Georgios Pinitas35fcc432020-03-26 18:47:46 +000030LIBRARY_VERSION_PATCH = 0
31SONAME_VERSION = str(LIBRARY_VERSION_MAJOR) + "." + str(LIBRARY_VERSION_MINOR) + "." + str(LIBRARY_VERSION_PATCH)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032
33Import('env')
34Import('vars')
Anthony Barbier01bbd5f2018-11-01 15:10:51 +000035Import('install_lib')
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036
Michalis Spyrou748a7c82019-10-07 13:00:44 +010037def build_bootcode_objs(sources):
38
39 arm_compute_env.Append(ASFLAGS = "-I bootcode/")
40 obj = arm_compute_env.Object(sources)
41 obj = install_lib(obj)
42 Default(obj)
43 return obj
44
Georgios Pinitas4d9687e2020-10-21 18:33:36 +010045def build_library(name, build_env, sources, static=False, libs=[]):
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046 if static:
Georgios Pinitas4d9687e2020-10-21 18:33:36 +010047 obj = build_env.StaticLibrary(name, source=sources, LIBS = arm_compute_env["LIBS"] + libs)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048 else:
49 if env['set_soname']:
Georgios Pinitas4d9687e2020-10-21 18:33:36 +010050 obj = build_env.SharedLibrary(name, source=sources, SHLIBVERSION = SONAME_VERSION, LIBS = arm_compute_env["LIBS"] + libs)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051 else:
Georgios Pinitas4d9687e2020-10-21 18:33:36 +010052 obj = build_env.SharedLibrary(name, source=sources, LIBS = arm_compute_env["LIBS"] + libs)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053
Anthony Barbier01bbd5f2018-11-01 15:10:51 +000054 obj = install_lib(obj)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055 Default(obj)
56 return obj
57
Georgios Pinitasf605bd22020-11-26 11:55:09 +000058def remove_incode_comments(code):
59 def replace_with_empty(match):
60 s = match.group(0)
61 if s.startswith('/'):
62 return " "
63 else:
64 return s
65
66 comment_regex = re.compile(r'//.*?$|/\*.*?\*/|\'(?:\\.|[^\\\'])*\'|"(?:\\.|[^\\"])*"', re.DOTALL | re.MULTILINE)
67 return re.sub(comment_regex, replace_with_empty, code)
68
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069def resolve_includes(target, source, env):
70 # File collection
71 FileEntry = collections.namedtuple('FileEntry', 'target_name file_contents')
72
73 # Include pattern
74 pattern = re.compile("#include \"(.*)\"")
75
76 # Get file contents
77 files = []
78 for i in range(len(source)):
79 src = source[i]
80 dst = target[i]
Georgios Pinitasf605bd22020-11-26 11:55:09 +000081 contents = src.get_contents().decode('utf-8')
82 contents = remove_incode_comments(contents).splitlines()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083 entry = FileEntry(target_name=dst, file_contents=contents)
84 files.append((os.path.basename(src.get_path()),entry))
85
86 # Create dictionary of tupled list
87 files_dict = dict(files)
88
89 # Check for includes (can only be files in the same folder)
90 final_files = []
91 for file in files:
92 done = False
93 tmp_file = file[1].file_contents
94 while not done:
95 file_count = 0
96 updated_file = []
97 for line in tmp_file:
98 found = pattern.search(line)
99 if found:
100 include_file = found.group(1)
101 data = files_dict[include_file].file_contents
102 updated_file.extend(data)
103 else:
104 updated_file.append(line)
105 file_count += 1
106
107 # Check if all include are replaced.
108 if file_count == len(tmp_file):
109 done = True
110
111 # Update temp file
112 tmp_file = updated_file
113
114 # Append and prepend string literal identifiers and add expanded file to final list
115 tmp_file.insert(0, "R\"(\n")
116 tmp_file.append("\n)\"")
117 entry = FileEntry(target_name=file[1].target_name, file_contents=tmp_file)
118 final_files.append((file[0], entry))
119
120 # Write output files
121 for file in final_files:
122 with open(file[1].target_name.get_path(), 'w+') as out_file:
123 out_file.write( "\n".join( file[1].file_contents ))
124
125def create_version_file(target, source, env):
126# Generate string with build options library version to embed in the library:
127 try:
128 git_hash = subprocess.check_output(["git", "rev-parse", "HEAD"])
129 except (OSError, subprocess.CalledProcessError):
130 git_hash="unknown"
131
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100132 build_info = "\"arm_compute_version=%s Build options: %s Git hash=%s\"" % (VERSION, vars.args, git_hash.strip())
133 with open(target[0].get_path(), "w") as fd:
134 fd.write(build_info)
135
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100136arm_compute_env = env.Clone()
Anthony Barbier0e72c692018-08-24 11:22:08 +0100137version_file = arm_compute_env.Command("src/core/arm_compute_version.embed", "", action=create_version_file)
138arm_compute_env.AlwaysBuild(version_file)
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000139
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100140default_cpp_compiler = 'g++' if env['os'] != 'android' else 'clang++'
141cpp_compiler = os.environ.get('CXX', default_cpp_compiler)
142
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000143# Generate embed files
Anthony Barbier0e72c692018-08-24 11:22:08 +0100144generate_embed = [ version_file ]
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000145if env['opencl'] and env['embed_kernels']:
146 cl_files = Glob('src/core/CL/cl_kernels/*.cl')
147 cl_files += Glob('src/core/CL/cl_kernels/*.h')
148
149 embed_files = [ f.get_path()+"embed" for f in cl_files ]
150 arm_compute_env.Append(CPPPATH =[Dir("./src/core/CL/").path] )
151
152 generate_embed.append(arm_compute_env.Command(embed_files, cl_files, action=resolve_includes))
153
154if env['gles_compute'] and env['embed_kernels']:
155 cs_files = Glob('src/core/GLES_COMPUTE/cs_shaders/*.cs')
156 cs_files += Glob('src/core/GLES_COMPUTE/cs_shaders/*.h')
157
158 embed_files = [ f.get_path()+"embed" for f in cs_files ]
159 arm_compute_env.Append(CPPPATH =[Dir("./src/core/GLES_COMPUTE/").path] )
160
161 generate_embed.append(arm_compute_env.Command(embed_files, cs_files, action=resolve_includes))
162
163Default(generate_embed)
164if env["build"] == "embed_only":
165 Return()
166
Georgios Pinitas35fcc432020-03-26 18:47:46 +0000167# Append version defines for semantic versioning
168arm_compute_env.Append(CPPDEFINES = [('ARM_COMPUTE_VERSION_MAJOR', LIBRARY_VERSION_MAJOR),
169 ('ARM_COMPUTE_VERSION_MINOR', LIBRARY_VERSION_MINOR),
170 ('ARM_COMPUTE_VERSION_PATCH', LIBRARY_VERSION_PATCH)])
171
172
Isabella Gottardib28f29d2017-11-09 17:05:07 +0000173# Don't allow undefined references in the libraries:
Michalis Spyrou989f1b52018-01-23 16:47:45 +0000174arm_compute_env.Append(LINKFLAGS=['-Wl,--no-undefined'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100175arm_compute_env.Append(CPPPATH =[Dir("./src/core/").path] )
176
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100177arm_compute_env.Append(LIBS = ['dl'])
178
179core_files = Glob('src/core/*.cpp')
180core_files += Glob('src/core/CPP/*.cpp')
181core_files += Glob('src/core/CPP/kernels/*.cpp')
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100182core_files += Glob('src/core/helpers/*.cpp')
Sang-Hoon Park3687ee12020-06-24 13:34:04 +0100183core_files += Glob('src/core/utils/*.cpp')
Michalis Spyrou7043d362018-12-03 13:58:32 +0000184core_files += Glob('src/core/utils/helpers/*.cpp')
185core_files += Glob('src/core/utils/io/*.cpp')
186core_files += Glob('src/core/utils/quantization/*.cpp')
Georgios Pinitasb8d5b952019-05-16 14:13:03 +0100187core_files += Glob('src/core/utils/misc/*.cpp')
Michalis Spyrou7043d362018-12-03 13:58:32 +0000188if env["logging"]:
189 core_files += Glob('src/core/utils/logging/*.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100190
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100191runtime_files = Glob('src/runtime/*.cpp')
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000192runtime_files += Glob('src/runtime/CPP/ICPPSimpleFunction.cpp')
193runtime_files += Glob('src/runtime/CPP/functions/*.cpp')
194
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100195# CLHarrisCorners uses the Scheduler to run CPP kernels
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100196runtime_files += Glob('src/runtime/CPP/SingleThreadScheduler.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100197
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100198graph_files = Glob('src/graph/*.cpp')
199graph_files += Glob('src/graph/*/*.cpp')
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000200
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100201if env['cppthreads']:
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100202 runtime_files += Glob('src/runtime/CPP/CPPScheduler.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100203
204if env['openmp']:
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100205 runtime_files += Glob('src/runtime/OMP/OMPScheduler.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100206
207if env['opencl']:
208 core_files += Glob('src/core/CL/*.cpp')
209 core_files += Glob('src/core/CL/kernels/*.cpp')
Gian Marco Iodice926afe12019-03-19 11:44:13 +0000210 core_files += Glob('src/core/CL/gemm/*.cpp')
Gian Marco Iodice06be6f82019-06-24 17:47:51 +0100211 core_files += Glob('src/core/CL/gemm/native/*.cpp')
Gian Marco Iodice926afe12019-03-19 11:44:13 +0000212 core_files += Glob('src/core/CL/gemm/reshaped/*.cpp')
213 core_files += Glob('src/core/CL/gemm/reshaped_only_rhs/*.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100214
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100215 runtime_files += Glob('src/runtime/CL/*.cpp')
216 runtime_files += Glob('src/runtime/CL/functions/*.cpp')
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +0000217 runtime_files += Glob('src/runtime/CL/gemm/*.cpp')
Georgios Pinitasc0d1c862018-03-23 15:13:15 +0000218 runtime_files += Glob('src/runtime/CL/tuners/*.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100219
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100220 graph_files += Glob('src/graph/backends/CL/*.cpp')
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000221
222
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100223if env['neon']:
224 core_files += Glob('src/core/NEON/*.cpp')
225 core_files += Glob('src/core/NEON/kernels/*.cpp')
Anthony Barbierc8e84b52018-07-17 16:48:42 +0100226 core_files += Glob('src/core/NEON/kernels/assembly/*.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100227
Pablo Telloeb82fd22018-02-23 13:43:50 +0000228 core_files += Glob('src/core/NEON/kernels/arm_gemm/*.cpp')
229
Georgios Pinitas30271c72019-06-24 14:56:34 +0100230 # build winograd/depthwise sources for either v7a / v8a
Georgios Pinitas4074c992018-01-30 18:13:46 +0000231 core_files += Glob('src/core/NEON/kernels/convolution/*/*.cpp')
232 core_files += Glob('src/core/NEON/kernels/convolution/winograd/*/*.cpp')
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100233 arm_compute_env.Append(CPPPATH = ["src/core/NEON/kernels/convolution/common/",
Michele Di Giorgio6ad60af2020-06-09 14:52:15 +0100234 "src/core/NEON/kernels/convolution/winograd/",
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100235 "src/core/NEON/kernels/convolution/depthwise/",
236 "src/core/NEON/kernels/assembly/",
Georgios Pinitas30271c72019-06-24 14:56:34 +0100237 "arm_compute/core/NEON/kernels/assembly/"])
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000238
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100239 graph_files += Glob('src/graph/backends/NEON/*.cpp')
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000240
Georgios Pinitasf2cdce32019-12-09 18:35:57 +0000241 if env['estate'] == '32':
Pablo Telloeb82fd22018-02-23 13:43:50 +0000242 core_files += Glob('src/core/NEON/kernels/arm_gemm/kernels/a32_*/*.cpp')
243
Georgios Pinitasf2cdce32019-12-09 18:35:57 +0000244 if env['estate'] == '64':
Pablo Telloeb82fd22018-02-23 13:43:50 +0000245 core_files += Glob('src/core/NEON/kernels/arm_gemm/kernels/a64_*/*.cpp')
Georgios Pinitas421405b2018-10-26 19:05:32 +0100246 if "sve" in env['arch']:
247 core_files += Glob('src/core/NEON/kernels/arm_gemm/kernels/sve_*/*.cpp')
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100248
Georgios Pinitasff4fca02020-10-02 21:00:00 +0100249 if any(i in env['data_type_support'] for i in ['all', 'fp16']):
Michalis Spyrouaa51a5b2020-11-22 00:49:42 +0000250 core_files += Glob('src/core/NEON/kernels/*/impl/*/fp16.cpp')
Georgios Pinitasff4fca02020-10-02 21:00:00 +0100251 if any(i in env['data_type_support'] for i in ['all', 'fp32']):
Michalis Spyrouaa51a5b2020-11-22 00:49:42 +0000252 core_files += Glob('src/core/NEON/kernels/*/impl/*/fp32.cpp')
Michalis Spyrouc4d45552020-10-19 12:41:30 +0100253 if any(i in env['data_type_support'] for i in ['all', 'qasymm8']):
Michalis Spyrouaa51a5b2020-11-22 00:49:42 +0000254 core_files += Glob('src/core/NEON/kernels/*/impl/*/qasymm8.cpp')
Michalis Spyrouc4d45552020-10-19 12:41:30 +0100255 if any(i in env['data_type_support'] for i in ['all', 'qasymm8_signed']):
Michalis Spyrouaa51a5b2020-11-22 00:49:42 +0000256 core_files += Glob('src/core/NEON/kernels/*/impl/*/qasymm8_signed.cpp')
Michalis Spyrouc4d45552020-10-19 12:41:30 +0100257 if any(i in env['data_type_support'] for i in ['all', 'qsymm16']):
Michalis Spyrouaa51a5b2020-11-22 00:49:42 +0000258 core_files += Glob('src/core/NEON/kernels/*/impl/*/qsymm16.cpp')
Georgios Pinitasff4fca02020-10-02 21:00:00 +0100259
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100260 runtime_files += Glob('src/runtime/NEON/*.cpp')
261 runtime_files += Glob('src/runtime/NEON/functions/*.cpp')
Anthony Barbierc8e84b52018-07-17 16:48:42 +0100262 runtime_files += Glob('src/runtime/NEON/functions/assembly/*.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100263
Anthony Barbier7068f992017-10-26 15:23:08 +0100264if env['gles_compute']:
265 if env['os'] != 'android':
266 arm_compute_env.Append(CPPPATH = ["#opengles-3.1/include", "#opengles-3.1/mali_include"])
267
268 core_files += Glob('src/core/GLES_COMPUTE/*.cpp')
269 core_files += Glob('src/core/GLES_COMPUTE/kernels/*.cpp')
270
271 runtime_files += Glob('src/runtime/GLES_COMPUTE/*.cpp')
272 runtime_files += Glob('src/runtime/GLES_COMPUTE/functions/*.cpp')
273
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100274 graph_files += Glob('src/graph/backends/GLES/*.cpp')
Anthony Barbierb4670212018-05-18 16:55:39 +0100275if env['tracing']:
276 arm_compute_env.Append(CPPDEFINES = ['ARM_COMPUTE_TRACING_ENABLED'])
277else:
278 # Remove TracePoint files if tracing is disabled:
279 core_files = [ f for f in core_files if not "TracePoint" in str(f)]
280 runtime_files = [ f for f in runtime_files if not "TracePoint" in str(f)]
Georgios Pinitasfbb80542018-03-27 17:15:49 +0100281
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100282bootcode_o = []
283if env['os'] == 'bare_metal':
284 bootcode_files = Glob('bootcode/*.s')
285 bootcode_o = build_bootcode_objs(bootcode_files)
286Export('bootcode_o')
287
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100288arm_compute_core_a = build_library('arm_compute_core-static', arm_compute_env, core_files, static=True)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100289Export('arm_compute_core_a')
290
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100291if env['os'] != 'bare_metal' and not env['standalone']:
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100292 arm_compute_core_so = build_library('arm_compute_core', arm_compute_env, core_files, static=False)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100293 Export('arm_compute_core_so')
294
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100295arm_compute_a = build_library('arm_compute-static', arm_compute_env, runtime_files, static=True, libs = [ arm_compute_core_a ])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100296Export('arm_compute_a')
297
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100298if env['os'] != 'bare_metal' and not env['standalone']:
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100299 arm_compute_so = build_library('arm_compute', arm_compute_env, runtime_files, static=False, libs = [ "arm_compute_core" ])
Anthony Barbierb2881fc2017-09-29 17:12:12 +0100300 Depends(arm_compute_so, arm_compute_core_so)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100301 Export('arm_compute_so')
302
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100303arm_compute_graph_env = arm_compute_env.Clone();
304if 'clang++' in cpp_compiler:
305 arm_compute_graph_env.Append(CXXFLAGS = ['-Wno-pessimizing-move'])
306arm_compute_graph_a = build_library('arm_compute_graph-static', arm_compute_graph_env, graph_files, static=True, libs = [ arm_compute_a])
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100307Export('arm_compute_graph_a')
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000308
309if env['os'] != 'bare_metal' and not env['standalone']:
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100310 arm_compute_graph_so = build_library('arm_compute_graph', arm_compute_graph_env, graph_files, static=False, libs = [ "arm_compute" , "arm_compute_core"])
Georgios Pinitas9873ea32017-12-05 15:28:55 +0000311 Depends(arm_compute_graph_so, arm_compute_so)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100312 Export('arm_compute_graph_so')
313
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100314if env['standalone']:
315 alias = arm_compute_env.Alias("arm_compute", [arm_compute_a])
316else:
317 alias = arm_compute_env.Alias("arm_compute", [arm_compute_a, arm_compute_so])
318
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100319Default(alias)
320
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100321if env['standalone']:
322 Depends([alias,arm_compute_core_a], generate_embed)
323else:
324 Depends([alias,arm_compute_core_so, arm_compute_core_a], generate_embed)