forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
796 lines (692 loc) · 31.4 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
# -*- coding: utf-8 -*-
# Copyright (C) 2018-2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
import os.path
import sys
import errno
import subprocess # nosec
import typing
import platform
import re
import shutil
import multiprocessing
import logging as log
from fnmatch import fnmatchcase
from pathlib import Path
from shutil import copyfile, rmtree, move
from setuptools import setup, find_namespace_packages, Extension, Command
from setuptools.command.build_ext import build_ext
from setuptools.command.build_clib import build_clib
from setuptools.command.install import install
from setuptools.command.build import build
from setuptools.errors import SetupError
WHEEL_PACKAGE_DIR = "openvino"
WHEEL_LIBS_INSTALL_DIR = f"{WHEEL_PACKAGE_DIR}/libs"
WHEEL_LIBS_PACKAGE = "openvino.libs"
PYTHON_VERSION = f"python{sys.version_info.major}.{sys.version_info.minor}"
LIBS_DIR = "bin" if platform.system() == "Windows" else "lib"
machine = platform.machine()
if machine == "x86_64" or machine == "AMD64":
ARCH = "intel64"
elif machine == "X86" or machine == "i686":
ARCH = "ia32"
elif machine == "arm" or machine == "armv7l":
ARCH = "arm"
elif machine == "aarch64" or machine == "arm64" or machine == "ARM64":
ARCH = "arm64"
elif machine == "riscv64":
ARCH = "riscv64"
# The following variables can be defined in environment or .env file
SCRIPT_DIR = Path(__file__).resolve().parents[0]
WORKING_DIR = Path.cwd()
BUILD_BASE = f"{WORKING_DIR}/build_{PYTHON_VERSION}"
OPENVINO_SOURCE_DIR = SCRIPT_DIR.parents[3]
OPENVINO_BINARY_DIR = os.getenv("OPENVINO_BINARY_DIR")
OPENVINO_PYTHON_BINARY_DIR = os.getenv("OPENVINO_PYTHON_BINARY_DIR", "python_build")
CONFIG = os.getenv("BUILD_TYPE", "Release")
OV_RUNTIME_LIBS_DIR = os.getenv("OV_RUNTIME_LIBS_DIR", f"runtime/{LIBS_DIR}/{ARCH}/{CONFIG}")
TBB_LIBS_DIR = os.getenv("TBB_LIBS_DIR", f"runtime/3rdparty/tbb/{LIBS_DIR}")
PUGIXML_LIBS_DIR = os.getenv("PUGIXML_LIBS_DIR", f"runtime/3rdparty/pugixml/{LIBS_DIR}")
PY_PACKAGES_DIR = os.getenv("PY_PACKAGES_DIR", "python")
LIBS_RPATH = "$ORIGIN" if sys.platform == "linux" else "@loader_path"
PYTHON_EXTENSIONS_ONLY = True if os.getenv("PYTHON_EXTENSIONS_ONLY") is not None else False
SKIP_RPATH = True if os.getenv("SKIP_RPATH") is not None else False
CPACK_GENERATOR = os.getenv("CPACK_GENERATOR", "TGZ")
LIB_INSTALL_CFG = {
"ie_libs": {
"name": "core",
"prefix": f"{BUILD_BASE}/libs.core",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"ie_libs_с": {
"name": "core_c",
"prefix": f"{BUILD_BASE}/libs.core_с",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"hetero_plugin": {
"name": "hetero",
"prefix": f"{BUILD_BASE}/libs.hetero",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"gpu_plugin": {
"name": "gpu",
"prefix": f"{BUILD_BASE}/libs.gpu",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"cpu_plugin": {
"name": "cpu",
"prefix": f"{BUILD_BASE}/libs.cpu",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"npu_plugin": {
"name": "npu",
"prefix": f"{BUILD_BASE}/libs.npu",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"multi_plugin": {
"name": "multi",
"prefix": f"{BUILD_BASE}/libs.multi",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"batch_plugin": {
"name": "batch",
"prefix": f"{BUILD_BASE}/libs.batch",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"tbb_libs": {
"name": "tbb",
"prefix": f"{BUILD_BASE}/libs.tbb",
"install_dir": TBB_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"pugixml_libs": {
"name": "pugixml",
"prefix": f"{BUILD_BASE}/libs.pugixml",
"install_dir": PUGIXML_LIBS_DIR,
"binary_dir": OPENVINO_BINARY_DIR,
},
"ir_libs": {
"name": "ir",
"prefix": f"{BUILD_BASE}/libs.ir",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"jax_libs": {
"name": "jax",
"prefix": f"{BUILD_BASE}/libs.jax",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"paddle_libs": {
"name": "paddle",
"prefix": f"{BUILD_BASE}/libs.paddle",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"pytorch_libs": {
"name": "pytorch",
"prefix": f"{BUILD_BASE}/libs.pytorch",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"onnx_libs": {
"name": "onnx",
"prefix": f"{BUILD_BASE}/libs.onnx",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"tensorflow_libs": {
"name": "tensorflow",
"prefix": f"{BUILD_BASE}/libs.tensorflow",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
},
"tensorflow_lite_libs": {
"name": "tensorflow_lite",
"prefix": f"{BUILD_BASE}/libs.tensorflow_lite",
"install_dir": OV_RUNTIME_LIBS_DIR,
"rpath": LIBS_RPATH,
"binary_dir": OPENVINO_BINARY_DIR,
}
}
DATA_INSTALL_CFG = {
"core_dev": {
"name": "core_dev",
"prefix": f"{BUILD_BASE}/libs.core.dev",
"install_dir": "runtime",
"binary_dir": OPENVINO_BINARY_DIR,
"source_dir": OPENVINO_SOURCE_DIR
},
"core_c_dev": {
"name": "core_c_dev",
"prefix": f"{BUILD_BASE}/libs.core_c.dev",
"install_dir": "runtime",
"binary_dir": OPENVINO_BINARY_DIR,
"source_dir": OPENVINO_SOURCE_DIR
},
"tbb_dev": {
"name": "tbb_dev",
"prefix": f"{BUILD_BASE}/libs.tbb.dev",
"install_dir": "runtime/3rdparty/tbb",
"binary_dir": OPENVINO_BINARY_DIR,
"source_dir": OPENVINO_SOURCE_DIR
}
}
PY_INSTALL_CFG = {
"pyopenvino": {
"name": f"pyopenvino_{PYTHON_VERSION}",
"prefix": f"{BUILD_BASE}/site-packages",
"source_dir": f"{OPENVINO_SOURCE_DIR}/src/bindings/python",
"install_dir": PY_PACKAGES_DIR,
"binary_dir": OPENVINO_PYTHON_BINARY_DIR,
},
"ovc": {
"entry_point": {
"console_scripts": [
"ovc = openvino.tools.ovc.main:main",
],
},
"name": "ovc",
"prefix": f"{BUILD_BASE}/site-packages",
"source_dir": f"{OPENVINO_SOURCE_DIR}/tools/ovc",
"install_dir": PY_PACKAGES_DIR,
"binary_dir": "ovc",
},
"benchmark_app": {
"entry_point": {
"console_scripts": [
"benchmark_app = openvino.tools.benchmark.main:main",
],
},
"name": "benchmark_app",
"prefix": f"{BUILD_BASE}/site-packages",
"source_dir": f"{OPENVINO_SOURCE_DIR}/tools/benchmark_tool",
"install_dir": PY_PACKAGES_DIR,
"binary_dir": "benchmark_app",
}
}
class PrebuiltExtension(Extension):
"""Initialize Extension."""
def __init__(self, name, sources, *args, **kwargs):
if len(sources) != 1:
nln = "\n"
raise SetupError(f"PrebuiltExtension can accept only one source, but got: {nln}{nln.join(sources)}")
super().__init__(name, sources, *args, **kwargs)
self._needs_stub = False
class CustomBuild(build):
"""Custom implementation of build_clib."""
user_options = build.user_options + [
("jobs=", None, "Specifies the number of jobs to use with make."),
("cmake-args=", None, "Additional options to be passed to CMake."),
]
def initialize_options(self):
"""Set default values for all the options that this command supports."""
super().initialize_options()
self.build_base = BUILD_BASE
self.jobs = None
self.cmake_args = None
def finalize_options(self):
"""Set final values for all the options that this command supports."""
super().finalize_options()
if self.jobs is None and os.getenv("MAX_JOBS") is not None:
self.jobs = os.getenv("MAX_JOBS")
self.jobs = multiprocessing.cpu_count() if self.jobs is None else int(self.jobs)
if self.cmake_args is None:
self.cmake_args = os.getenv("CMAKE_ARGS", "")
def cmake_build_and_install(self, install_cfg):
"""Runs cmake (configure, build and install) if artfiacts are not already built / installed."""
plat_specifier = ".{0}-{1}.{2}".format(self.plat_name, *sys.version_info[:2])
self.build_temp = os.path.join(self.build_base, "temp" + plat_specifier)
self.announce(f"Create build directory: {self.build_temp}", level=3)
# build some components which have not been built yet
for comp, comp_data in install_cfg.items():
cpack_comp_name = comp_data.get("name")
source_dir = comp_data.get("source_dir", OPENVINO_SOURCE_DIR)
binary_dir = comp_data.get("binary_dir", OPENVINO_BINARY_DIR)
install_dir = comp_data.get("install_dir")
prefix = comp_data.get("prefix")
# perform installation steps if we are not given a full path
if not os.path.isabs(install_dir):
# install_dir is just a sub-dir after install prefix, let's make a full path
comp_data["install_dir"] = os.path.join(prefix, install_dir)
# even perform a build in case of binary directory does not exist
binary_dir = binary_dir if os.path.isabs(binary_dir) else os.path.join(self.build_temp, binary_dir)
if not os.path.exists(binary_dir):
binary_dir = os.path.join(self.build_temp, binary_dir)
self.announce(f"Configuring {comp} cmake project", level=3)
self.spawn(["cmake",
f"-DOpenVINODeveloperPackage_DIR={OPENVINO_BINARY_DIR}",
f"-DPython3_EXECUTABLE={sys.executable}",
f"-DCMAKE_BUILD_TYPE={CONFIG}",
f"-DCPACK_GENERATOR={CPACK_GENERATOR}",
"-DENABLE_PYTHON=ON",
"-DENABLE_WHEEL=OFF",
self.cmake_args,
"-S", source_dir,
"-B", binary_dir])
self.announce(f"Building {comp} project", level=3)
self.spawn(["cmake", "--build", binary_dir,
"--config", CONFIG,
"--parallel", str(self.jobs)])
self.announce(f"Installing {comp}", level=3)
self.spawn(["cmake", "--install", binary_dir,
"--prefix", prefix,
"--config", CONFIG,
"--component", cpack_comp_name])
def run(self):
if not PYTHON_EXTENSIONS_ONLY:
# build and install clib into temporary directories
self.cmake_build_and_install(LIB_INSTALL_CFG)
# build and install additional files into temporary directories
self.cmake_build_and_install(DATA_INSTALL_CFG)
# install python code into a temporary directory (site-packages)
self.cmake_build_and_install(PY_INSTALL_CFG)
# install clibs into a temporary directory (site-packages)
if not PYTHON_EXTENSIONS_ONLY:
self.run_command("build_clib")
# Copy extra package_data content filtered by 'find_packages'
exclude = ignore_patterns("*ez_setup*", "*__pycache__*", "*.egg-info*")
src, dst = Path(PACKAGE_DIR), Path(self.build_lib)
for path in src.glob("**/*"):
if path.is_dir() or exclude(str(path)):
continue
path_rel = path.relative_to(src)
(dst / path_rel.parent).mkdir(exist_ok=True, parents=True)
copyfile(path, dst / path_rel)
class PrepareLibs(build_clib):
"""Prepares prebuilt libraries.
The steps include: resolve symlinks for versioned shared libraries, set RPATHs for clibs
"""
def run(self):
"""Run build_clib command."""
# remove symlink to avoid copying it, set RPATH
self.post_install(LIB_INSTALL_CFG)
# copy clib to package data (to WHEEL_LIBS_INSTALL_DIR)
self.copy_package_libs(get_install_dirs_list(LIB_INSTALL_CFG))
# copy package data (everything except python or libraries)
if CPACK_GENERATOR in ["7Z", "TBZ2", "TGZ", "TXZ", "TZ", "TZST", "ZIP"]:
self.copy_package_data(get_install_dirs_list(DATA_INSTALL_CFG))
def post_install(self, install_cfg):
"""Install prebuilt libraries to the temp directories, set rpath."""
for comp, comp_data in install_cfg.items():
install_dir = comp_data.get("install_dir")
# we need to resolve symlinks before setting rpath to avoid doing it multiple times
install_dir_path = Path(install_dir)
self.resolve_symlinks(install_dir_path)
# set rpath if applicable
if sys.platform != "win32" and comp_data.get("rpath"):
# after tbb libraries on mac arm64 are signed, setting rpath for them will report error:
# LC_SEGMENT_64 command 3 fileoff field plus filesize field extends past the end of the file
if comp == "tbb_libs" and ARCH == "arm64" and sys.platform == "darwin":
continue
for path in filter(
lambda x: any(item in ([".so"] if sys.platform == "linux" else [".dylib", ".so"])
for item in x.suffixes), install_dir_path.glob("*"),
):
set_rpath(comp_data["rpath"], os.path.realpath(path))
def get_reallink(self, link_file):
"""Get the real file path of a soft link."""
real_name = link_file
while True:
real_name = os.readlink(real_name)
if not os.path.isabs(real_name):
real_name = os.path.join(os.path.dirname(link_file), real_name)
if not Path(real_name).is_symlink():
break
return real_name
def resolve_symlinks(self, local_base_dir: Path):
"""Resolves symlinks after installation via cmake install.
Wheel package content must not contain symlinks. The block handles two kinds of soft links,
take the library on Linux as an example.
1. The first case: there are two soft links pointing to the real file,
- input is libX.so->libX.so.Y and libX.so.Y->libX.so.Y.Z (e.g. hwloc library in oneTBB package).
- input is libX.so->libX.so.Y.Z and libX.so.Y->libX.so.Y.Z (e.g. oneTBB library).
2. The second case: there is one soft link pointing to the real file.
Process results of the above two cases: remove soft links(libX.so and libX.so.Y), rename libX.so.Y.Z to libX.so.Y.
"""
# step 1:
# record real files and its symlinks {real file: soft link}
# if there are two soft links pointing to the same file, like libX.so and libX.so.Y(including the above two cases),
# only record the libX.so.Y and remove libX.so
file_dict = {}
for symlink in local_base_dir.rglob("*"):
if symlink.is_symlink():
real_name = self.get_reallink(symlink)
if real_name in file_dict:
link_file_name_old = os.path.basename(file_dict[real_name])
link_file_name_new = os.path.basename(symlink)
if len(link_file_name_new) > len(link_file_name_old):
# replace libX.so/libX.dylib with libX.so.Y/libX.Y.dylib
self.announce(f"Unlink symlink {file_dict[real_name]}, use {symlink} instead", level=3)
os.unlink(file_dict[real_name])
file_dict[real_name] = symlink
else:
self.announce(f"Unlink symlink {symlink}, use {file_dict[real_name]} instead", level=3)
os.unlink(symlink)
else:
file_dict[real_name] = symlink
# step 2:
# according to the corresponding relationship (file_dict),
# remove the reserved soft link and rename the real file to the name of its soft link
for real_name, symlink in file_dict.items():
os.unlink(symlink)
os.rename(real_name, symlink)
self.announce(f"Resolved symlink {symlink} as {real_name}", level=3)
def copy_package_libs(self, src_dirs):
"""Collect package data files (clibs and other plugin support files) from preinstalled dirs and put all runtime libraries to the subpackage."""
package_clibs_dir = os.path.join(PACKAGE_DIR, WHEEL_LIBS_INSTALL_DIR)
os.makedirs(package_clibs_dir, exist_ok=True)
for src_dir in src_dirs:
# additional blacklist filter, just to fix cmake install issues
blacklist_patterns = [ # static libraries and PBD files
"^.*\\.a$", "^.*\\.pdb$",
# TBB debug libraries
"^.*_debug\\.dll$", "^.*_debug\\.\\d*\\.dylib$", "^.*_debug\\.so\\.\\d*$",
# hwloc static libs on Windows
"^.*\\.la$"]
# copy so / dylib files to WHEEL_LIBS_INSTALL_DIR (clibs) inside python package
for file_path in Path(src_dir).rglob("*"):
file_name = os.path.basename(file_path)
if file_path.is_symlink():
# sanity check for self.resolve_symlinks
sys.exit(f"Wheel package content must not contain symlinks {file_path}")
blacklisted = False
for pattern in blacklist_patterns:
if re.match(pattern, file_name) is not None:
blacklisted = True
break
if file_path.is_file() and not blacklisted:
dst_file = os.path.join(package_clibs_dir, file_name)
copyfile(file_path, dst_file)
self.announce(f"Copy {file_path} to {dst_file}", level=3)
if Path(package_clibs_dir).exists():
self.announce(f"Adding {WHEEL_LIBS_PACKAGE} package", level=3)
packages.append(WHEEL_LIBS_PACKAGE)
package_data.update({WHEEL_LIBS_PACKAGE: ["*"]})
def copy_package_data(self, src_dirs):
"""Collect package data files from preinstalled dirs and put to the subpackage."""
package_dir = os.path.join(PACKAGE_DIR, WHEEL_PACKAGE_DIR)
os.makedirs(package_dir, exist_ok=True)
package_clibs_dir = os.path.join(PACKAGE_DIR, WHEEL_LIBS_INSTALL_DIR)
os.makedirs(package_clibs_dir, exist_ok=True)
package_cmake_dir = os.path.join(package_dir, "cmake")
os.makedirs(package_cmake_dir, exist_ok=True)
replacements = {
# change the path where the libraries are installed (runtime/lib/intel64/Release -> openvino/libs)
r"({_IMPORT_PREFIX})\/(.*)\/(.*.[lib|dylib|so|dll])": rf"\1/{WHEEL_LIBS_INSTALL_DIR}/\3",
# change the path where the include files are installed (runtime/include -> openvino/include)
r"({_IMPORT_PREFIX})\/(.*)\/(include)": rf"\1/{WHEEL_PACKAGE_DIR}/\3",
# change the libs versions (so.2024.3.0 -> so.2430 or 2024.3.0.dylib -> 2430.dylib)
r"(.so)?.(\d\d)(\d\d).(\d+).(\d+)(.dylib)?": r"\1.\3\4\5\6",
}
for src_dir in src_dirs:
src, dst = Path(src_dir), Path(package_dir)
# move the static libs to the directory with the shared libraries
for file_path in Path(src).rglob("*.lib"):
file_name = os.path.basename(file_path)
if file_path.is_file():
dst_file = os.path.join(package_clibs_dir, file_name)
move(file_path, dst_file)
self.announce(f"Move {file_path} to {dst_file}", level=3)
# collect all cmake files in one directory
for file_path in Path(src).rglob("*.cmake"):
file_name = os.path.basename(file_path)
if file_path.is_file():
dst_file = os.path.join(package_cmake_dir, file_name)
self.announce(f"Move {file_path} to {dst_file}", level=3)
move(file_path, dst_file)
self.announce("Patch cmake configurations", level=3)
replace_strings_in_file(dst_file, replacements)
if os.path.isdir(src) and os.listdir(src):
# copy the rest of the files to the package directly
shutil.copytree(src, dst, dirs_exist_ok=True)
def copy_file(src, dst, verbose=False, dry_run=False):
"""Custom file copy."""
if dry_run:
log.info(f"DRY RUN: Would copy '{src}' to '{dst}'")
else:
shutil.copyfile(src, dst)
if verbose:
log.info(f"Copied '{src}' to '{dst}'")
def replace_strings_in_file(file_path, replacements):
"""Replace strings in a text file.
:param file_path: Path to the source file.
:param replacements: A dictionary where keys are strings or regex patterns to be replaced and values are the new strings.
"""
# Read the content of the file
with open(file_path, "r", encoding="utf-8") as file:
content = file.read()
for pattern, new_string in replacements.items():
content = re.sub(pattern, new_string, content)
with open(file_path, "w", encoding="utf-8") as file:
file.write(content)
class CopyExt(build_ext):
"""Copy extension files to the build directory."""
def run(self):
if len(self.extensions) == 1:
self.extensions = find_prebuilt_extensions(get_install_dirs_list(PY_INSTALL_CFG))
for extension in self.extensions:
if not isinstance(extension, PrebuiltExtension):
raise SetupError(f"build_ext can accept PrebuiltExtension only, but got {extension.name}")
src = extension.sources[0]
dst = self.get_ext_fullpath(extension.name)
os.makedirs(os.path.dirname(dst), exist_ok=True)
# setting relative RPATH to found dlls
if sys.platform != "win32" and not SKIP_RPATH:
rpath = os.path.relpath(get_package_dir(PY_INSTALL_CFG), os.path.dirname(src))
rpath = os.path.join(LIBS_RPATH, rpath, WHEEL_LIBS_INSTALL_DIR)
set_rpath(rpath, os.path.realpath(src))
copy_file(src, dst, verbose=self.verbose, dry_run=self.dry_run)
class CustomInstall(install):
"""Enable build_clib during the installation."""
def run(self):
self.run_command("build")
install.run(self)
class CustomClean(Command):
"""Clean up staging directories."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def clean_install_prefix(self, install_cfg):
for comp, comp_data in install_cfg.items():
install_prefix = comp_data.get("prefix")
self.announce(f"Cleaning {comp}: {install_prefix}", level=3)
if os.path.exists(install_prefix):
rmtree(install_prefix)
def run(self):
self.clean_install_prefix(LIB_INSTALL_CFG)
self.clean_install_prefix(PY_INSTALL_CFG)
def ignore_patterns(*patterns):
"""Filter names by given patterns."""
return lambda name: any(fnmatchcase(name, pat=pat) for pat in patterns)
def is_tool(name):
"""Check if the command-line tool is available."""
try:
devnull = subprocess.DEVNULL
subprocess.Popen([name], stdout=devnull, stderr=devnull).communicate() # nosec
except OSError as error:
if error.errno == errno.ENOENT:
return False
return True
def remove_rpath(file_path):
"""Remove rpath from macOS binaries.
:param file_path: binary path
:type file_path: pathlib.Path
"""
if not sys.platform == "darwin":
sys.exit(f"Unsupported platform: {sys.platform}")
cmd = (
f"otool -l {file_path} " # noqa: P103
f"| grep LC_RPATH -A3 "
f"| grep -o 'path.*' "
f"| cut -d ' ' -f2 "
f"| xargs -I{{}} install_name_tool -delete_rpath {{}} {file_path}"
)
if os.WEXITSTATUS(os.system(cmd)) != 0: # nosec
sys.exit(f"Could not remove rpath for {file_path}")
def set_rpath(rpath, binary):
"""Setting rpath for Linux and macOS binaries."""
print(f"Setting rpath {rpath} for {binary}") # noqa: T001, T201
cmd = []
rpath_tool = ""
if sys.platform == "linux":
with open(os.path.realpath(binary), "rb") as file:
if file.read(1) != b"\x7f":
log.warning(f"WARNING: {binary}: missed ELF header")
return
rpath_tool = "patchelf"
cmd = [rpath_tool, "--set-rpath", rpath, binary, "--force-rpath"]
elif sys.platform == "darwin":
rpath_tool = "install_name_tool"
cmd = [rpath_tool, "-add_rpath", rpath, binary]
else:
sys.exit(f"Unsupported platform: {sys.platform}")
if not is_tool(rpath_tool):
sys.exit(f"Could not find {rpath_tool} on the system, " f"please make sure that this tool is installed")
if sys.platform == "darwin":
remove_rpath(binary)
ret_info = subprocess.run(cmd, check=True, shell=False) # nosec
if ret_info.returncode != 0:
sys.exit(f"Could not set rpath: {rpath} for {binary}")
def find_prebuilt_extensions(search_dirs):
"""Collect prebuilt python extensions."""
extensions = []
ext_pattern = ""
if sys.platform == "linux":
ext_pattern = "**/*.so"
elif sys.platform == "win32":
ext_pattern = "**/*.pyd"
elif sys.platform == "darwin":
ext_pattern = "**/*.so"
for search_dir in search_dirs:
for path in Path(search_dir).glob(ext_pattern):
# ignores usual inference plugins and libraries (clibs)
if path.match("openvino/libs/*") or path.match(f"openvino/libs/openvino-{OPENVINO_VERSION}/*"):
continue
relpath = path.relative_to(search_dir)
if relpath.parent != ".":
package_names = str(relpath.parent).split(os.path.sep)
else:
package_names = []
package_names.append(path.name.split(".", 1)[0])
name = ".".join(package_names)
extensions.append(PrebuiltExtension(name, sources=[str(path)]))
if not extensions:
# dummy extension to avoid python independent wheel
extensions.append(PrebuiltExtension("openvino", sources=[str("setup.py")]))
return extensions
def get_description(desc_file_path):
"""Read description from README.md."""
with open(desc_file_path, "r", encoding="utf-8") as fstream:
description = fstream.read()
return description
def get_install_requires(requirements_file_path):
"""Read dependencies from requirements.txt."""
with open(requirements_file_path, "r", encoding="utf-8") as fstream:
install_requirements = fstream.read()
return install_requirements
def get_install_dirs_list(install_cfg):
"""Collect all available directories with clibs or python extensions."""
install_dirs = []
for comp_info in install_cfg.values():
full_install_dir = os.path.join(comp_info.get("prefix"), comp_info.get("install_dir"))
if full_install_dir not in install_dirs:
install_dirs.append(full_install_dir)
return install_dirs
def get_package_dir(install_cfg):
"""Get python package path based on config. All the packages should be located in one directory."""
py_package_path = ""
dirs = get_install_dirs_list(install_cfg)
if len(dirs) != 0:
# setup.py support only one package directory, all modules should be located there
py_package_path = dirs[0]
return py_package_path
def find_entry_points(install_cfg):
"""Creates a list of entry points for OpenVINO runtime package."""
entry_points = {
"console_scripts": [],
"torch_dynamo_backends": ["openvino=openvino.frontend.pytorch.torchdynamo.backend:openvino"],
}
for comp_info in install_cfg.values():
empty_point = comp_info.get("entry_point")
if empty_point is not None:
entry_points["console_scripts"].append(empty_point["console_scripts"])
return entry_points
def concat_files(input_files, output_file):
"""Concatenates multuple input files to a single output file."""
with open(output_file, "w", encoding="utf-8") as outfile:
for filename in input_files:
with open(filename, "r", encoding="utf-8") as infile:
content = infile.read()
outfile.write(content)
return output_file
OPENVINO_VERSION = WHEEL_VERSION = os.getenv("WHEEL_VERSION", "0.0.0")
PACKAGE_DIR = get_package_dir(PY_INSTALL_CFG)
# need to create package dir, because since https://github.com/pypa/wheel/commit/e43f2fcb296c2ac63e8bac2549ab596ab79accd0
# egg_info command works in this folder, because it's being created automatically
os.makedirs(PACKAGE_DIR, exist_ok=True)
packages = find_namespace_packages(PACKAGE_DIR)
package_data: typing.Dict[str, list] = {}
ext_modules = find_prebuilt_extensions(get_install_dirs_list(PY_INSTALL_CFG))
entry_points = find_entry_points(PY_INSTALL_CFG)
long_description_md = OPENVINO_SOURCE_DIR / "docs" / "dev" / "pypi_publish" / "pypi-openvino-rt.md"
md_files = [long_description_md, OPENVINO_SOURCE_DIR / "docs" / "dev" / "pypi_publish" / "pre-release-note.md"]
docs_url = "https://docs.openvino.ai/2023.0/index.html"
if os.getenv("CI_BUILD_DEV_TAG"):
long_description_md = WORKING_DIR / "build" / "pypi-openvino-rt.md"
long_description_md.parent.mkdir(exist_ok=True)
concat_files(md_files, long_description_md)
docs_url = "https://docs.openvino.ai/nightly/index.html"
OPENVINO_VERSION = WHEEL_VERSION[0:8]
setup(
name="openvino",
version=WHEEL_VERSION,
build=os.getenv("WHEEL_BUILD", "000"),
author_email="[email protected]",
license="OSI Approved :: Apache Software License",
author="Intel(R) Corporation",
description="OpenVINO(TM) Runtime",
install_requires=get_install_requires(SCRIPT_DIR.parents[0] / "requirements.txt"),
long_description=get_description(long_description_md),
long_description_content_type="text/markdown",
download_url="https://github.com/openvinotoolkit/openvino/releases",
url=docs_url,
entry_points=entry_points,
cmdclass={
"build": CustomBuild,
"install": CustomInstall,
"build_clib": PrepareLibs,
"build_ext": CopyExt,
"clean": CustomClean,
},
ext_modules=ext_modules,
packages=packages,
package_dir={"": PACKAGE_DIR},
package_data=package_data,
zip_safe=False,
)