Skip to content
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

Compressed lifecycle implementation (INT8 only) #33

Merged
merged 17 commits into from
May 7, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Revert "Merge branch 'main' into compressed-lifecycle"
This reverts commit 8dcdde5, reversing
changes made to bb36936.
Sara Adkins committed May 7, 2024
commit 26fb3f78d1219123b2ee51bb95998e3155f379c8
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ def _setup_extras() -> Dict:

setup(
name="compressed-tensors",
version="0.3.3",
version="0.3.2",
author="Neuralmagic, Inc.",
author_email="support@neuralmagic.com",
license="Apache 2.0",
2 changes: 1 addition & 1 deletion src/compressed_tensors/compressors/sparse_bitmask.py
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ def compress(self, model_state: Dict[str, Tensor]) -> Dict[str, Tensor]:
f"found an existing entry for {key}. The existing entry will "
"be replaced."
)
compressed_dict.update(bitmask_dict)
compressed_dict |= bitmask_dict

return compressed_dict

File renamed without changes.
File renamed without changes.