forked from Oneflow-Inc/oneflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
94 lines (78 loc) · 2.82 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
from __future__ import absolute_import
import os
import re
import sys
import argparse
import shutil
import glob
from setuptools import find_packages
from setuptools import setup
from setuptools.dist import Distribution
from setuptools.command.install import install
# https://github.com/google/or-tools/issues/616
class InstallPlatlib(install):
def finalize_options(self):
install.finalize_options(self)
if self.distribution.has_ext_modules():
self.install_lib = self.install_platlib
parser = argparse.ArgumentParser()
parser.register("type", "bool", lambda v: v.lower() == "true")
parser.add_argument(
"--with_xla",
type='bool',
default=False,
help="Package xla libraries if true, otherwise not."
)
parser.add_argument('--build_dir', type=str, default='build')
parser.add_argument('--package_name', type=str, default='oneflow')
args, remain_args = parser.parse_known_args()
sys.argv = ['setup.py'] + remain_args
REQUIRED_PACKAGES = [
'numpy',
'protobuf',
'tqdm',
'requests',
'onnx',
]
class BinaryDistribution(Distribution):
def is_pure(self):
return False
def has_ext_modules(self):
return True
python_scripts_dir = os.path.join(args.build_dir, "python_scripts")
packages = find_packages(python_scripts_dir)
package_dir = {
'':python_scripts_dir,
}
include_files = glob.glob("{}/python_scripts/oneflow/include/**/*".format(args.build_dir), recursive=True)
include_files = [os.path.relpath(p, "{}/python_scripts/oneflow".format(args.build_dir)) for p in include_files]
package_data = {'oneflow': ['_oneflow_internal.so'] + include_files}
if args.with_xla:
packages += ['oneflow.libs']
package_dir['oneflow.libs'] = 'third_party/tensorflow/lib'
package_data['oneflow.libs'] = ['libtensorflow_framework.so.1', 'libxla_core.so']
# Patchelf >= 0.9 is required.
oneflow_internal_so = "{}/python_scripts/oneflow/_oneflow_internal.so".format(args.build_dir)
rpath = os.popen("patchelf --print-rpath " + oneflow_internal_so).read()
command = "patchelf --set-rpath '$ORIGIN/:$ORIGIN/libs/:%s' %s" % \
(rpath.strip(), oneflow_internal_so)
if os.system(command) != 0:
raise Exception("Patchelf set rpath failed. command is: %s" % command)
def get_version():
import importlib.util
spec = importlib.util.spec_from_file_location("version", os.path.join(python_scripts_dir, "oneflow", "python", "version.py"))
m = importlib.util.module_from_spec(spec)
spec.loader.exec_module(m)
return m.__version__
setup(
name=args.package_name,
version=get_version(),
url='https://www.oneflow.org/',
install_requires=REQUIRED_PACKAGES,
packages=packages,
package_dir=package_dir,
package_data=package_data,
zip_safe=False,
distclass=BinaryDistribution,
cmdclass={'install': InstallPlatlib},
)