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

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 dépôts

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

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • nvidia/megatron-lmAvatar de NVIDIA

    NVIDIA/Megatron-LM

    16,731Voir sur 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
    Voir sur GitHub↗16,731
  • zhaochenyang20/awesome-ml-sys-tutorialAvatar de zhaochenyang20

    zhaochenyang20/Awesome-ML-SYS-Tutorial

    5,371Voir sur 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
    Voir sur GitHub↗5,371
  • tile-ai/tilelangAvatar de tile-ai

    tile-ai/tilelang

    5,226Voir sur 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
    Voir sur GitHub↗5,226
  • flashinfer-ai/flashinferAvatar de flashinfer-ai

    flashinfer-ai/flashinfer

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

Explorer les sous-tags

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