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: 1 addition & 3 deletions src/llmcompressor/pipelines/sequential/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ def forward(self, *args, **kwargs) -> Dict[str, Any]:
except Exception as exception:
raise RuntimeError(
"Raised an exception during execution of the following code:\n"
f"```\n{add_line_numbers(self._code.src)}\n```\n"
"This is likely due to a violation of shape assumptions made when "
"tracing"
f"```\n{add_line_numbers(self._code.src)}\n```"
) from exception

return outputs
Expand Down