torch_tensorrt.logging¶
- class torch_tensorrt.logging.debug[source]¶
Context-manager to display full debug information through the logger
Example
with torch_tensorrt.logging.debug(): model_trt = torch_tensorrt.compile(model, **spec)
- class torch_tensorrt.logging.errors[source]¶
Context-manager to limit displayed log messages to just errors and above
Example
with torch_tensorrt.logging.errors(): outputs = model_torchtrt(inputs)
- class torch_tensorrt.logging.graphs[source]¶
Context-manager to display the results of intermediate lowering passes as well as full debug information through the logger
Example
with torch_tensorrt.logging.graphs(): model_trt = torch_tensorrt.compile(model, **spec)
- class torch_tensorrt.logging.info[source]¶
Context-manager to display all info and greater severity messages
Example
with torch_tensorrt.logging.info(): model_trt = torch_tensorrt.compile(model, **spec)