tqchen commented on a change in pull request #4274: [µTVM] Enable AutoTVM for ARM STM32F746XX Boards URL: https://github.com/apache/incubator-tvm/pull/4274#discussion_r343909330
########## File path: python/tvm/micro/base.py ########## @@ -14,129 +14,156 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. - -"""Base definitions for micro.""" +"""Base definitions for MicroTVM""" from __future__ import absolute_import import logging import os import sys +from enum import Enum +from pathlib import Path +import tvm from tvm.contrib import util as _util from tvm.contrib import cc as _cc - from .._ffi.function import _init_api from .._ffi.libinfo import find_include_path -SUPPORTED_DEVICE_TYPES = ["host", "openocd"] +class LibType(Enum): + RUNTIME = 0 Review comment: document what is runtime and what is operator, is it possible to tell that by checking types of module? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
