tilelang.tools¶
Submodules¶
Functions¶
|
Lazily import heavy tool submodules on first attribute access. |
Package Contents¶
- tilelang.tools.__getattr__(name)¶
Lazily import heavy tool submodules on first attribute access.
tilelang.tools.lower_traceis a large debug-only module, so it is imported lazily (only when accessed) to keepimport tilelangcheap when the feature is off. Other attributes raiseAttributeErroras usual.importlib.import_moduleis used rather thanfrom . import lower_trace: the latter re-enters this__getattr__while resolving the fromlist and recurses infinitely.