libinfo.py 6.1 KB
Newer Older
1
"""Library information."""
tqchen committed
2
from __future__ import absolute_import
3
import sys
tqchen committed
4
import os
5

tqchen committed
6

7
def find_lib_path(name=None, search_path=None, optional=False):
tqchen committed
8 9
    """Find dynamic library files.

10 11 12 13 14
    Parameters
    ----------
    name : list of str
        List of names to be found.

tqchen committed
15 16 17 18 19
    Returns
    -------
    lib_path : list(string)
        List of all found path to the libraries
    """
20
    use_runtime = os.environ.get("TVM_USE_RUNTIME_LIB", False)
21 22 23 24 25 26 27

    # See https://github.com/dmlc/tvm/issues/281 for some background.

    # NB: This will either be the source directory (if TVM is run
    # inplace) or the install directory (if TVM is installed).
    # An installed TVM's curr_path will look something like:
    #   $PREFIX/lib/python3.6/site-packages/tvm/_ffi
28
    ffi_dir = os.path.dirname(os.path.realpath(os.path.expanduser(__file__)))
29 30 31 32 33 34 35 36 37
    source_dir = os.path.join(ffi_dir, "..", "..", "..")
    install_lib_dir = os.path.join(ffi_dir, "..", "..", "..", "..")

    dll_path = []

    if os.environ.get('TVM_LIBRARY_PATH', None):
        dll_path.append(os.environ['TVM_LIBRARY_PATH'])

    if sys.platform.startswith('linux') and os.environ.get('LD_LIBRARY_PATH', None):
tqchen committed
38
        dll_path.extend([p.strip() for p in os.environ['LD_LIBRARY_PATH'].split(":")])
39 40 41
    elif sys.platform.startswith('darwin') and os.environ.get('DYLD_LIBRARY_PATH', None):
        dll_path.extend([p.strip() for p in os.environ['DYLD_LIBRARY_PATH'].split(":")])

42
    # Pip lib directory
43
    dll_path.append(os.path.join(ffi_dir, ".."))
44 45
    # Default cmake build directory
    dll_path.append(os.path.join(source_dir, "build"))
46
    dll_path.append(os.path.join(source_dir, "build", "Release"))
47
    # Default make build directory
48 49 50 51
    dll_path.append(os.path.join(source_dir, "lib"))

    dll_path.append(install_lib_dir)

52
    dll_path = [os.path.realpath(x) for x in dll_path]
53 54 55 56 57
    if search_path is not None:
        if search_path is list:
            dll_path = dll_path + search_path
        else:
            dll_path.append(search_path)
58
    if name is not None:
59 60 61 62 63 64
        if isinstance(name, list):
            lib_dll_path = []
            for n in name:
                lib_dll_path += [os.path.join(p, n) for p in dll_path]
        else:
            lib_dll_path = [os.path.join(p, name) for p in dll_path]
65
        runtime_dll_path = []
tqchen committed
66
    else:
67
        if sys.platform.startswith('win32'):
68 69 70 71
            lib_dll_path = [os.path.join(p, 'libtvm.dll') for p in dll_path] +\
                           [os.path.join(p, 'tvm.dll') for p in dll_path]
            runtime_dll_path = [os.path.join(p, 'libtvm_runtime.dll') for p in dll_path] +\
                               [os.path.join(p, 'tvm_runtime.dll') for p in dll_path]
72 73 74
        elif sys.platform.startswith('darwin'):
            lib_dll_path = [os.path.join(p, 'libtvm.dylib') for p in dll_path]
            runtime_dll_path = [os.path.join(p, 'libtvm_runtime.dylib') for p in dll_path]
75 76 77
        else:
            lib_dll_path = [os.path.join(p, 'libtvm.so') for p in dll_path]
            runtime_dll_path = [os.path.join(p, 'libtvm_runtime.so') for p in dll_path]
78

79 80 81
    if not use_runtime:
        # try to find lib_dll_path
        lib_found = [p for p in lib_dll_path if os.path.exists(p) and os.path.isfile(p)]
82 83
        lib_found += [p for p in runtime_dll_path if os.path.exists(p) and os.path.isfile(p)]
    else:
84 85 86
        # try to find runtime_dll_path
        use_runtime = True
        lib_found = [p for p in runtime_dll_path if os.path.exists(p) and os.path.isfile(p)]
87

88
    if not lib_found:
89 90 91 92 93
        message = ('Cannot find the files.\n' +
                   'List of candidates:\n' +
                   str('\n'.join(lib_dll_path + runtime_dll_path)))
        if not optional:
            raise RuntimeError(message)
94
        return None
95

96
    if use_runtime:
97
        sys.stderr.write("Loading runtime library %s... exec only\n" % lib_found[0])
98 99
        sys.stderr.flush()
    return lib_found
tqchen committed
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
def find_include_path(name=None, search_path=None, optional=False):
    """Find header files for C compilation.

    Parameters
    ----------
    name : list of str
        List of directory names to be searched.

    Returns
    -------
    include_path : list(string)
        List of all found paths to header files.
    """
    ffi_dir = os.path.dirname(os.path.abspath(os.path.expanduser(__file__)))
    source_dir = os.path.join(ffi_dir, "..", "..", "..")
    install_include_dir = os.path.join(ffi_dir, "..", "..", "..", "..")
    third_party_dir = os.path.join(source_dir, "3rdparty")

    header_path = []

    if os.environ.get('TVM_INCLUDE_PATH', None):
        header_path.append(os.environ['TVM_INCLUDE_PATH'])

    header_path.append(install_include_dir)
    header_path.append(source_dir)
    header_path.append(third_party_dir)

    header_path = [os.path.abspath(x) for x in header_path]
    if search_path is not None:
        if search_path is list:
            header_path = header_path + search_path
        else:
            header_path.append(search_path)
    if name is not None:
        if isinstance(name, list):
            tvm_include_path = []
            for n in name:
                tvm_include_path += [os.path.join(p, n) for p in header_path]
        else:
            tvm_include_path = [os.path.join(p, name) for p in header_path]
        dlpack_include_path = []
    else:
        tvm_include_path = [os.path.join(p, 'include') for p in header_path]
        dlpack_include_path = [os.path.join(p, 'dlpack/include') for p in header_path]

        # try to find include path
        include_found = [p for p in tvm_include_path if os.path.exists(p) and os.path.isdir(p)]
        include_found += [p for p in dlpack_include_path if os.path.exists(p) and os.path.isdir(p)]

    if not include_found:
        message = ('Cannot find the files.\n' +
                   'List of candidates:\n' +
                   str('\n'.join(tvm_include_path + dlpack_include_path)))
        if not optional:
            raise RuntimeError(message)
        return None

    return include_found


tqchen committed
162
# current version
163 164 165
# We use the version of the incoming release for code
# that is under development.
# The following line is set by tvm/python/update_version.py
166
__version__ = "0.6.dev"