awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم 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

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • nvidia/megatron-lmالصورة الرمزية لـ NVIDIA

    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-tutorialالصورة الرمزية لـ zhaochenyang20

    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/tilelangالصورة الرمزية لـ tile-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/flashinferالصورة الرمزية لـ flashinfer-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.