File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
py/torch_tensorrt/dynamo/backend Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -96,19 +96,19 @@ def _pretraced_backend(
9696 ),
9797 )
9898
99- logger .debug ("Post-AOT Autograd graph:\n " + str (gm .graph ))
99+ logger .debug ("Post-AOT Autograd graph:\n " + str (gm .graph ))
100100
101- gm = post_lowering (gm , sample_inputs )
101+ gm = post_lowering (gm , sample_inputs )
102102
103- logger .debug ("Lowered Input graph:\n " + str (gm .graph ))
103+ logger .debug ("Lowered Input graph:\n " + str (gm .graph ))
104104
105- torchtrt_inputs = prepare_inputs (torch_inputs , disable_memory_format_check = True )
106- trt_compiled = compile_module (
107- gm ,
108- torchtrt_inputs ,
109- settings = settings ,
110- )
111- return trt_compiled
105+ torchtrt_inputs = prepare_inputs (torch_inputs , disable_memory_format_check = True )
106+ trt_compiled = compile_module (
107+ gm ,
108+ torchtrt_inputs ,
109+ settings = settings ,
110+ )
111+ return trt_compiled
112112 except (AssertionError , RuntimeError ):
113113 if not settings .pass_through_build_failures :
114114 logger .warning (
You can’t perform that action at this time.
0 commit comments