gemini-code-assist[bot] commented on code in PR #18525:
URL: https://github.com/apache/tvm/pull/18525#discussion_r2572876834
##########
python/tvm/meta_schedule/builder/local_builder.py:
##########
@@ -255,6 +255,7 @@ def default_build(mod: IRModule, target: Target, _params:
Optional[Dict[str, Ten
# pylint: disable=import-outside-toplevel
from tvm.driver import build as tvm_build
from tvm.tir.transform import RemoveWeightLayoutRewriteBlock
+ import tvm.tir.tensor_intrin
Review Comment:

To improve code readability and maintainability, it's good practice to keep
imports sorted alphabetically, as recommended by PEP 8. The
`tvm.tir.tensor_intrin` import should come before `tvm.tir.transform`.
```suggestion
import tvm.tir.tensor_intrin
from tvm.tir.transform import RemoveWeightLayoutRewriteBlock
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]