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

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

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

4 个仓库

Awesome GitHub RepositoriesAttention Parallelism Optimizers

Reduces KV cache memory usage by applying data parallelism to attention layers.

Distinct from Tensor Parallelism: Distinct from Tensor Parallelism: focuses on optimizing attention-specific parallelism strategies rather than general weight partitioning.

Explore 4 awesome GitHub repositories matching artificial intelligence & ml · Attention Parallelism Optimizers. Refine with filters or upvote what's useful.

Awesome Attention Parallelism Optimizers GitHub Repositories

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

    NVIDIA/Megatron-LM

    16,731在 GitHub 上查看↗

    Megatron-LM is a distributed transformer training library and large language model training framework designed to scale models across thousands of GPUs. It functions as a GPU-optimized deep learning toolkit and a scaling engine for mixture-of-experts architectures, enabling the training of models with hundreds of billions of parameters. The project implements multi-dimensional model parallelism, combining tensor, pipeline, data, expert, and context-based workload distribution. It specifically optimizes mixture-of-experts architectures through integrated memory and communication improvements t

    Increases training throughput for variable length sequences by adaptively sizing the context parallelism.

    Python
    在 GitHub 上查看↗16,731
  • zhaochenyang20/awesome-ml-sys-tutorialzhaochenyang20 的头像

    zhaochenyang20/Awesome-ML-SYS-Tutorial

    5,371在 GitHub 上查看↗

    This project provides a comprehensive technical guide and framework for engineering large-scale machine learning systems. It covers the full lifecycle of model development, focusing on the infrastructure and computational principles required to build, train, and serve generative AI models across distributed GPU clusters. The repository distinguishes itself by offering deep-dive tutorials and implementation strategies for complex system challenges. It emphasizes high-performance architectural primitives, such as collective communication orchestration, distributed tensor sharding, and static gr

    Reduces KV cache memory usage in models with few KV heads by using data parallelism for attention layers.

    Python
    在 GitHub 上查看↗5,371
  • tile-ai/tilelangtile-ai 的头像

    tile-ai/tilelang

    5,226在 GitHub 上查看↗

    TileLang is a Python-embedded domain-specific language compiler that JIT-compiles and autotunes GPU kernels. It uses a tile-based DSL, automatic software pipelining, and parallel autotuning to generate optimized GPU kernels at runtime. It supports tensor core operations with Pythonic syntax, automatic memory management, and thread mapping. The compiler searches over tile sizes, thread counts, and scheduling policies, compiling and benchmarking candidates in parallel to find the fastest kernel. It also caches compiled binaries and tuning results to disk for reuse across sessions. TileLang inc

    Divides attention computation across multiple streaming multiprocessors for parallel execution and merges results.

    Python
    在 GitHub 上查看↗5,226
  • 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

    Computes workspace memory requirements for context-parallel decode attention.

    Pythonattentioncudadistributed-inference
    在 GitHub 上查看↗4,996
  1. Home
  2. Artificial Intelligence & ML
  3. Tensor Parallelism
  4. Attention Parallelism Optimizers

探索子标签

  • Adaptive Context Parallelism1 个子标签Dynamic adjustment of context parallelism sizing to optimize throughput for variable length sequences. **Distinct from Attention Parallelism Optimizers:** Specifically addresses adaptive sizing for variable sequences, distinct from general attention-layer data parallelism.
  • Multi-SM Attention ParallelizersDivides attention computation across multiple streaming multiprocessors for parallel execution and merges the results. **Distinct from Attention Parallelism Optimizers:** Distinct from Attention Parallelism Optimizers: focuses on distributing attention across SMs, not optimizing parallelism strategies.