llm-inference

Tag

Cards List
#llm-inference

@divaagurlxw: I spent last few months Learning LLM Inference. Here are the best resources I have come across. 1. ๐…๐จ๐ฎ๐ง๐๐š๐ญ๐ข๐จ๐งโ€ฆ

X AI KOLs Timeline โ†— ยท 2026-08-02 Cached

A tweet thread shares a curated list of resources for learning LLM inference, covering tokenization, GPU hardware, optimization techniques like quantization and speculative decoding, and inference engines such as vLLM and SGLang, followed by an Nvidia architect's talk summary.

0 favorites 0 likes
#llm-inference

Predictive Speculative KV Replication for Bursty LLM Inference

Hacker News Top โ†— ยท 2026-07-31

A paper introducing predictive speculative KV replication to handle bursty LLM inference workloads, with code available on GitHub.

0 favorites 0 likes
#llm-inference

Back from the Future: Key-Value Cache Management by Counter-Causal Surprise

arXiv cs.LG โ†— ยท 2026-07-31 Cached

This paper proposes a KV cache eviction strategy that scores tokens by counter-causal surprise, removing past tokens that are well-predicted from future context. The method is training-free, in-distribution, and achieves competitive performance with a fast single-layer approximation.

0 favorites 0 likes
#llm-inference

Prox: Training-Free FFN Activation Sparsity via Approximate Intermediate-Channel Salience in LLMs

arXiv cs.LG โ†— ยท 2026-07-31 Cached

Prox is a training-free framework for sparse SwiGLU FFNs in LLMs, using approximate intermediate-channel salience to build channel masks without dense computation. It outperforms training-free baselines across ten LLMs, achieving up to 1.99x end-to-end decoding speedup at 70% sparsity.

0 favorites 0 likes
#llm-inference

A Sparse Glimpse of the Whole: Train-Free Self-Speculative Decoding

arXiv cs.CL โ†— ยท 2026-07-31 Cached

This paper introduces SparseSpec-L, a training-free self-speculative decoding framework for long-context LLM inference that uses a dynamically sparsified and recallable KV cache along with an entropy-based controller for speculation length, achieving up to 2.79x speedup over autoregressive decoding.

0 favorites 0 likes
#llm-inference

Beyond KV Reconstruction: Functional Reconstruction for MLA Draft Models in Speculative Decoding

arXiv cs.LG โ†— ยท 2026-07-31 Cached

This paper proposes functional reconstruction for converting MHA/GQA checkpoints into MLA draft models for speculative decoding, directly optimizing attention modules to preserve token acceptance. It reports consistent improvements across 192 configurations involving Llama/Qwen models and multiple conversion methods.

0 favorites 0 likes
#llm-inference

Open Source Ternary LLM Engine in Rust/CUDA for Quantization, Serving, and Training of models on consumer GPUs, called Tritium (Apache 2.0)

Reddit r/LocalLLaMA โ†— ยท 2026-07-31

Introduces Tritium, an open-source Rust/CUDA engine for ternary (1.58-bit) quantization, serving, and training of LLMs on consumer GPUs. It claims faster inference than llama.cpp for ternary models and introduces a new quantization method called SALT.

0 favorites 0 likes
#llm-inference

Revisiting Lossy Verification in Speculative Decoding: Mechanisms, Trade-offs, and Failure Modes

arXiv cs.CL โ†— ยท 2026-07-30 Cached

This paper analyzes lossy verification schemes in speculative decoding, categorizing them into truncation-based and collaborative verification, and identifies pitfalls and principles for maintaining generation quality.

0 favorites 0 likes
#llm-inference

@digitalocean: Stop paying to reprocess the same context on every LLM request. Prompt Caching on DigitalOcean AI-Native Cloud automatiโ€ฆ

X AI KOLs Timeline โ†— ยท 2026-07-29 Cached

DigitalOcean introduces prompt caching for LLM inference, automatically caching repeated context like system prompts to reduce input token costs by up to 80% without code changes, with a detailed tutorial on break-even math.

0 favorites 0 likes
#llm-inference

Launch HN: Tokenless (YC S26) โ€“ Automatic model switching to save money

Hacker News Top โ†— ยท 2026-07-29 Cached

