Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/tvm/tir/transform/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,10 +671,10 @@ class HoistedLetBindings(enum.Flag):
""" Bindings that are used by a hoisted conditional """

LetStmt = 2
""" Bindings occuring in LetStmt """
""" Bindings occurring in LetStmt """

LetExpr = 4
""" Bindings occuring in Let expressions """
""" Bindings occurring in Let expressions """

All = RequiredByConditional | LetStmt | LetExpr
""" Enable all hoisting of let bindings """
Expand Down