6cbb0f6718
* [build] Update libinfo and add lint rule This updates `tvm.support.libinfo()` to be in-line with the current tvm options. It also adds a lint rule to ensure these stay matched up in the future as well as a script to print out the options in more detail. This should add in communication when debugging (i.e. tell someone to run `python -c 'import tvm; tvm.support.describe()` to learn everything you need about their envrionment) * Fix pylint Co-authored-by: driazati <driazati@users.noreply.github.com>
91 lines
3.0 KiB
Python
91 lines
3.0 KiB
Python
# 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.
|
|
"""Support infra of TVM."""
|
|
import json
|
|
import textwrap
|
|
import ctypes
|
|
import os
|
|
import sys
|
|
|
|
import tvm
|
|
import tvm._ffi
|
|
from .runtime.module import Module
|
|
from . import get_global_func
|
|
|
|
|
|
def libinfo():
|
|
"""Returns a dictionary containing compile-time info, including cmake flags and git commit hash
|
|
|
|
Returns
|
|
-------
|
|
info: Dict[str, str]
|
|
The dictionary of compile-time info.
|
|
"""
|
|
get_lib_info_func = get_global_func("support.GetLibInfo", allow_missing=True)
|
|
if get_lib_info_func is not None:
|
|
lib_info = get_lib_info_func()
|
|
if lib_info is None:
|
|
return {}
|
|
else:
|
|
return {}
|
|
return dict(lib_info.items())
|
|
|
|
|
|
def describe():
|
|
"""
|
|
Print out information about TVM and the current Python environment
|
|
"""
|
|
info = list((k, v) for k, v in libinfo().items())
|
|
info = dict(sorted(info, key=lambda x: x[0]))
|
|
print("Python Environment")
|
|
sys_version = sys.version.replace("\n", " ")
|
|
uname = os.uname()
|
|
uname = f"{uname.sysname} {uname.release} {uname.version} {uname.machine}"
|
|
lines = [
|
|
f"TVM version = {tvm.__version__}",
|
|
f"Python version = {sys_version} ({sys.maxsize.bit_length() + 1} bit)",
|
|
f"os.uname() = {uname}",
|
|
]
|
|
print(textwrap.indent("\n".join(lines), prefix=" "))
|
|
print("CMake Options:")
|
|
print(textwrap.indent(json.dumps(info, indent=2), prefix=" "))
|
|
|
|
|
|
class FrontendTestModule(Module):
|
|
"""A tvm.runtime.Module whose member functions are PackedFunc."""
|
|
|
|
def __init__(self, entry_name=None):
|
|
underlying_mod = get_global_func("testing.FrontendTestModule")()
|
|
handle = underlying_mod.handle
|
|
|
|
# Set handle to NULL to avoid cleanup in c++ runtime, transferring ownership.
|
|
# Both cython and ctypes FFI use c_void_p, so this is safe to assign here.
|
|
underlying_mod.handle = ctypes.c_void_p(0)
|
|
|
|
super(FrontendTestModule, self).__init__(handle)
|
|
if entry_name is not None:
|
|
self.entry_name = entry_name
|
|
|
|
def add_function(self, name, func):
|
|
self.get_function("__add_function")(name, func)
|
|
|
|
def __setitem__(self, key, value):
|
|
self.add_function(key, value)
|
|
|
|
|
|
tvm._ffi._init_api("support", __name__)
|