awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目MCP 服务器关于排名机制媒体报道
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 个仓库

Awesome GitHub RepositoriesBlock-Wise Quantization

Quantization strategy that divides optimizer states into smaller blocks with individual scaling factors.

Distinct from Quantized Training: Specifically addresses the division of optimizer states into blocks to preserve precision, whereas Quantized Training is a broader category.

Explore 3 awesome GitHub repositories matching artificial intelligence & ml · Block-Wise Quantization. Refine with filters or upvote what's useful.

Awesome Block-Wise Quantization GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • timdettmers/bitsandbytestimdettmers 的头像

    timdettmers/bitsandbytes

    8,277在 GitHub 上查看↗

    bitsandbytes is a quantization library for large language models that reduces memory footprints using k-bit quantization. It provides a framework for 4-bit low-rank adaptation, tools for 8-bit model compression, and memory-efficient optimizer extensions for PyTorch. The project enables the training of large models on limited hardware through 4-bit quantization and low-rank adaptation weights. It also facilitates faster inference by compressing models to 8-bit precision using vector-wise quantization. The library covers a range of memory optimization capabilities, including optimizer memory r

    Implements block-wise quantization of optimizer states to maintain full precision training performance while reducing memory.

    Python
    在 GitHub 上查看↗8,277
  • bitsandbytes-foundation/bitsandbytesbitsandbytes-foundation 的头像

    bitsandbytes-foundation/bitsandbytes

    7,968在 GitHub 上查看↗

    bitsandbytes is a deep learning quantization tool and library designed to reduce the memory footprint of large language models. It serves as a GPU memory optimizer and quantization framework, compressing model weights and features to 8-bit and 4-bit precision to enable inference and training on hardware with limited memory. The project provides a framework for low-rank adaptation, allowing the fine-tuning of quantized models by combining 4-bit weights with small trainable matrices. It further distinguishes itself through memory paging, which moves optimizer states between CPU and GPU memory t

    Reduces the memory footprint of optimizer states using block-wise quantization to maintain precision.

    Pythonllmmachine-learningpytorch
    在 GitHub 上查看↗7,968
  • flashinfer-ai/flashinferflashinfer-ai 的头像

    flashinfer-ai/flashinfer

    4,996在 GitHub 上查看↗

    FlashInfer is a library of high-performance GPU kernels purpose-built for accelerating large language model inference. It provides optimized implementations for attention operations (including flash attention, page attention, multi-head latent attention, and cascade attention) using paged key-value caches, fused kernel composition, and just-in-time compilation. The library also includes specialized kernels for mixture-of-experts layers, block-scaled low-precision quantization (FP8, FP4), and distributed collective communication. What distinguishes FlashInfer is its fused all-reduce communicat

    Provides GPU-accelerated block-scaled quantization kernels for FP4 and FP8 formats to reduce memory bandwidth in LLM inference.

    Pythonattentioncudadistributed-inference
    在 GitHub 上查看↗4,996
  1. Home
  2. Artificial Intelligence & ML
  3. Quantized Inference Runtimes
  4. Weight Quantization
  5. Quantized Training
  6. Block-Wise Quantization

探索子标签

  • Block-Scaled Quantization Kernels4 个子标签GPU kernels that encode weights and activations in block-scaled low-precision formats such as FP4 and FP8, reducing memory bandwidth while preserving accuracy. **Distinct from Block-Wise Quantization:** Distinct from Block-Wise Quantization: focuses on GPU kernel implementations for block-scaled formats (FP4, FP8) rather than general quantization strategies for optimizer states.