Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion py/torch_tensorrt/fx/lower.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ def create(cls, lower_setting):

def __call__(self, mod, input, split_name) -> TRTInterpreterResult:
assert self.lower_setting.input_specs, "Can't find input specs for lowering!"
logger.info(f"{split_name=} {self.lower_setting.input_specs=}")
logger.info(
f"split_name={split_name}, input_specs={self.lower_setting.input_specs}"
)

# Prepare algorithm selector and timing_cache for TRTInterpreter
algo_selector = None
Expand Down