tilelang package#

Subpackages#

Submodules#

Module contents#

class tilelang.TqdmLoggingHandler(level=0)#

Bases: Handler

Custom logging handler that directs log output to tqdm progress bar to avoid interference.

emit(record)#

Emit a log record. Messages are written to tqdm to ensure output in progress bars isn’t corrupted.

tilelang.set_log_level(level)#

Set the logging level for the module’s logger.

Parameters:
  • level (str or int) – Can be the string name of the level (e.g., ‘INFO’) or the actual level (e.g., logging.INFO).

  • OPTIONS – ‘DEBUG’, ‘INFO’, ‘WARNING’, ‘ERROR’, ‘CRITICAL’