awesome-repositories.com
ब्लॉग
MCP
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टMCP सर्वरहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेस
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 रिपॉजिटरी

Awesome GitHub RepositoriesMulti-Node

Extends tensor parallelism across machines by joining local CUDA ranks into a global NCCL communicator coordinated by a head node.

Distinct from Tensor Parallelism: Distinct from general Tensor Parallelism: specifically addresses multi-node coordination with NCCL communicators.

Explore 5 awesome GitHub repositories matching artificial intelligence & ml · Multi-Node. Refine with filters or upvote what's useful.

Awesome Multi-Node GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • ericlbuehler/mistral.rsEricLBuehler का अवतार

    EricLBuehler/mistral.rs

    6,597GitHub पर देखें↗

    mistral.rs is an inference engine for large language models that runs locally and exposes models behind OpenAI and Anthropic-compatible APIs. It serves as a multi-model serving platform, capable of loading several models in a single server process with per-request routing and on-demand loading and unloading. The engine supports multimodal inference, processing text alongside images, video, audio, and speech inputs, and includes a quantized model deployment runtime that reduces memory use and speeds up inference on consumer hardware. The project distinguishes itself through an agentic tool exe

    Extends tensor parallelism across machines by joining local CUDA ranks into a global NCCL communicator.

    Rustllmrustuqff
    GitHub पर देखें↗6,597
  • ai-dynamo/dynamoai-dynamo का अवतार

    ai-dynamo/dynamo

    6,112GitHub पर देखें↗

    Dynamo is a distributed inference orchestration platform designed for large language models. It functions as a system to coordinate prefill and decode phases across GPU nodes, utilizing a multi-backend runtime adapter to connect engines like vLLM and TensorRT-LLM through a unified block-oriented memory interface. An OpenAI-compatible API server provides the frontend for integration with existing tools and clients. The project is distinguished by its disaggregated serving architecture, which separates prompt processing and token generation onto independent GPU pools to optimize throughput and

    Spreads tensor-parallel inference across multiple hardware nodes using global NCCL communicators.

    Rust
    GitHub पर देखें↗6,112
  • flashinfer-ai/flashinferflashinfer-ai का अवतार

    flashinfer-ai/flashinfer

    4,996GitHub पर देखें↗

    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 buffer allocation with multicast access for multi-node communication in distributed inference.

    Pythonattentioncudadistributed-inference
    GitHub पर देखें↗4,996
  • nvidia/ncclNVIDIA का अवतार

    NVIDIA/nccl

    4,816GitHub पर देखें↗

    NCCL is a high-performance communication library and distributed GPU computing framework designed for executing collective and point-to-point data exchanges across multiple GPUs in single or multi-node systems. It serves as an RDMA GPU transport layer and memory orchestrator, facilitating high-bandwidth synchronization of data and model gradients for distributed GPU training and inference. The library is distinguished by its ability to execute communication primitives directly from GPU kernels, removing the host CPU from the critical path. It utilizes topology-aware path selection to optimize

    Coordinates GPU communication across multiple physical nodes by establishing NVLink domains and identifiers.

    C++
    GitHub पर देखें↗4,816
  • b4rtaz/distributed-llamab4rtaz का अवतार

    b4rtaz/distributed-llama

    2,837GitHub पर देखें↗

    Distributed-llama is a distributed inference engine and command line tool for running large language models across multiple networked machines. It functions as a compute cluster manager that coordinates worker nodes to share the computational load of a single model. The system utilizes tensor parallelism to shard model weights across different hosts, allowing the execution of models that exceed the memory capacity of a single piece of hardware. It includes a dedicated format converter to transform standard model files into a compatible binary layout optimized for distributed loading. The eng

    Groups independent machines into a virtual compute resource to enable multi-node tensor parallelism.

    C++distributed-computingdistributed-llmllama2
    GitHub पर देखें↗2,837
  1. Home
  2. Artificial Intelligence & ML
  3. Tensor Parallelism
  4. Multi-Node

सब-टैग एक्सप्लोर करें

  • GPU Buffer AllocationsAllocates and manages GPU buffers with unicast and multicast access for multi-node communication, exposing PyTorch tensor views. **Distinct from Multi-Node:** Distinct from Multi-Node: focuses on buffer allocation and management with multicast access, not just NCCL communicator setup.