You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2021/12/17 04:54:01 UTC

[GitHub] [tvm] junrushao1994 commented on a change in pull request #9757: [MetaSchedule] Misc improvement of the Measurer

junrushao1994 commented on a change in pull request #9757:
URL: https://github.com/apache/tvm/pull/9757#discussion_r771103108



##########
File path: python/tvm/meta_schedule/builder/local_builder.py
##########
@@ -15,20 +15,36 @@
 # specific language governing permissions and limitations
 # under the License.
 """Local builder that compile on the local host"""
+import logging
 import os
 import tempfile
-from typing import Callable, List, Optional, Union
+from typing import Callable, Dict, List, Optional, Union
 
 from tvm._ffi import register_func
 from tvm.ir import IRModule
-from tvm.runtime import Module
+from tvm.runtime import Module, NDArray, load_param_dict, save_param_dict
 from tvm.target import Target
 
 from ...contrib.popen_pool import MapResult, PopenPoolExecutor, StatusKind
 from ..utils import cpu_count, get_global_func_with_default_on_worker
 from .builder import BuilderInput, BuilderResult, PyBuilder
 
 
+logger = logging.getLogger(__name__)

Review comment:
       Thanks! just click “resolve conversation” yourself if the comment is addressed :-)




-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org