paper-with-me

홈 › Papers

TIDE: Token-Informed Depth Execution for Per-Token Early Exit in LLM Inference

2026-03-22 · Jaber Jaber, Osama Jaber arxiv

Large language models run every token through every layer, regardless of difficulty. We present TIDE, a post-training system that attaches tiny learned routers at periodic checkpoint layers and, at inference time, selects the earliest layer whose hidden state has converged for each token. TIDE requires no model retraining, works with any HuggingFace causal LM, auto-detects GPU architecture, and supports float32, float16, and bfloat16 through fused CUDA kernels. On an NVIDIA A100 with DeepSeek R1 Distill 8B, TIDE achieves 100% prefill exit rate (5% of tokens exit at layer 11, the remaining at layer 31), reduces prefill latency by 7.2%, and increases single-batch throughput by 6.6%. During autoregressive decoding, 98-99% of tokens exit early while the model correctly solves a multi-step math problem with 95 unique output tokens. On Qwen3 8B (36 layers), throughput improves by 8.1% at batch size 8. Calibration on 2,000 WikiText samples takes under 3 minutes and produces a ~4 MB router checkpoint. The system comprises 1,308 lines of Python and 1,081 lines of CUDA/C++ with 74 passing tests. Code: https://github.com/RightNow-AI/TIDE

📄 PDF Abstract BibTeX arXiv:2603.21365

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

TIDE: Every Layer Knows the Token Beneath the Context

2026-05-07 · Ajay Jaiswal, Lauren Hannah, Han-Byul Kim, Duc Hoang 외 arxiv

We revisit a universally accepted but under-examined design choice in every modern LLM: a token index is looked up once at the input embedding layer and then permanently discarded. This single-injection assumption induce…

DNACHUNKER: Learnable Tokenization for DNA Language Models

2026-01-06 · Taewon Kim, Jihwan Shin, Hyomin Kim, Youngmok Jung 외 arxiv

DNA language models are increasingly used to represent genomic sequence, yet their effectiveness depends critically on how raw nucleotides are converted into model inputs. Unlike natural language, DNA offers no canonical…

PepALD: Macrocyclic Peptide Generation via Autoregressive Latent Diffusion

2026-06-12 · Junming Zhang, Siyu Yi, Wei Ju, Zhonghui Gu arxiv

Macrocyclic peptides are promising therapeutic candidates for intracellular targets, but their design requires simultaneous control over non-natural monomer chemistry, ring topology, membrane permeability, and target bin…

Adaptive Computation Depth via Learned Token Routing in Transformers

2026-04-18 · Ahmed Abdelmuniem Abdalla Mohammed arxiv

Standard transformer architectures apply the same number of layers to every token regardless of contextual difficulty. We present Token-Selective Attention (TSA), a learned per-token gate on residual updates between cons…

TIDE: A Trace-Informed Depth-First Exploration for Planning with Temporally Extended Goals

2026-01-17 · Yuliia Suprun, Khen Elimelech, Lydia E. Kavraki, Moshe Y. Vardi arxiv

Task planning with temporally extended goals (TEGs) is a critical challenge in AI and robotics, enabling agents to achieve complex sequences of objectives over time rather than addressing isolated, immediate tasks. Linea…