setup.py 5.96 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.
17 18
# pylint: disable=invalid-name, exec-used
"""Setup TVM package."""
19 20
from __future__ import absolute_import
import os
21
import shutil
22
import sys
23 24 25 26 27
import sysconfig
import platform

from setuptools import find_packages
from setuptools.dist import Distribution
28

29 30 31 32 33 34 35 36
# need to use distutils.core for correct placement of cython dll
if "--inplace" in sys.argv:
    from distutils.core import setup
    from distutils.extension import Extension
else:
    from setuptools import setup
    from setuptools.extension import Extension

Clouds committed
37 38
CURRENT_DIR = os.path.dirname(__file__)

39

40 41 42 43 44 45 46 47
def get_lib_path():
    """Get library path, name and version"""
    # We can not import `libinfo.py` in setup.py directly since __init__.py
    # Will be invoked which introduces dependences
    libinfo_py = os.path.join(CURRENT_DIR, './tvm/_ffi/libinfo.py')
    libinfo = {'__file__': libinfo_py}
    exec(compile(open(libinfo_py, "rb").read(), libinfo_py, 'exec'), libinfo, libinfo)
    version = libinfo['__version__']
48 49 50 51 52 53 54 55 56 57
    if not os.getenv('CONDA_BUILD'):
        lib_path = libinfo['find_lib_path']()
        libs = [lib_path[0]]
        if libs[0].find("runtime") == -1:
            for name in lib_path[1:]:
                if name.find("runtime") != -1:
                    libs.append(name)
                    break
    else:
        libs = None
58
    return libs, version
59

60

61
LIB_LIST, __version__ = get_lib_path()
62

63

64 65 66 67 68
def config_cython():
    """Try to configure cython and return cython configuration"""
    if os.name == 'nt':
        print("WARNING: Cython is not supported on Windows, will compile without cython module")
        return []
69 70 71 72 73
    sys_cflags = sysconfig.get_config_var("CFLAGS")

    if "i386" in sys_cflags and "x86_64" in sys_cflags:
        print("WARNING: Cython library may not be compiled correctly with both i386 and x64")
        return []
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
    try:
        from Cython.Build import cythonize
        # from setuptools.extension import Extension
        if sys.version_info >= (3, 0):
            subdir = "_cy3"
        else:
            subdir = "_cy2"
        ret = []
        path = "tvm/_ffi/_cython"
        if os.name == 'nt':
            library_dirs = ['tvm', '../build/Release', '../build']
            libraries = ['libtvm']
        else:
            library_dirs = None
            libraries = None
        for fn in os.listdir(path):
            if not fn.endswith(".pyx"):
                continue
            ret.append(Extension(
                "tvm._ffi.%s.%s" % (subdir, fn[:-4]),
                ["tvm/_ffi/_cython/%s" % fn],
                include_dirs=["../include/",
96 97
                              "../3rdparty/dmlc-core/include",
                              "../3rdparty/dlpack/include",
98
                ],
99
                extra_compile_args=["-std=c++11"],
100 101 102
                library_dirs=library_dirs,
                libraries=libraries,
                language="c++"))
103
        return cythonize(ret, compiler_directives={"language_level": 3})
104 105 106 107
    except ImportError:
        print("WARNING: Cython is not installed, will compile without cython module")
        return []

108

109 110 111 112 113 114 115
class BinaryDistribution(Distribution):
    def has_ext_modules(self):
        return True

    def is_pure(self):
        return False

116

117 118 119 120 121 122 123 124 125 126
include_libs = False
wheel_include_libs = False
if not os.getenv('CONDA_BUILD'):
    if "bdist_wheel" in sys.argv:
        wheel_include_libs = True
    else:
        include_libs = True

setup_kwargs = {}

127
# For bdist_wheel only
128
if wheel_include_libs:
129 130 131 132 133
    with open("MANIFEST.in", "w") as fo:
        for path in LIB_LIST:
            shutil.copy(path, os.path.join(CURRENT_DIR, 'tvm'))
            _, libname = os.path.split(path)
            fo.write("include tvm/%s\n" % libname)
134
    setup_kwargs = {
135
        "include_package_data": True
136
    }
137 138

if include_libs:
139
    curr_path = os.path.dirname(os.path.abspath(os.path.expanduser(__file__)))
140 141
    for i, path in enumerate(LIB_LIST):
        LIB_LIST[i] = os.path.relpath(path, curr_path)
142 143
    setup_kwargs = {
        "include_package_data": True,
144
        "data_files": [('tvm', LIB_LIST)]
145
    }
146

147

148 149
def get_package_data_files():
    # Relay standard libraries
150
    return ['relay/std/prelude.rly', 'relay/std/core.rly']
151

152

153 154
setup(name='tvm',
      version=__version__,
155
      description="TVM: An End to End Tensor IR/DSL Stack for Deep Learning Systems",
156 157
      zip_safe=False,
      install_requires=[
158
        'numpy',
159
        'decorator',
160
        'attrs',
Bing Xu committed
161
        'psutil',
162
        ],
163
      extras_require={'test': ['pillow<7',
164 165 166 167 168 169 170 171
                               'matplotlib'],
                      'extra_feature': ['tornado',
                                        'psutil',
                                        'xgboost',
                                        'mypy',
                                        'orderedset',
                                        'antlr4-python3-runtime']},

172
      packages=find_packages(),
173 174
      package_dir={'tvm': 'tvm'},
      package_data={'tvm': get_package_data_files()},
175
      distclass=BinaryDistribution,
176
      url='https://github.com/apache/incubator-tvm',
177 178
      ext_modules=config_cython(),
      **setup_kwargs)
179

180 181 182

if wheel_include_libs:
    # Wheel cleanup
183
    os.remove("MANIFEST.in")
184 185
    for path in LIB_LIST:
        _, libname = os.path.split(path)
Clouds committed
186
        os.remove("tvm/%s" % libname)