Skip to content

Return empty sparsity config if targets and ignores are empty #1115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 29, 2025
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
5 changes: 5 additions & 0 deletions src/llmcompressor/transformers/compression/sparsity_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@ def from_pretrained(
sparsity_threshold=SparsityConfigMetadata.SPARSITY_THRESHOLD,
)

if not (targets or ignores):
# no sparsity config
# needed if targets/ignores are empty
return None

return SparsityCompressionConfig.load_from_registry(
format,
global_sparsity=global_sparsity,
Expand Down