[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"doc-detail-82124-en":3,"doc-seo-82124-105":29,"detail-sidebar-cat-0-en-105":90},{"code":4,"msg":5,"data":6},0,"success",{"doc_id":7,"user_id":8,"nickname":9,"user_avatar":10,"doc_module":4,"category_id":11,"category_name":12,"doc_title":13,"doc_description":14,"doc_content":15,"file_id":16,"file_url":17,"file_type":18,"file_size":19,"view_count":4,"is_deleted":4,"is_public":20,"is_downloadable":20,"audit_status":20,"page_count":21,"language":22,"language_code":23,"site_id":24,"html_lang":23,"table_of_contents":25,"faqs":26,"seo_title":13,"seo_description":14,"update_tm":27,"read_time":28},82124,1099514067415,"Rowan","https://ap-avatar.wpscdn.com/avatar/100002539d78ffe74a7?x-image-process=image/resize,m_fixed,w_180,h_180&k=1779092875211072502",8,"Research & Report","SiFAR: Synchronization-Free All-Reduce for Low-Latency LLM Inference","Reasoning models and agentic systems make per-token latency a critical bottleneck for LLM inference, especially because intermediate reasoning tokens are not consumed by humans and minimal batching is used. While tensor parallelism sharding improves memory bandwidth, scaling increases All-Reduce overhead that can dominate token generation time. Removing All-Reduce boosts token throughput by 43% on Llama-3.1-8B with 8 H200 GPUs. SiFAR targets All-Reduce synchronization costs, eliminating barrier overheads with dual buffering, improving scalability via redundant switch-side reduction, and reducing top barriers using speculative reduction, cutting All-Reduce latency up to 52%.","SiFAR: Synchronization-Free All-Reduce for Low-Latency LLM Inference  \n* Hritvik Taneja  \n[htaneja3@gatech.edu](htaneja3@gatech.edu)  \n* Anish Saxena  \n[asaxena317@gatech.edu](asaxena317@gatech.edu)  \nAbhishek Revinipati* [arevinipati3@gatech.edu](arevinipati3@gatech.edu)  \nJae Hyung Ju* Neal C. Crago† Moinuddin Qureshi*  \n[jju35@gatech.edu](jju35@gatech.edu) [ncrago@nvidia.com](ncrago@nvidia.com) [moin@gatech.edu](moin@gatech.edu)  \narXiv :2607 .08973v 1 [ cs .DC] 9 Jul 2026  \nAbstract  \nThe rise of reasoning models and agentic systems has made LLMtoken-generation latency a key bottleneck. Unlike chatbots, where latency gains saturate at human reading speed, these systems generate intermediate reasoning tokens that are not consumed by humans. As a result, per-token latency directly determines end-to-end response time. To reduce latency, inference engines operate with minimal batching, making token generation bandwidth-bound. Tensor Parallelism addresses this bottleneck by sharding model weights across GPUs and loading them in parallel. However, scaling to more GPUs introduces All-Reduce overheads that grow with GPU count. We observe that removing All-Reduce improves token throughput by 43% for Llama-3.1-8B on 8 H200 GPUs.  \nTo address this overhead, we propose Synchronization-Free AllReduce (SiFAR), which reduces synchronization overheads incurred by All-Reduce during low-latency inference. Existing oneshot and twoshot algorithms incur high synchronization overheads due to barriers before and after communication, accounting for 32–62% of the latency for small payloads we observe in low-batch serving. To tackle this, first, we find that the bottom barrier in oneshot enforces a WAW dependency, and eliminate it by co-designing communication and model execution to enable dual buffering. However, oneshot scales poorly with GPU count. Twoshot performs better at higher TP degrees, but incurs an unavoidable bottom barrier. To overcome this, we leverage in-switch reduction in modern switches, primarily used for reduce-scatter. We propose redundant pull, where each GPU reduces the entire all-reduce payload at the switch. This improves oneshot scalability while retaining its no bottom barrier advantage. Finally, to reduce top barrier overhead, we observe that each token generation step issues multiple All-Reduce operations, keeping GPUs tightly synchronized after the first All-Reduce. We therefore propose speculative reduction, which initiates data transfer without waiting for the top barrier and ensures correctness via a lightweight validation mechanism. SiFAR reduces All-Reduce latency by up to 52% and improves end-to-end throughput by 18.6% for Llama-3.1-8B and 13.1% for Qwen3.5-397B-17B at TP=8 .  \nKeywords  \nLow-Latency LLM Inference, All-Reduce, In-Switch Reduction  \n1 Introduction  \nThe advent of agentic systems [1, 26, 31] and reasoning models [17] has made low-latency LLM token generation critical. In humanfacing LLM applications such as chatbots, each token is read by users, so reducing latency beyond human reading speed provides diminishing returns. In contrast, these systems generate intermediate reasoning tokens that are not consumed by humans, so per-token  \n∗ Georgia Institute of Technology, Atlanta, Georgia, USA †NVIDIA, Santa Clara, California, USA  \nlatency compounds across steps and directly impacts end-to-end response time. Recent proposals for hardware accelerators tailored for reasoning [2] and industry platforms like NVIDIA Groq LPU [39] further emphasize the importance of optimizing for low-latency inference. In this work, we focus on reducing token generation latency in GPU-based inference.  \nThe Low-Latency Challenge. The first step towards reducing token generation latency is to minimize batching, since larger batches delay individual token generation by (1) increasing the size of KV Cache and (2) activating more model parameters (for MoE [29]) . With minimal batching, loading model weights and KV Cache from H","cbCaij2ZVcjxt7gm","https://ap.wps.com/l/cbCaij2ZVcjxt7gm","pdf",996680,1,14,"English","en",105,"# Introduction\n## The Low-Latency Challenge\n## All-Reduce: The Emerging Bottleneck\n## Limitations of Prior Work\n## All-Reduce Algorithms","[{\"question\":\"Why does per-token latency become especially important in reasoning and agentic LLM systems?\",\"answer\":\"These systems generate intermediate reasoning tokens over multiple steps, so latency compounds across generation steps and directly affects end-to-end response time.\"},{\"question\":\"How do tensor parallelism approaches help with the low-batch memory bandwidth bottleneck, and what new issue appears?\",\"answer\":\"Tensor parallelism partitions model weights and KV cache across GPUs and loads in parallel to improve bandwidth, but scaling adds communication and synchronization overheads from All-Reduce.\"},{\"question\":\"What is SiFAR, and what bottlenecks in All-Reduce does it target?\",\"answer\":\"SiFAR is a synchronization-free All-Reduce approach that reduces All-Reduce overheads caused by synchronization barriers during low-latency inference, improving throughput and reducing end-to-end token generation latency.\"}]",1784178338,35,{"code":4,"msg":30,"data":31},"ok",{"site_id":24,"language":23,"slug":32,"title":13,"keywords":33,"description":14,"schema_data":34,"social_meta":85,"head_meta":87,"extra_data":89,"updated_unix":27},"sifar-synchronization-free-all-reduce-for-low-latency-llm-inference","",{"@graph":35,"@context":84},[36,53,67],{"@type":37,"itemListElement":38},"BreadcrumbList",[39,43,47,50],{"item":40,"name":41,"@type":42,"position":20},"https://docshare.wps.com","Home","ListItem",{"item":44,"name":45,"@type":42,"position":46},"https://docshare.wps.com/document/","Document",2,{"item":48,"name":12,"@type":42,"position":49},"https://docshare.wps.com/document/research-report/",3,{"item":51,"name":13,"@type":42,"position":52},"https://docshare.wps.com/document/sifar-synchronization-free-all-reduce-for-low-latency-llm-inference/82124/",4,{"url":51,"name":13,"@type":54,"author":55,"headline":13,"publisher":57,"fileFormat":60,"inLanguage":23,"description":14,"dateModified":61,"datePublished":61,"encodingFormat":60,"isAccessibleForFree":62,"interactionStatistic":63},"DigitalDocument",{"name":9,"@type":56},"Person",{"url":40,"name":58,"@type":59},"DocShare","Organization","application/pdf","2026-07-16",true,{"@type":64,"interactionType":65,"userInteractionCount":4},"InteractionCounter",{"@type":66},"ViewAction",{"@type":68,"mainEntity":69},"FAQPage",[70,76,80],{"name":71,"@type":72,"acceptedAnswer":73},"Why does per-token latency become especially important in reasoning and agentic LLM systems?","Question",{"text":74,"@type":75},"These systems generate intermediate reasoning tokens over multiple steps, so latency compounds across generation steps and directly affects end-to-end response time.","Answer",{"name":77,"@type":72,"acceptedAnswer":78},"How do tensor parallelism approaches help with the low-batch memory bandwidth bottleneck, and what new issue appears?",{"text":79,"@type":75},"Tensor parallelism partitions model weights and KV cache across GPUs and loads in parallel to improve bandwidth, but scaling adds communication and synchronization overheads from All-Reduce.",{"name":81,"@type":72,"acceptedAnswer":82},"What is SiFAR, and what bottlenecks in All-Reduce does it target?",{"text":83,"@type":75},"SiFAR is a synchronization-free All-Reduce approach that reduces All-Reduce overheads caused by synchronization barriers during low-latency inference, improving throughput and reducing end-to-end token generation latency.","https://schema.org",{"og:url":51,"og:type":86,"og:title":13,"og:site_name":58,"og:description":14},"article",{"robots":88,"canonical":51},"index,follow",{"doc_id":7,"site_id":24},{"code":4,"msg":5,"data":91},[92,96,100,104,109,114,119,122,127,130,134],{"id":20,"doc_module":4,"doc_module_name":45,"category_name":93,"show_sort_weight":94,"slug":95},"Story & Novel",90,"story-novel",{"id":46,"doc_module":4,"doc_module_name":45,"category_name":97,"show_sort_weight":98,"slug":99},"Literature",80,"literature",{"id":52,"doc_module":4,"doc_module_name":45,"category_name":101,"show_sort_weight":102,"slug":103},"Exam",70,"exam",{"id":105,"doc_module":4,"doc_module_name":45,"category_name":106,"show_sort_weight":107,"slug":108},5,"Comic",60,"comic",{"id":110,"doc_module":4,"doc_module_name":45,"category_name":111,"show_sort_weight":112,"slug":113},6,"Technology",50,"technology",{"id":115,"doc_module":4,"doc_module_name":45,"category_name":116,"show_sort_weight":117,"slug":118},7,"Healthcare",40,"healthcare",{"id":11,"doc_module":4,"doc_module_name":45,"category_name":12,"show_sort_weight":120,"slug":121},30,"research-report",{"id":123,"doc_module":4,"doc_module_name":45,"category_name":124,"show_sort_weight":125,"slug":126},9,"Religion & Spirituality",20,"religion-spirituality",{"id":125,"doc_module":4,"doc_module_name":45,"category_name":128,"show_sort_weight":125,"slug":129},"World Cup","world-cup",{"id":131,"doc_module":4,"doc_module_name":45,"category_name":132,"show_sort_weight":131,"slug":133},10,"Lifestyle","lifestyle",{"id":135,"doc_module":4,"doc_module_name":45,"category_name":136,"show_sort_weight":105,"slug":137},19,"General","general"]