LIVE PULSE
5.0 Anthropic CEO Amodei calls for slower AI development and shared safety rules11 src2.7 Agility Robotics unveils Digit 5 humanoid for warehouses and factories2 src2.5 Apple ships rebuilt Siri with Google Gemini, but not in the EU2 src2.2 Siri AI in macOS 27 Golden Gate: FAQ, Germany availability, privacy questions2 src1.8 Sam Altman says OpenAI will not go public in 2026, citing AI safety concerns5 src1.4 OpenAI contractors review real ChatGPT conversations to rate responses, report says2 src1.4 Anthropic data retention policy prompts firms to limit Claude use for sensitive work1 src1.4 VoiceCodeBench arXiv paper proposes benchmark for exact structured-token recovery in speech recognition1 src1.4 Arabic-Russian Parallel Corpus and LLM Benchmark for Scientific Text1 src1.4 Study Analyzes Self-Reported Limitations in NLP Research1 src5.0 Anthropic CEO Amodei calls for slower AI development and shared safety rules11 src2.7 Agility Robotics unveils Digit 5 humanoid for warehouses and factories2 src2.5 Apple ships rebuilt Siri with Google Gemini, but not in the EU2 src2.2 Siri AI in macOS 27 Golden Gate: FAQ, Germany availability, privacy questions2 src1.8 Sam Altman says OpenAI will not go public in 2026, citing AI safety concerns5 src1.4 OpenAI contractors review real ChatGPT conversations to rate responses, report says2 src1.4 Anthropic data retention policy prompts firms to limit Claude use for sensitive work1 src1.4 VoiceCodeBench arXiv paper proposes benchmark for exact structured-token recovery in speech recognition1 src1.4 Arabic-Russian Parallel Corpus and LLM Benchmark for Scientific Text1 src1.4 Study Analyzes Self-Reported Limitations in NLP Research1 src
HEATPULSEAI MAGAZINES
FLIP · FOLLOW · SAVE

#llm-serving

8 curated events
papersTODAY 04:00 UTC

SMetric: Session-centric Scheduling Proposed for LLM Agent Serving

A new arXiv paper argues that existing LLM scheduling designs were built around human users and may not suit agentic workloads, where software agents issue the requests. The authors note that agents consume far more tokens per request and exhibit different traffic patterns than people. They propose SMetric, a session-centric scheduling approach intended to balance serving performance under these agent-driven conditions.

papersTODAY 04:00 UTC

arXiv Paper Casts LLM Prefix Sharing as a Sorting Problem

A new arXiv paper argues that when prompts are built from reusable components such as retrieved passages, tool definitions, or few-shot examples, the order in which those pieces are arranged determines how much KV cache computation can be reused. Since current serving systems only reuse cache on exact prefix matches, the work recasts the ordering decision as a sorting problem. No specific benchmark results are described in the provided abstract.

papersTODAY 04:00 UTC

MAPS: Memory-Aware Predictive Scheduling for LLM Serving

Researchers propose MAPS, a scheduling framework designed to handle bursty large language model workloads on cloud infrastructure. The work targets memory-bound decode instances in prefill-decode disaggregated serving setups, where memory pressure limits throughput. It aims to improve scheduling decisions by predicting memory needs ahead of time.

papersTODAY 04:00 UTC

OpWeave: Operator-Level Disaggregation for Heterogeneous LLM Serving

A new arXiv paper introduces OpWeave, a system that breaks LLM inference into finer-grained operators rather than coarse stages, extending recent work that separates attention from FFN or MoE execution during decoding. The authors argue this operator-level disaggregation improves how workloads are matched to heterogeneous hardware during serving.

papersSEP 10 04:00 UTC

KVShareArena: KV-Cache Reuse Across Contexts and Model Checkpoints

A new arXiv paper tackles a limitation in LLM serving systems, which typically reuse KV caches only when shared text appears at the very start of a prompt. The authors target two workloads that break this rule: retrieval-augmented generation servers that assemble different retrieved chunks per request, and requests served across different model checkpoints. KVShareArena aims to expand cache reuse in these cases, reducing redundant computation and improving serving efficiency.

papersSEP 12 04:00 UTC

arXiv Paper Proposes Tail-Aware Scheduling for Agentic LLM Workflows

A new arXiv preprint examines how agentic LLM workflows, which alternate model turns with tool calls, are affected by the timing of when completed turns are dispatched. The authors argue that separating a turn's readiness from its release lets runtimes optimize for tail latency rather than simply pushing each turn out immediately. The work targets scheduling policies that reduce worst-case end-to-end completion times for these multi-step pipelines.