.gitignore
LICENSE
Makefile
README.md
pyproject.toml
setup.cfg
setup.py
.github/.gitkeep
.github/actions/test/action.yml
.github/scripts/step-status
.github/workflows/build-test.yml
.github/workflows/build.yml
.github/workflows/quality-check.yaml
.github/workflows/report.yml
.github/workflows/test-check.yaml
.github/workflows/test.yml
.github/workflows/trigger-all.yml
.github/workflows/upload.yml
examples/bitmask_compression.ipynb
examples/quantize_and_pack_int4.ipynb
examples/bit_packing/ex_quantize_and_pack.py
examples/bit_packing/int4_config.json
examples/llama_1.1b/ex_config_quantization.py
examples/llama_1.1b/ex_llmcompressor_quantization.py
examples/llama_1.1b/example_quant_config.json
examples/llama_1.1b/example_quant_recipe.yaml
src/__init__.py
src/compressed_tensors/README.md
src/compressed_tensors/__init__.py
src/compressed_tensors/base.py
src/compressed_tensors/logger.py
src/compressed_tensors/version.py
src/compressed_tensors.egg-info/PKG-INFO
src/compressed_tensors.egg-info/SOURCES.txt
src/compressed_tensors.egg-info/dependency_links.txt
src/compressed_tensors.egg-info/requires.txt
src/compressed_tensors.egg-info/top_level.txt
src/compressed_tensors/compressors/__init__.py
src/compressed_tensors/compressors/base.py
src/compressed_tensors/compressors/helpers.py
src/compressed_tensors/compressors/model_compressors/__init__.py
src/compressed_tensors/compressors/model_compressors/model_compressor.py
src/compressed_tensors/compressors/quantized_compressors/__init__.py
src/compressed_tensors/compressors/quantized_compressors/base.py
src/compressed_tensors/compressors/quantized_compressors/naive_quantized.py
src/compressed_tensors/compressors/quantized_compressors/nvfp4_quantized.py
src/compressed_tensors/compressors/quantized_compressors/pack_quantized.py
src/compressed_tensors/compressors/sparse_compressors/__init__.py
src/compressed_tensors/compressors/sparse_compressors/base.py
src/compressed_tensors/compressors/sparse_compressors/dense.py
src/compressed_tensors/compressors/sparse_compressors/sparse_24_bitmask.py
src/compressed_tensors/compressors/sparse_compressors/sparse_bitmask.py
src/compressed_tensors/compressors/sparse_quantized_compressors/__init__.py
src/compressed_tensors/compressors/sparse_quantized_compressors/marlin_24.py
src/compressed_tensors/config/__init__.py
src/compressed_tensors/config/base.py
src/compressed_tensors/config/dense.py
src/compressed_tensors/config/format.py
src/compressed_tensors/config/sparse_24_bitmask.py
src/compressed_tensors/config/sparse_bitmask.py
src/compressed_tensors/linear/__init__.py
src/compressed_tensors/linear/compressed_linear.py
src/compressed_tensors/quantization/__init__.py
src/compressed_tensors/quantization/quant_args.py
src/compressed_tensors/quantization/quant_config.py
src/compressed_tensors/quantization/quant_scheme.py
src/compressed_tensors/quantization/lifecycle/__init__.py
src/compressed_tensors/quantization/lifecycle/apply.py
src/compressed_tensors/quantization/lifecycle/compressed.py
src/compressed_tensors/quantization/lifecycle/forward.py
src/compressed_tensors/quantization/lifecycle/helpers.py
src/compressed_tensors/quantization/lifecycle/initialize.py
src/compressed_tensors/quantization/utils/__init__.py
src/compressed_tensors/quantization/utils/helpers.py
src/compressed_tensors/registry/__init__.py
src/compressed_tensors/registry/registry.py
src/compressed_tensors/transform/__init__.py
src/compressed_tensors/transform/apply.py
src/compressed_tensors/transform/transform_args.py
src/compressed_tensors/transform/transform_config.py
src/compressed_tensors/transform/transform_scheme.py
src/compressed_tensors/transform/factory/__init__.py
src/compressed_tensors/transform/factory/base.py
src/compressed_tensors/transform/factory/hadamard.py
src/compressed_tensors/transform/factory/matrix_multiply.py
src/compressed_tensors/transform/factory/random_hadamard.py
src/compressed_tensors/transform/utils/__init__.py
src/compressed_tensors/transform/utils/hadamard.py
src/compressed_tensors/transform/utils/hadamards.safetensors
src/compressed_tensors/transform/utils/matrix.py
src/compressed_tensors/utils/__init__.py
src/compressed_tensors/utils/helpers.py
src/compressed_tensors/utils/internal.py
src/compressed_tensors/utils/match.py
src/compressed_tensors/utils/offload.py
src/compressed_tensors/utils/permutations_24.py
src/compressed_tensors/utils/permute.py
src/compressed_tensors/utils/safetensors_load.py
src/compressed_tensors/utils/semi_structured_conversions.py
src/compressed_tensors/utils/type.py
tests/__init__.py
tests/conftest.py
tests/test_registry.py
tests/testing_utils.py
tests/test_compressors/__init__.py
tests/test_compressors/model_compressors/__init__.py
tests/test_compressors/model_compressors/test_model_compressor.py
tests/test_compressors/quantized_compressors/__init__.py
tests/test_compressors/quantized_compressors/test_fp8_quant.py
tests/test_compressors/quantized_compressors/test_int_quant.py
tests/test_compressors/quantized_compressors/test_nvfp4_quant.py
tests/test_compressors/quantized_compressors/test_pack_quant.py
tests/test_compressors/sparse_compressors/__init__.py
tests/test_compressors/sparse_compressors/test_bitmask.py
tests/test_compressors/sparse_compressors/test_sparse_24_bitmask.py
tests/test_compressors/sparse_quantized_compressors/__init__.py
tests/test_compressors/sparse_quantized_compressors/test_marlin_24.py
tests/test_configs/__init__.py
tests/test_configs/test_base.py
tests/test_configs/test_infer_quant.py
tests/test_examples/test_bitmask_compression_ipynb.py
tests/test_linear/__init__.py
tests/test_linear/test_compressed_linear.py
tests/test_quantization/__init__.py
tests/test_quantization/test_quant_args.py
tests/test_quantization/test_quant_config.py
tests/test_quantization/test_quant_scheme.py
tests/test_quantization/lifecycle/__init__.py
tests/test_quantization/lifecycle/conftest.py
tests/test_quantization/lifecycle/test_apply.py
tests/test_quantization/lifecycle/test_dynamic_lifecycle.py
tests/test_quantization/lifecycle/test_enabled.py
tests/test_quantization/lifecycle/test_forward.py
tests/test_quantization/lifecycle/test_helpers.py
tests/test_quantization/lifecycle/test_initialize.py
tests/test_quantization/lifecycle/test_lifecycle.py
tests/test_quantization/test_configs/__init__.py
tests/test_quantization/test_configs/test_bit_depths.py
tests/test_quantization/test_configs/test_strategies.py
tests/test_quantization/test_utils/test_helpers.py
tests/test_transform/conftest.py
tests/test_transform/test_transform_args.py
tests/test_transform/test_transform_config.py
tests/test_transform/test_transform_scheme.py
tests/test_transform/factory/test_correctness.py
tests/test_transform/factory/test_memory.py
tests/test_transform/factory/test_serialization.py
tests/test_transform/utils/test_hadamard.py
tests/test_utils/__init__.py
tests/test_utils/test_helpers.py
tests/test_utils/test_match.py
tests/test_utils/test_offload.py
tests/test_utils/test_safetensors_load.py
tests/test_utils/test_type.py
utils/copyright.py