You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: py/torch_tensorrt/dynamo/conversion/_TRTInterpreter.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -557,7 +557,7 @@ def run(
557
557
)
558
558
assert (
559
559
setting_compatiblity
560
-
), f"Attempted to refit a prebuilt engine with incompatible settings: {incompattible_settings}, (old_settings: {engine_compilation_settings}, new_settings: {self.compilation_settings})"
560
+
), f"Attempted to refit a cached engine with incompatible settings: {incompattible_settings}, (old_settings: {engine_compilation_settings}, new_settings: {self.compilation_settings})"
561
561
562
562
fori, einenumerate(
563
563
[
@@ -567,7 +567,7 @@ def run(
567
567
):
568
568
assert (
569
569
e
570
-
), f"Found that cached engine was built for a different input size (input: {i}, cached size: {cached_engine_input_specs[i]}, new size: {self.input_specs[i]}"
570
+
), f"Attempted to refit a cached engine built for a different input size (input: {i}, cached size: {cached_engine_input_specs[i]}, new size: {self.input_specs[i]}"
571
571
572
572
_LOGGER.info(
573
573
"Found the cached engine that corresponds to this graph. It is directly loaded."
0 commit comments