forked from graphcore/poptorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
105 lines (90 loc) · 3.51 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
# Copyright (c) 2020 Graphcore Ltd. All rights reserved.
import pathlib
import os
import sys
import logging
from setuptools import setup
from setuptools.dist import Distribution
from pybind11.setup_helpers import Pybind11Extension
logging.basicConfig(level=logging.INFO)
REQUIRES = ['tqdm', '@TORCH_DEPENDENCY@']
VERSION = "@VERSION@"
LONG_DESCRIPTION = (
"PopTorch is a set of extensions for PyTorch enabling "
"models to be trained, evaluated and used on the Graphcore IPU.")
LIBS = ["*.so", "lib/*", "lib/poplar_rt/*", "lib/graphcore/lib/*.a"]
class BinaryDistribution(Distribution):
"""Distribution which always forces a binary package with platform name"""
def has_ext_modules(self):
return True
def get_torch_paths():
# setup.py is executed several times, so it's ok if torch is not always
# available.
try:
import torch # pylint: disable=import-outside-toplevel
except ModuleNotFoundError:
return [], []
torch_root = str(pathlib.Path(torch.__file__).parent)
return [
os.path.join(torch_root, "include"),
os.path.join(torch_root, "include", "torch", "csrc", "api", "include")
], [os.path.join(torch_root, "lib")]
torch_include_dirs, torch_lib_dirs = get_torch_paths()
package_data = {'poptorch': LIBS}
# Copy custom codelets into the package so that we can pre-compile them later.
package_data["poptorch"].append("*.inc.cpp")
core_mod = Pybind11Extension(
"poptorch.poptorch_core", ["src/poptorch.cpp"],
define_macros=[("_GLIBCXX_USE_CXX11_ABI", 0)],
include_dirs=["include"] + torch_include_dirs,
library_dirs=["poptorch/lib"] + torch_lib_dirs,
extra_link_args=["-Wl,--rpath=$ORIGIN/lib:$ORIGIN"],
libraries=[
"poptorch", "popart_compiler", "poptorch_err", "poptorch_logging",
"torch_python", "torch"
],
language="c++",
cxx_std="17")
# Same as pybind11_add_module but without stripping the symbols and setting the visibility to hidden.
# Source: https://pybind11.readthedocs.io/en/stable/compiling.html#advanced-interface-library-targets
#
# If the symbols are stripped then error messages will only contain symbol
# addresses instead of human readable names.
core_mod.extra_compile_args = [
f for f in core_mod.extra_compile_args
if not "visibility=hidden" in f and not "-g0" in f
]
setup(
name='poptorch',
version=VERSION,
description=LONG_DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url='http://graphcore.ai',
author='Graphcore',
author_email='contact@graphcore.ai',
ext_modules=[core_mod],
has_ext_modules=lambda: True,
license='Apache 2.0',
packages=['poptorch'],
package_data=package_data,
include_package_data=True,
python_requires=f"=={sys.version_info.major}.{sys.version_info.minor}.*",
platforms="@PLATFORM@",
install_requires=REQUIRES,
zip_safe=False,
distclass=BinaryDistribution,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)