Tokenless is a YC-backed startup that offers a drop-in replacement for API calls to LLMs, automatically routing requests to the most cost-effective model without sacrificing quality, potentially cutting inference costs in half.

0 favorites 0 likes
#llm-inference

In-house LLM Inference on Kubernetes: A Production Runbook

Reddit r/LocalLLaMA โ†— ยท 2026-07-29

The author shares a runbook for deploying in-house LLM inference on Kubernetes, based on their experience building the infrastructure at their organization.

0 favorites 0 likes
#llm-inference

@junupark_: new note: inside nano-vllm-v1 this can be seen as the second part of my previous note on nano-vllm. in this note, i go โ€ฆ

X AI KOLs Timeline โ†— ยท 2026-07-28 Cached

This note explains the implementation of chunked prefill and mixed batching in nano-vllm-v1, and benchmarks performance against the previous version.

0 favorites 0 likes
#llm-inference

@akshay_pachaar: every inference engine makes the same mistake. an inference engine like vLLM or SGLang is the software sitting between โ€ฆ

X AI KOLs Following โ†— ยท 2026-07-27 Cached

LMCache is an open-source KV cache management layer that separates cache I/O from compute, plugging into vLLM, SGLang, and TensorRT-LLM to achieve up to 14x faster time-to-first-token and 4x faster decoding by parallelizing cache lookups and sharing GPU memory.

0 favorites 0 likes
#llm-inference

Qwen3.6-27B speculative decoding gets better on heavier quants

Reddit r/LocalLLaMA โ†— ยท 2026-07-27

Qwen3.6-27B model shows improved speculative decoding performance when using heavier quantization levels, enhancing inference efficiency.

0 favorites 0 likes
#llm-inference

RIS-Kernel: A Model-Agnostic Architecture for Long-Context LLM Inference via Sparse Attention

arXiv cs.LG โ†— ยท 2026-07-27 Cached

RIS-Kernel introduces a model-agnostic sparse attention architecture (RIS) that reduces self-attention complexity from O(N^2) to O(N log N) for long-context LLM inference, enabling operation on commodity CPU hardware without GPU acceleration.

0 favorites 0 likes
#llm-inference

Minimax M3 support with MSA has been merged into llama.cpp

Reddit r/LocalLLaMA โ†— ยท 2026-07-26 Cached

Minimax M3 support with MSA has been merged into llama.cpp, enabling inference for the Minimax M3 model using the MSA architecture.

0 favorites 0 likes
#llm-inference

BeeLlama.cpp v0.4.1: KVarN, KV precision tail, q2_0-q3_1 KV cache, improved support. KLD benchmarks: tail 1024 makes kvarn5 and q6_0 match q8_0, for much less VRAM

Reddit r/LocalLLaMA โ†— ยท 2026-07-26

BeeLlama.cpp v0.4.1 introduces KVarN, KV precision tail, and improved KV cache support, with benchmarks showing that using tail 1024 allows kvarn5 and q6_0 to match q8_0 precision while using less VRAM.

0 favorites 0 likes
#llm-inference

DKV: Open-source KV-cache compression framework for local LLM inference (CLI + technical report)

Reddit r/LocalLLaMA โ†— ยท 2026-07-25

DKV is an open-source framework for compressing KV-cache during local LLM inference, providing a CLI and a technical report.

0 favorites 0 likes
#llm-inference

Hetzner is working on LLM Inference

Hacker News Top โ†— ยท 2026-07-24 Cached

Hetzner has launched an experimental LLM inference API service, offering an OpenAI-compatible endpoint with the Qwen3.6-35B-A3B-FP8 model. The service is free during the experiment period, has no SLA, and is intended to gather user feedback.

0 favorites 0 likes
#llm-inference

Dropping the Anchor: Statistical Context Summarization for Distributed Systems via Pulsar Attention

arXiv cs.CL โ†— ยท 2026-07-24 Cached

Pulsar Attention replaces the static anchor in Star Attention with content-aware summaries and attention sinks, reducing FLOPs by 3.3x while outperforming dense attention on long-context benchmarks.

0 favorites 0 likes
← Previous
Next →
← Back to home

Submit Feedback