blob: 2441d1870fb2aded5438db3a76ed9a35ef5e2c36 [file] [log] [blame]
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +00001# Copyright (c) 2016-2021 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
Georgios Pinitasea857272021-01-22 05:47:37 +000026import zlib
27import base64
28import string
Georgios Pinitasbdcdc392021-04-22 16:42:03 +010029import json
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030
31VERSION = "v0.0-unreleased"
Sheri Zhang5b114252021-05-06 09:49:05 +010032LIBRARY_VERSION_MAJOR = 23
Sang-Hoon Park6d0b3842020-08-14 14:48:08 +010033LIBRARY_VERSION_MINOR = 0
Georgios Pinitas35fcc432020-03-26 18:47:46 +000034LIBRARY_VERSION_PATCH = 0
35SONAME_VERSION = str(LIBRARY_VERSION_MAJOR) + "." + str(LIBRARY_VERSION_MINOR) + "." + str(LIBRARY_VERSION_PATCH)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036
37Import('env')
38Import('vars')
Anthony Barbier01bbd5f2018-11-01 15:10:51 +000039Import('install_lib')
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040
Michalis Spyrou748a7c82019-10-07 13:00:44 +010041def build_bootcode_objs(sources):
Michalis Spyrou20fca522021-06-07 14:23:57 +010042
Michalis Spyrou748a7c82019-10-07 13:00:44 +010043 arm_compute_env.Append(ASFLAGS = "-I bootcode/")
44 obj = arm_compute_env.Object(sources)
45 obj = install_lib(obj)
46 Default(obj)
47 return obj
48
Georgios Pinitasbdcdc392021-04-22 16:42:03 +010049def build_sve_objs(sources):
Michalis Spyrou20fca522021-06-07 14:23:57 +010050
Georgios Pinitasbdcdc392021-04-22 16:42:03 +010051 tmp_env = arm_compute_env.Clone()
52 tmp_env.Append(CXXFLAGS = "-march=armv8.2-a+sve+fp16")
53 obj = tmp_env.SharedObject(sources)
54 obj = install_lib(obj)
55 Default(obj)
56 return obj
57
Michalis Spyrou20fca522021-06-07 14:23:57 +010058def build_objs(sources):
59
60 obj = arm_compute_env.SharedObject(sources)
61 obj = install_lib(obj)
62 Default(obj)
63 return obj
64
Georgios Pinitas4d9687e2020-10-21 18:33:36 +010065def build_library(name, build_env, sources, static=False, libs=[]):
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066 if static:
Georgios Pinitas4d9687e2020-10-21 18:33:36 +010067 obj = build_env.StaticLibrary(name, source=sources, LIBS = arm_compute_env["LIBS"] + libs)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010068 else:
69 if env['set_soname']:
Georgios Pinitas4d9687e2020-10-21 18:33:36 +010070 obj = build_env.SharedLibrary(name, source=sources, SHLIBVERSION = SONAME_VERSION, LIBS = arm_compute_env["LIBS"] + libs)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071 else:
Georgios Pinitas4d9687e2020-10-21 18:33:36 +010072 obj = build_env.SharedLibrary(name, source=sources, LIBS = arm_compute_env["LIBS"] + libs)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010073
Anthony Barbier01bbd5f2018-11-01 15:10:51 +000074 obj = install_lib(obj)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010075 Default(obj)
76 return obj
77
Georgios Pinitasf605bd22020-11-26 11:55:09 +000078def remove_incode_comments(code):
79 def replace_with_empty(match):
80 s = match.group(0)
81 if s.startswith('/'):
82 return " "
83 else:
84 return s
85
86 comment_regex = re.compile(r'//.*?$|/\*.*?\*/|\'(?:\\.|[^\\\'])*\'|"(?:\\.|[^\\"])*"', re.DOTALL | re.MULTILINE)
87 return re.sub(comment_regex, replace_with_empty, code)
88
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089def resolve_includes(target, source, env):
90 # File collection
91 FileEntry = collections.namedtuple('FileEntry', 'target_name file_contents')
92
93 # Include pattern
94 pattern = re.compile("#include \"(.*)\"")
95
96 # Get file contents
97 files = []
98 for i in range(len(source)):
99 src = source[i]
100 dst = target[i]
Georgios Pinitasf605bd22020-11-26 11:55:09 +0000101 contents = src.get_contents().decode('utf-8')
102 contents = remove_incode_comments(contents).splitlines()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100103 entry = FileEntry(target_name=dst, file_contents=contents)
104 files.append((os.path.basename(src.get_path()),entry))
105
106 # Create dictionary of tupled list
107 files_dict = dict(files)
108
109 # Check for includes (can only be files in the same folder)
110 final_files = []
111 for file in files:
112 done = False
113 tmp_file = file[1].file_contents
114 while not done:
115 file_count = 0
116 updated_file = []
117 for line in tmp_file:
118 found = pattern.search(line)
119 if found:
120 include_file = found.group(1)
121 data = files_dict[include_file].file_contents
122 updated_file.extend(data)
123 else:
124 updated_file.append(line)
125 file_count += 1
126
127 # Check if all include are replaced.
128 if file_count == len(tmp_file):
129 done = True
130
131 # Update temp file
132 tmp_file = updated_file
133
134 # Append and prepend string literal identifiers and add expanded file to final list
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100135 entry = FileEntry(target_name=file[1].target_name, file_contents=tmp_file)
136 final_files.append((file[0], entry))
137
138 # Write output files
139 for file in final_files:
140 with open(file[1].target_name.get_path(), 'w+') as out_file:
Georgios Pinitasea857272021-01-22 05:47:37 +0000141 file_to_write = "\n".join( file[1].file_contents )
142 if env['compress_kernels']:
143 file_to_write = zlib.compress(file_to_write, 9).encode("base64").replace("\n", "")
144 file_to_write = "R\"(" + file_to_write + ")\""
145 out_file.write(file_to_write)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100146
147def create_version_file(target, source, env):
148# Generate string with build options library version to embed in the library:
149 try:
150 git_hash = subprocess.check_output(["git", "rev-parse", "HEAD"])
151 except (OSError, subprocess.CalledProcessError):
152 git_hash="unknown"
153
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100154 build_info = "\"arm_compute_version=%s Build options: %s Git hash=%s\"" % (VERSION, vars.args, git_hash.strip())
155 with open(target[0].get_path(), "w") as fd:
156 fd.write(build_info)
157
Michalis Spyrou20fca522021-06-07 14:23:57 +0100158def get_cpu_runtime_files(operator):
159 file_list = []
160 operators = filelist['cpu']['operators']
161
162 if "operator" in operators[operator]["files"]:
163 file_list += operators[operator]["files"]["operator"]
164 return file_list
165
166def get_gpu_runtime_files(operator):
167 file_list = []
168 operators = filelist['gpu']['operators']
169
170 if "operator" in operators[operator]["files"]:
171 file_list += operators[operator]["files"]["operator"]
172 return file_list
173
174def get_cpu_kernel_files(operator):
175
176 file_list = []
177 file_list_sve = []
178 operators = filelist['cpu']['operators']
179
180 if env['estate'] == '64' and "neon" in operators[operator]['files'] and "estate64" in operators[operator]['files']['neon']:
181 file_list += operators[operator]['files']['neon']['estate64']
182 if env['estate'] == '32' and "neon" in operators[operator]['files'] and "estate32" in operators[operator]['files']['neon']:
183 file_list += operators[operator]['files']['neon']['estate32']
184
185 if "kernel" in operators[operator]["files"]:
186 file_list += operators[operator]["files"]["kernel"]
187
188 if ("neon" in operators[operator]["files"]):
189 if any(i in env['data_type_support'] for i in ['all', 'qasymm8']) and ("qasymm8" in operators[operator]["files"]["neon"]):
190 file_list += operators[operator]["files"]["neon"]["qasymm8"]
191 if any(i in env['data_type_support'] for i in ['all', 'qasymm8_signed']) and ("qasymm8_signed" in operators[operator]["files"]["neon"]):
192 file_list += operators[operator]["files"]["neon"]["qasymm8_signed"]
193 if any(i in env['data_type_support'] for i in ['all', 'qsymm16']) and ("qsymm16" in operators[operator]["files"]["neon"]):
194 file_list += operators[operator]["files"]["neon"]["qsymm16"]
195 if any(i in env['data_type_support'] for i in ['all', 'integer']) and ("integer" in operators[operator]["files"]["neon"]):
196 file_list += operators[operator]["files"]["neon"]["integer"]
197
198 if (not "sve" in env['arch'] or env['fat_binary']) and ("neon" in operators[operator]["files"]):
199 if any(i in env['data_type_support'] for i in ['all', 'fp16']) and ("fp16" in operators[operator]["files"]["neon"]):
200 file_list += operators[operator]["files"]["neon"]["fp16"]
201 if any(i in env['data_type_support'] for i in ['all', 'fp32']) and ("fp32" in operators[operator]["files"]["neon"]):
202 file_list += operators[operator]["files"]["neon"]["fp32"]
203 if any(i in env['data_layout_support'] for i in ['all', 'nchw']) and ("nchw" in operators[operator]["files"]["neon"]):
204 file_list += operators[operator]['files']['neon']['nchw']
205 if ("all" in operators[operator]["files"]["neon"]):
206 file_list += operators[operator]["files"]["neon"]["all"]
207 if ("sve" in env['arch'] or env['fat_binary']) and ("sve" in operators[operator]["files"]):
208 if any(i in env['data_type_support'] for i in ['all', 'fp16']) and ("fp16" in operators[operator]["files"]["sve"]):
209 file_list_sve += operators[operator]["files"]["sve"]["fp16"]
210 if any(i in env['data_type_support'] for i in ['all', 'fp32']) and ("fp32" in operators[operator]["files"]["sve"]):
211 file_list_sve += operators[operator]["files"]["sve"]["fp32"]
212 if any(i in env['data_type_support'] for i in ['all', 'qasymm8']) and ("qasymm8" in operators[operator]["files"]["sve"]):
213 file_list_sve += operators[operator]["files"]["sve"]["qasymm8"]
214 if any(i in env['data_type_support'] for i in ['all', 'qasymm8_signed']) and ("qasymm8_signed" in operators[operator]["files"]["sve"]):
215 file_list_sve += operators[operator]["files"]["sve"]["qasymm8_signed"]
216 if any(i in env['data_type_support'] for i in ['all', 'qsymm16']) and ("qsymm16" in operators[operator]["files"]["sve"]):
217 file_list_sve += operators[operator]["files"]["sve"]["qsymm16"]
218 if any(i in env['data_type_support'] for i in ['all', 'integer']) and ("integer" in operators[operator]["files"]["sve"]):
219 file_list_sve += operators[operator]["files"]["sve"]["integer"]
220 if ("all" in operators[operator]["files"]["sve"]):
221 file_list_sve += operators[operator]["files"]["sve"]["all"]
222
223 return file_list, file_list_sve
224
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100225arm_compute_env = env.Clone()
Anthony Barbier0e72c692018-08-24 11:22:08 +0100226version_file = arm_compute_env.Command("src/core/arm_compute_version.embed", "", action=create_version_file)
227arm_compute_env.AlwaysBuild(version_file)
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000228
Georgios Pinitas45514032020-12-30 00:03:09 +0000229default_cpp_compiler = 'g++' if env['os'] not in ['android', 'macos'] else 'clang++'
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100230cpp_compiler = os.environ.get('CXX', default_cpp_compiler)
231
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000232# Generate embed files
Anthony Barbier0e72c692018-08-24 11:22:08 +0100233generate_embed = [ version_file ]
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000234if env['opencl'] and env['embed_kernels']:
235 cl_files = Glob('src/core/CL/cl_kernels/*.cl')
236 cl_files += Glob('src/core/CL/cl_kernels/*.h')
237
238 embed_files = [ f.get_path()+"embed" for f in cl_files ]
239 arm_compute_env.Append(CPPPATH =[Dir("./src/core/CL/").path] )
240
241 generate_embed.append(arm_compute_env.Command(embed_files, cl_files, action=resolve_includes))
242
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000243Default(generate_embed)
244if env["build"] == "embed_only":
245 Return()
246
Georgios Pinitas35fcc432020-03-26 18:47:46 +0000247# Append version defines for semantic versioning
248arm_compute_env.Append(CPPDEFINES = [('ARM_COMPUTE_VERSION_MAJOR', LIBRARY_VERSION_MAJOR),
249 ('ARM_COMPUTE_VERSION_MINOR', LIBRARY_VERSION_MINOR),
250 ('ARM_COMPUTE_VERSION_PATCH', LIBRARY_VERSION_PATCH)])
251
Isabella Gottardib28f29d2017-11-09 17:05:07 +0000252# Don't allow undefined references in the libraries:
Georgios Pinitas45514032020-12-30 00:03:09 +0000253undefined_flag = '-Wl,-undefined,error' if 'macos' in arm_compute_env["os"] else '-Wl,--no-undefined'
254arm_compute_env.Append(LINKFLAGS=[undefined_flag])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100255arm_compute_env.Append(CPPPATH =[Dir("./src/core/").path] )
256
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100257arm_compute_env.Append(LIBS = ['dl'])
258
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100259with (open(Dir('#').path + '/filelist.json')) as fp:
260 filelist = json.load(fp)
261
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100262core_files = Glob('src/core/*.cpp')
263core_files += Glob('src/core/CPP/*.cpp')
264core_files += Glob('src/core/CPP/kernels/*.cpp')
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100265core_files += Glob('src/core/helpers/*.cpp')
Sang-Hoon Park3687ee12020-06-24 13:34:04 +0100266core_files += Glob('src/core/utils/*.cpp')
Michalis Spyrou7043d362018-12-03 13:58:32 +0000267core_files += Glob('src/core/utils/helpers/*.cpp')
268core_files += Glob('src/core/utils/io/*.cpp')
269core_files += Glob('src/core/utils/quantization/*.cpp')
Georgios Pinitasb8d5b952019-05-16 14:13:03 +0100270core_files += Glob('src/core/utils/misc/*.cpp')
Michalis Spyrou7043d362018-12-03 13:58:32 +0000271if env["logging"]:
272 core_files += Glob('src/core/utils/logging/*.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100273
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100274runtime_files = Glob('src/runtime/*.cpp')
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000275runtime_files += Glob('src/runtime/CPP/ICPPSimpleFunction.cpp')
276runtime_files += Glob('src/runtime/CPP/functions/*.cpp')
277
Georgios Pinitasc3c352e2021-03-18 10:59:40 +0000278# C API files
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100279runtime_files += filelist['c_api']['cpu']
280
Georgios Pinitasc3c352e2021-03-18 10:59:40 +0000281if env['opencl']:
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100282 runtime_files += filelist['c_api']['gpu']
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000283
Georgios Pinitasc3c352e2021-03-18 10:59:40 +0000284# Common backend files
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100285core_files += filelist['common']
Georgios Pinitasc3c352e2021-03-18 10:59:40 +0000286
Michalis Spyrou20fca522021-06-07 14:23:57 +0100287# Initialize high priority core files
288core_files_hp = core_files
289core_files_sve_hp = []
290core_files = []
291
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100292runtime_files += Glob('src/runtime/CPP/SingleThreadScheduler.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100293
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100294graph_files = Glob('src/graph/*.cpp')
295graph_files += Glob('src/graph/*/*.cpp')
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000296
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100297if env['cppthreads']:
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100298 runtime_files += Glob('src/runtime/CPP/CPPScheduler.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100299
300if env['openmp']:
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100301 runtime_files += Glob('src/runtime/OMP/OMPScheduler.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100302
303if env['opencl']:
304 core_files += Glob('src/core/CL/*.cpp')
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000305 core_files += Glob('src/core/gpu/cl/*.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100306
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100307 runtime_files += Glob('src/runtime/CL/*.cpp')
308 runtime_files += Glob('src/runtime/CL/functions/*.cpp')
Gian Marco Iodice5a4fe192020-03-16 12:22:37 +0000309 runtime_files += Glob('src/runtime/CL/gemm/*.cpp')
Georgios Pinitasc0d1c862018-03-23 15:13:15 +0000310 runtime_files += Glob('src/runtime/CL/tuners/*.cpp')
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000311 runtime_files += Glob('src/runtime/gpu/cl/*.cpp')
SiCong Li7061eb22021-01-08 15:16:02 +0000312 runtime_files += Glob('src/runtime/CL/mlgo/*.cpp')
SiCong Libd8b1e22021-02-04 13:07:09 +0000313 runtime_files += Glob('src/runtime/CL/gemm_auto_heuristics/*.cpp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100314
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000315 runtime_files += Glob('src/gpu/cl/*.cpp')
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100316 graph_files += Glob('src/graph/backends/CL/*.cpp')
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000317
Michalis Spyrou20fca522021-06-07 14:23:57 +0100318 operators = filelist['gpu']['operators']
319 for operator in operators:
320 runtime_files += get_gpu_runtime_files(operator)
321 if "kernel" in operators[operator]["files"]:
322 core_files += operators[operator]["files"]["kernel"]
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000323
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100324sve_o = []
325core_files_sve = []
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100326if env['neon']:
327 core_files += Glob('src/core/NEON/*.cpp')
Pablo Telloeb82fd22018-02-23 13:43:50 +0000328
Georgios Pinitas30271c72019-06-24 14:56:34 +0100329 # build winograd/depthwise sources for either v7a / v8a
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100330 arm_compute_env.Append(CPPPATH = ["src/core/NEON/kernels/convolution/common/",
Michele Di Giorgio6ad60af2020-06-09 14:52:15 +0100331 "src/core/NEON/kernels/convolution/winograd/",
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100332 "src/core/NEON/kernels/convolution/depthwise/",
333 "src/core/NEON/kernels/assembly/",
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100334 "arm_compute/core/NEON/kernels/assembly/",
335 "src/core/cpu/kernels/assembly/",])
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000336
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100337 graph_files += Glob('src/graph/backends/NEON/*.cpp')
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000338
Michalis Spyrou20fca522021-06-07 14:23:57 +0100339 # Load files based on user's options
340 operators = filelist['cpu']['operators']
341 for operator in operators:
342 runtime_files += get_cpu_runtime_files(operator)
343 if operator in filelist['cpu']['high_priority']:
344 file_list, file_list_sve = get_cpu_kernel_files(operator)
345 core_files_hp += file_list
346 core_files_sve_hp += file_list_sve
347 else:
348 file_list, file_list_sve = get_cpu_kernel_files(operator)
349 core_files += file_list
350 core_files_sve += file_list_sve
Georgios Pinitasff4fca02020-10-02 21:00:00 +0100351
Anthony Barbier8e6faf12017-08-01 17:03:19 +0100352 runtime_files += Glob('src/runtime/NEON/*.cpp')
353 runtime_files += Glob('src/runtime/NEON/functions/*.cpp')
Michalis Spyrou20fca522021-06-07 14:23:57 +0100354 runtime_files += filelist['cpu']['all']
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000355
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100356bootcode_o = []
357if env['os'] == 'bare_metal':
358 bootcode_files = Glob('bootcode/*.s')
359 bootcode_o = build_bootcode_objs(bootcode_files)
360Export('bootcode_o')
361
Michalis Spyrou20fca522021-06-07 14:23:57 +0100362high_priority_o = build_objs(core_files_hp)
363high_priority_sve_o = []
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100364if (env['fat_binary']):
365 sve_o = build_sve_objs(core_files_sve)
Michalis Spyrou20fca522021-06-07 14:23:57 +0100366 high_priority_sve_o = build_sve_objs(core_files_sve_hp)
367 arm_compute_core_a = build_library('arm_compute_core-static', arm_compute_env, core_files + high_priority_o + sve_o + high_priority_sve_o, static=True)
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100368else:
Michalis Spyrou20fca522021-06-07 14:23:57 +0100369 high_priority_o += build_objs(core_files_sve_hp)
370 arm_compute_core_a = build_library('arm_compute_core-static', arm_compute_env, core_files + core_files_sve + high_priority_o, static=True)
371arm_compute_core_hp_a = build_library('arm_compute_core_hp-static', arm_compute_env, high_priority_o + high_priority_sve_o, static=True)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100372Export('arm_compute_core_a')
Michalis Spyrou20fca522021-06-07 14:23:57 +0100373Export('arm_compute_core_hp_a')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100374
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100375if env['os'] != 'bare_metal' and not env['standalone']:
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100376 if (env['fat_binary']):
Michalis Spyrou20fca522021-06-07 14:23:57 +0100377 arm_compute_core_so = build_library('arm_compute_core', arm_compute_env, core_files + high_priority_o + sve_o + high_priority_sve_o, static=False)
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100378 else:
Michalis Spyrou20fca522021-06-07 14:23:57 +0100379 arm_compute_core_so = build_library('arm_compute_core', arm_compute_env, core_files + core_files_sve + high_priority_o, static=False)
380 arm_compute_core_so_hp = build_library('arm_compute_core_hp', arm_compute_env, high_priority_o + high_priority_sve_o, static=False)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100381 Export('arm_compute_core_so')
Michalis Spyrou20fca522021-06-07 14:23:57 +0100382 Export('arm_compute_core_so_hp')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100383
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100384arm_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 +0100385Export('arm_compute_a')
386
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100387if env['os'] != 'bare_metal' and not env['standalone']:
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100388 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 +0100389 Depends(arm_compute_so, arm_compute_core_so)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100390 Export('arm_compute_so')
391
Sang-Hoon Park18fbb922021-01-14 14:50:25 +0000392arm_compute_graph_env = arm_compute_env.Clone()
393
394arm_compute_graph_env.Append(CXXFLAGS = ['-Wno-redundant-move', '-Wno-pessimizing-move'])
395
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100396arm_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 +0100397Export('arm_compute_graph_a')
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000398
399if env['os'] != 'bare_metal' and not env['standalone']:
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100400 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 +0000401 Depends(arm_compute_graph_so, arm_compute_so)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100402 Export('arm_compute_graph_so')
403
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100404if env['standalone']:
405 alias = arm_compute_env.Alias("arm_compute", [arm_compute_a])
406else:
407 alias = arm_compute_env.Alias("arm_compute", [arm_compute_a, arm_compute_so])
408
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100409Default(alias)
410
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100411if env['standalone']:
412 Depends([alias,arm_compute_core_a], generate_embed)
413else:
414 Depends([alias,arm_compute_core_so, arm_compute_core_a], generate_embed)