MCPcopy Create free account
hub / github.com/NVIDIA/cutlass / log_debug_line

Function log_debug_line

python/cutlass_library/generator.py:55–58  ·  view source on GitHub ↗

Log one line of debug output

(line: str, indent_level: int = 0)

Source from the content-addressed store, hash-verified

53 return f"{prefix}{indent_level * indent}"
54
55def log_debug_line(line: str, indent_level: int = 0) -> None:
56 """Log one line of debug output"""
57 prefix = logging_prefix(indent_level)
58 _LOGGER.debug(prefix + line)
59
60# Certain usecases of cutlass_library nearly always prefer to run as scripts with
61# relative imports, rather than via an installed Python package. An example of this

Callers 5

__init__Method · 0.85
CreateConvOperator3xFunction · 0.85
GenerateSM90_Conv3xFunction · 0.85

Calls 1

logging_prefixFunction · 0.85

Tested by

no test coverage detected