This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 87bd8af37d [TVMScript] Remove T.Bind backward-compat alias (#18891)
87bd8af37d is described below

commit 87bd8af37d17b3dffaf6b70ce1f43bb983b72939
Author: Tianqi Chen <[email protected]>
AuthorDate: Mon Mar 9 08:09:06 2026 -0400

    [TVMScript] Remove T.Bind backward-compat alias (#18891)
    
    ## Summary
    - Remove `Bind = bind` backward-compat alias from `ir.py`
    - Remove `"Bind"` from `__all__` exports
    - Follows #18889 which renamed `T.Bind` → `T.bind`
    
    ## Test plan
    - [x] tvmscript roundtrip/printer/ir_builder tests pass (232 passed)
    - [x] pre-commit lint passes
---
 python/tvm/script/ir_builder/tir/ir.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/python/tvm/script/ir_builder/tir/ir.py 
b/python/tvm/script/ir_builder/tir/ir.py
index ccc730f805..92c7d7d6e9 100644
--- a/python/tvm/script/ir_builder/tir/ir.py
+++ b/python/tvm/script/ir_builder/tir/ir.py
@@ -1024,9 +1024,6 @@ def Let(  # pylint: disable=invalid-name
     return tir.Let(var, value, expr)
 
 
-Bind = bind  # backward-compat alias
-
-
 def let(
     v: Var,
     value: PrimExpr,
@@ -2317,7 +2314,6 @@ __all__ = float_types + [
     "Call",
     "CallEffectKind",
     "let",
-    "Bind",
     "bind",
     "Let",
     "IterVar",

Reply via email to