← Search

Yichao Fu

13 accepted papers

2026

Fast and Accurate Causal Parallel Decoding using Jacobi Forcing

ICML 2026poster

Multi-token generation has emerged as a promising paradigm for accelerating language model inference, with the diffusion Large Language Models (dLLMs) as the most notable approach recently. Popular dLLMs like SDAR and Fast-dLLM v2 are post-trained on pre-trained AR models to minimize training cost w…

Cited by 0SourceScholar
2026

When Drafts Evolve: Speculative Decoding Meets Online Learning

ICML 2026poster

Speculative decoding has emerged as a widely adopted paradigm for accelerating large language model inference, where a lightweight draft model rapidly generates candidate tokens that are then verified in parallel by a larger target model. However, due to limited model capacity, drafts often struggle…

Cited by 0SourceScholar
2025

Efficiently Scaling LLM Reasoning Programs with Certaindex

NeurIPS 2025poster

Test-time reasoning algorithms such as chain-of-thought, self-consistency, and MCTS enhance LLM problem-solving but can wastefully generate many tokens without improving accuracy. At the same time, we observe that these algorithms exhibit answer stabilization: their intermediate solutions often ceas…

Cited by 36SourcecodeScholar
2025

FoldMoE: Efficient Long Sequence MoE Training via Attention-MoE Pipelining

ACL 2025long

Training LLMs with Mixture-of-Experts (MoE) architecture on long sequences poses significant challenges due to the all-to-all communication bottleneck of expert parallelism. While existing approaches attempt to hide the communication costs in computation through token-level pipelining within MoE lay…

Cited by 0SourcePDFScholar
2025

Mat-Instructions: A Large-Scale Inorganic Material Instruction Dataset for Large Language Models

IJCAI 2025

Recent advancements in large language models (LLMs) have revolutionized research discovery across various scientific disciplines, including materials science. The discovery of novel materials, particularly crystal materials, is essential for achieving sustainable development goals (SDGs), as they dr

2025

Rebalancing Return Coverage for Conditional Sequence Modeling in Offline Reinforcement Learning

NeurIPS 2025poster

Recent advancements in offline reinforcement learning (RL) have underscored the capabilities of conditional sequence modeling (CSM), a paradigm that models the action distribution conditioned on both historical trajectories and target returns associated with each state. However, due to the imbalance…

Cited by 0SourceScholar
2025

Towards Generalizable Retina Vessel Segmentation with Deformable Graph Priors

NeurIPS 2025poster

Retinal vessel segmentation is critical for medical diagnosis, yet existing models often struggle to generalize across domains due to appearance variability, limited annotations, and complex vascular morphology. We propose GraphSeg, a variational Bayesian framework that integrates anatomical graph p…

Cited by 0SourceScholar
2024

Break the Sequential Dependency of LLM Inference Using Lookahead Decoding

ICML 2024poster

Autoregressive decoding of large language models (LLMs) is memory bandwidth bounded, resulting in high latency and significant wastes of the parallel processing power of modern accelerators. Existing methods for accelerating LLM decoding often require a draft model (e.g., speculative decoding), whic…

2024

Efficient LLM Scheduling by Learning to Rank

NeurIPS 2024poster

In Large Language Model (LLM) inference, the output length of an LLM request is typically regarded as not known a priori. Consequently, most LLM serving systems employ a simple First-come-first-serve (FCFS) scheduling strategy, leading to Head-Of-Line (HOL) blocking and reduced throughput and servic…

2024

ShiftAddLLM: Accelerating Pretrained LLMs via Post-Training Multiplication-Less Reparameterization

NeurIPS 2024poster

Large language models (LLMs) have shown impressive performance on language tasks but face challenges when deployed on resource-constrained devices due to their extensive parameters and reliance on dense multiplications, resulting in high memory demands and latency bottlenecks. Shift-and-add reparame…

2024

When Linear Attention Meets Autoregressive Decoding: Towards More Effective and Efficient Linearized Large Language Models

ICML 2024poster

Autoregressive Large Language Models (LLMs) have achieved impressive performance in language tasks but face two significant bottlenecks: (1) quadratic complexity in the attention module as the number of tokens increases, and (2) limited efficiency due to the sequential processing nature of autoregre…