awesome-repositories.com
Blog
MCP
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektMCP-ServerÜber unsRanking-MethodikPresse
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 Repos

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

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • nvidia/megatron-lmAvatar von NVIDIA

    NVIDIA/Megatron-LM

    16,731Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗16,731
  • zhaochenyang20/awesome-ml-sys-tutorialAvatar von zhaochenyang20

    zhaochenyang20/Awesome-ML-SYS-Tutorial

    5,371Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗5,371
  • tile-ai/tilelangAvatar von tile-ai

    tile-ai/tilelang

    5,226Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗5,226
  • flashinfer-ai/flashinferAvatar von flashinfer-ai

    flashinfer-ai/flashinfer

    4,996Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗4,996
  1. Home
  2. Artificial Intelligence & ML
  3. Tensor Parallelism
  4. Attention Parallelism Optimizers

Unter-Tags erkunden

  • Adaptive Context Parallelism1 Sub-TagDynamic 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.