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

SparseML dependency on compressed-tensors #2229

Merged
merged 26 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
097bd79
initial commit
dbogunowicz Apr 8, 2024
76970e3
update setup.py
dbogunowicz Apr 8, 2024
bbf4b39
Update setup.py
dbogunowicz Apr 8, 2024
a272a30
fix setup.py
dbogunowicz Apr 8, 2024
c0d3ead
move all config to sparsetensors
Apr 10, 2024
b3f7ff3
Merge branch 'main' into feature/damian/sparsetensors
Apr 10, 2024
a75f8da
cleanup class name and comments
Apr 10, 2024
c5b897e
Merge branch 'main' into feature/damian/sparsetensors
Apr 16, 2024
bbbdcb9
refactor to compressed-tensors
dbogunowicz Apr 18, 2024
5d9c7dd
Merge branch 'main' into feature/damian/sparsetensors
dbogunowicz Apr 18, 2024
dfa41fb
Merge branch 'main' into feature/damian/sparsetensors
Apr 22, 2024
7f5babf
all tests passing
dbogunowicz Apr 23, 2024
c0d6cb9
remove unused config
dbogunowicz Apr 23, 2024
1e7ee94
Merge branch 'main' into feature/damian/sparsetensors
dbogunowicz Apr 24, 2024
a4e0575
bring back SparsityConfigMetadata
dbogunowicz Apr 24, 2024
06d4554
Merge branch 'feature/damian/sparsetensors' of github.com:neuralmagic…
dbogunowicz Apr 24, 2024
8ac18e7
Update setup.py
dbogunowicz Apr 24, 2024
f5adc4e
Merge branch 'main' into feature/damian/sparsetensors
dbogunowicz Apr 25, 2024
c220772
update setup
dbogunowicz Apr 25, 2024
2fe554e
fix import problem
dbogunowicz Apr 25, 2024
4e0413e
fix clearml test
dbogunowicz Apr 25, 2024
a98a193
compressed-tensors are transformers dep
dbogunowicz Apr 25, 2024
fa1ab95
Merge branch 'main' into feature/damian/sparsetensors
dbogunowicz Apr 26, 2024
afd8cdd
Merge branch 'main' into feature/damian/sparsetensors
dbogunowicz Apr 29, 2024
196204a
Merge remote-tracking branch 'origin/main' into feature/damian/sparse…
dbogunowicz Apr 30, 2024
b5afe65
update compatibility to 0.3.2
dbogunowicz Apr 30, 2024
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
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
"evaluate>=0.4.1",
"accelerate>=0.20.3",
"safetensors>=0.4.1",
"compressed-tensors",
]
_llm_deps = _transformers_deps + ["sentencepiece"]
_yolov5_deps = _pytorch_vision_deps + [
Expand Down
162 changes: 0 additions & 162 deletions src/sparseml/transformers/compression/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions src/sparseml/transformers/compression/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,3 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# flake8: noqa

from .compressors import *
from .config import *
19 changes: 0 additions & 19 deletions src/sparseml/transformers/compression/compressors/__init__.py

This file was deleted.

83 changes: 0 additions & 83 deletions src/sparseml/transformers/compression/compressors/base.py

This file was deleted.

32 changes: 0 additions & 32 deletions src/sparseml/transformers/compression/compressors/dense.py

This file was deleted.

Loading
Loading