blob: f7a343c42f9d0b59998d94e9b51a496394316ed9 [file] [log] [blame]
Motti Gondabi9d9ad332022-01-23 12:42:24 +02001#!/usr/bin/python
2# -*- coding: utf-8 -*-
3
Felix Thomasmathibalan3a704ae2024-01-18 09:11:13 +00004# Copyright (c) 2016-2024 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01005#
6# SPDX-License-Identifier: MIT
7#
8# Permission is hereby granted, free of charge, to any person obtaining a copy
9# of this software and associated documentation files (the "Software"), to
10# deal in the Software without restriction, including without limitation the
11# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
12# sell copies of the Software, and to permit persons to whom the Software is
13# furnished to do so, subject to the following conditions:
14#
15# The above copyright notice and this permission notice shall be included in all
16# copies or substantial portions of the Software.
17#
18# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24# SOFTWARE.
Motti Gondabi6f3a9f52021-11-09 15:47:17 +020025
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026import collections
27import os.path
28import re
29import subprocess
Georgios Pinitasea857272021-01-22 05:47:37 +000030import zlib
Georgios Pinitasbdcdc392021-04-22 16:42:03 +010031import json
Adnan AlSinan39aebd12021-08-06 12:44:51 +010032import codecs
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033
34VERSION = "v0.0-unreleased"
Felix Thomasmathibalan0c490242024-02-12 13:48:29 +000035LIBRARY_VERSION_MAJOR = 35
Sang-Hoon Park6d0b3842020-08-14 14:48:08 +010036LIBRARY_VERSION_MINOR = 0
Felix Thomasmathibalan71bb2602024-03-08 15:34:58 +000037LIBRARY_VERSION_PATCH = 1
Georgios Pinitas35fcc432020-03-26 18:47:46 +000038SONAME_VERSION = str(LIBRARY_VERSION_MAJOR) + "." + str(LIBRARY_VERSION_MINOR) + "." + str(LIBRARY_VERSION_PATCH)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039
40Import('env')
41Import('vars')
Anthony Barbier01bbd5f2018-11-01 15:10:51 +000042Import('install_lib')
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043
Michalis Spyrou748a7c82019-10-07 13:00:44 +010044def build_bootcode_objs(sources):
Michalis Spyrou748a7c82019-10-07 13:00:44 +010045 arm_compute_env.Append(ASFLAGS = "-I bootcode/")
46 obj = arm_compute_env.Object(sources)
47 obj = install_lib(obj)
48 Default(obj)
49 return obj
50
Motti Gondabi9d9ad332022-01-23 12:42:24 +020051
Motti Gondabi9d9ad332022-01-23 12:42:24 +020052# @brief Create a list of object from a given file list.
Motti Gondabi6f3a9f52021-11-09 15:47:17 +020053#
Motti Gondabi9d9ad332022-01-23 12:42:24 +020054# @param arch_info A dictionary represents the architecture info such as the
55# compiler flags and defines (filedefs.json).
56#
57# @param sources A list of files to build
Motti Gondabi6f3a9f52021-11-09 15:47:17 +020058#
59# @return A list of objects for the corresponding architecture.
Michalis Spyrou20fca522021-06-07 14:23:57 +010060
Motti Gondabi9d9ad332022-01-23 12:42:24 +020061def build_obj_list(arch_info, sources, static=False):
Motti Gondabi6f3a9f52021-11-09 15:47:17 +020062
Motti Gondabi9d9ad332022-01-23 12:42:24 +020063 # Clone environment
Georgios Pinitasbdcdc392021-04-22 16:42:03 +010064 tmp_env = arm_compute_env.Clone()
Motti Gondabi6f3a9f52021-11-09 15:47:17 +020065
Motti Gondabi9d9ad332022-01-23 12:42:24 +020066 # Append architecture spec
67 if 'cxxflags' in arch_info and len(arch_info['cxxflags']) > 0:
68 tmp_env.Append(CXXFLAGS = arch_info['cxxflags'])
Motti Gondabi6f3a9f52021-11-09 15:47:17 +020069
Motti Gondabi9d9ad332022-01-23 12:42:24 +020070 # Build and return objects
71 if static:
72 objs = tmp_env.StaticObject(sources)
Motti Gondabi6f3a9f52021-11-09 15:47:17 +020073 else:
Motti Gondabi9d9ad332022-01-23 12:42:24 +020074 objs = tmp_env.SharedObject(sources)
Giorgio Arena892b70a2022-03-30 12:23:10 +010075
Motti Gondabif76a5022021-12-21 13:19:29 +020076 tmp_env.Default(objs)
77 return objs
Georgios Pinitasbdcdc392021-04-22 16:42:03 +010078
Motti Gondabi9d9ad332022-01-23 12:42:24 +020079# @brief Build multi-ISA files with the respective architecture.
80#
81# @return Two distinct lists:
82# A list of static objects
83# A list of shared objects
Michalis Spyrou20fca522021-06-07 14:23:57 +010084
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +010085def build_multiisa_lib_objects():
Motti Gondabi9d9ad332022-01-23 12:42:24 +020086 lib_static_objs = [] # static objects
87 lib_shared_objs = [] # shared objects
88
Pablo Marquez Tello391f8722023-12-07 15:27:26 +000089 # note that ARM_COMPUTE_ENABLE_FP16 is enabled in update_data_type_layout_flags() to make
90 # sure the environment is progated to the validation suite
Motti Gondabi9d9ad332022-01-23 12:42:24 +020091 arm_compute_env.Append(CPPDEFINES = ['ENABLE_NEON', 'ARM_COMPUTE_ENABLE_NEON',
Pablo Marquez Tello391f8722023-12-07 15:27:26 +000092 'ENABLE_SVE', 'ARM_COMPUTE_ENABLE_SVE','ARM_COMPUTE_ENABLE_BF16',
Motti Gondabi9d9ad332022-01-23 12:42:24 +020093 'ARM_COMPUTE_ENABLE_I8MM', 'ARM_COMPUTE_ENABLE_SVEF32MM'])
94
95 # Build all the common files for the base architecture
Pablo Marquez Telloec89b912024-01-29 16:07:17 +000096 if env['arch'] == 'armv8a' or env['arch'] == 'arm64-v8a':
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +010097 lib_static_objs += build_obj_list(filedefs["armv8-a"], misa_lib_files, static=True)
98 lib_shared_objs += build_obj_list(filedefs["armv8-a"], misa_lib_files, static=False)
Sunita Nadampalli911d5722023-05-02 14:05:39 +000099 else:
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100100 lib_static_objs += build_obj_list(filedefs["armv8.2-a"], misa_lib_files, static=True)
101 lib_shared_objs += build_obj_list(filedefs["armv8.2-a"], misa_lib_files, static=False)
102
103 # Build the FP16 specific files
104 lib_static_objs += build_obj_list(filedefs["armv8.2-a"], misa_lib_files_neon_fp16, static=True)
105 lib_shared_objs += build_obj_list(filedefs["armv8.2-a"], misa_lib_files_neon_fp16, static=False)
Giorgio Arena892b70a2022-03-30 12:23:10 +0100106
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200107 # Build the SVE specific files
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100108 lib_static_objs += build_obj_list(filedefs["armv8.2-a-sve"], misa_lib_files_sve, static=True)
109 lib_shared_objs += build_obj_list(filedefs["armv8.2-a-sve"], misa_lib_files_sve, static=False)
110 lib_static_objs += build_obj_list(filedefs["armv8.2-a-sve"], misa_lib_files_sve_fp16, static=True)
111 lib_shared_objs += build_obj_list(filedefs["armv8.2-a-sve"], misa_lib_files_sve_fp16, static=False)
112
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200113
114 # Build the SVE2 specific files
115 arm_compute_env.Append(CPPDEFINES = ['ARM_COMPUTE_ENABLE_SVE2'])
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100116 lib_static_objs += build_obj_list(filedefs["armv8.6-a-sve2"], misa_lib_files_sve2, static=True)
117 lib_shared_objs += build_obj_list(filedefs["armv8.6-a-sve2"], misa_lib_files_sve2, static=False)
118 lib_static_objs += build_obj_list(filedefs["armv8.6-a-sve2"], misa_lib_files_sve2_fp16, static=True)
119 lib_shared_objs += build_obj_list(filedefs["armv8.6-a-sve2"], misa_lib_files_sve2_fp16, static=False)
120
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200121
122 return lib_static_objs, lib_shared_objs
123
Michalis Spyrou20fca522021-06-07 14:23:57 +0100124
Jakub Sujake86f9922023-07-05 17:30:02 +0100125# The built-in SCons Glob() method does not support recursive searching of directories, thus we implement our own:
126def recursive_glob(root_dir, pattern):
127 files = []
128 regex = re.compile(pattern)
129
130 for dirpath, _, filenames in os.walk(root_dir):
131 for f in filenames:
132 f = os.path.join(dirpath, f)
133 if regex.match(f):
134 files.append(f)
135
136 return files
137
138
139def get_ckw_obj_list():
Gunes Bayir2b9fa592024-01-17 16:07:03 +0000140 cmake_obj_dir = os.path.abspath("CMakeFiles/ckw.dir/src")
Jakub Sujaka38b4ab2023-07-11 14:18:35 +0100141 return recursive_glob(root_dir=cmake_obj_dir, pattern=".*.o$")
Jakub Sujake86f9922023-07-05 17:30:02 +0100142
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100143
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100144def build_library(name, build_env, sources, static=False, libs=[]):
Mohammed Suhail Munshide60ed92021-12-21 11:07:27 +0000145 cloned_build_env = build_env.Clone()
Motti Gondabif76a5022021-12-21 13:19:29 +0200146 if env['os'] == 'android' and static == False:
Mohammed Suhail Munshide60ed92021-12-21 11:07:27 +0000147 cloned_build_env["LINKFLAGS"].remove('-pie')
148 cloned_build_env["LINKFLAGS"].remove('-static-libstdc++')
149
Jakub Sujake86f9922023-07-05 17:30:02 +0100150 # -- Static Library --
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151 if static:
Jakub Sujake86f9922023-07-05 17:30:02 +0100152 # Recreate the list to avoid mutating the original
153 static_sources = list(sources)
154
155 # Dynamic Fusion has a direct dependency on the Compute Kernel Writer (CKW) subproject, therefore we collect the
156 # built CKW objects to pack into the Compute Library archive.
157 if env['experimental_dynamic_fusion'] and name == "arm_compute-static":
158 static_sources += get_ckw_obj_list()
159
160 obj = cloned_build_env.StaticLibrary(name, source=static_sources, LIBS=arm_compute_env["LIBS"] + libs)
161
162 # -- Shared Library --
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100163 else:
Jakub Sujake86f9922023-07-05 17:30:02 +0100164 # Always statically link Compute Library against CKW
165 if env['experimental_dynamic_fusion'] and name == "arm_compute":
Gunes Bayir2b9fa592024-01-17 16:07:03 +0000166 libs.append('libckw.a')
Jakub Sujake86f9922023-07-05 17:30:02 +0100167
168 # Add shared library versioning
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100169 if env['set_soname']:
Mohammed Suhail Munshide60ed92021-12-21 11:07:27 +0000170 obj = cloned_build_env.SharedLibrary(name, source=sources, SHLIBVERSION = SONAME_VERSION, LIBS = arm_compute_env["LIBS"] + libs)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100171 else:
Mohammed Suhail Munshide60ed92021-12-21 11:07:27 +0000172 obj = cloned_build_env.SharedLibrary(name, source=sources, LIBS = arm_compute_env["LIBS"] + libs)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100173
Pablo Marquez Tello299d3a12022-10-12 14:58:24 +0100174 if env['mapfile']:
Pablo Marquez Telloa4f88702022-10-21 10:24:23 +0100175 if not 'windows' in env['os'] and not 'macos' in env['os']:
176 cloned_build_env['LINKFLAGS'].append('"-Wl,-Map='+ name + '.map"')
177 else:
178 cloned_build_env['LINKFLAGS'].append('-Wl,-map,' + name + '.map')
Pablo Marquez Tello299d3a12022-10-12 14:58:24 +0100179
Anthony Barbier01bbd5f2018-11-01 15:10:51 +0000180 obj = install_lib(obj)
Motti Gondabif76a5022021-12-21 13:19:29 +0200181 build_env.Default(obj)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100182 return obj
183
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100184
Georgios Pinitasf605bd22020-11-26 11:55:09 +0000185def remove_incode_comments(code):
186 def replace_with_empty(match):
187 s = match.group(0)
188 if s.startswith('/'):
189 return " "
190 else:
191 return s
192
193 comment_regex = re.compile(r'//.*?$|/\*.*?\*/|\'(?:\\.|[^\\\'])*\'|"(?:\\.|[^\\"])*"', re.DOTALL | re.MULTILINE)
194 return re.sub(comment_regex, replace_with_empty, code)
195
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100196
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100197def resolve_includes(target, source, env):
198 # File collection
199 FileEntry = collections.namedtuple('FileEntry', 'target_name file_contents')
200
201 # Include pattern
202 pattern = re.compile("#include \"(.*)\"")
203
204 # Get file contents
205 files = []
206 for i in range(len(source)):
207 src = source[i]
208 dst = target[i]
Georgios Pinitasf605bd22020-11-26 11:55:09 +0000209 contents = src.get_contents().decode('utf-8')
210 contents = remove_incode_comments(contents).splitlines()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100211 entry = FileEntry(target_name=dst, file_contents=contents)
212 files.append((os.path.basename(src.get_path()),entry))
213
214 # Create dictionary of tupled list
215 files_dict = dict(files)
216
217 # Check for includes (can only be files in the same folder)
218 final_files = []
219 for file in files:
220 done = False
221 tmp_file = file[1].file_contents
222 while not done:
223 file_count = 0
224 updated_file = []
225 for line in tmp_file:
226 found = pattern.search(line)
227 if found:
Giorgio Arena09adcc42022-03-08 11:12:27 +0000228 # Only get the header file name and discard the relative path.
Jakub Sujak0d27b2e2023-08-24 14:01:20 +0100229 # E.g. "src/core/CL/cl_kernels/activation_float_helpers.h" -> "activation_float_helpers.h"
Giorgio Arena232c4522022-03-03 10:09:01 +0000230 include_file = found.group(1).split('/')[-1]
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100231 data = files_dict[include_file].file_contents
232 updated_file.extend(data)
233 else:
234 updated_file.append(line)
235 file_count += 1
236
237 # Check if all include are replaced.
238 if file_count == len(tmp_file):
239 done = True
240
241 # Update temp file
242 tmp_file = updated_file
243
244 # Append and prepend string literal identifiers and add expanded file to final list
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100245 entry = FileEntry(target_name=file[1].target_name, file_contents=tmp_file)
246 final_files.append((file[0], entry))
247
248 # Write output files
249 for file in final_files:
250 with open(file[1].target_name.get_path(), 'w+') as out_file:
Georgios Pinitasea857272021-01-22 05:47:37 +0000251 file_to_write = "\n".join( file[1].file_contents )
252 if env['compress_kernels']:
Adnan AlSinan39aebd12021-08-06 12:44:51 +0100253 file_to_write = zlib.compress(file_to_write.encode('utf-8'), 9)
254 file_to_write = codecs.encode(file_to_write, "base64").decode('utf-8').replace("\n", "")
Georgios Pinitasea857272021-01-22 05:47:37 +0000255 file_to_write = "R\"(" + file_to_write + ")\""
256 out_file.write(file_to_write)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100257
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100258
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100259def create_version_file(target, source, env):
260# Generate string with build options library version to embed in the library:
261 try:
262 git_hash = subprocess.check_output(["git", "rev-parse", "HEAD"])
263 except (OSError, subprocess.CalledProcessError):
264 git_hash="unknown"
265
Matthew Benthamdd8d7f42023-06-15 11:50:57 +0000266 build_options = str(vars.args).replace('"', '\\"')
267 build_info = "\"arm_compute_version=%s Build options: %s Git hash=%s\"" % (VERSION,build_options, git_hash.strip())
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100268 with open(target[0].get_path(), "w") as fd:
269 fd.write(build_info)
270
Michalis Spyrou20fca522021-06-07 14:23:57 +0100271
Freddie Liardet487d3902021-09-21 12:36:43 +0100272def get_attrs_list(env, data_types, data_layouts):
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100273 attrs = []
Michalis Spyrou20fca522021-06-07 14:23:57 +0100274
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100275 # Manage data-types
Freddie Liardet487d3902021-09-21 12:36:43 +0100276 if 'all' in data_types:
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100277 attrs += ['fp16', 'fp32', 'integer', 'qasymm8', 'qasymm8_signed', 'qsymm16']
278 else:
Freddie Liardet487d3902021-09-21 12:36:43 +0100279 if 'fp16' in data_types: attrs += ['fp16']
280 if 'fp32' in data_types: attrs += ['fp32']
281 if 'integer' in data_types: attrs += ['integer']
282 if 'qasymm8' in data_types: attrs += ['qasymm8']
283 if 'qasymm8_signed' in data_types: attrs += ['qasymm8_signed']
284 if 'qsymm16' in data_types: attrs += ['qsymm16']
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100285 # Manage data-layouts
Freddie Liardet487d3902021-09-21 12:36:43 +0100286 if 'all' in data_layouts:
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100287 attrs += ['nhwc', 'nchw']
288 else:
Freddie Liardet487d3902021-09-21 12:36:43 +0100289 if 'nhwc' in data_layouts: attrs += ['nhwc']
290 if 'nchw' in data_layouts: attrs += ['nchw']
Michalis Spyrou20fca522021-06-07 14:23:57 +0100291
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100292 # Manage execution state
Freddie Liardet487d3902021-09-21 12:36:43 +0100293 attrs += ['estate32' if (env['estate'] == 'auto' and 'v7a' in env['arch']) or '32' in env['estate'] else 'estate64']
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200294
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100295 return attrs
Michalis Spyrou20fca522021-06-07 14:23:57 +0100296
Michalis Spyrou20fca522021-06-07 14:23:57 +0100297
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100298def get_operator_backend_files(filelist, operators, backend='', techs=[], attrs=[], include_common=True):
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100299 files = { "common" : [] }
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100300 # Early return if filelist is empty
301 if backend not in filelist:
302 return files
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100303 # Iterate over operators and create the file lists to compiler
304 for operator in operators:
305 if operator in filelist[backend]['operators']:
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100306 if include_common :
307 files['common'] += filelist[backend]['operators'][operator]["files"]["common"]
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100308 for tech in techs:
309 if tech in filelist[backend]['operators'][operator]["files"]:
310 # Add tech as a key to dictionary if not there
311 if tech not in files:
312 files[tech] = []
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100313 # Add tech files to the tech file list
314 tech_files = filelist[backend]['operators'][operator]["files"][tech]
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100315 if include_common:
316 files[tech] += tech_files.get('common', [])
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100317 for attr in attrs:
318 files[tech] += tech_files.get(attr, [])
319
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100320
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100321 # Remove duplicates if they exist
322 return {k: list(set(v)) for k,v in files.items()}
323
324def collect_operators(filelist, operators, backend=''):
325 ops = set()
326 for operator in operators:
327 if operator in filelist[backend]['operators']:
328 ops.add(operator)
329 if 'deps' in filelist[backend]['operators'][operator]:
330 ops.update(filelist[backend]['operators'][operator]['deps'])
331 else:
332 print("Operator {0} is unsupported on {1} backend!".format(operator, backend))
333
334 return ops
335
336
337def resolve_operator_dependencies(filelist, operators, backend=''):
338 resolved_operators = collect_operators(filelist, operators, backend)
339
340 are_ops_resolved = False
341 while not are_ops_resolved:
342 resolution_pass = collect_operators(filelist, resolved_operators, backend)
343 if len(resolution_pass) != len(resolved_operators):
344 resolved_operators.update(resolution_pass)
345 else:
346 are_ops_resolved = True
347
348 return resolved_operators
349
Freddie Liardet487d3902021-09-21 12:36:43 +0100350def read_build_config_json(build_config):
351 build_config_contents = {}
352 custom_operators = []
353 custom_types = []
354 custom_layouts = []
355 if os.path.isfile(build_config):
356 with open(build_config) as f:
357 try:
358 build_config_contents = json.load(f)
359 except:
360 print("Warning: Build configuration file is of invalid JSON format!")
361 else:
362 try:
363 build_config_contents = json.loads(build_config)
364 except:
365 print("Warning: Build configuration string is of invalid JSON format!")
366 if build_config_contents:
367 custom_operators = build_config_contents.get("operators", [])
368 custom_types = build_config_contents.get("data_types", [])
369 custom_layouts = build_config_contents.get("data_layouts", [])
370 return custom_operators, custom_types, custom_layouts
Michalis Spyrou20fca522021-06-07 14:23:57 +0100371
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100372arm_compute_env = env.Clone()
Anthony Barbier0e72c692018-08-24 11:22:08 +0100373version_file = arm_compute_env.Command("src/core/arm_compute_version.embed", "", action=create_version_file)
374arm_compute_env.AlwaysBuild(version_file)
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000375
Kevin Lo7195f712022-01-07 15:46:02 +0800376default_cpp_compiler = 'g++' if env['os'] not in ['android', 'macos', 'openbsd'] else 'clang++'
Georgios Pinitas4d9687e2020-10-21 18:33:36 +0100377cpp_compiler = os.environ.get('CXX', default_cpp_compiler)
378
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000379# Generate embed files
Anthony Barbier0e72c692018-08-24 11:22:08 +0100380generate_embed = [ version_file ]
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000381if env['opencl'] and env['embed_kernels']:
Giorgio Arena892b70a2022-03-30 12:23:10 +0100382
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100383 # Header files
384 cl_helper_files = [ 'src/core/CL/cl_kernels/activation_float_helpers.h',
385 'src/core/CL/cl_kernels/activation_quant_helpers.h',
386 'src/core/CL/cl_kernels/gemm_helpers.h',
387 'src/core/CL/cl_kernels/helpers_asymm.h',
388 'src/core/CL/cl_kernels/helpers.h',
389 'src/core/CL/cl_kernels/load_store_utility.h',
390 'src/core/CL/cl_kernels/repeat.h',
391 'src/core/CL/cl_kernels/tile_helpers.h',
392 'src/core/CL/cl_kernels/types.h',
SiCongLi1af54162021-10-06 15:25:57 +0100393 'src/core/CL/cl_kernels/warp_helpers.h',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100394 ]
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000395
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100396 # Common kernels
397 cl_files_common = ['src/core/CL/cl_kernels/common/activation_layer.cl',
398 'src/core/CL/cl_kernels/common/activation_layer_quant.cl',
399 'src/core/CL/cl_kernels/common/arg_min_max.cl',
400 'src/core/CL/cl_kernels/common/batchnormalization_layer.cl',
401 'src/core/CL/cl_kernels/common/bounding_box_transform.cl',
402 'src/core/CL/cl_kernels/common/bounding_box_transform_quantized.cl',
403 'src/core/CL/cl_kernels/common/bitwise_op.cl',
404 'src/core/CL/cl_kernels/common/cast.cl',
405 'src/core/CL/cl_kernels/common/comparisons.cl',
406 'src/core/CL/cl_kernels/common/concatenate.cl',
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000407 'src/core/CL/cl_kernels/common/convolution_layer.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100408 'src/core/CL/cl_kernels/common/col2im.cl',
409 'src/core/CL/cl_kernels/common/convert_fc_weights.cl',
410 'src/core/CL/cl_kernels/common/copy_tensor.cl',
411 'src/core/CL/cl_kernels/common/crop_tensor.cl',
412 'src/core/CL/cl_kernels/common/deconvolution_layer.cl',
413 'src/core/CL/cl_kernels/common/dequantization_layer.cl',
414 'src/core/CL/cl_kernels/common/elementwise_operation.cl',
415 'src/core/CL/cl_kernels/common/elementwise_operation_quantized.cl',
416 'src/core/CL/cl_kernels/common/elementwise_unary.cl',
Ramy Elgammal14d7b532023-01-30 04:56:47 +0000417 'src/core/CL/cl_kernels/common/elementwise_unary_quantized.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100418 'src/core/CL/cl_kernels/common/fft_digit_reverse.cl',
419 'src/core/CL/cl_kernels/common/fft.cl',
420 'src/core/CL/cl_kernels/common/fft_scale.cl',
421 'src/core/CL/cl_kernels/common/fill_border.cl',
422 'src/core/CL/cl_kernels/common/floor.cl',
423 'src/core/CL/cl_kernels/common/gather.cl',
424 'src/core/CL/cl_kernels/common/gemm.cl',
Gunes Bayir4bfc70e2021-12-10 16:17:56 +0000425 'src/core/CL/cl_kernels/common/gemm_reshaped_only_rhs_mmul.cl',
ramelg019cca5922021-11-11 10:05:00 +0000426 'src/core/CL/cl_kernels/common/gemm_utils.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100427 'src/core/CL/cl_kernels/common/gemmlowp.cl',
Freddie Liardete572dff2022-05-16 14:09:10 +0100428 'src/core/CL/cl_kernels/common/gemmlowp_reshaped_only_rhs_mmul.cl',
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000429 'src/core/CL/cl_kernels/common/gemv.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100430 'src/core/CL/cl_kernels/common/generate_proposals.cl',
431 'src/core/CL/cl_kernels/common/generate_proposals_quantized.cl',
432 'src/core/CL/cl_kernels/common/instance_normalization.cl',
433 'src/core/CL/cl_kernels/common/l2_normalize.cl',
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000434 'src/core/CL/cl_kernels/common/mat_mul.cl',
SiCong Lia8d80582023-05-19 14:23:37 +0100435 'src/core/CL/cl_kernels/common/mat_mul_mmul.cl',
Gunes Bayir9d0c4de2023-04-13 18:22:58 +0100436 'src/core/CL/cl_kernels/common/mat_mul_quantized.cl',
Gunes Bayire87fa662023-09-07 12:20:33 +0100437 'src/core/CL/cl_kernels/common/mat_mul_quantized_mmul.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100438 'src/core/CL/cl_kernels/common/mean_stddev_normalization.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100439 'src/core/CL/cl_kernels/common/memset.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100440 'src/core/CL/cl_kernels/common/minmax_layer.cl',
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000441 'src/core/CL/cl_kernels/common/nonmax.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100442 'src/core/CL/cl_kernels/common/pad_layer.cl',
443 'src/core/CL/cl_kernels/common/permute.cl',
444 'src/core/CL/cl_kernels/common/pixelwise_mul_float.cl',
445 'src/core/CL/cl_kernels/common/pixelwise_mul_int.cl',
446 'src/core/CL/cl_kernels/common/qlstm_layer_normalization.cl',
447 'src/core/CL/cl_kernels/common/quantization_layer.cl',
448 'src/core/CL/cl_kernels/common/range.cl',
449 'src/core/CL/cl_kernels/common/reduction_operation.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100450 'src/core/CL/cl_kernels/common/reshape_layer.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100451 'src/core/CL/cl_kernels/common/reverse.cl',
452 'src/core/CL/cl_kernels/common/roi_align_layer.cl',
453 'src/core/CL/cl_kernels/common/roi_align_layer_quantized.cl',
454 'src/core/CL/cl_kernels/common/roi_pooling_layer.cl',
455 'src/core/CL/cl_kernels/common/select.cl',
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000456 'src/core/CL/cl_kernels/common/slice_ops.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100457 'src/core/CL/cl_kernels/common/softmax_layer.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100458 'src/core/CL/cl_kernels/common/stack_layer.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100459 'src/core/CL/cl_kernels/common/tile.cl',
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000460 'src/core/CL/cl_kernels/common/transpose.cl',
461 'src/core/CL/cl_kernels/common/unpooling_layer.cl'
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100462 ]
463
464 # NCHW kernels
465 cl_files_nchw = ['src/core/CL/cl_kernels/nchw/batch_to_space.cl',
466 'src/core/CL/cl_kernels/nchw/batchnormalization_layer.cl',
467 'src/core/CL/cl_kernels/nchw/channel_shuffle.cl',
468 'src/core/CL/cl_kernels/nchw/depth_to_space.cl',
Adnan AlSinan30124352021-12-02 19:12:20 +0000469 'src/core/CL/cl_kernels/nchw/direct_convolution.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100470 'src/core/CL/cl_kernels/nchw/dequantization_layer.cl',
471 'src/core/CL/cl_kernels/nchw/im2col.cl',
472 'src/core/CL/cl_kernels/nchw/normalization_layer.cl',
473 'src/core/CL/cl_kernels/nchw/normalize_planar_yuv_layer.cl',
474 'src/core/CL/cl_kernels/nchw/normalize_planar_yuv_layer_quantized.cl',
475 'src/core/CL/cl_kernels/nchw/pooling_layer.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100476 'src/core/CL/cl_kernels/nchw/prior_box_layer.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100477 'src/core/CL/cl_kernels/nchw/reorg_layer.cl',
478 'src/core/CL/cl_kernels/nchw/scale.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100479 'src/core/CL/cl_kernels/nchw/space_to_batch.cl',
480 'src/core/CL/cl_kernels/nchw/space_to_depth.cl',
481 'src/core/CL/cl_kernels/nchw/upsample_layer.cl',
482 'src/core/CL/cl_kernels/nchw/winograd_filter_transform.cl',
483 'src/core/CL/cl_kernels/nchw/winograd_input_transform.cl',
484 'src/core/CL/cl_kernels/nchw/winograd_output_transform.cl'
485 ]
486
487 # NHWC kernels
488 cl_files_nhwc = ['src/core/CL/cl_kernels/nhwc/batch_to_space.cl',
489 'src/core/CL/cl_kernels/nhwc/batchnormalization_layer.cl',
490 'src/core/CL/cl_kernels/nhwc/channel_shuffle.cl',
491 'src/core/CL/cl_kernels/nhwc/direct_convolution.cl',
Giorgio Arena945ae9e2021-10-13 11:13:04 +0100492 'src/core/CL/cl_kernels/nhwc/direct_convolution3d.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100493 'src/core/CL/cl_kernels/nhwc/depth_to_space.cl',
494 'src/core/CL/cl_kernels/nhwc/dequantization_layer.cl',
495 'src/core/CL/cl_kernels/nhwc/dwc_native_fp_nhwc.cl',
496 'src/core/CL/cl_kernels/nhwc/dwc_native_quantized_nhwc.cl',
497 'src/core/CL/cl_kernels/nhwc/im2col.cl',
Gian Marco Iodice5d016812022-11-17 11:03:39 +0000498 'src/core/CL/cl_kernels/nhwc/indirect_convolution.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100499 'src/core/CL/cl_kernels/nhwc/normalization_layer.cl',
500 'src/core/CL/cl_kernels/nhwc/normalize_planar_yuv_layer.cl',
501 'src/core/CL/cl_kernels/nhwc/normalize_planar_yuv_layer_quantized.cl',
502 'src/core/CL/cl_kernels/nhwc/pooling_layer.cl',
ramelg0137515692022-02-26 22:06:20 +0000503 'src/core/CL/cl_kernels/nhwc/pooling_3d_layer.cl',
Mohammed Suhail Munshi5e549fa2022-03-16 11:14:06 +0000504 'src/core/CL/cl_kernels/nhwc/pooling_3d_layer_quantized.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100505 'src/core/CL/cl_kernels/nhwc/pooling_layer_quantized.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100506 'src/core/CL/cl_kernels/nhwc/reorg_layer.cl',
507 'src/core/CL/cl_kernels/nhwc/scale.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100508 'src/core/CL/cl_kernels/nhwc/space_to_batch.cl',
509 'src/core/CL/cl_kernels/nhwc/space_to_depth.cl',
Gunes Bayirec0113d2022-11-09 09:26:27 +0000510 'src/core/CL/cl_kernels/nhwc/transposed_convolution.cl',
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100511 'src/core/CL/cl_kernels/nhwc/upsample_layer.cl',
512 'src/core/CL/cl_kernels/nhwc/winograd_filter_transform.cl',
513 'src/core/CL/cl_kernels/nhwc/winograd_input_transform.cl',
514 'src/core/CL/cl_kernels/nhwc/winograd_output_transform.cl'
515 ]
516
517 cl_files = cl_helper_files + cl_files_common + cl_files_nchw + cl_files_nhwc
518
519 embed_files = [ f+"embed" for f in cl_files ]
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000520 arm_compute_env.Append(CPPPATH =[Dir("./src/core/CL/").path] )
521
522 generate_embed.append(arm_compute_env.Command(embed_files, cl_files, action=resolve_includes))
523
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000524Default(generate_embed)
525if env["build"] == "embed_only":
526 Return()
527
Georgios Pinitas35fcc432020-03-26 18:47:46 +0000528# Append version defines for semantic versioning
529arm_compute_env.Append(CPPDEFINES = [('ARM_COMPUTE_VERSION_MAJOR', LIBRARY_VERSION_MAJOR),
530 ('ARM_COMPUTE_VERSION_MINOR', LIBRARY_VERSION_MINOR),
531 ('ARM_COMPUTE_VERSION_PATCH', LIBRARY_VERSION_PATCH)])
532
Isabella Gottardib28f29d2017-11-09 17:05:07 +0000533# Don't allow undefined references in the libraries:
Georgios Pinitas45514032020-12-30 00:03:09 +0000534undefined_flag = '-Wl,-undefined,error' if 'macos' in arm_compute_env["os"] else '-Wl,--no-undefined'
Jakub Sujak7ab7fca2024-01-31 17:20:07 +0000535if not env['thread_sanitizer'] and not env['address_sanitizer'] and not env['undefined_sanitizer']:
Matthew Bentham0a59e692023-07-19 15:01:00 +0000536 arm_compute_env.Append(LINKFLAGS=[undefined_flag])
Jakub Sujakb5d60822024-01-28 18:30:50 +0000537
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100538arm_compute_env.Append(CPPPATH =[Dir("./src/core/").path] )
539
Kevin Lo7195f712022-01-07 15:46:02 +0800540if env['os'] != 'openbsd':
Pablo Tellofbbfa532023-01-26 16:24:04 +0000541 if env['os'] == 'windows':
542 arm_compute_env.Append(LIBS = [])
543 else:
544 arm_compute_env.Append(LIBS = ['dl'])
545
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100546
Motti Gondabi6f3a9f52021-11-09 15:47:17 +0200547# Load build definitions file
548with (open(Dir('#').path + '/filedefs.json')) as fd:
549 filedefs = json.load(fd)
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200550 filedefs = filedefs['cpu']['arch']
Motti Gondabi6f3a9f52021-11-09 15:47:17 +0200551
552
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100553with (open(Dir('#').path + '/filelist.json')) as fp:
554 filelist = json.load(fp)
555
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100556# Common backend files
557lib_files = filelist['common']
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100558
Nathan John Sircombed7113e42023-04-26 15:02:43 +0100559# Fixed format GEMM kernels.
560if env['fixed_format_kernels']:
561 arm_compute_env.Append(CPPDEFINES = ['ARM_COMPUTE_ENABLE_FIXED_FORMAT_KERNELS'])
562
Giorgio Arena232c4522022-03-03 10:09:01 +0000563# Experimental files
564# Dynamic fusion
565if env['experimental_dynamic_fusion']:
SiCong Li23882a92023-06-28 09:49:45 +0100566 lib_files += filelist['experimental']['dynamic_fusion']['common']
567 lib_files += filelist['experimental']['dynamic_fusion']['template_writer']
568
569if "ACL_INTERNAL_TEST_CKW_IN_DF" in env["extra_cxx_flags"]:
570 if not env["experimental_dynamic_fusion"]:
571 print("To use ACL_INTERNAL_TEST_CKW_IN_DF experimental_dynamic_fusion must be set to 1")
572 Exit(1)
573 lib_files += filelist['experimental']['dynamic_fusion']['ckw_driver']
Giorgio Arena232c4522022-03-03 10:09:01 +0000574
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100575# Logging files
576if env["logging"]:
577 lib_files += filelist['logging']
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000578
Georgios Pinitasc3c352e2021-03-18 10:59:40 +0000579# C API files
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100580lib_files += filelist['c_api']['common']
581lib_files += filelist['c_api']['operators']
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100582
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100583# Scheduler infrastructure
584lib_files += filelist['scheduler']['single']
585if env['cppthreads']:
586 lib_files += filelist['scheduler']['threads']
587if env['openmp']:
588 lib_files += filelist['scheduler']['omp']
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000589
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100590# Graph files
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100591graph_files = Glob('src/graph/*.cpp')
592graph_files += Glob('src/graph/*/*.cpp')
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000593
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100594# Specify user-defined priority operators
Freddie Liardet487d3902021-09-21 12:36:43 +0100595custom_operators = []
596custom_types = []
597custom_layouts = []
598
Jakub Sujake86f9922023-07-05 17:30:02 +0100599use_custom_ops = env['high_priority'] or env['build_config']
Freddie Liardet487d3902021-09-21 12:36:43 +0100600
601if env['high_priority']:
602 custom_operators = filelist['high_priority']
603 custom_types = ['all']
604 custom_layouts = ['all']
605
606if env['build_config']:
607 custom_operators, custom_types, custom_layouts = read_build_config_json(env['build_config'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100608
609if env['opencl']:
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100610 lib_files += filelist['c_api']['gpu']
611 lib_files += filelist['gpu']['common']
Michele Di Giorgio760c7832021-08-05 10:54:13 +0100612
Freddie Liardet487d3902021-09-21 12:36:43 +0100613 cl_operators = custom_operators if use_custom_ops else filelist['gpu']['operators'].keys()
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100614 cl_ops_to_build = resolve_operator_dependencies(filelist, cl_operators, 'gpu')
615 lib_files += get_operator_backend_files(filelist, cl_ops_to_build, 'gpu')['common']
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000616
Georgios Pinitas13ef1762021-07-14 17:14:43 +0100617 graph_files += Glob('src/graph/backends/CL/*.cpp')
618
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200619
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100620lib_files_sve = []
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200621lib_files_sve2 = []
Motti Gondabi6f3a9f52021-11-09 15:47:17 +0200622
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100623# the variables below are used for the multi_isa builds
624# please note that the variables names without the _fp16 suffix
625# do not hold any fp16 files.
626
627misa_lib_files = lib_files
628misa_lib_files_sve = []
629misa_lib_files_sve2 = []
630misa_lib_files_neon_fp16 = []
631misa_lib_files_sve_fp16 = []
632misa_lib_files_sve2_fp16 = []
633
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100634if env['neon']:
Georgios Pinitas30271c72019-06-24 14:56:34 +0100635 # build winograd/depthwise sources for either v7a / v8a
Michael Tyler74921ee2023-04-12 17:43:17 +0100636 arm_compute_env.Append(CPPPATH = ["src/core/NEON/kernels/arm_gemm",
637 "src/core/NEON/kernels/convolution/common/",
Michele Di Giorgio6ad60af2020-06-09 14:52:15 +0100638 "src/core/NEON/kernels/convolution/winograd/",
ramelg01c827e992022-04-08 03:52:28 +0100639 "src/core/NEON/kernels/arm_conv/depthwise/",
640 "src/core/NEON/kernels/arm_conv/pooling/",
ramelg018a164882022-04-07 02:42:52 +0100641 "src/core/NEON/kernels/arm_conv/",
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100642 "src/core/NEON/kernels/assembly/",
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100643 "arm_compute/core/NEON/kernels/assembly/",
Motti Gondabi6f3a9f52021-11-09 15:47:17 +0200644 "src/cpu/kernels/assembly/"])
Pablo Tello9ceebbe2018-01-10 16:44:13 +0000645
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100646 # Setup SIMD file list to include
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200647 simd = ['neon']
648 if env['multi_isa']:
649 simd += ['sve', 'sve2']
650 else:
651 if 'sve' in env['arch']: simd += ['sve']
652 if 'sve2' in env['arch']: simd += ['sve2']
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100653
654 # Get attributes
Freddie Liardet487d3902021-09-21 12:36:43 +0100655 if(use_custom_ops):
656 attrs = get_attrs_list(env, custom_types, custom_layouts)
657 else:
658 attrs = get_attrs_list(env, env['data_type_support'], env['data_layout_support'])
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100659
Nathan John Sircombed7113e42023-04-26 15:02:43 +0100660 if env['fixed_format_kernels']:
661 attrs.append("fixed_format_kernels")
Francesco.Petrogalli@arm.com5fcf22d2022-04-05 10:31:08 +0000662
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100663 # Setup data-type and data-layout files to include
Freddie Liardet487d3902021-09-21 12:36:43 +0100664 cpu_operators = custom_operators if use_custom_ops else filelist['cpu']['operators'].keys()
665 cpu_ops_to_build = resolve_operator_dependencies(filelist, cpu_operators, 'cpu')
666
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100667 if env['multi_isa']:
668 misa_lib_files += filelist['cpu']['common']
Motti Gondabi6f3a9f52021-11-09 15:47:17 +0200669
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100670 # For multi_isa builds we need to build fp16 files for armv8.2-a+fp16 so we filter them out of cpu_files removing the attribute fp16
671 attrs.remove('fp16')
672 cpu_files = get_operator_backend_files(filelist, cpu_ops_to_build, 'cpu', simd, attrs)
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200673
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100674 # Shared among ALL CPU files
675 misa_lib_files += cpu_files.get('common', [])
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200676
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100677 # Arm® Neon™ specific files
678 misa_lib_files += cpu_files.get('neon', [])
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200679
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100680 # Get all the fp16 files
681 fp16_cpu_files = get_operator_backend_files(filelist, cpu_ops_to_build, 'cpu', simd, ['fp16'],False)
682
683 misa_lib_files_neon_fp16 = fp16_cpu_files.get('neon',[])
684 misa_lib_files_sve_fp16 = fp16_cpu_files.get('sve',[])
685 misa_lib_files_sve2_fp16 = fp16_cpu_files.get('sve2',[])
686
687 # SVE files only minus FP16
688 misa_lib_files_sve = cpu_files.get('sve', [])
689
690 # SVE2 files only minus FP16
691 misa_lib_files_sve2 = cpu_files.get('sve2', [])
692 else:
693 lib_files += filelist['cpu']['common']
694
695 # Non multi_isa build
696 cpu_files = get_operator_backend_files(filelist, cpu_ops_to_build, 'cpu', simd, attrs)
697
698 # Shared among ALL CPU files
699 lib_files += cpu_files.get('common', [])
700
701 # Arm® Neon™ specific files
702 lib_files += cpu_files.get('neon', [])
703
704 lib_files_sve = cpu_files.get('sve', [])
705
706 lib_files_sve2 = cpu_files.get('sve2', [])
Georgios Pinitas13ef1762021-07-14 17:14:43 +0100707
708 graph_files += Glob('src/graph/backends/NEON/*.cpp')
Georgios Pinitas70eb53b2021-01-06 19:42:21 +0000709
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100710# Restrict from building graph API if a reduced operator list has been provided
Freddie Liardet487d3902021-09-21 12:36:43 +0100711if use_custom_ops:
712 print("WARNING: Graph library requires all operators to be built")
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100713 graph_files = []
714
715# Build bootcode in case of bare-metal
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100716bootcode_o = []
717if env['os'] == 'bare_metal':
718 bootcode_files = Glob('bootcode/*.s')
719 bootcode_o = build_bootcode_objs(bootcode_files)
720Export('bootcode_o')
721
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200722
Motti Gondabi6f3a9f52021-11-09 15:47:17 +0200723if (env['multi_isa']):
Pablo Marquez Tello9f7aca92023-08-16 15:21:44 +0100724 lib_static_objs, lib_shared_objs = build_multiisa_lib_objects()
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200725
726
727# STATIC library build.
728if (env['multi_isa']):
729 arm_compute_a = build_library('arm_compute-static', arm_compute_env, lib_static_objs, static=True)
730else:
731 if 'sve2' in env['arch']:
732 lib_files += lib_files_sve
733 lib_files += lib_files_sve2
734 elif 'sve' in env['arch']:
735 lib_files += lib_files_sve
Motti Gondabi6f3a9f52021-11-09 15:47:17 +0200736
Motti Gondabif76a5022021-12-21 13:19:29 +0200737 arm_compute_a = build_library('arm_compute-static', arm_compute_env, lib_files, static=True)
Motti Gondabif76a5022021-12-21 13:19:29 +0200738
Michalis Spyrou62c2ad62021-06-21 17:40:09 +0100739Export('arm_compute_a')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100740
Motti Gondabif76a5022021-12-21 13:19:29 +0200741# SHARED library build.
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100742if env['os'] != 'bare_metal' and not env['standalone']:
Motti Gondabi6f3a9f52021-11-09 15:47:17 +0200743 if (env['multi_isa']):
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200744
745 arm_compute_so = build_library('arm_compute', arm_compute_env, lib_shared_objs, static=False)
Georgios Pinitasbdcdc392021-04-22 16:42:03 +0100746 else:
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200747 arm_compute_so = build_library('arm_compute', arm_compute_env, lib_files, static=False)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100748
Michalis Spyrou62c2ad62021-06-21 17:40:09 +0100749 Export('arm_compute_so')
750
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100751
Sang-Hoon Park18fbb922021-01-14 14:50:25 +0000752arm_compute_graph_env = arm_compute_env.Clone()
753
Georgios Pinitasb6af4822021-09-14 12:33:34 +0100754# Build graph libraries
Sang-Hoon Park18fbb922021-01-14 14:50:25 +0000755arm_compute_graph_env.Append(CXXFLAGS = ['-Wno-redundant-move', '-Wno-pessimizing-move'])
756
Jakub Sujake86f9922023-07-05 17:30:02 +0100757arm_compute_graph_a = build_library('arm_compute_graph-static', arm_compute_graph_env, graph_files, static=True)
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100758Export('arm_compute_graph_a')
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000759
760if env['os'] != 'bare_metal' and not env['standalone']:
Michalis Spyrou62c2ad62021-06-21 17:40:09 +0100761 arm_compute_graph_so = build_library('arm_compute_graph', arm_compute_graph_env, graph_files, static=False, libs = [ "arm_compute" ])
Georgios Pinitas9873ea32017-12-05 15:28:55 +0000762 Depends(arm_compute_graph_so, arm_compute_so)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100763 Export('arm_compute_graph_so')
764
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100765if env['standalone']:
Motti Gondabi9d9ad332022-01-23 12:42:24 +0200766 alias = arm_compute_env.Alias("arm_compute", [arm_compute_a])
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100767else:
768 alias = arm_compute_env.Alias("arm_compute", [arm_compute_a, arm_compute_so])
769
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100770Default(alias)
771
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100772if env['standalone']:
Michalis Spyrou62c2ad62021-06-21 17:40:09 +0100773 Depends([alias], generate_embed)
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100774else:
Michalis Spyrou62c2ad62021-06-21 17:40:09 +0100775 Depends([alias], generate_embed)