junrushao1994 commented on code in PR #11157: URL: https://github.com/apache/tvm/pull/11157#discussion_r861222208
########## python/tvm/meta_schedule/task_scheduler/gradient_based.py: ########## @@ -15,9 +15,11 @@ # specific language governing permissions and limitations # under the License. """Gradient Based Task Scheduler""" +import logging from typing import TYPE_CHECKING, List, Optional from tvm._ffi import register_object +from tvm.meta_schedule.utils import make_logging_func Review Comment: use relative import: ```suggestion from ..utils import import make_logging_func ``` ########## python/tvm/meta_schedule/task_scheduler/round_robin.py: ########## @@ -16,10 +16,12 @@ # under the License. """Round Robin Task Scheduler""" +import logging from typing import TYPE_CHECKING, List, Optional from tvm._ffi import register_object from tvm.meta_schedule.measure_callback.measure_callback import MeasureCallback +from tvm.meta_schedule.utils import make_logging_func Review Comment: ditto -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
