We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ed2aac commit 087f97dCopy full SHA for 087f97d
py/torch_tensorrt/fx/lower.py
@@ -86,7 +86,9 @@ def create(cls, lower_setting):
86
87
def __call__(self, mod, input, split_name) -> TRTInterpreterResult:
88
assert self.lower_setting.input_specs, "Can't find input specs for lowering!"
89
- logger.info(f"{split_name=} {self.lower_setting.input_specs=}")
+ logger.info(
90
+ f"split_name={split_name}, input_specs={self.lower_setting.input_specs}"
91
+ )
92
93
# Prepare algorithm selector and timing_cache for TRTInterpreter
94
algo_selector = None
0 commit comments