Zijing Liu and Yongye Zhu
8b00f41237
[MiniMax-M3] Retune decode indexer launch grid for occupancy ( #130 )
...
Signed-off-by: Zijing Liu <liuzijing2014@gmail.com >
2026-06-25 18:14:52 +00:00
Xin Li and GitHub
0586a20184
Add MiniMax-M3 modelopt nvfp4 support ( #46380 )
...
Signed-off-by: Xin Li <xinli@nvidia.com >
2026-06-25 11:11:41 -07:00
Yongye Zhu and Claude Opus 4.8
7a672233eb
Bump flashinfer-jit-cache to 0.6.13rc2
...
Align flashinfer-jit-cache with flashinfer-python/flashinfer-cubin, which
are already pinned to 0.6.13rc2 in requirements/cuda.txt.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
2026-06-23 00:01:30 +00:00
Yongye Zhu
ea890c8066
remove contiguous constraint for prefill_topk
...
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
2026-06-22 05:21:19 +00:00
Thien Tran and Roger Wang
8717eccaf4
Fix non-contiguous topk buffer for MSA sparse GQA prefill ( #105 )
...
(cherry picked from commit eff83fa5c1ecf47678a262ed85f5d751b5cf1b67)
2026-06-20 13:53:02 -07:00
Zijing Liu and Roger Wang
9ac6a8ed61
NVFP4 TRTLLM-Gen fused MoE: clamped SwiGLU-OAI support + NVFP4 ( #97 )
...
Signed-off-by: Zijing Liu <liuzijing2014@gmail.com >
(cherry picked from commit 20bafcab50f1f63de1e0a5f810d7b844888fc0ac)
2026-06-20 13:52:56 -07:00
Yongye Zhu and Roger Wang
ef762c26e5
[MoE] Plumb gemm1_alpha/beta/clamp_limit into TRT-LLM FP8 MoE
...
The FlashInfer FP8 block-scale MoE kernels (trtllm_fp8_block_scale_moe
and trtllm_fp8_block_scale_routed_moe) accept optional per-expert SwiGLU
parameters gemm1_alpha, gemm1_beta, gemm1_clamp_limit that realize the
OAI SwiGLU variant for MXFP8. The FP8 experts did not pass them.
- Build per-expert alpha/beta/clamp tensors in TrtLlmFp8ExpertsBase and
pass them to the block-scale (monolithic) and routed (modular) kernels,
mirroring the existing MXFP4 experts.
- Forward gemm1_alpha/gemm1_beta from layer.swiglu_alpha/beta in the
MXFP8-capable FP8 quant-config builders (fp8, online mxfp8,
compressed-tensors mxfp8). Previously only swiglu_limit was forwarded;
only ModelOptMxfp8 forwarded all three, so other paths silently dropped
alpha/beta.
- Add swigluoai_uninterleave to the supported activations (maps to
FlashInfer Swiglu; the OAI behavior comes from the gemm1_* params).
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
(cherry picked from commit f4b8540570 )
2026-06-20 13:51:49 -07:00
Yongye Zhu and Roger Wang
985d00a751
[Test] M3 indexer: add sm_scale arg to _reference_index_topk
...
Fixes mypy call-arg errors: two fp8 call sites pass sm_scale (by
keyword and positionally) that the reference signature lacked. Add
sm_scale (default 1.0) and apply it to the score; top-k selection is
invariant to a positive scalar, so existing callers are unchanged.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit 522f262265 )
2026-06-20 13:51:43 -07:00
Yongye Zhu and Roger Wang
70ae0bb9e5
run indexer eager
...
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit e6dd784466 )
2026-06-20 13:51:43 -07:00
Thien Tran and Roger Wang
18d9bd9399
[Build] fmha_sm100: install indexer csrc/cutlass + package_data globs
...
PR #93 integrated the MSA indexer but did not update the cmake install
rules / setup.py package_data to vendor the new files. Add install rules
for csrc/, cutlass/include, cutlass/tools/util/include and the matching
package_data globs.
(cherry picked from commit ea59ac42ab8e4a68f3bc362034de5199b59246df)
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit e6fe1ecd64 )
2026-06-20 13:51:43 -07:00
Yongye Zhu and Roger Wang
28ee7f57df
[Model] M3 MSA indexer: align decode path with rebased index API
...
The MSA builder/impl were written against the pre-#45743 indexer decode
API. After rebasing onto main, MiniMaxM3IndexerDecodeMetadata gained a
required max_decode_query_len field and minimax_m3_index_decode dropped
its sm_scale parameter, so the MSA path crashed at engine init during
cudagraph profiling (missing max_decode_query_len).
- Pass max_decode_query_len when building decode metadata.
- Drop the stale sm_scale arg and pass max_decode_query_len in the decode
kernel call, matching the Triton builder/impl.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit 0b70ba38a1 )
2026-06-20 13:51:43 -07:00
Yongye Zhu and Roger Wang
c12ed89131
[Model] M3 MSA indexer: swap decode to Triton fused kernel, add fp8
...
Route the MSA (SM100) indexer decode through the Triton fused
minimax_m3_index_decode kernel (the same kernel the Triton indexer impl
uses) instead of fmha_sm100's OnlyScore path. For q_len==1 decode the
Triton kernel is a purpose-built vector x matrix score with a 256-way
split-K and fused split-K top-k, which beats fmha's OnlyScore (wasted MMA
tiles on a single query, 64-split cap) by ~1.1-3.7x in benchmarks. It is
cudagraph-safe by construction (shape-constant split grids) and writes the
shared topk_indices_buffer via out=. Prefill keeps fmha OnlyScore + the
single-pass Triton top-k, where fmha is ~3-5x faster for the wide score.
This drops the persistent fmha decode plan buffers, the num_kv_splits
estimate, and the now-unused VLLM_M3_INDEXER_CONTEXT_LEN env.
Add fp8 (e4m3) index KV cache support to the Triton decode score kernel:
make the QK MMA accumulate in fp32 (out_dtype=tl.float32) so the per-block
max score is exact for the e4m3 cache. Top-k is invariant to positive
scalar scaling, so fp8 needs no scale tuning.
Tests: tests/kernels/attention/test_minimax_m3.py (44 passed), including a
new test_decode_index_topk_fp8 validating fp8 decode top-k vs a
dequantized-fp32 reference. mypy + ruff clean. AI assistance was used.
Co-authored-by: Claude <noreply@anthropic.com >
Signed-off-by: Yongye Zhu <yongye@inferact.ai >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit 0a102417bb )
2026-06-20 13:51:43 -07:00
Yongye Zhu and Roger Wang
703e492aab
[Model] M3: tune indexer decode split heuristic from fp8 sweep
...
estimate_num_kv_splits was a static replica of fmha_sm100's auto cost heuristic,
which over-splits the decode score: an fp8 e4m3 cudagraph-timed split sweep shows
the fixed-split (cudagraph-safe) path hits a sharp split-KV cliff above ~16
splits with >1 work row -- up to ~9x slower (e.g. reqs=2 ctx=65536: s64=153us vs
s16=15us). The previous formula picked 52-64 splits there.
Replace it with a measured, static fit (no kernel calls, so it stays
cudagraph-stable and sync-free):
- bs==1: min(64, kv_tiles) -- no cliff, fill with many splits.
- bs>=2: min(num_sms // work_rows, cap, kv_tiles), where the cliff-safe cap is
16 through the ~60-100k context target and 32 for longer context (the cliff
ceiling rises with context).
Across an fp8 cudagraph sweep this is within ~3% of the best fixed split for
every (batch, context) measured. The planner's own auto path is faster for
bs>=2 (adaptive split distribution) but is catastrophic for bs==1 (up to ~11x)
and needs a device->host sync, so it is unsuitable for the captured decode path.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com >
Signed-off-by: Yongye Zhu <yongye@inferact.ai >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit 6dd73260e8 )
2026-06-20 13:51:43 -07:00
Yongye Zhu and Roger Wang
5f0bafab12
[Model] M3: read sparse-attend top-k from the persistent buffer
...
Fixes a cudagraph-replay AssertionError on bs=1 decode: with the indexer in the
captured segment and only the attend eager-broken, the (decode_topk, prefill_topk)
Python tuple handed across the eager break was frozen at capture and replayed
stale against the current step's metadata.
The attend now reads its top-k directly from the shared persistent
``topk_indices_buffer`` (decode at [:, :nd], prefill at [:, nd:num_tokens]),
sliced by the current step's metadata -- nothing crosses the eager break as a
Python value. The indexer (captured) writes the buffer; the attend (eager) reads
it; the breakable-cudagraph segment ordering guarantees the write precedes the
read on replay.
- MiniMaxM3SparseImpl.forward (+ Triton and MSA subclasses): drop the topk_idx
arg, read layer.topk_indices_buffer.
- nvidia model: store the buffer on the sparse-attention layer; narrow the eager
break so the indexer is captured and only the attend (_run_sparse_attn) is
eager-broken.
- amd model: store the buffer on the layer; indexer + attend stay in one eager
break (no capture), but the attend reads the buffer too.
42/42 in test_minimax_m3.py pass.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com >
Signed-off-by: Yongye Zhu <yongye@inferact.ai >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit 627f730369 )
2026-06-20 13:51:43 -07:00
Yongye Zhu and Roger Wang
545393a3ab
[Model] M3: log indexer kernel selection in select_indexer_impl_cls
...
Emit an info_once line naming the chosen indexer impl (MSA fmha_sm100 vs Triton)
and the deciding inputs (topk_blocks, indexer_kv_dtype, sm100), so the active
kernel path is visible at startup.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com >
Signed-off-by: Yongye Zhu <yongye@inferact.ai >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit 7fd090bd9c )
2026-06-20 13:51:43 -07:00
Yongye Zhu and Roger Wang
d71445af45
[Model] M3: route Triton indexer top-k through shared topk_indices_buffer
...
Unify the Triton indexer impl onto the same persistent top-k buffer as the MSA
impl, and thread the buffer through the AMD model too.
- minimax_m3_index_decode gains an out= param (writes out[:, :total_q]); the merge
kernel already writes via strides, so a buffer view works.
- MiniMaxM3IndexerTritonImpl.forward writes decode ([:, :nd]) and prefill ([:, nd:])
into the shared topk_indices_buffer and returns views into it (no fresh per-step
top-k allocations), matching the MSA impl.
- amd/model.py: allocate the model-level topk_indices_buffer and thread it
model -> decoder layer -> sparse attention -> indexer (mirrors nvidia). AMD keeps
its eager break, so this is purely allocation reuse there.
test_msa_indexer_impl_matches_triton now gives each impl its own buffer and asserts
both decode/prefill outputs are views into it. 42/42 pass.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com >
Signed-off-by: Yongye Zhu <yongye@inferact.ai >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit 06324dd3df )
2026-06-20 13:51:43 -07:00
Yongye Zhu and Roger Wang
eb8e264edd
[Model] M3 MSA indexer: unify top-k buffer, drop numpy, GPU-only decode plan
...
Follow-ups on the cudagraph-capturable MSA indexer:
- Top-k: both decode and prefill now write into the single shared, persistent
topk_indices_buffer (decode at [:, :nd], prefill at [:, nd:]) and return views
into it -- no fresh per-step top-k allocations.
- Build the decode plan + flat page table entirely with torch on-GPU: drop numpy
and CpuGpuBuffer; segment offsets/lengths are computed via torch.cumsum into the
persistent int32 buffers, and the request-major page table is scattered into the
buffer via the on-GPU page indptr (the run bounds reads by indptr, so the full
buffer is passed and no host page count is needed).
- No GPU->CPU sync on the decode path: scalars come from host ints
(num_decode_tokens // num_decodes), and seq_lens.cpu() is confined to the eager
prefill branch. The impl forward (fmha OnlyScore + Triton top-k) was already
sync-free.
test_msa_indexer_impl_matches_triton now also asserts both outputs are views into
the persistent buffer. 42/42 in test_minimax_m3.py pass.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com >
Signed-off-by: Yongye Zhu <yongye@inferact.ai >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit d2fbaf73c1 )
2026-06-20 13:51:43 -07:00
Yongye Zhu and Roger Wang
8f5070c447
[Model] Make MiniMax M3 MSA indexer cudagraph-capturable
...
The SM100 (MSA) lightning indexer declared AttentionCGSupport.NEVER and ran
eager: its fmha_sm100 score plan allocated fresh buffers every build() and the
run allocated a fresh max_score / top-k each call.
Make the decode side cudagraph-replay-safe:
- Reserve persistent plan buffers in the builder __init__ (sized over a scan of
decode sizes [1, max_num_seqs]); build() fills them in place and calls the plan
kernel directly with a fixed, batch-size-only num_kv_splits
(estimate_num_kv_splits, a uniform-context replica of the planner's auto-split
math; tunable via VLLM_M3_INDEXER_CONTEXT_LEN). A positive split count takes the
deterministic plan path with no device->host sync.
- workspace_o / workspace_lse / cute_workspace are builder-owned dedicated tensors
(not the shared global _alloc_workspace_buf cache) so a larger fmha call
elsewhere can't realloc and move an address a captured graph baked.
- max_score is a 1-D-backed contiguous [H, max_k_tiles, nnz_qo] view (a sliced 3-D
buffer is non-contiguous; the kernel assumes contiguous); max_k_tiles pinned for
a stable shape.
- Top-k output goes to a model-level topk_indices_buffer (DeepSeek-V3.2 pattern),
threaded model -> decoder layer -> sparse attention -> indexer; index_topk gains
an out= param.
- Narrow _run_attention's eager break so the indexer runs in the captured segment
and only the sparse attention is eager-broken. Builder reports UNIFORM_BATCH;
prefill stays eager.
Verified: tests/kernels/attention/test_minimax_m3.py 42/42 pass (incl. impl-level
parity with num_kv_splits > 1 over short context); GPQA accuracy matches eager.
AI assistance (Claude Code) was used for this change.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com >
Signed-off-by: Yongye Zhu <yongye@inferact.ai >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit 54810663ff )
2026-06-20 13:51:43 -07:00
Yongye Zhu and Roger Wang
934fa2b599
[Model] Add fmha_sm100 MSA indexer backend + fp8 index cache for MiniMax M3
...
Add an SM100/Blackwell lightning-indexer impl that computes the per-128-block
QK max-scores with fmha_sm100's score-only (OnlyScore) path and selects the
top-k blocks with the existing Triton minimax_m3_index_topk kernel, mirroring
how the main MSA attention pairs the SM100 attend with Triton. Decode and
prefill requests are split manually (decode-first batch) and each side gets its
own _fmha_sm100_plan / _fmha_sm100 call. Auto-selected on SM100 when
topk_blocks in (4, 8, 16, 32) for both bf16 and fp8 index caches; falls back to
the Triton indexer otherwise. The builder declares AttentionCGSupport.NEVER
(eager; the attention is broken out of the graph by _run_attention).
Extend the fused qknorm+rope+kv-insert kernel to optionally emit fp8 (e4m3) for
the index-K cache and index-Q via a direct cast with no scale tensors (RMSNorm
outputs are O(1) and scalar scales do not change top-k ordering). Only the index
outputs go fp8; q/k/v and q_out stay bf16 and bit-identical to the existing
path. MiniMaxM3IndexerCache now accepts fp8 caches and the model allocates
index_q in the cache dtype.
Tests: test_fmha_sm100_indexer_matches_reference (bf16/fp8 x prefill/decode) and
test_msa_indexer_impl_matches_triton (full impl parity vs the Triton indexer
through the real metadata builders); fp8 fused-kernel parity is covered in
test_fused_minimax_m3_qknorm_rope_kv_insert.
AI assistance (Claude Code) was used for this change.
Signed-off-by: Yongye Zhu <yongye@inferact.ai >
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
(cherry picked from commit bb4844dba3 )
2026-06-20 13:51:43 -07:00
Jee Jee Li and Roger Wang
713fb6cdb7
Done ( #87 )
...
Signed-off-by: Jee Jee Li <jeejeelee@inferact.ai >
(cherry picked from commit 1d7ba0da2f0fedf056b0073fe7774f03fe4616f0)
2026-06-20 13:51:19 -07:00
ebfbcfe46a
Stop setting CUDA_VISIBLE_DEVICES internally in vLLM, add device_ids arg ( #45026 )
...
Signed-off-by: Tyler Michael Smith <tlrmchlsmth@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Codex <codex@openai.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: kourosh hakhamaneshi <kouroshHakha@users.noreply.github.com >
2026-06-20 13:38:10 -07:00
e9de72fe6c
[Bugfix] Guard model_config access in _log_compilation_config ( #46198 )
...
Signed-off-by: Tyler Michael Smith <tlrmchlsmth@gmail.com >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-06-20 19:26:38 +00:00
d272418f45
[Perf] Optimize Qwen3-VL multi-video prompt processing ( #46026 )
...
Signed-off-by: Sirius29 <422058530@qq.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-20 07:09:18 -07:00
Sumanth R Hegde and GitHub
7ff7f5c8eb
Revert "Fix Stale Encoder Cache After Weight Update" ( #46125 )
2026-06-20 07:09:09 -07:00
dced290769
[Hardware][AMD][CI] Fix e2e core test group ( #46024 )
...
Signed-off-by: Matthew Wong <Matthew.Wong2@amd.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-20 02:04:35 -05:00
JasonLi314 and GitHub
93bad11912
[Bugfix] Fix gridDim.y overflow for large row counts ( #45255 )
...
Signed-off-by: Jason Li <li.jason.cs@gmail.com >
2026-06-19 23:27:45 -04:00
djramic and GitHub
0fbf42af84
[ROCm] Fix VRAM not freed in test_phi3v ( #46046 )
...
Signed-off-by: Djordje Ramic <djoramic@amd.com >
2026-06-19 17:20:59 -05:00
Charlie Fu and GitHub
e6cd8913dd
[ROCm][CI] Skip Qwen3.5-35B-A3B-MXFP4-AITER-TP2 for non gfx950 ( #46109 )
...
Signed-off-by: charlifu <charlifu@amd.com >
2026-06-19 17:20:10 -05:00
Ben Browning and GitHub
859e4d436b
[Bugfix][Parser] Fix U+FFFD leak at reasoning-to-content transition in engine parsers ( #46159 )
...
Signed-off-by: Ben Browning <bbrownin@redhat.com >
2026-06-19 22:09:28 +00:00
Micah Williamson and GitHub
4a083cc858
[ROCm][CI] Pin test_rocm_compressed_tensors_w8a8 to TRITON_ATTN ( #46180 )
...
Signed-off-by: Micah Williamson <micah.williamson@amd.com >
2026-06-19 15:20:06 -05:00
Vadim Gimpelson and GitHub
ca7e1f2c43
Move CI failure diagnosis docs into ci-fails-buildkite skill ( #45975 )
...
Signed-off-by: Vadim Gimpelson <vadim.gimpelson@gmail.com >
2026-06-19 20:12:40 +00:00
djramic and GitHub
dec860fb19
[ROCm] Use vLLM's fp8 quant max in AITER hipBLASLt accuracy test ( #46176 )
...
Signed-off-by: Djordje Ramic <djoramic@amd.com >
2026-06-19 13:24:02 -05:00
Harry Mellor and GitHub
0a49fb2b13
Fix dead link in docs ( #46181 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-19 18:16:09 +00:00
Ben Browning and GitHub
4a8abf37c7
[Test] Migrate test_openai_schema.py to schemathesis 4.x ( #46173 )
...
Signed-off-by: Ben Browning <bbrownin@redhat.com >
2026-06-19 18:05:18 +00:00
01192139bf
[DSv4] Pack KV caches into contiguous per-block allocations for DeepSeek V4 ( #44577 )
...
Signed-off-by: Tyler Michael Smith <tlrmchlsmth@gmail.com >
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
Signed-off-by: Lucas Wilkinson <lwilkins@redhat.com >
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
Co-authored-by: Matthew Bonanni <mbonanni@redhat.com >
Co-authored-by: Lucas Wilkinson <LucasWilkinson@users.noreply.github.com >
Co-authored-by: Lucas Wilkinson <lwilkins@redhat.com >
Co-authored-by: OpenAI Codex <codex@openai.com >
2026-06-19 12:55:42 -04:00
Chris Leonard and GitHub
b9a7cd464c
[12/n] final _C library kernel migration ( #45415 )
2026-06-19 06:57:26 -07:00
69bdd34542
[Bugfix] Fall back to Pydantic loc for param in validation errors ( #46038 )
...
Signed-off-by: professorsab <135441198+professorsab@users.noreply.github.com >
Co-authored-by: Mahad Durrani <114791389+mahadrehmann@users.noreply.github.com >
2026-06-19 19:11:11 +08:00
Kunshang Ji and GitHub
ec67d7ae61
[xpu] bump up vllm-xpu-kernels v0.1.10 and upgrade 2618 umd ( #40367 )
...
Signed-off-by: Kunshang Ji <jikunshang95@gmail.com >
Signed-off-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-19 15:37:20 +08:00
ecf9d83520
[AMD][CI] Fix Language Models Test (Extended Generation) failures ( #45509 )
...
Signed-off-by: Oxana Korzh <okorzh@amd.com >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-06-19 12:06:56 +08:00
Samuel Shen and GitHub
c9135db27c
[Docs] Update stale LMCache examples ( #45762 )
...
Signed-off-by: Samuel Shen <slshen@tensormesh.ai >
2026-06-19 03:21:36 +00:00
2a6c6b9429
[DeepSeek-V4] Support TEP=16 for the block-FP8 shared expert ( #46001 )
...
Signed-off-by: Jeff Ma <jeffjma@umich.edu >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-18 20:10:12 -07:00
Jared Wen and GitHub
ab66606993
[bugfix]Indexer init skip and MTP TopK share for iteration ( #45895 )
...
Signed-off-by: JaredforReal <w13431838023@gmail.com >
2026-06-19 09:57:51 +08:00
9ea3a4015b
[Bugfix] Fix corrupt outputs in MoE FP8 LoRA responses and MoE base model responses when LoRAs are loaded ( #42120 )
...
Signed-off-by: Nicholas Edelman <nedelman@nvidia.com >
Signed-off-by: Jee Jee Li <jeejeelee@inferact.ai >
Co-authored-by: Jee Jee Li <jeejeelee@inferact.ai >
Co-authored-by: Jee Jee Li <pandaleefree@gmail.com >
2026-06-18 18:26:09 -07:00
Flora Feng and GitHub
560fb8b867
[Cohere] Remove dead prepare_structured_tag override in Cohere parser ( #46099 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-19 01:02:11 +00:00
Wentao Ye and GitHub
675cd5d228
[Model Runner V2] Fix MRv2 memory leak test ( #46095 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-19 00:36:40 +00:00
7f616c327d
[Bugfix] [Parser] Fix empty tool block silently dropping subsequent content ( #46091 )
...
Signed-off-by: Ben Browning <bbrownin@redhat.com >
Co-authored-by: Flora Feng <4florafeng@gmail.com >
2026-06-18 23:17:18 +00:00
Ivy Xu and GitHub
c3c6d723fd
[Perf] Remove unused loggers in reasoning/ ( #45988 )
...
Signed-off-by: Ivy <fakeshadow1337@gmail.com >
2026-06-18 22:24:29 +00:00
41dcf49ca5
[Bugfix][KV Connector] Disable Mooncake TP put-striding when DCP > 1 ( #45371 )
...
Signed-off-by: Yifan Qiao <yifanqiao@inferact.ai >
Co-authored-by: Jingyi Yang <girasoleyang@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-18 15:13:44 -07:00
35e4dd4a69
[KV Connector][Mooncake] Async lookup to reduce scheduler overhead ( #45659 )
...
Signed-off-by: Yifan Qiao <yifanqiao@inferact.ai >
Signed-off-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: Nick Hill <nickhill123@gmail.com >
2026-06-18 21:44:02 +00:00
4ce2d01453
fix(anthropic): auto-detect template support for mid-conversation system messages ( #46025 )
...
Signed-off-by: felix0080 <felix0080@users.noreply.github.com >
Signed-off-by: Ben Browning <bbrownin@redhat.com >
Co-authored-by: felix0080 <felix0080@users.noreply.github.com >
Co-authored-by: Ben Browning <bbrownin@redhat.com >
2026-06-18 16:19:11 -04:00
Woosuk Kwon and GitHub
16908e132e
[MRV2] Make FP32 Gumbel sampling more accurate ( #45996 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-06-18 19:42:09 +00:00
Wentao Ye and GitHub
225936a1dd
[CI Bug] Revert #42379 to fix CI Multi-Modal Models (Extended Generation 1) ( #46070 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-18 12:37:39 -07:00
f6ba720963
(security) Upgrade Starlette to >= 1.0.1 to fix CVE-2026-48710 ( #45675 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
Co-authored-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-18 12:35:13 -07:00
Wentao Ye and GitHub
b53b1c7ffe
[Model Runner V2] Migration to support quantized model by default [5/N] ( #44446 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-18 12:20:44 -07:00
79ca54d221
[Bugfix][Quantization] Don't reject fp8_e5m2 KV cache for non-fp8 quantized checkpoints ( #45040 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-18 14:18:25 -04:00
Ben Browning and GitHub
09f3cd5c10
[Bugfix] [Parser] Fix Qwen3 latent bug in partial params dropping values containing < ( #46047 )
...
Signed-off-by: Ben Browning <bbrownin@redhat.com >
2026-06-18 18:04:06 +00:00
ea6078fe6a
[KV Connector][Offloading] Disable parallel-agnostic fs-tier cache on V2 model runner ( #46044 )
...
Signed-off-by: Itay Etelis <etelis2019@gmail.com >
Co-authored-by: Itay Etelis <etelis2019@gmail.com >
2026-06-18 20:43:35 +03:00
Palaiologos1453 and GitHub
a0df04e477
[Tests] Add Qwen3 streaming parser delta boundary cases ( #45708 )
...
Signed-off-by: test test <2260891073@qq.com >
2026-06-18 17:37:39 +00:00
stefankoncarevic and GitHub
e2352c2974
[ROCm][Spec Decode] Fix probabilistic draft probs test attention backend ( #45706 )
...
Signed-off-by: Stefan Koncarevic <stefan.koncarevic@amd.com >
2026-06-18 11:59:37 -05:00
qli88 and GitHub
25faa1f4cc
[CI]Enable mxfp4 lora test for ROCm platform ( #43802 )
...
Signed-off-by: Qiang Li <qiang.li2@amd.com >
2026-06-18 16:59:09 +00:00
Humphrey and GitHub
4583630b56
[Bugfix][Kernel] Check output alignment in vectorize_with_alignment (fixes misaligned-address crash for non-multiple-of-8 head sizes) ( #45466 )
...
Signed-off-by: HumphreySun98 <humphreysun98@gmail.com >
2026-06-18 16:58:22 +00:00
Divakar Verma and GitHub
21da47dabe
[ROCm][CI] move lora%N test to mi300 and gate ( #45970 )
...
Signed-off-by: Divakar Verma <divakar.verma@amd.com >
2026-06-19 00:50:32 +08:00
6c379b9e54
[Frontend] Add Streaming Parser Engine and new GLM4.7/GLM5.1/GLM5.2 Parser ( #45915 )
...
Signed-off-by: chaunceyjiang <chaunceyjiang@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-19 00:42:10 +08:00
Rohan Potdar and GitHub
5099474633
[Bugfix][ROCm] Fix rocm_aiter_per_tensor_quant custom op aliasing ( #45747 )
...
Signed-off-by: Rohan138 <rohanpotdar138@gmail.com >
2026-06-18 11:30:21 -05:00
Yuwen Zhou and GitHub
058cc0a8b6
[Bugfix] Restore is_sym guard for zp in GPTQ/CT MoE to fix symmetric quant regression ( #45656 )
...
Signed-off-by: yuwenzho <yuwen.zhou@intel.com >
2026-06-18 16:20:29 +00:00
837db7605e
[Bugfix][Tool Parser] Handle non-finite numbers in coerce_to_schema_type ( #43984 )
...
Signed-off-by: ashishpatel26 <shriganesh.patel@gmail.com >
Co-authored-by: Ben Browning <bbrownin@redhat.com >
2026-06-18 16:00:20 +00:00
Mark McLoughlin and GitHub
bf2a393034
Temporarily remove @markmc from CODEOWNERS ( #46053 )
...
Signed-off-by: Mark McLoughlin <markmc@redhat.com >
2026-06-18 14:15:43 +00:00
d682968aa9
[Model] Remove BambaForCausalLM ( #45990 )
...
Signed-off-by: Xianbao QIAN <xianbao.qian@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-18 06:51:00 -07:00
021cdf72bc
Fix _riscv_supports_rvv_vlen128() to detect RVV on hardware without zvl flags ( #43179 )
...
Signed-off-by: liuyudong <liuyudong@iscas.ac.cn >
Co-authored-by: YuanSheng <yuansheng@isrc.iscas.ac.cn >
2026-06-18 21:22:35 +08:00
Ashar and GitHub
4cb5e746b6
[Rust Frontend]: Add /get_world_size route with static parallel size ( #44801 )
2026-06-18 13:10:20 +00:00
Jee Jee Li and GitHub
22cc891108
[Kernel] Add PDL support for DeepGEMM kernel ( #46006 )
...
Signed-off-by: Jee Jee Li <jeejeelee@inferact.ai >
2026-06-18 20:49:01 +08:00
afdcbd5d39
[ROCm][DSv4] Functional fixes for DeepSeek V4 on MI300X/MI325X ( #45681 )
...
Signed-off-by: ganyi <ygan@amd.com >
Signed-off-by: Markus Hartikainen <markus.hartikainen@amd.com >
Signed-off-by: Tuukka Sarvi <tuukka.sarvi@amd.com >
Co-authored-by: ganyi <ygan@amd.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
Co-authored-by: Markus Hartikainen <markus.hartikainen@amd.com >
Co-authored-by: Jin Tao <jintao12@amd.com >
2026-06-18 12:21:14 +00:00
8d4f54966c
fix(quantization): Fix AWQ dequantize on Intel XPU and refactor AutoAWQ config ( #42727 )
...
Signed-off-by: Alex <alex.tech.lab@outlook.com >
Signed-off-by: AlexHuang <jihuihuang@tencent.com >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-18 20:12:28 +08:00
351c72d6e5
[CPU] Skip Triton kernel monkey-patches when Triton-CPU is available ( #44991 )
...
Signed-off-by: jmamou <jonathan.mamou@intel.com >
Co-authored-by: Li, Jiang <jiang1.li@intel.com >
2026-06-18 18:59:30 +08:00
Tahsin Tunan and GitHub
7299e6509e
[Rust Frontend] Return model metadata fields in /v1/models ( #45950 )
...
Signed-off-by: Tahsin Tunan <tahsintunan@gmail.com >
2026-06-18 10:29:21 +00:00
littlecircle0730 and GitHub
08985351f3
Fix Stale Encoder Cache After Weight Update ( #45093 )
...
Signed-off-by: littlecircle0730 <littlecircle0730@gmail.com >
2026-06-18 09:32:10 +00:00
Wei Zhao and GitHub
5fd3b276f8
[Mooncake] Skip KV lookup for non-reachable SWA blocks ( #45444 )
...
Signed-off-by: wzhao18 <wzhao18.sz@gmail.com >
2026-06-18 02:23:20 -07:00
1e9f04da14
fix(anthropic): preserve inline system message position for prefix caching ( #44602 )
...
Signed-off-by: felix0080 <felix0080@users.noreply.github.com >
Co-authored-by: felix0080 <felix0080@users.noreply.github.com >
2026-06-18 15:58:11 +08:00
702214146c
[Bugfix][Frontend] Fix Anthropic count_tokens decorator order driving server load negative ( #44725 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-17 23:56:46 -07:00
a331589394
[XPU] Update nixl to v0.10.1 in Dockerfile ( #40287 )
...
Signed-off-by: zhenwei-intel <zhenwei.liu@intel.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-18 14:01:26 +08:00
Micah Williamson and GitHub
e945169207
Revert "[Kernel] Add PDL support for DeepGEMM kernel" ( #45999 )
2026-06-17 22:59:48 -07:00
554352a311
[Test][KV Connector] Add request_finished fence population tests for offloading scheduler ( #45679 )
...
Signed-off-by: Alex <alex.tech.lab@outlook.com >
Signed-off-by: AlexHuang <jihuihuang@future.com >
Co-authored-by: Or Ozeri <oro@il.ibm.com >
2026-06-18 08:13:52 +03:00
421c1ec448
[KV Offloading] Remove dummy worker-side stats from OffloadingConnector ( #45905 )
...
Signed-off-by: Alex <alex.tech.lab@outlook.com >
Signed-off-by: AlexHuang <jihuihuang@alexai.com >
Co-authored-by: Or Ozeri <oro@il.ibm.com >
2026-06-18 08:13:28 +03:00
b4c80ec0fd
[Refactor] Remove dead cutlass mxfp8 code ( #44681 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-06-17 21:18:25 -07:00
Ronen Schaffer and GitHub
f428718ffe
[Fix][KV offload] Defer on_request_finished until in-flight transfers drain ( #45823 )
...
Signed-off-by: Ronen Schaffer <ronen.schaffer@ibm.com >
2026-06-18 07:05:46 +03:00
Jee Jee Li and GitHub
4403af8fb5
[Kernel] Add PDL support for DeepGEMM kernel ( #42996 )
...
Signed-off-by: Jee Jee Li <jeejeelee@inferact.ai >
2026-06-17 20:37:17 -07:00
d57888efa4
[SimpleCPUOffloadConnector]: Add support for reset_cache() ( #39726 )
...
Signed-off-by: Jonathan Chen <chenleejonathan@gmail.com >
Signed-off-by: Jonathan <chenleejonathan@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-17 19:47:12 -07:00
ed938ad7db
[CPUOffloading] Guard CPU eviction check ( #45757 )
...
Signed-off-by: Varun Sundar Rabindranath <varun-sundar-rabindranath@h100-01.nemg-001.lab.rdu2.dc.redhat.com >
Co-authored-by: Varun Sundar Rabindranath <varun-sundar-rabindranath@h100-01.nemg-001.lab.rdu2.dc.redhat.com >
2026-06-18 05:34:59 +03:00
Reid and GitHub
731fb3323d
[Rust Frontend] Validate tokenized bad_words vocabulary range ( #45876 )
...
Signed-off-by: reidliu41 <reid201711@gmail.com >
2026-06-18 02:28:45 +00:00
8dd8b6ed78
[XPU] Fix FP8 block-scaled scheme selection on non-CUDA platforms ( #43958 )
...
Signed-off-by: Lai, Yejing <yejing.lai@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-18 10:16:20 +08:00
e1a5fc406b
[Rust Frontend][Perf] O(n) argument scan in tool parser ( #45826 )
...
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-18 01:42:35 +00:00
Ace Eldeib and GitHub
b4092176b9
[Bugfix] Complete one-shot fused all-reduce PDL at end to avoid NaN ( #45448 )
2026-06-18 00:54:39 +00:00
Jee Jee Li and GitHub
ebbb2d55ac
[CI/Build][Bugfix] Fix SD LoRA ( #45941 )
...
Signed-off-by: Jee Jee Li <pandaleefree@gmail.com >
2026-06-18 00:34:15 +00:00
liuzhenwei and GitHub
2959a9273a
[XPU][CI] add model runner v2 into CI ( #44650 )
...
Signed-off-by: zhenwei-intel <zhenwei.liu@intel.com >
2026-06-18 00:28:34 +00:00
1797576237
Revert "[DSV4 Perf] Optimize dsv4 cudagraph by reducing eager_break_during_capture" ( #45309 ) ( #45972 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-06-17 17:20:59 -07:00
0d339cf135
[Bugfix] Fix NixlConnector handshake block_len validation for GQA-replicated KV heads ( #45879 )
...
Signed-off-by: Oseltamivir <58582368+Oseltamivir@users.noreply.github.com >
Co-authored-by: waynehacking8 <waynehacking8@gmail.com >
2026-06-17 15:11:29 -07:00
5fd21eb0b2
[BUG] fix hidden states nan for hybrid attention models ( #45849 )
...
Signed-off-by: shanjiaz <hezhao@redhat.com >
Co-authored-by: shanjiaz <hezhao@redhat.com >
2026-06-17 18:02:24 -04:00
Ting SUN and GitHub
9d4b87f4f0
[Bugfix][Model] Validate DefaultModelLoader / LoadConfig and fail with clear errors ( #45196 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
2026-06-17 21:46:33 +00:00
58b2e89642
[Bugfix][Gemma4] Render reasoning on assistant turns without tool_calls ( #45867 )
...
Signed-off-by: Luciano Martins <lucianommartins@users.noreply.github.com >
Co-authored-by: Luciano Martins <lucianommartins@users.noreply.github.com >
2026-06-17 20:44:15 +00:00
Wentao Ye and GitHub
2659f60a1a
[Refactor] Remove dead quantization code and tests ( #45454 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-17 16:12:01 -04:00
091386a99b
[Bugfix] MiniMax-M3 (AMD): add packed_modules_mapping and pass swiglu… ( #45794 )
...
Signed-off-by: wangjiaxin99 <jiaxwang@amd.com >
Co-authored-by: TJian <tunjian.tan@embeddedllm.com >
Co-authored-by: Douglas Lehr <91553416+dllehr-amd@users.noreply.github.com >
2026-06-17 19:15:46 +00:00
qli88 and GitHub
d112eb1ac7
[feature] MiniMax-M3-MXFP4 support added ( #45896 )
...
Signed-off-by: Qiang Li <qiang.li2@amd.com >
2026-06-17 18:50:48 +00:00
Wentao Ye and GitHub
2a47a9ff0f
[DSV4 Perf] Optimize dsv4 cudagraph by reducing eager_break_during_capture, 26.8% ~ 27.9% E2E TTFT improvement ( #45309 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-17 09:34:53 -07:00
Wentao Ye and GitHub
9c7c74bf10
[Log] Update deepgemm log ( #45857 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-17 15:34:22 +00:00
danisereb and GitHub
5e27b2baf4
[Bugfix] Pass TP group to FlashInfer all-reduce fusion ( #45917 )
...
Signed-off-by: Daniel Serebrenik <daserebrenik@nvidia.com >
2026-06-17 15:24:26 +00:00
zhanqiuhu and GitHub
eb0fdeb1e8
[Bugfix][PD] Fix DSV4 disaggregated serving ( #45831 )
...
Signed-off-by: ZhanqiuHu <zhu@redhat.com >
2026-06-17 15:17:14 +00:00
46f74e144b
[Kernel][Helion][1/N] Add Helion kernel for rms_norm_dynamic_per_token_quant ( #34432 )
...
Signed-off-by: Sean Chen <seachen@redhat.com >
Co-authored-by: Yanan Cao <gmagogsfm@gmail.com >
2026-06-17 23:03:54 +08:00
Wentao Ye and GitHub
0a7bacdcac
[DSv4 Perf] DSv4 flashinfer sparse index cache for metadata, 2%~4% TTFT improvement ( #45863 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-17 10:55:48 -04:00
amirkl94 and GitHub
8b2b566ea7
Feature: Enable Flashinfer non-gated MoE bf16 ( #43853 )
...
Signed-off-by: Amir Klein <203507526+amirkl94@users.noreply.github.com >
2026-06-17 14:32:49 +00:00
xaguilar-amd and GitHub
0b131b16c9
[ROCm][AITER][Quark] Tag per-channel FP8 weights as PER_CHANNEL so AITER pre-shuffled GEMM is selected ( #44626 )
...
Signed-off-by: Xavier Aguilar <xavier.aguilarfruto@amd.com >
2026-06-17 14:05:34 +00:00
bcb518ad7a
[quant][autoround]Refactor INC quantization into package with INCScheme orchestrator ( #40601 )
...
Signed-off-by: yiliu30 <yi4.liu@intel.com >
Signed-off-by: Zhenzhong1 <zhenzhong.xu@intel.com >
Signed-off-by: Zhenzhong Xu <zhenzhong.xu@intel.com >
Co-authored-by: n1ck-guo <heng.guo@intel.com >
Co-authored-by: Zhenzhong1 <zhenzhong.xu@intel.com >
2026-06-17 21:51:32 +08:00
Chaojun Zhang and GitHub
06e1e0885c
[XPU] Fix test_logprobs_e2e import error: pin lm-eval[api]>=0.4.12 ( #44469 )
...
Signed-off-by: Chaojun Zhang <chaojun.zhang@intel.com >
2026-06-17 12:26:47 +00:00
Isotr0py and GitHub
1a59078c87
[CI/Build] Avoid duplicate ViT CG test introduced by accident ( #45654 )
...
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-17 12:23:44 +00:00
Oğuzhan KIR and GitHub
fa85ead2f3
[MM][Perf][CG] Support ViT full CUDA graph for Kimi-VL ( #41992 )
...
Signed-off-by: oguz <oguzhankir17@gmail.com >
2026-06-17 12:14:01 +00:00
e28e8c8782
[ROCm][Quant] Minimax-M3: Enable fp8_per_channel for bf16 weights on mi300x ( #45854 )
...
Signed-off-by: Hongxia Yang <hongxia.yang@amd.com >
Signed-off-by: tjtanaa <tunjian.tan@embeddedllm.com >
Co-authored-by: tjtanaa <tunjian.tan@embeddedllm.com >
2026-06-17 12:02:40 +00:00
Angelo Ruocco and GitHub
ee0fd6984a
docs, kv_offloading: add docs for selective offload ( #45279 )
...
Signed-off-by: Angelo Ruocco <ang@zurich.ibm.com >
2026-06-17 14:58:00 +03:00
vllmellm and GitHub
d537122398
[ROCm][Bugfix]: Fallback GFX942 sparse MLA ops to Triton ( #45782 )
...
Signed-off-by: vllmellm <vllm.ellm@embeddedllm.com >
2026-06-17 11:41:29 +00:00
Juan Pérez de Algaba and GitHub
3d20275bb4
fix(security): enforce audio decode duration limit in chat completions path ( #45908 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
2026-06-17 11:07:13 +00:00
f694d43b33
[Bugfix][test] Use Salesforce/wikitext for ppl tests ( #45913 )
...
Co-authored-by: wentian-byte <192079369+wentian-byte@users.noreply.github.com >
2026-06-17 10:37:19 +00:00
Nikhilesh Chhetri and GitHub
3c6084bb0d
[Bugfix][Gemma4] Pre-initialise streaming reasoning state when prompt ends inside an open <|channel> ( fixes #45834 ) ( #45852 )
...
Signed-off-by: nikhilesh-csa <nchhetri@csa1.com >
2026-06-17 06:16:02 -04:00
Joel Smith and GitHub
68ff30d40e
[Bugfix] Fixes MiniCPM-O resampler device placement to avoid tensor device mismatch ( #42332 )
...
Signed-off-by: j9smith <j.smith9103@outlook.com >
2026-06-17 08:35:27 +00:00
6d8fff5698
[KV Connector][Offloading] Avoid blocking the engine to flush offloads on idle ( #45595 )
...
Signed-off-by: Itay Etelis <itay.etelis@ibm.com >
Signed-off-by: Or Ozeri <oro@il.ibm.com >
Signed-off-by: Itay Etelis <Itay.etelis@gmail.com >
Co-authored-by: Itay Etelis <itay.etelis@ibm.com >
Co-authored-by: Or Ozeri <oro@il.ibm.com >
Co-authored-by: Itay Etelis <Itay.etelis@gmail.com >
2026-06-17 11:35:07 +03:00
e2c58570ea
[Rust Frontend] Support hybrid/external DP LB in Python supervised bootstrap ( #45805 )
...
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-17 07:32:40 +00:00
Taneem Ibrahim and GitHub
43fa24e832
[Misc] Validate Cohere Embed Mixed Content Payloads ( #45873 )
...
Signed-off-by: Taneem Ibrahim <taneem.ibrahim@gmail.com >
2026-06-17 06:57:12 +00:00
arghyadeep sarkar and GitHub
93bbe94d3a
[Kernel] Add weightless RMSNorm CUDA kernels for has_weight=False ( #41430 ) ( #44109 )
...
Signed-off-by: hello-args <args.sarkar@gmail.com >
2026-06-16 23:45:55 -07:00
Will Eaton and GitHub
17bc144556
[Rust Frontend] Add serde defaults for omit_defaults fields in EngineCoreSamplingParams ( #45848 )
...
Signed-off-by: Will Eaton <weaton@redhat.com >
2026-06-17 06:40:49 +00:00
Sahil Singh and GitHub
295232a26a
[Rust Frontend] Add /abort_requests endpoint ( #44382 )
...
Signed-off-by: Sahil Singh <sahiilsiingh37@gmail.com >
2026-06-17 06:40:47 +00:00
Reid and GitHub
56e4345226
[Rust Frontend] Support prompt-only completions ( #44938 )
...
Signed-off-by: reidliu41 <reid201711@gmail.com >
2026-06-17 06:38:06 +00:00
Nick Hill and GitHub
e9993a52aa
[BugFix][CI] Fix scheduler plugin test ( #45897 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
2026-06-17 06:30:49 +00:00
a46abb7ae6
[Bugfix][Quantization] Reject unsupported compressed tensors KV cache schemes ( #45312 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-17 05:08:41 +00:00
4c62663315
[M3] Enable FP8 sparse GQA ( #45744 )
...
Signed-off-by: Thien Tran <gau.nernst@yahoo.com.sg >
Co-authored-by: Yongye Zhu <zyy1102000@gmail.com >
2026-06-16 21:38:03 -07:00
d78650cf97
[CI][NIXL] Pin NIXL to 1.2.0 ( #45843 )
...
Signed-off-by: Itay Alroy <ialroy@nvidia.com >
Signed-off-by: Itay Alroy <75032521+itayalroy@users.noreply.github.com >
Co-authored-by: ovidiusm <ovidium@nvidia.com >
2026-06-16 21:29:34 -07:00
5bdc01bcc3
[M3] Tune Triton indexer score decode for spec-decode ( #45743 )
...
Signed-off-by: Thien Tran <gau.nernst@yahoo.com.sg >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-16 21:07:34 -07:00
liangel-02 and GitHub
20a5f8b43b
[FlexAttention] make custom mask mods fully cudagraphable ( #45232 )
...
Signed-off-by: Angel Li <liangel@meta.com >
2026-06-17 11:53:12 +08:00
7b5d60cc37
[Bugfix][V1] Clean up compiled-model bytecode hooks on VllmRunner exit ( #45195 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-16 20:31:17 -07:00
Nick Hill and GitHub
14b438a98b
[ModelRunnerV2] Various model/config compatibility fixes ( #45868 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
2026-06-17 03:23:01 +00:00
2785a5e0e6
[Bugfix][ROCm] Fix FP8 per-tensor scale rank mismatch causing Inductor assertion failure ( #44912 )
...
Signed-off-by: nehmathe2 <nehmathe2@gmail.com >
Signed-off-by: Divakar Verma <divakar.verma@amd.com >
Signed-off-by: nehmathe <nehmathe@amd.com >
Co-authored-by: TJian <tunjian.tan@embeddedllm.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: Divakar Verma <divakar.verma@amd.com >
Co-authored-by: Andreas Karatzas <akaratza@amd.com >
2026-06-16 20:17:42 -07:00
efd15e192a
[Bugfix][ROCm] Fix MiniMax-M3 FP8 KV cache dtype ( #45720 )
...
Signed-off-by: Cam Quilici <cjquilici@gmail.com >
Signed-off-by: Cameron Quilici <cjquilici@gmail.com >
Co-authored-by: Hongxia Yang <62075498+hongxiayang@users.noreply.github.com >
Co-authored-by: TJian <tunjian.tan@embeddedllm.com >
2026-06-17 03:14:45 +00:00
556b063e45
[XPU] Fix test_spec_decode_logprobs: use FLASH_ATTN for XPU in GPU_DETERMINISM_KWARGS ( #44468 )
...
Signed-off-by: Chaojun Zhang <chaojun.zhang@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-17 11:07:04 +08:00
aa0ac8a661
[CI] Run pre-commit on self-hosted vllm-runners ( #45865 )
...
Signed-off-by: khluu <khluu000@gmail.com >
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-06-16 19:49:22 -07:00
Federico and GitHub
b831374cf1
[Bugfix][Gemma4] Fix parsing when thinking is disabled ( #45832 )
...
Signed-off-by: Federico Iezzi <fiezzi@google.com >
2026-06-17 02:41:36 +00:00
71bc19dbdd
[Bugfix] Fix MoE model load OOM in FlashInfer_TRTLLM backend with sleep mode ( #45589 )
...
Signed-off-by: Dakai An <dakaian108@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-16 19:36:51 -07:00
Kunshang Ji and GitHub
ef2c40dc00
[XPU][CI] fix server test file path ( #45870 )
...
Signed-off-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-17 09:06:25 +08:00
4bf699d310
[Kernel] Support DS Mamba tail copy for MTP align mode ( #45473 )
...
Signed-off-by: Sungsoo Ha <sungsooh@nvidia.com >
Co-authored-by: Thomas Parnell <tom.parnell@gmail.com >
2026-06-16 22:50:30 +00:00
Stan Wozniak and GitHub
520828789c
Apply LRU policy only to proper cache entries ( #42656 )
...
Signed-off-by: Stanislaw Wozniak <stw@zurich.ibm.com >
2026-06-16 21:49:15 +00:00
9d4dc4ca2f
[Kernel] Support GLM-5 dimensions for TRT-LLM ragged MLA prefill ( #43525 )
...
Signed-off-by: Mohammad Miadh Angkad <176301910+mmangkad@users.noreply.github.com >
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
Co-authored-by: Matthew Bonanni <mbonanni@redhat.com >
2026-06-16 20:49:47 +00:00
Federico and GitHub
b9684d99e9
[Bugfix] Gemma4: skip forced JSON for required/named tool choice ( #45795 )
...
Signed-off-by: Federico Iezzi <fiezzi@google.com >
2026-06-16 20:38:29 +00:00
Divakar Verma and GitHub
4fadf9c92c
[ROCm][CI] fix multimodel run cmds ( #45858 )
...
Signed-off-by: Divakar Verma <divakar.verma@amd.com >
2026-06-16 15:31:52 -05:00
Nick Hill and GitHub
d8d95998dc
[Core] Add prefill step cadence for better non-PD DP balancing ( #44558 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
2026-06-16 13:17:18 -07:00
Flora Feng and GitHub
475a6ad18a
[Misc] Update Mergify tool-calling label ( #45853 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-16 19:08:00 +00:00
Hongxia Yang and GitHub
f2beaa80c8
[ROCm][Quant] mxfp8 moe/linear gfx950 tuning for MiniMax-M3 ( #45725 )
...
Signed-off-by: Hongxia Yang <hongxia.yang@amd.com >
2026-06-16 18:50:40 +00:00
8e27a9c215
[PERF] Fuse multi-group block table staged writes ( #44944 )
...
Signed-off-by: jesse <szxfml@gmail.com >
Signed-off-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: Nick Hill <nickhill123@gmail.com >
2026-06-16 10:53:27 -07:00
7d567172fc
[Bugfix] Fix Qwen3 prompt tool-call reasoning false positive ( #45763 )
...
Signed-off-by: Alex Bilichenko <alexbi29@users.noreply.github.com >
Co-authored-by: Alex Bilichenko <alexbi29@users.noreply.github.com >
2026-06-16 17:48:01 +00:00
Chauncey and GitHub
f00e163f35
[Frontend] Add Streaming Parser Engine and new MinimaxM2 Parser ( #45701 )
...
Signed-off-by: chaunceyjiang <chaunceyjiang@gmail.com >
2026-06-16 13:38:17 -04:00
44b2512767
[KV Connector][Mooncake] Add cache_prefix to namespace store keys ( #45767 )
...
Signed-off-by: Dao Le <Dao007forever@gmail.com >
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-06-16 10:24:20 -07:00
188c68798e
[KVConnector][MoRIIO] Allow overriding the advertised host IP ( #45488 )
...
Signed-off-by: Kourosh Hakhamaneshi <kourosh@anyscale.com >
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-06-16 17:18:37 +00:00
c45f681932
[Bugfix][Core] Fall back when numactl --membind is blocked in constrained containers ( #45438 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-06-16 09:49:56 -07:00
89e8645a9e
[Model] Remove Dots1ForCausalLM ( #45637 )
...
Signed-off-by: Xianbao QIAN <xianbao.qian@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-17 00:32:18 +08:00
Wentao Ye and GitHub
88a9cdd439
[Model Runner V2] Enable GraniteMOE for MRv2 by default ( #45461 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-16 09:31:32 -07:00
Micah Williamson and GitHub
6f612fbedf
[ROCm][CI] Patch conftest to resolve occasional OOMs ( #45722 )
...
Signed-off-by: Micah Williamson <micah.williamson@amd.com >
2026-06-16 10:00:15 -05:00
Sting Lin and GitHub
506ec6d656
Upgrade tpu-inference to v0.22.1 ( #45793 )
2026-06-16 07:54:57 -07:00
a52205bccf
[Model] Add HrmTextForCausalLM (Hierarchical Reasoning Model — Text) ( #43098 )
...
Signed-off-by: Wuyifei <wuyifei@me.com >
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-16 22:41:41 +08:00
3d34f8cbdc
[ROCm][Cleanup] Remove stale AITER FA hybrid KV-cache TODO ( #44178 )
...
Signed-off-by: Tuukka Sarvi <tuukka.sarvi@amd.com >
Co-authored-by: Cyrus Leung <tlleungac@connect.ust.hk >
2026-06-16 07:28:06 -07:00
Carl Y and GitHub
eb04c769d3
feat: MLA prefill enable FA4 fp8 output ( #43050 )
...
Signed-off-by: Carl You <4531192+carlyou@users.noreply.github.com >
2026-06-16 07:10:59 -07:00
ce3ef17bec
[Kernel][Helion][1/N] Add Helion kernel for rms_norm_per_block_quant ( #36895 )
...
Signed-off-by: Sean Chen <seachen@redhat.com >
Co-authored-by: Yanan Cao <gmagogsfm@gmail.com >
2026-06-16 22:09:52 +08:00
bf5149b516
[Bugfix] Fix FlashMLA sparse accuracy with topk_length and zero-init padding ( #36616 )
...
Signed-off-by: AjAnubolu <anuboluajay@gmail.com >
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
Co-authored-by: Matthew Bonanni <mbonanni@redhat.com >
2026-06-16 07:09:00 -07:00
Tahsin Tunan and GitHub
cca3365b73
[Rust Frontend] Add CORS support ( #45753 )
...
Signed-off-by: Tahsin Tunan <tahsintunan@gmail.com >
2026-06-16 13:47:11 +00:00
040df8f2ea
[CI] Fix attention benchmark smoke test ( #45728 )
...
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-16 13:43:37 +00:00
ced32bb474
[Perf] Add VLLM_TRITON_FORCE_FIRST_CONFIG to skip Triton autotuning ( #42425 )
...
Signed-off-by: Francesco Fusco <ffu@zurich.ibm.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-16 15:16:45 +02:00
c5e5c33fcd
[Bugfix][MoE] Restore routed output unpadding before shared expert add ( #45707 )
...
Signed-off-by: Netanel Haber <58652339+netanel-haber@users.noreply.github.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-16 16:06:28 +03:00
Mike G and GitHub
a8c86eeb16
[Quant] Support modelopt_mixed on Ampere (SM80/SM86) ( #45306 )
...
Signed-off-by: Mike G <180722391+mikekg@users.noreply.github.com >
2026-06-16 08:43:44 -04:00
Andreas Karatzas and GitHub
7e179e4bc0
[ROCm][CI] Gate incompatible HF references on Transformers v5 ( #41532 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-16 20:34:11 +08:00
405c7cf283
[ZenCPU] Add zencpu Platform Runtime Logging and Docs ( #42726 )
...
Signed-off-by: Lalithnarayan C <Lalithnarayan.C@amd.com >
Signed-off-by: Tyler Michael Smith <tlrmchlsmth@gmail.com >
Co-authored-by: Tyler Michael Smith <tlrmchlsmth@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Tyler Michael Smith <tyler@neuralmagic.com >
2026-06-16 08:23:12 -04:00
3f53e2138f
[Refactor] Remove Fp8OnlineLinearMethod as scheduled ( #45463 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-16 04:35:58 -07:00
Hank Han and GitHub
d53f4593ce
[KV Connector][Mooncake] Pipeline-parallel support for PD-disaggregated serving with Mooncake connector ( #44528 )
...
Signed-off-by: hanhan.hank <hanhan.hank@bytedance.com >
Signed-off-by: Hank Han <hanhan7630@outlook.com >
2026-06-16 04:35:38 -07:00
ad32608e24
[MM][Perf][CG] Support dual-path ViT full CUDA graph for DeepSeek-OCR ( #43586 )
...
Signed-off-by: shen-shanshan <467638484@qq.com >
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
Co-authored-by: Roger Wang <hey@rogerw.io >
Co-authored-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-16 04:35:20 -07:00
Thien Tran and GitHub
b2cfae777d
Add Triton recompile detection ( #45631 )
...
Signed-off-by: Thien Tran <gau.nernst@yahoo.com.sg >
2026-06-16 18:25:28 +08:00
wangxiyuan and GitHub
3f1ff1ff14
[Misc]Clean up useless test ( #45792 )
...
Signed-off-by: wangxiyuan <wangxiyuan1007@gmail.com >
2026-06-16 09:53:08 +00:00
c69c73418a
[XPU][CI] add intel xpu cases for nightly CI ( #44372 )
...
Signed-off-by: wenjun.liu <wenjun.liu@intel.com >
Signed-off-by: zengxian <xiangdong.zeng@intel.com >
Co-authored-by: zengxian <xiangdong.zeng@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-16 16:35:08 +08:00
Thomas Parnell and GitHub
ebf3a6d705
[Bugfix] Fix trtllm fused allreduce+rms_norm for transformers backend ( #45307 )
...
Signed-off-by: Thomas Parnell <tpa@zurich.ibm.com >
2026-06-16 08:34:27 +00:00
wang.yuqi and GitHub
c4fd9794e9
[Frontend] Remove AsyncMicrobatchTokenizer. ( #45759 )
...
Signed-off-by: wang.yuqi <yuqi.wang@daocloud.io >
2026-06-16 08:02:11 +00:00
7ad894c86a
[Bugfix] Prevent cuMemcpyBatchAsync segfault with MTP and KV offloading ( #44784 )
...
Signed-off-by: joshua <joshua.abraham@multicorewareinc.com >
Co-authored-by: joshua <joshua.abraham@multicorewareinc.com >
Co-authored-by: Or Ozeri <oro@il.ibm.com >
2026-06-16 07:58:39 +00:00
Li, Jiang and GitHub
a7fdfeef72
[CPU] Support Gemma Diffusion ( #45690 )
...
Signed-off-by: jiang1.li <jiang1.li@intel.com >
2026-06-16 14:39:56 +08:00
Jimmy Lee and GitHub
8bf374955f
[Bug Fix] Allow pinned memory for WSL2 ( #41496 )
...
Signed-off-by: Jimmy Lee <hirejimmylee@gmail.com >
2026-06-16 05:56:26 +00:00
Cyrus Leung and GitHub
9096659edb
[Cleanup] Remove dead env ( #45777 )
...
Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk >
2026-06-15 22:56:23 -07:00
Taneem Ibrahim and GitHub
81d8f4ebac
[Misc] Added validation for Cohere /v2/embed input field exclusivity ( #45640 )
...
Signed-off-by: Taneem Ibrahim <taneem.ibrahim@gmail.com >
2026-06-16 05:42:43 +00:00
a9a8a32dcd
Register parsed config classes before tokenizer init ( #40299 )
...
Signed-off-by: Bortlesboat <bortstheboat@gmail.com >
Co-authored-by: OpenAI Codex <codex@openai.com >
2026-06-16 05:33:08 +00:00
9d808e2309
[Core] Use fastsafetensors ParallelLoader for weight loading ( #40183 )
...
Signed-off-by: Git Bisector <gitbisector@gmail.com >
Signed-off-by: gitbisector <gitbisector@gmail.com >
Signed-off-by: git bisector <gitbisector@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Cyrus Leung <tlleungac@connect.ust.hk >
2026-06-15 22:32:05 -07:00
Ben Browning and GitHub
f3858d5422
[Frontend] [Parser] Migrate Nemotron V3 to streaming parser engine ( #45755 )
...
Signed-off-by: Ben Browning <bbrownin@redhat.com >
2026-06-16 05:31:21 +00:00
Bugen Zhao and GitHub
259ff891be
[Rust Frontend] Require ModelConfig.vocab_size to be present ( #45696 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-16 05:30:25 +00:00
6607a80dab
[Bugfix][Gemma4] Fix offline parser truncation, adjust_request token leak, and chat template sync ( #45553 )
...
Signed-off-by: Luciano Martins <lucianommartins@users.noreply.github.com >
Co-authored-by: Luciano Martins <lucianommartins@users.noreply.github.com >
2026-06-16 04:31:53 +00:00
liuzhenwei and GitHub
b8bd773fe4
[XPU] Fix Triton attn fp8/bf16 check failing ( #45758 )
...
Signed-off-by: zhenwei-intel <zhenwei.liu@intel.com >
2026-06-16 12:31:20 +08:00
Ruinan Ma and GitHub
2addbb9cc9
[BugFix] Support async scheduling with prompt embeds for multimodal models ( #45673 )
...
Signed-off-by: Ruinan Ma <r7ma3088@gmail.com >
2026-06-16 04:12:54 +00:00
Isotr0py and GitHub
e3cfea2e1b
[Multimodal] Add Qwen3-VL video loader ( #44412 )
...
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-16 03:45:34 +00:00
Bugen Zhao and GitHub
f99260d2aa
[Rust Frontend] Lower out-of-vocab validation to text layer ( #45685 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-16 03:37:58 +00:00
Bugen Zhao and GitHub
3f65e21e32
[Rust Frontend] Support max_logprobs validation ( #45674 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-16 10:57:56 +08:00
xx-thomas and GitHub
b00e76ff72
[Misc][Model] add io processor for query/document embeddings from ColBERT (jinaai/jina-colbert-v2) ( #45210 )
...
Signed-off-by: thomas <thomas.varghese@columbia.edu >
2026-06-16 01:32:32 +00:00
Woosuk Kwon and GitHub
f4359a70f9
[DSV4][Minor] Fix supported KV cache dtypes ( #44892 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-06-16 00:14:51 +00:00
Itay Alroy and GitHub
3afe659b6b
[EP] Enable DBO with NIXL EP ( #45275 )
...
Signed-off-by: Itay Alroy <ialroy@nvidia.com >
2026-06-15 23:37:22 +00:00
Itay Alroy and GitHub
16e91176cf
[EP] Query NIXL EP top-k index dtype ( #45298 )
...
Signed-off-by: Itay Alroy <ialroy@nvidia.com >
2026-06-15 22:50:18 +00:00
Itay Alroy and GitHub
ab8b0fe338
nixl_ep: Skip post-receive quantization for NVFP4 ( #45606 )
...
Signed-off-by: Itay Alroy <ialroy@nvidia.com >
2026-06-15 22:42:05 +00:00
d467a2a7f2
[Bugfix] Defer block freeing until in-flight steps finish under async scheduling + PD KV consumer ( #45357 )
...
Signed-off-by: llx-08 <2596671364@qq.com >
Signed-off-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: Jiangyun Zhu <riverclouds.zhu@qq.com >
2026-06-15 21:36:09 +00:00
76a373eff4
[Frontend] Replace legacy Gemma4 parsers with engine-based implementation ( #45588 )
...
Signed-off-by: Ben Browning <bbrownin@redhat.com >
Co-authored-by: Flora Feng <4florafeng@gmail.com >
2026-06-15 21:34:07 +00:00
Zang Peiyu and GitHub
25ee659db0
Fix parallel_tool_calls: null treated as false instead of default true ( #44955 )
...
Signed-off-by: factnn <166481866+factnn@users.noreply.github.com >
2026-06-15 21:14:10 +00:00
eacff17c8d
[Model Runner V2][Bugfix] Fix MRV2 LoRA warmup ( #35536 )
...
Signed-off-by: Jee Jee Li <pandaleefree@gmail.com >
Signed-off-by: Jee Jee Li <jeejeelee@inferact.ai >
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
Co-authored-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: Woosuk Kwon <woosuk@inferact.ai >
2026-06-15 13:17:23 -07:00
Flora Feng and GitHub
cd9078fe59
[Frontend] Skip structural tags for auto tool_choice without strict mode ( #45600 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-15 19:55:31 +00:00
Wentao Ye and GitHub
e18fe932ca
[Perf] Optimize DSv4 prefill chunk planning, 4.0% E2E Throughput Improvement ( #45061 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-15 19:50:21 +00:00
51ec5cf08f
[Bugfix] Chat Completions Harmony Refactor Clean up ( #45464 )
...
Signed-off-by: Yifan Zong <yzong@redhat.com >
Co-authored-by: Ben Browning <bbrownin@redhat.com >
2026-06-15 14:45:19 -04:00
7e612a0f06
[KV Offloading] Implement reset_cache for TieringOffloadingManager ( #44541 )
...
Signed-off-by: Ronen Schaffer <ronen.schaffer@ibm.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-15 18:42:53 +00:00
+1
0a1c5034f5
[Model] Add MiniMax M3 support ( #45381 )
...
Signed-off-by: youkaichao <youkaichao@gmail.com >
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
Signed-off-by: Jee Jee Li <pandaleefree@gmail.com >
Signed-off-by: functionstackx <47992694+functionstackx@users.noreply.github.com >
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
Signed-off-by: Jee Jee Li <jeejeelee@inferact.ai >
Co-authored-by: OpenAI Codex <codex@openai.com >
Co-authored-by: Isotr0py <mozf@mail2.sysu.edu.cn >
Co-authored-by: Thien Tran <gau.nernst@yahoo.com.sg >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
Co-authored-by: Jee Jee Li <pandaleefree@gmail.com >
Co-authored-by: Roger Wang <hey@rogerw.io >
Co-authored-by: functionstackx <47992694+functionstackx@users.noreply.github.com >
Co-authored-by: Yongye Zhu <zyy1102000@gmail.com >
Co-authored-by: Jee Jee Li <jeejeelee@inferact.ai >
2026-06-16 01:01:25 +08:00
RoyWang and GitHub
a3195fab7b
[AMD][Bugfix][Quantization] Honor fused-name match in is_layer_skipped ( #43981 )
2026-06-15 09:37:52 -07:00
Flora Feng and GitHub
0d80979644
[Chore] Consolidate reasoning/tool parser attributes into unified Parser in chat serving ( #45548 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-15 11:16:45 -04:00
Saddss and GitHub
588db18362
[Bugfix] Two-phase KV allocation for cross-group prefix cache hits (supersedes #33775 ) ( #44409 )
...
Signed-off-by: Saddss <2872669061@qq.com >
2026-06-15 22:39:59 +08:00
fa63bb9db6
Remove redundant Triton KV cache dtype asserts and enforce architectural support (fp8 >= sm89) ( #43914 )
...
Signed-off-by: Mike G <180722391+mikekg@users.noreply.github.com >
Co-authored-by: Michael Gschwind <mgschwind@nvidia.com >
2026-06-15 06:49:57 -07:00
5ed15f42b9
Fix the E8M0 scale computation in the MXFP4 (W4A4) MOE CUTLASS kernel ( #43557 )
...
Signed-off-by: Xin He <xin3.he@intel.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-15 06:04:54 -07:00
Juan Pérez de Algaba and GitHub
b997071ec4
(security) Enforce audio upload size limit before full file materialization ( #45510 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
2026-06-15 10:25:24 +00:00
Martin Kukla and GitHub
6c5872efc5
[Bugfix] Unset HF's default max_new_tokens for DiffusionGemma ( #45417 )
...
Signed-off-by: Martin Kukla <martin.kukla@cantab.net >
2026-06-15 17:31:57 +08:00
wang.yuqi and GitHub
1d88c4dadd
[Docs] Update the online serving docs. ( #45676 )
...
Signed-off-by: wang.yuqi <yuqi.wang@daocloud.io >
2026-06-15 17:23:36 +08:00
vllmellm and GitHub
25c53d1293
[ROCm][Doc] Add installation notes about python version requirement ( #45671 )
...
Signed-off-by: vllmellm <vllm.ellm@embeddedllm.com >
2026-06-15 17:22:55 +08:00
Yejing Lai and GitHub
9872921c5f
[XPU] skip UT test_with_ngram_gpu_spec_decoding ( #44423 )
...
Signed-off-by: Lai, Yejing <yejing.lai@intel.com >
2026-06-15 08:46:30 +00:00
Reid and GitHub
c17e2f7c84
[Bugfix][Rust Frontend] Make metrics respect --served-model-name ( #45465 )
...
Signed-off-by: reidliu41 <reid201711@gmail.com >
2026-06-15 08:05:10 +00:00
FAUST and GitHub
40eac9a9d9
[Rust Frontend] Support parallel_tool_calls = false ( #44760 )
...
Signed-off-by: zhoujinyu <2319109590@qq.com >
2026-06-15 07:50:48 +00:00
b5adb027ad
[Models] Fix MiMo v2.x QKV TP sharding + FP4 support ( #45200 )
...
Signed-off-by: Giancarlo Delfin <gdelfin@inferact.ai >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-15 15:13:34 +08:00
Sahil Singh and GitHub
64833f8158
[Rust Frontend] Add external→internal request-id map for abort() ( #45137 )
...
Signed-off-by: Sahil Singh <sahiilsiingh37@gmail.com >
2026-06-15 06:51:24 +00:00
ddad5dbda2
[Bugfix][Rust] Sync EngineCoreReadyResponse with the Python dataclass ( #45557 )
...
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
Signed-off-by: Will Eaton <weaton@redhat.com >
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-15 06:49:42 +00:00
Peter Pan and GitHub
ebb0a71ad0
[Bugfix] Reject out-of-range temperature values in SamplingParams ( #44965 )
...
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
2026-06-14 23:12:44 -07:00
Ting SUN and GitHub
48df95c43e
[Feature][Frontend] Report multimodal token counts in usage.prompt_tokens_details ( #45458 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
2026-06-15 05:20:58 +00:00
7df4fe1bd7
[Model] Remove XverseForCausalLM ( #45638 )
...
Signed-off-by: Xianbao QIAN <xianbao.qian@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-14 22:09:00 -07:00
b8336c3c7c
[Bugfix][V1] Split V2 model-runner attention groups on num_heads_q ( #45564 )
...
Signed-off-by: Roger Wang <hey@rogerw.io >
Signed-off-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com >
Co-authored-by: Nick Hill <nickhill123@gmail.com >
2026-06-14 21:49:46 -07:00
e8d3e22c88
Fix included router missing path for FastAPI >=0.137 ( #45629 )
...
Signed-off-by: Roger Wang <hey@rogerw.io >
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com >
2026-06-15 04:28:52 +00:00
c4a3f9d137
[Frontend] Add Streaming Parser Engine and new Qwen3 Parser ( #45413 )
...
Signed-off-by: Ben Browning <bbrownin@redhat.com >
Co-authored-by: Flora Feng <4florafeng@gmail.com >
2026-06-15 11:59:05 +08:00
Flora Feng and GitHub
e3e3cd5458
[Bugfix][CI] Update Dockerfile dependency graph PNG ( #45602 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-15 10:35:24 +08:00
Li, Jiang and GitHub
8760f972ca
[CPU] Refine CPU attention frontend ( #45391 )
...
Signed-off-by: jiang1.li <jiang1.li@intel.com >
2026-06-14 19:26:54 -07:00
b675cb7d0f
[Bugfix][CPU] Honor cgroup memory limit when computing KV cache size ( #45086 )
...
Signed-off-by: baoloongmao <baoloongmao@tencent.com >
Co-authored-by: Li, Jiang <jiang1.li@intel.com >
2026-06-14 19:26:50 -07:00
Chaojun Zhang and GitHub
2725c84aae
[XPU] Enable sequence parallel support for XPU ( #38608 )
...
Signed-off-by: chaojun-zhang <chaojun.zhang@intel.com >
Signed-off-by: Chaojun Zhang <chaojun.zhang@intel.com >
Signed-off-by: Chaojun,Zhang <chaojun.zhang@intel.com >
2026-06-14 19:26:46 -07:00
Noa Neria and GitHub
1801fad0ba
[Bugfix] Stream Llama4 weight loading to avoid host-OOM with copy-returning loaders ( #44645 )
...
Signed-off-by: Noa Neria <nneria@nvidia.com >
2026-06-14 19:23:44 -07:00
Ting SUN and GitHub
3d6ce816f0
[Bugfix][Model] Validate runai_streamer model_loader_extra_config ( #45291 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
2026-06-14 19:23:30 -07:00
Taneem Ibrahim and GitHub
2c764c089a
Added real /v1/embeddings support for messages + chat_template_kw ( #45173 )
...
Signed-off-by: Taneem Ibrahim <taneem.ibrahim@gmail.com >
2026-06-15 09:08:10 +08:00
Michael Ma and GitHub
c621af1690
[BugFix] Fix prompt_embeds for multimodal models ( #45383 )
...
Signed-off-by: ruinan ma <r7ma3088@gmail.com >
2026-06-14 01:44:56 -07:00
Roger Wang and GitHub
e2bf2b3d84
[Perf] Use bisect for mm feature lookup in model runner v2 ( #45566 )
...
Signed-off-by: Roger Wang <hey@rogerw.io >
2026-06-14 00:22:53 -07:00
Amanzhol Salykov and GitHub
725c3bc808
[ROCm][Perf] Enable W4A16 FlyDSL MoE ( #44400 )
...
Signed-off-by: amd-asalykov <asalykov@amd.com >
Signed-off-by: Amanzhol Salykov <asalykov@amd.com >
2026-06-14 00:14:39 -07:00
9548a1887f
[XPU] Support int4 group_size=32 W4A16 MoE ( #45136 )
...
Signed-off-by: Marceli Fylcek <marceli.fylcek@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-14 00:14:35 -07:00
Jeff (Junze) Ma and GitHub
9fd737badc
[Bugfix][DCP] Fix illegal memory access in DCP a2a decode under full CUDA graphs ( #45487 )
2026-06-14 00:14:31 -07:00
4ef4492e9b
[V1][Spec Decode] Add Dynamic SD ( #32374 )
...
Signed-off-by: Ekagra Ranjan <3116519+ekagra-ranjan@users.noreply.github.com >
Signed-off-by: Benjamin Chislett <chislett.ben@gmail.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
Co-authored-by: Benjamin Chislett <chislett.ben@gmail.com >
2026-06-14 00:14:27 -07:00
78e7293bb1
[Build] Fix CUDA arch build coverage gaps ( #45277 )
...
Signed-off-by: Shengqi Chen <harry-chen@outlook.com >
Co-authored-by: Xin Li <xinli-sw@users.noreply.github.com >
Co-authored-by: ShawRong <ShawRong@users.noreply.github.com >
Co-authored-by: Change72 <Change72@users.noreply.github.com >
2026-06-13 22:09:20 -07:00
54bbf51668
[Bugfix] nightly Docker images crash with ImportError: AnthropicOutputConfig since May 28 ( #44795 )
...
Signed-off-by: achyuthan.s <113010327+Achyuthan-S@users.noreply.github.com >
Signed-off-by: Achyuthan S <achyuthan.sivasankar@gmail.com >
Signed-off-by: Achyuthan Sivasankar <achyuthan.sivasankar@gmail.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-06-13 21:45:29 -07:00
Nick Hill and GitHub
cf027b86af
[Core] Simplify MRV2 async output handling ( #45442 )
2026-06-13 18:15:36 -07:00
71b961dd35
[Perf] SM90 cutlass fp8 mm supports odd M by swap_ab, 180~290% kernel performance improvement ( #44572 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-13 12:05:45 -07:00
521b88c29e
[Bugfix] Reject structured outputs for diffusion decoders with a clear error ( #45468 )
...
Signed-off-by: Wayne Chiu <waynehacking8@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-13 12:04:01 -07:00
Harry Mellor and GitHub
b3f0a0a0df
Fix docs build on main ( #45536 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-13 08:53:23 -07:00
Juan Pérez de Algaba and GitHub
470229c37e
[Security] Fix DoS via prompt_embeds on M-RoPE models ( #45252 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
2026-06-13 10:17:38 +00:00
2b3006076c
[Security] Add timeout guard for regex compilation in structured outp… ( #45118 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-13 09:52:56 +00:00
Wentao Ye and GitHub
96fa5cdd9e
[CI Bug] Fix ValueError: There is no module or parameter named 'model.vision_tower.vision_model' ( #45478 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-13 02:38:37 -07:00
Andreas Karatzas and GitHub
9261dbbc55
Treat null completion max_tokens like the default ( #45491 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-13 09:34:09 +00:00
Wentao Ye and GitHub
2ecf7d0eb4
[Model Runner V2] Fix openai.InternalServerError: Error code: 500 - 'list index out of range' ( #45467 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-13 01:44:16 -07:00
midas and GitHub
0d29612292
[Doc] Fix uv dependency resolution failure for setuptools during CPU source builds (x86 & ARM) ( #45412 )
...
Signed-off-by: midas <the.anon.github@gmail.com >
2026-06-13 06:18:58 +00:00
WEI CHENG CHIU and GitHub
5b2943f5a6
[Bugfix] Return the tokenizer from maybe_make_thread_pool so it survives pickling ( #45460 )
...
Signed-off-by: Wayne Chiu <waynehacking8@gmail.com >
2026-06-13 06:01:35 +00:00
43f0e024bc
[Render] Add /derender endpoints for disaggregated postprocessing ( #43606 )
...
Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com >
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
Co-authored-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-13 13:55:33 +08:00
Andreas Karatzas and GitHub
1033ffac2e
[CI] Wait for SSL cert refresher events in the test ( #45489 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-13 04:57:18 +00:00
ff5a30cfac
[Bugfix] Replace deprecated Qwen2VLImageProcessorFast with Qwen2VLImageProcessor ( #42700 )
...
Signed-off-by: abinggo <107740309+abinggo@users.noreply.github.com >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Roger Wang <hey@rogerw.io >
2026-06-12 21:04:31 -07:00
WEI CHENG CHIU and GitHub
17ee5b1ac5
[Bugfix] Set type/role explicitly in streaming message_start event ( #45376 )
...
Signed-off-by: Wayne Chiu <waynehacking8@gmail.com >
2026-06-13 01:40:50 +00:00
Nick Hill and GitHub
1a369783e9
[BugFix] Avoid prematurely freeing cached mm encoder outputs ( #45347 )
...
Signed-off-by: Roger Wang <hey@rogerw.io >
Signed-off-by: Nick Hill <nickhill123@gmail.com >
2026-06-12 15:39:40 -07:00
Kevin H. Luu and GitHub
e3e31e54b0
[Bugfix][CPU] Don't build triton-cpu on arm64 release image ( #45401 )
...
Signed-off-by: khluu <khluu000@gmail.com >
2026-06-12 14:51:45 -07:00
badddd254f
[ROCm][DSV4][Perf] Fuse inverse-RoPE and cache bf16 wo_a in o-projection ( #45103 )
...
Signed-off-by: Fangzhou Ai <fangzhouai@gmail.com >
Co-authored-by: Claude Fable 5 <noreply@anthropic.com >
2026-06-12 15:57:09 -05:00
c90650088d
Add the QuantizedActivation linear-kernel contract ( #44260 )
...
Signed-off-by: mgoin <mgoin64@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-12 13:48:15 -07:00
Michael Goin and GitHub
9eaacb23ec
[Kernel] Consolidate Marlin thread-tile padding across all dense Marlin paths ( #45295 )
...
Signed-off-by: mgoin <mgoin64@gmail.com >
2026-06-12 13:46:21 -07:00
78739c1946
[Model Runner v2] Migration from v1 to v2, with Qwen and DSv2 MOE models [3/N] ( #42667 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-12 20:44:52 +00:00
Matthew Bonanni and GitHub
cf567cbc71
[Attention] Improve attention benchmarks: configs and profiling ( #39336 )
...
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
2026-06-12 16:24:25 -04:00
Micah Williamson and GitHub
39cb9bf292
[ROCm] Bump Torch to 2.11 ( #45362 )
...
Signed-off-by: Micah Williamson <micah.williamson@amd.com >
2026-06-12 15:22:26 -05:00
Flora Feng and GitHub
6e4a547176
[Refactor] Deprecate ResponsesParser wrapper, inline parsing into ParsableContext ( #45431 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-12 16:15:41 -04:00
aab639c705
[Core][AMD] Propagate shutdown timeout to MultiprocExecutor ( #43154 )
...
Signed-off-by: Ryan Rock <ryan.rock@amd.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-06-12 15:13:31 -05:00
efe7adb5e1
[Perf] Use native DSA indexer decode path for next_n > 2 on SM100 ( #45322 )
...
Signed-off-by: zixi-qi <zixi@inferact.ai >
Co-authored-by: Claude Fable 5 <noreply@anthropic.com >
Co-authored-by: Yongye Zhu <zyy1102000@gmail.com >
2026-06-12 12:54:00 -07:00
Isotr0py and GitHub
6635279d8a
[Migration] Migrate GGUF quantization support to plugin ( #39612 )
...
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-12 12:02:21 -07:00
Jonas I. Liechti and GitHub
d6fd7ce8da
[Model][Dflash] Enable Dflash support for Qwen3NextForCausalLM targets ( #45319 )
...
Signed-off-by: Jonas I. Liechti <j-i-l@t4d.ch >
2026-06-12 10:30:09 -07:00
272c16953e
[Kernel][Helion][1/N] Add Helion kernel for dynamic_per_token_scaled_fp8_quant ( #33790 )
...
Signed-off-by: Sean Chen <seachen@redhat.com >
Co-authored-by: Yanan Cao <gmagogsfm@gmail.com >
2026-06-12 12:50:06 -04:00
Yi Zhong and GitHub
053e7daa79
[Model] Add encoder CUDA graph support to Lfm2VL ( #44930 )
...
Signed-off-by: vincentzed <207368749+vincentzed@users.noreply.github.com >
2026-06-12 09:17:26 -07:00
5af4aec141
[Rust Frontend] Add standalone granite4 tool parser ( #45216 )
...
Signed-off-by: Tahsin Tunan <tahsintunan@gmail.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-13 00:16:36 +08:00
Sai Sridhar Tarra and GitHub
a30addc754
[Docs][KV Connector][NIXL] document KV Transfer stat logging and Prometheus metrics ( #44055 )
...
Signed-off-by: Sai Sridhar <tarrasridhar1154@gmail.com >
2026-06-12 15:39:11 +00:00
Chauncey and GitHub
3b8fc3fe6d
[Frontend] Support strict mode for tool calling with ResponsesAPI ( #45396 )
...
Signed-off-by: chaunceyjiang <chaunceyjiang@gmail.com >
2026-06-12 10:59:59 -04:00
9ff278b1d2
[Core][KV Connector] fix scheduler KV connector stats aggregation ( #43877 )
...
Fixes scheduler-side KV connector stats collection so that:
1. update_connector_output() runs before scheduler-side stats are collected.
2. worker-side and scheduler-side KV connector stats are aggregated when both are present.
3. scheduler-only KV connector stats are still emitted when no worker-side stats exist.
Signed-off-by: srinivas_oo7 <sklinkedin0120@gmail.com >
Co-authored-by: srinivas_oo7 <sklinkedin0120@gmail.com >
2026-06-12 14:51:55 +00:00
Guan-Ming (Wesley) Chiu and GitHub
c7aa3d2630
[Core] Support structured outputs for beam search ( #35022 )
...
Signed-off-by: Guan-Ming (Wesley) Chiu <guanmingchiu@gmail.com >
Signed-off-by: Guan-Ming (Wesley) Chiu <105915352+guan404ming@users.noreply.github.com >
2026-06-12 06:56:25 -07:00
fbc3a1907a
[Bug] Migrate Reset cache for both v2 and v1 model runner ( #42759 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-12 09:38:12 -04:00
4171ae406c
[V1][Metrics] Add MLA attention metrics for DeepSeek MFU estimation ( #39457 )
...
Signed-off-by: Thillai Chithambaram <thillaichithambaram.a@gmail.com >
Co-authored-by: Mark McLoughlin <markmc@redhat.com >
2026-06-12 14:28:40 +01:00
Ethan Feng and GitHub
b7f9b6ab27
[Metrics] Add group-aware KV cache capacity to vllm:cache_config_info ( #42206 )
...
The startup log already reports the correct group-aware KV cache capacity for
hybrid models, but Prometheus did not expose matching info in 'vllm:cache_config_info`.
This PR adds kv_cache_size_tokens and kv_cache_max_concurrency.
Signed-off-by: Ethan Feng <ethan.fengch@gmail.com >
2026-06-12 11:49:44 +00:00
8af550b399
[BUGFIX][XPU] Update fa interface for compatibility ( #45394 )
...
Signed-off-by: zhenwei-intel <zhenwei.liu@intel.com >
Signed-off-by: Kunshang Ji <kunshang.ji@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-12 11:45:01 +00:00
f1e13f7df9
[Model] Remove Mono-InternVL (InternLM2VEForCausalLM) ( #45129 )
...
Signed-off-by: Xianbao QIAN <xianbao.qian@gmail.com >
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-12 10:41:09 +00:00
88ed636218
[KV Connector]: Support KV push from Prefill to Decode node using Nixl KV Connector ( #35264 )
...
Signed-off-by: Sunita Nadampalli <nadampal@amazon.com >
Signed-off-by: NickLucche <nlucches@redhat.com >
Co-authored-by: Nicolò Lucchesi <nlucches@redhat.com >
2026-06-12 10:38:41 +00:00
a014dddbaa
[11b/n] Migrate Machete kernels to torch stable ABI ( #45304 )
...
Signed-off-by: Chris Leonard <chleonar@redhat.com >
Signed-off-by: Shengqi Chen <harry-chen@outlook.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-06-12 10:36:49 +00:00
Thomas Parnell and GitHub
a37b4a940e
[Doc] AGENTS.md: add section about coding style ( #45301 )
...
Signed-off-by: Thomas Parnell <tpa@zurich.ibm.com >
2026-06-12 06:23:04 -04:00
Juan Pérez de Algaba and GitHub
f715f25f29
Fix misleading error for audio duration limit rejection ( #45113 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
2026-06-12 09:58:08 +00:00
Fynn Schmitt-Ulms and GitHub
462ef83d58
Update hidden states extraction integration test triggers ( #45294 )
...
Signed-off-by: Fynn Schmitt-Ulms <fschmitt@redhat.com >
2026-06-12 01:05:19 -07:00
1ae1051b4b
[Bugfix][Rust Frontend] Return 400 for prompt-validation submit errors ( #45286 )
...
Signed-off-by: xiaguan <751080330@qq.com >
Co-authored-by: Claude Fable 5 <noreply@anthropic.com >
2026-06-12 07:53:11 +00:00
2043258dec
[Frontend] Support strict mode for tool calling ( #45003 )
...
Signed-off-by: chaunceyjiang <chaunceyjiang@gmail.com >
Co-authored-by: cjackal <44624812+cjackal@users.noreply.github.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-12 07:51:48 +00:00
bd59c913bc
[CI] ci-fetch-log.sh: fetch all failed jobs from a build URL or PR number ( #45274 )
...
Signed-off-by: mgoin <mgoin64@gmail.com >
Co-authored-by: Claude Fable 5 <noreply@anthropic.com >
2026-06-12 00:42:18 -07:00
04cec9e4d8
[XPU][DeepSeek-V4] Fix MTP: sync with upstream fixes #44821 and #43746 ( #45240 )
...
Signed-off-by: Ma Jian <jian1.ma@intel.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-12 15:41:36 +08:00
Will Eaton and GitHub
87b98d6d6c
[Rust Frontend][Bugfix] Forward --shutdown-timeout and --disable-log-stats to the managed Python engine ( #45300 )
...
Signed-off-by: Will Eaton <weaton@redhat.com >
2026-06-12 07:39:27 +00:00
Yuwen Zhou and GitHub
0cd9b7af25
[CPU] Support CPU W4A16 INT4 MoE ( #43409 )
...
Signed-off-by: yuwenzho <yuwen.zhou@intel.com >
2026-06-12 07:12:37 +00:00
Isotr0py and GitHub
a2c72d4388
[Bugfix] Fix Dockerfile dependency graph pre-commit error ( #45374 )
...
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-12 07:10:18 +00:00
Rohan Potdar and GitHub
fe04238292
[ROCm][gpt-oss] Pass GateMode.INTERLEAVE for MXFP4 W4A16 fused MoE ( #44893 )
...
Signed-off-by: Rohan Potdar <rohan.potdar@amd.com >
Signed-off-by: Rohan138 <rohanpotdar138@gmail.com >
Signed-off-by: Rohan Potdar <66227218+Rohan138@users.noreply.github.com >
2026-06-12 01:02:04 -05:00
39dee1114a
[MM][Perf][CG] Support ViT full cudagraphs for mllama4 ( #40660 )
...
Signed-off-by: allgather <all2allops@gmail.com >
Co-authored-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-11 22:17:55 -07:00
+1
eb28452b10
[Model] Add DiffusionGemma Support ( #45163 )
...
Signed-off-by: Lucas Wilkinson <lwilkins@redhat.com >
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
Co-authored-by: Martin Kukla <martin.kukla@cantab.net >
Co-authored-by: Matthew Bonanni <mbonanni@redhat.com >
Co-authored-by: Dipika Sikka <dsikka@redhat.com >
Co-authored-by: NickLucche <nlucches@redhat.com >
Co-authored-by: jiahanc <173873397+jiahanc@users.noreply.github.com >
Co-authored-by: Alec Kohlhoff <134344302+aleckohlhoff@users.noreply.github.com >
Co-authored-by: Porras Huang <20535584+porrashuang@users.noreply.github.com >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: scoootscooob <167050519+scoootscooob@users.noreply.github.com >
2026-06-11 22:17:35 -07:00
Divakar Verma and GitHub
1ce3cdc5c1
[ROCm][CI] fix fp8 support for test_deepep_moe ( #45302 )
...
Signed-off-by: Divakar Verma <divakar.verma@amd.com >
2026-06-12 00:16:14 -05:00
Dao007forever and GitHub
6fbfdd1831
[NIXL] Per-region KV transfer classification for mixed full-attn + MLA groups ( #44583 )
2026-06-11 21:42:41 -07:00
Chris Leonard and GitHub
7021be66e8
[11a/n] Migrate Marlin kernels to torch stable ABI ( #45176 )
...
Signed-off-by: Chris Leonard <chleonar@redhat.com >
2026-06-11 21:22:37 -07:00
Ekagra Ranjan and GitHub
226ba9fc9e
[ASR] Add Long Audio benchmark and correctness test ( #44587 )
...
Signed-off-by: Ekagra Ranjan <3116519+ekagra-ranjan@users.noreply.github.com >
2026-06-12 04:11:16 +00:00
b927004c44
[Bugfix] Mamba CPU Offloading ( #44599 )
...
Signed-off-by: varun sundar rabindranath <vsundarr@redhat.com >
Co-authored-by: varun sundar rabindranath <vsundarr@redhat.com >
2026-06-11 21:07:35 -07:00
e0b9fb1290
[ASR] Optimize CPU preproc to get 2.5x RTFx via multi-threading ( #44612 )
...
Signed-off-by: Ekagra Ranjan <3116519+ekagra-ranjan@users.noreply.github.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-11 21:05:11 -07:00
42ae5e7ac6
[Bugfix] Fix --enable-prompt-tokens-details omitting zero cached tokens ( #44383 )
...
Signed-off-by: Sasindharan Sankar <sasindharansankar@email.com >
Co-authored-by: Sasindharan Sankar <sasindharansankar@email.com >
Co-authored-by: Chauncey <chaunceyjiang@gmail.com >
2026-06-11 20:37:42 -07:00
Nick Hill and GitHub
2263f8a3de
[CI][BugFix] Fix broken test_mamba_prefix_cache.py due to stale mock ( #45345 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
2026-06-12 03:26:17 +00:00
Ting SUN and GitHub
c1076839c9
[Bugfix][Model] Pass revision by name in Run:ai and bitsandbytes index downloads ( #45308 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
2026-06-11 20:21:46 -07:00
fcf5115c45
[ROCm][DSv4][Perf] Flash-decode split-K decode attention kernel ( #44899 )
...
Co-authored-by: vLLM Contributor <contributor@vllm.ai >
2026-06-12 03:17:52 +00:00
4bc83323f2
[Bugfix] OffloadingConnector: respect skip_reading_prefix_cache flag ( #44592 )
...
Signed-off-by: Hsiao-Yuan Chen <hy.c@Hsiao-YuandeMacBook-Pro.local >
Signed-off-by: littlecircle0730 <littlecircle0730@gmail.com >
Signed-off-by: littlecircle0730 <43994952+littlecircle0730@users.noreply.github.com >
Co-authored-by: Hsiao-Yuan Chen <hy.c@Hsiao-YuandeMacBook-Pro.local >
Co-authored-by: Or Ozeri <or@ozery.com >
2026-06-12 02:20:39 +00:00
yzong-rh and GitHub
e0871ad225
[Refactor] Chat Completions Streaming Harmony Refactor and Bugfixes ( #45104 )
...
Signed-off-by: Yifan Zong <yzong@redhat.com >
2026-06-12 01:09:47 +00:00
6f573f486b
[Bugfix] Initialize missing attributes in mistral eagle ( #45217 )
...
Signed-off-by: jpwang <jpwang@smail.nju.edu.cn >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-12 08:21:01 +08:00
Neil Schemenauer and GitHub
9bbf42be26
Make mistral_common optional by deferring MistralToolCall import ( #45305 )
...
Signed-off-by: Neil Schemenauer <nas@arctrix.com >
2026-06-11 22:59:11 +00:00
8a91228dbe
[Bugfix][KVConnector][Mooncake] Close MooncakeDistributedStore on connector teardown ( #45206 )
...
Signed-off-by: Dao Le <Dao007forever@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-11 14:33:48 -07:00
yzong-rh and GitHub
f712fd0d7d
[Refactor] Chat Completions Harmony Refactor, non-streaming path. ( #45171 )
...
Signed-off-by: Yifan Zong <yzong@redhat.com >
2026-06-11 21:18:30 +00:00
Wentao Ye and GitHub
5a6c7b7ab5
[Bug] Fix test flashmla for DSv4 ( #45052 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-11 16:22:26 -04:00
c9340e6f35
[Model] Remove InternLMForCausalLM registry alias ( #45128 )
...
Signed-off-by: Xianbao QIAN <xianbao.qian@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-11 20:02:51 +00:00
Ben Browning and GitHub
235b63c004
[Bugfix] Fix Anthropic tool_use content handling dropping args ( #45287 )
...
Signed-off-by: Ben Browning <bbrownin@redhat.com >
2026-06-11 20:01:29 +00:00
3b03a2cf47
[Rust Frontend] Support continuous_usage_stats stream option ( #43965 )
...
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
Signed-off-by: RickyChen / 陳昭儒 <ricky.chen@infinirc.com >
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-11 17:50:59 +00:00
wentian-byte and GitHub
b8142294b7
[Bugfix] Restrict FlashInfer cuDNN FP8 ViT attention gate to Blackwell (SM 100) ( #45251 )
...
Signed-off-by: Wentian Byte <3400259131@qq.com >
2026-06-11 16:39:24 +00:00
2ec6594db9
[Kernel][Helion][1/N] Add Helion kernel for per_token_group_fp8_quant ( #36902 )
...
Signed-off-by: Sean Chen <seachen@redhat.com >
Co-authored-by: Yanan Cao <gmagogsfm@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-11 08:59:08 -07:00
vraiti and GitHub
79f8c5bd8c
[Metrics] Scope unregister_vllm_metrics() to strictly "vllm:" metrics ( #42331 )
...
`unregister_vllm_metrics()` currently uses "vllm" in `collector._name` to decide
which collectors to remove from the Prometheus registry, removing every even
metrics registered by other subsystems or downstream extensions like "vllm_omni:"
Signed-off-by: vraiti <vraiti@redhat.com >
Signed-off-by: Mark McLoughlin <markmc@redhat.com >
2026-06-11 15:43:14 +00:00
Jiangyun Zhu and GitHub
f81daf8880
[Attention] add triton diff-kv backend for mimo ( #41797 )
...
Signed-off-by: zjy0516 <riverclouds.zhu@qq.com >
2026-06-11 11:36:31 -04:00
4085ff7cb4
[Core] Add kvcache watermark to reduce preemptions ( #44594 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-06-11 08:27:31 -07:00
23eb7c8fbb
[Bugfix] Fix NixlEPAll2AllManager's dependency on --enable-elastic-ep to function ( #44422 )
...
Signed-off-by: fangyuchu <fangyuchu@qq.com >
Co-authored-by: Tyler Michael Smith <tyler@neuralmagic.com >
2026-06-11 08:14:49 -07:00
wineandchord and GitHub
c2b4cd39ac
[Doc][Attention] Fix MLA top-of-file comments ( #37047 )
...
Signed-off-by: wineandchord <guoqizhou19@gmail.com >
2026-06-11 08:14:45 -07:00
Kai K. and GitHub
f1d8d99717
[Bugfix] CohereModel.load_weights: skip modelopt _quantizer.* keys ( #43495 )
...
Signed-off-by: Kai Köhler <kai.koehler@web.de >
2026-06-11 08:14:21 -07:00
Nicolò Lucchesi and GitHub
750aab5b8e
[Bugfix] Fix CPU memory leak related to not cleaning up old remotes data ( #44424 )
...
Signed-off-by: NickLucche <nlucches@redhat.com >
2026-06-11 07:54:52 -07:00
5edf7ff489
[Core] Release cached device memory under pressure on UMA GPUs during weight loading ( #45179 )
...
Signed-off-by: mgoin <mgoin64@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-11 17:49:50 +03:00
b78fc47f05
[Docs] Add redirect for moved lmcache examples page ( #45218 )
...
Signed-off-by: nataliepjlin <nataliepjlin@gmail.com >
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-11 10:41:08 -04:00
Harry Mellor and GitHub
03878d1c22
Deprecations for v0.23 and v0.24 ( #44992 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-11 14:35:38 +00:00
55911db580
[PD][Core] Fix Mamba prefix cache hit rate in PD disaggregation ( #44243 )
...
Co-authored-by: lHrHenry233 <2381623149@qq.com >
Co-authored-by: underfituu <hzhucong@163.com >
Signed-off-by: Zhanqiu Hu <zhu@redhat.com >
2026-06-11 14:10:25 +00:00
cc640ee8bc
[Rust Frontend][Metrics] Export vllm:lora_requests_info from frontend ( #45030 )
...
Signed-off-by: Will Eaton <weaton@redhat.com >
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-11 06:45:03 -07:00
ebc6ef971a
Hidden states extraction improvements ( #43805 )
...
Signed-off-by: Fynn Schmitt-Ulms <fschmitt@redhat.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-11 09:44:45 -04:00
tc-mb and GitHub
ab3a1fd2e6
minicpmv4_6: fix ImageSize (W,H) order for placeholder token calculation ( #45244 )
...
Signed-off-by: tc-mb <tianchi_cai@icloud.com >
2026-06-11 13:43:56 +00:00
c3662b36ea
[KV offload] Parallel-agnostic fs-tier cache for single full-attention group ( #44733 )
...
Signed-off-by: Itay Etelis <itay.etelis@ibm.com >
Co-authored-by: Itay Etelis <itay.etelis@ibm.com >
2026-06-11 15:48:37 +03:00
Juan Pérez de Algaba and GitHub
e62d00ab73
docs: add fix disclosure policy to SECURITY.md ( #45253 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
2026-06-11 12:48:00 +00:00
1f60771c74
fix: guard flash-attn rotary import ( #42679 )
...
Signed-off-by: Yufeng He <40085740+he-yufeng@users.noreply.github.com >
Co-authored-by: Wentao Ye <44945378+yewentao256@users.noreply.github.com >
2026-06-11 08:43:31 -04:00
05d9848267
[Build] Upgrade CUDA Dockerfiles from GCC 10 to GCC 12 for C++20 compatibility ( #44923 )
...
Signed-off-by: Richard Barnes <rbarnes@meta.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-06-11 12:26:52 +00:00
jasen and GitHub
ef67071b21
[Build] Skip spinloop extension on Python < 3.11 ( #44783 )
...
Signed-off-by: Jasen2201 <yajizhan@amd.com >
2026-06-11 11:23:21 +00:00
x41lakazam and GitHub
3508cb78d4
[Bugfix] Fix broken profile_modular_kernel.py ( #43300 )
2026-06-11 12:17:23 +01:00
Harry Mellor and GitHub
432905d5d6
Only enable PR docs builds manually ( #45262 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-11 03:14:29 -07:00
1f9dd7900d
[Bugfix][Rust Frontend] Validate out-of-vocab token ids in request params ( #44680 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
2026-06-11 03:14:11 -07:00
9492362972
[Security] Apply sanitize_message to Anthropic and STT error paths ( #45119 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-11 10:05:34 +00:00
7852e50e4d
[docs] Document --scheduler-cls base class requirement (extend AsyncScheduler, not Scheduler) ( #43724 )
...
Signed-off-by: Georgii Kliukovkin <kliukovkin@gmail.com >
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-11 10:49:51 +01:00
Reid and GitHub
0d657e44dc
[Rust Frontend] Fix DeepSeek V3.2 continue_final_message rendering ( #45155 )
...
Signed-off-by: reidliu41 <reid201711@gmail.com >
2026-06-11 09:34:19 +00:00
aa1df36c53
Fix/minicpmv46 missing version ( #44980 )
...
Signed-off-by: wjinxu <1299461899@qq.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-06-11 09:20:45 +00:00
f06aefb4e3
[CPU] Add missing scalar fallback for CPU W4A8 INT4 GEMM ( #44523 )
...
Signed-off-by: wcy <233313160abc@gmail.com >
Co-authored-by: lyd1992 <liuyudong@iscas.ac.cn >
2026-06-11 08:52:01 +00:00
Julien Denize and GitHub
1c3a72b8b2
[Bugfix] Add fetch_images to MistralCommonImageProcessor ( #45180 )
...
Signed-off-by: juliendenize <julien.denize@mistral.ai >
2026-06-11 16:13:01 +08:00
Juan Pérez de Algaba and GitHub
d598d23973
[Security] Reject non-finite temperature and repetition_penalty values ( #45116 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
2026-06-11 01:12:14 -07:00
Juan Pérez de Algaba and GitHub
f219788f91
[Security] Fix info disclosure via int32 truncation in GGUF dequantize kernels ( #44971 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
2026-06-11 08:05:14 +00:00
6e64c1bab1
[10c/n] Migrate MoE kernels to torch stable ABI ( #44565 )
...
Signed-off-by: Chris Leonard <chleonar@redhat.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-06-10 23:02:26 -07:00
Kevin H. Luu and GitHub
2f2c5cf4f1
[release] Always block release images to dockerhub ( #45236 )
...
Signed-off-by: Kevin H. Luu <khluu000@gmail.com >
2026-06-10 22:53:04 -07:00
Mohammad Miadh Angkad and GitHub
40e065e86a
[Docker] Fix CUTLASS DSL cu13 install order in Dockerfile ( #45204 )
...
Signed-off-by: Mohammad Miadh Angkad <176301910+mmangkad@users.noreply.github.com >
2026-06-11 05:19:36 +00:00
0b995f8609
Use std::bit_cast for type punning in CPU kernels ( #45089 )
...
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com >
Co-authored-by: Li, Jiang <jiang1.li@intel.com >
2026-06-10 22:07:44 -07:00
Bugen Zhao and GitHub
43914dd743
[Rust Frontend] Add Python bridge for Rust tool parsers ( #44624 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-11 04:51:06 +00:00
3501324957
[Build] fix self-contradictory precompiled-flag orthogonality test ( #44942 )
...
Signed-off-by: pjdurden <prajjwalchittori1@gmail.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-06-11 12:49:08 +08:00
Flora Feng and GitHub
3a04061701
[Refactor][Parser] Unify Response API to use parser.parse() like Chat Completion API ( #45190 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-11 04:37:51 +00:00
Yifan Qiao and GitHub
f272dfdce1
[KV Connector] Mooncake store: prefix-cache retention interval for sparse attention ( #44774 )
2026-06-10 21:36:34 -07:00
velonica0 and GitHub
f31bc2ea60
[CPU][RISC-V] Enable oneDNN W8A8 INT8 to run on RISC-V ( #44478 )
...
Signed-off-by: velonica0 <like@mail.nankai.edu.cn >
2026-06-11 04:09:05 +00:00
248e33c40d
[Bugfix][Responses API] Set id on function_call item in streaming done event ( #44608 )
...
Signed-off-by: Aniruddh Krovvidi <aniruddh.krovvidi@oracle.com >
Co-authored-by: Flora Feng <4florafeng@gmail.com >
2026-06-11 03:52:42 +00:00
Bugen Zhao and GitHub
5d5591d99b
[Rust Frontend] Populate cached_token_count in responses ( #44887 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-10 20:50:05 -07:00
Wentao Ye and GitHub
85a0ffae42
[CI Bug] Remove qwen test ValueError: No example model defined for Qwen/Qwen-7B-Chat ( #45194 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-10 20:11:00 -07:00
Harry Mellor and GitHub
18d87a87dc
Deprecate Transformers v4 support ( #45161 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-11 11:04:01 +08:00
Flora Feng and GitHub
b038a2f73b
[CI][Bugfix] Update Dockerfile dependency graph PNG ( #45209 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-10 19:40:25 -07:00
Ting SUN and GitHub
2d481f8a94
[Bugfix][Rust Frontend] Stop unescaping XML-style tool-call parameter values ( #45025 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
2026-06-10 19:05:23 -07:00
7920ccb97c
[Bugfix]: Fix Quark gpt-oss weight loading broken by FusedMoe refactor ( #45067 )
...
Signed-off-by: Rohan138 <rohanpotdar138@gmail.com >
Co-authored-by: Andreas Karatzas <akaratza@amd.com >
2026-06-10 18:17:46 -07:00
Wentao Ye and GitHub
86111c00c7
[Chore] Add Github notification for MRv2 for @yewentao256 ( #45191 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-11 09:01:49 +08:00
qizixi and GitHub
e2db0222e9
[Perf][Attention] Pin MLA chunked-context metadata tensors so H2D copies are truly non-blocking ( #45074 )
...
Signed-off-by: zixi-qi <zixi@inferact.ai >
2026-06-10 15:56:49 -07:00
82d6b59f04
[CI/Build] Skip test_use_trtllm_attention on non-CUDA platforms ( #44687 )
...
Signed-off-by: Dan Blanaru <48605845+DanBlanaru@users.noreply.github.com >
Co-authored-by: Wentao Ye <44945378+yewentao256@users.noreply.github.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-10 18:18:42 -04:00
Andreas Karatzas and GitHub
16282a9c4e
[ROCm][CI] Moving MI300 tests to MI325 until cluster is stabilized ( #45170 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-10 20:26:17 +00:00
5b6b536fdc
[ROCm][Bugfix] Make intermediate_pad TP-aware in rocm_aiter_fused_experts ( #44679 )
...
Signed-off-by: Rohan138 <rohanpotdar138@gmail.com >
Co-authored-by: Andreas Karatzas <akaratza@amd.com >
2026-06-10 15:10:50 -05:00
12f3f19c19
feat(qwen3-asr): support prompt parameter in v1/audio/transcriptions ( #35415 )
...
Signed-off-by: Nathan Price <nathan@abridge.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
Co-authored-by: Cyrus Leung <tlleungac@connect.ust.hk >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-10 19:54:59 +00:00
Ilya Markov and GitHub
6471ec75bd
[EPLB] Reject NCCL-based EPLB communicators with async EPLB ( #44978 )
...
Signed-off-by: Markov Ilya <markovilya197@gmail.com >
2026-06-10 19:51:27 +00:00
3d300aecb1
[Doc] Switch K8S examples to default MP mode ( #39400 )
...
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
Signed-off-by: Peter Pan <peter.pan@daocloud.io >
Signed-off-by: Kyle Sayers <kylesayrs@gmail.com >
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
Co-authored-by: Kyle Sayers <kylesayrs@gmail.com >
Co-authored-by: Flora Feng <4florafeng@gmail.com >
2026-06-10 18:17:11 +00:00
ffce72c041
[Model Runner V2] Fix v2 AttributeError: 'CohereASRDecoder' object has no attribute 'embed_input_ids' ( #44568 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-10 11:06:01 -07:00
TJian and GitHub
bfe1001ab6
[Bugfix] [DSV4] [ROCm] Pin apache-tvm-ffi version to 0.1.10 ( #45169 )
...
Signed-off-by: tjtanaa <tunjian.tan@embeddedllm.com >
2026-06-10 17:41:15 +00:00
fa8c868a3c
[Bugfix] Fix Llama4 weight loading ( #45047 )
...
Signed-off-by: Tyler Michael Smith <tlrmchlsmth@gmail.com >
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-06-10 13:40:45 -04:00
Ben Browning and GitHub
d1bcb4b44c
[Bugfix] Fix tool parsing crash with non-function tool types (e.g. WebSearchTool) ( #45147 )
...
Signed-off-by: Ben Browning <bbrownin@redhat.com >
2026-06-10 17:17:16 +00:00
bnellnm and GitHub
29026682cb
[Bugfix] Fix nemotron accuracy drop introduced by #41184 ( #45037 )
...
Signed-off-by: Bill Nell <bnell@redhat.com >
2026-06-10 13:16:25 -04:00
Stan Wozniak and GitHub
dc66e01a70
[Hybrid] Marconi-style admission policy for hybrid cache ( #37898 )
...
Signed-off-by: Stanislaw Wozniak <stw@zurich.ibm.com >
2026-06-10 10:03:13 -07:00
Yongye Zhu and GitHub
2ba68d9bf7
[Test] Fix one-sided MNNVL alltoall test workspace under-reservation ( #44946 )
...
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
2026-06-11 00:43:12 +08:00
Julien Denize and GitHub
2131b597b1
[CI] Ping Mistral team for ministral/voxtral/mixtral/pixtral changes ( #45153 )
...
Signed-off-by: juliendenize <julien.denize@mistral.ai >
2026-06-10 08:48:00 -07:00
0bae1d3848
[MRV2][Spec Decode] DFlash ( #44586 )
...
Signed-off-by: Giancarlo Delfin <gdelfin@inferact.ai >
Signed-off-by: Benjamin Chislett <bchislett@nvidia.com >
Signed-off-by: Benjamin Chislett <chislett.ben@gmail.com >
Co-authored-by: Giancarlo Delfin <gdelfin@inferact.ai >
2026-06-10 08:47:46 -07:00
Yufeng He and GitHub
4673ca1d78
fix: prefix DeepSeek V4 MTP projections ( #44821 )
...
Signed-off-by: Yufeng He <40085740+he-yufeng@users.noreply.github.com >
2026-06-10 08:47:04 -07:00
Angela Yi and GitHub
de900fa7e5
fix: AOT compile cache collision for dataclass-based HF configs ( #45059 )
...
Signed-off-by: Angela Yi <yiangela7@gmail.com >
2026-06-10 08:05:29 -07:00
Divakar Verma and GitHub
166d14e9bf
[bugfix] skip conch kernel for g_idx reordering ( #45072 )
...
Signed-off-by: Divakar Verma <divakar.verma@amd.com >
2026-06-10 23:04:19 +08:00
af65e08fc5
KV-Cache multi-tier offloading async batched lookup ( #44193 )
...
Signed-off-by: Effi Ofer <effi.ofer@gmail.com >
Co-authored-by: Or Ozeri <oro@il.ibm.com >
2026-06-10 14:59:30 +00:00
Harry Mellor and GitHub
3cc9fecd58
Deprecated 1st generation Qwen and QwenVL models ( #45131 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-10 14:55:33 +00:00
ccc05de038
[Bugfix] Fix missing sequence_lengths in EXAONE-4.5 vision encoder ( #45073 )
...
Signed-off-by: Jongsu Liam Kim <jongsukim8@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-10 15:44:34 +01:00
6ec7dcd641
[Frontend][Metrics] Add vllm:tool_call_parser_invocations_total Prometheus metric ( #44448 )
...
Signed-off-by: Yifan Zong <yzong@redhat.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-10 10:29:11 -04:00
c9e5bf8135
[Bugfix] Fix layerwise reload dropping params after a composed weight loader ( #44814 )
...
Signed-off-by: hallerite <git@hallerite.com >
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
Co-authored-by: Kyle Sayers <kylesayrs@gmail.com >
2026-06-10 06:42:05 -07:00
Roberto L. Castro and GitHub
6850839c6f
[Perf] Fix dsv3_router_gemm heuristic ( #44217 )
...
Signed-off-by: LopezCastroRoberto <rocastro@redhat.com >
2026-06-10 06:08:41 -07:00
87c15d46e3
[Bugfix] Lazily import the humming quantization backend ( #44921 )
...
Signed-off-by: mgoin <mgoin64@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-10 06:06:17 -07:00
4882fd7632
[Bugfix][Reasoning] Nemotron V3: surface reasoning as content when thinking is unterminated ( #39091 )
...
Signed-off-by: Andrii Skliar <askliar@nvidia.com >
Co-authored-by: Andrii Skliar <askliar@nvidia.com >
2026-06-10 05:58:19 -07:00
77f42d9725
[Model] Remove obsolete ERNIE models ( #45127 )
...
Signed-off-by: Xianbao QIAN <xianbao.qian@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-10 20:54:30 +08:00
9dfc313bdc
Feature/offloading manager stats ( #35669 )
...
Signed-off-by: Sriusa4414@gmail.com
Signed-off-by: srinivas_oo7 <Sriusa4414@gmail.com >
Signed-off-by: srinivas_oo7 <sklinkedin0120@gmail.com >
Signed-off-by: Srinivasoo7 <158864704+Srinivasoo7@users.noreply.github.com >
Signed-off-by: Or Ozeri <oro@il.ibm.com >
Co-authored-by: srinivas_oo7 <sklinkedin0120@gmail.com >
Co-authored-by: Srinivasoo7 <158864704+Srinivasoo7@users.noreply.github.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: Or Ozeri <oro@il.ibm.com >
2026-06-10 12:44:55 +00:00
9ad08c4d15
[Bugfix][Rust Frontend] Fix missing added tokens in hf/fastokens tokenizer ( #44683 )
...
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
2026-06-10 03:52:41 -07:00
Shantipriya Parida and GitHub
a1ec011a83
[Bugfix] Add deepseek_v32 to Quark dynamic MXFP4 model type check ( #39498 )
...
Signed-off-by: Shantipriya Parida <shantipriya.parida@amd.com >
2026-06-10 02:52:33 -07:00
Bugen Zhao and GitHub
fdfb2566c0
[Rust Frontend] [CI] Unify Rust artifact builds with setuptools-rust ( #44981 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-10 17:48:34 +08:00
Juan Pérez de Algaba and GitHub
8a5cf1ccd6
[Security] Fix remote DoS via invalid recovered token reinjection ( #44744 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
2026-06-10 02:31:43 -07:00
Kunshang Ji and GitHub
fe1d923afc
[BUGFIX][XPU] fix xpu flash_attn_varlen_func interface ( #45110 )
...
Signed-off-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-10 17:07:40 +08:00
32daf56b42
[Refactor] Rename rocm_moe.py to rocm_moe_rdna.py ( #45011 )
...
Signed-off-by: JartX <sagformas@epdcenter.es >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-10 17:02:09 +08:00
Andreas Karatzas and GitHub
82a42234be
[ROCm][CI] Defer AITER sampler import and isolate server test PYTHONPATH ( #44823 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-10 08:56:11 +00:00
Harry Mellor and GitHub
af9f583344
Revert "[Bugfix][CI] Gemma3 Transformers multimodal encoder profiling and build prompt-embedding fixtures" ( #45029 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-10 01:37:03 -07:00
yiheng and GitHub
bd2d83ff31
[SpecDecode] Reduce TP communication for large-vocab draft models speculative decoding ( #39419 )
...
Signed-off-by: EanWang211123 <wangyiheng@sangfor.com.cn >
2026-06-10 07:59:24 +00:00
xiaohuguo2023 and GitHub
bb78168b21
[ROCm][gpt-oss] Hybrid CDNA4 swizzle gate for A8W4 MoE ( #44804 )
...
Signed-off-by: Xiaohu Guo <Xiaohu.Guo@amd.com >
2026-06-09 23:59:44 -07:00
89c6a41001
[Bench] Add BFCL dataset for vllm bench serve tool-calling workloads ( #42457 )
...
Signed-off-by: Li Zhang <lzhanga@amazon.com >
Co-authored-by: Li Zhang <lzhanga@amazon.com >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Chauncey <chaunceyjiang@gmail.com >
2026-06-09 23:59:18 -07:00
7fdfa6441d
Model/colbert autoweightsloader ( #44999 )
...
Signed-off-by: Furkan Fidan <dev@yufufi.com >
Co-authored-by: wang.yuqi <yuqi.wang@daocloud.io >
2026-06-09 23:58:50 -07:00
Harry Mellor and GitHub
e9b728de8a
Change from owning configs to owning config utils ( #45058 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-10 06:40:25 +00:00
5828a205ef
Fix Harmony tool descriptions for optional fields ( #44686 )
...
Signed-off-by: Varun Shenoy <varun.vinayak.shenoy@oracle.com >
Co-authored-by: Codex <codex@openai.com >
2026-06-09 23:29:22 -07:00
Yaoming Zhan and GitHub
7a74f31d2e
[Rust Frontend] Add seed_oss and step3p5 reasoning parsers ( #44552 )
...
Signed-off-by: yzhan1 <zhanyaoming2014@gmail.com >
2026-06-09 23:01:33 -07:00
47930b59ca
[Bugfix] Handle HWC images in ImageProcessorItems.get_image_size ( #45057 )
...
Signed-off-by: YellowFoxH4XOR <yellowfoxh4xor@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-10 05:35:50 +00:00
Flora Feng and GitHub
6aec99f030
[Refactor] Remove dead states from chat completion serving ( #45081 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-09 22:20:15 -07:00
bnellnm and GitHub
f4966f8b3d
[Bugfix] Fix weight loading issues caused by #41184 ( #45054 )
...
Signed-off-by: Bill Nell <bnell@redhat.com >
2026-06-10 01:20:13 -04:00
Mohammad Miadh Angkad and GitHub
2c9c07c85e
[Bugfix][CI/Build] Fix Rust frontend build after chat conversion refactor ( #45085 )
...
Signed-off-by: Mohammad Miadh Angkad <176301910+mmangkad@users.noreply.github.com >
2026-06-09 20:04:41 -07:00
Change72 and GitHub
320c52b134
[Bench] benchmark_serving_multi_turn: make non-standard conversation_id payload opt-in ( #43756 )
...
Signed-off-by: Change72 <cguo51@asu.edu >
2026-06-09 19:41:56 -07:00
6deb05e0e4
[Core][Model] Gemma4: Unified FA4 for all layers + FlashAttention mm_prefix support ( #42175 )
...
Signed-off-by: Luciano Martins <lucianommartins@users.noreply.github.com >
Signed-off-by: Lucas Wilkinson <lwilkins@redhat.com >
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
Co-authored-by: Luciano Martins <lucianommartins@users.noreply.github.com >
Co-authored-by: Lucas Wilkinson <lwilkins@redhat.com >
Co-authored-by: Matthew Bonanni <mbonanni@redhat.com >
2026-06-09 17:45:39 -07:00
Flora Feng and GitHub
d82ac00923
[Refactor][Mistral] Extract parsing logic into MistralParser ( #44596 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-10 00:12:23 +00:00
Bugen Zhao and GitHub
dac9e9a640
[Rust Frontend] Extract shared options in route helper params ( #44884 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-09 17:02:35 -07:00
Wentao Ye and GitHub
d7607ad273
[Bug] Fix deepseek v4 OOM issue ( #44914 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-09 15:47:06 -07:00
d955745d58
[ROCm][CI] fix test_rope_kvcache_fusion.py ( #44678 )
...
Signed-off-by: charlifu <charlifu@amd.com >
Co-authored-by: Rohan Potdar <66227218+Rohan138@users.noreply.github.com >
2026-06-09 21:53:46 +00:00
Micah Williamson and GitHub
e1ed89dbee
Revert "[Kernel] Speed up silu_and_mul_per_block_quant with warp-shuf… ( #45066 )
...
Signed-off-by: Micah Williamson <micah.williamson@amd.com >
2026-06-09 14:12:06 -07:00
1c2ffc6f88
feat(multi-turn-bench): add api_key and custom headers for multi turn benchmark ( #44516 )
...
Signed-off-by: Jimmy <jinmingyi1998@sina.cn >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: simon-mo <simon.mo@hey.com >
2026-06-09 14:00:07 -07:00
Jiangyun Zhu and GitHub
ca4cfd8731
[Bugfix] fix qwen3.5 ep weight loading ( #45002 )
...
Signed-off-by: zjy0516 <riverclouds.zhu@qq.com >
2026-06-09 13:55:30 -07:00
Micah Williamson and GitHub
c9c1540e61
[ROCm][V2] Fix failed assertion in Llama models when using EAGLE with ROCM_AITER_FA ( #44936 )
...
Signed-off-by: Micah Williamson <micah.williamson@amd.com >
2026-06-09 13:30:52 -05:00
c1d754d681
[Mooncake] Use all HCAs on multi-NIC hosts instead of GPU-indexed RNIC selection ( #43799 )
...
Signed-off-by: Dao Le <Dao007forever@gmail.com >
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-06-09 11:05:36 -07:00
01d8cd92dd
[ROCm][Perf] Use fused softplus-sqrt-topk router under AITER fused-MoE ( #44945 )
...
Co-authored-by: vLLM Contributor <contributor@vllm.ai >
2026-06-09 17:53:05 +00:00
a4b14b98c6
[Kernel] Speed up silu_and_mul_per_block_quant with warp-shuffle reduction + vectorized I/O ( #44173 )
...
Signed-off-by: SII-yangdian <yangdian@sii.edu.cn >
Co-authored-by: SII-yangdian <yangdian@sii.edu.cn >
2026-06-09 10:41:26 -07:00
Juan Pérez de Algaba and GitHub
cf1c906724
[Security] Fix image EXIF orientation and tRNS transparency handling ( #44974 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
2026-06-09 09:34:44 -07:00
766ce2bb6b
Fix MiDashengLM TP>1 crash in audio encoder attention ( #44408 )
...
Signed-off-by: Michał Ganczarenko <michal.ganczarenko@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-09 09:29:14 -07:00
3d119f78f7
[Docs] Add KV offloading usage guide (single- and multi-tier) ( #44415 )
...
Signed-off-by: Ronen Schaffer <ronen.schaffer@ibm.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-09 19:20:23 +03:00
Juan Pérez de Algaba and GitHub
1b1359c332
[Security] Fix DoS via audio decompression bomb in speech-to-text endpoint ( #44970 )
...
Signed-off-by: jperezde <jperezde@redhat.com >
2026-06-10 00:18:53 +08:00
Tyko Niemi and GitHub
cad4ca12b8
[Bugfix] Add X-Session-ID from conversation_id in multi-turn benchmark ( #44663 )
...
Signed-off-by: Tyko Niemi <tyko.niemi@amd.com >
2026-06-09 08:57:00 -07:00
Andreas Karatzas and GitHub
b697119800
[ROCm][CI] Stabilize ModernBERT token-classification parity against Hugging Face ( #44040 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-09 16:52:36 +01:00
Kunshang Ji and GitHub
b4c6dc6454
[WIP][XPU] upgrade torch-xpu to 2.12 ( #42262 )
...
Signed-off-by: Kunshang Ji <kunshang.ji@intel.com >
Signed-off-by: Kunshang Ji <jikunshang95@gmail.com >
2026-06-09 15:51:39 +00:00
Raushan Turganbay and GitHub
2ee5106372
Remove raw_inputs from transformers backend ( #39425 )
...
Signed-off-by: raushan <raushan@huggingface.co >
2026-06-09 15:01:04 +00:00
Jiangyun Zhu and GitHub
7a89b72564
[Perf] fuse qk rmsnorm rope gate for qwen3.5 ( #44176 )
...
Signed-off-by: zjy0516 <riverclouds.zhu@qq.com >
2026-06-09 22:12:17 +08:00
Jee Jee Li and GitHub
dc10e467a9
[Bugfix] Fix minimax_qk_norm_fusion ( #44983 )
2026-06-09 06:43:46 -07:00
Terrence Zhao and GitHub
ee4d7df2b5
[Cohere] Cohere2 moe parser fix ( #44907 )
...
Signed-off-by: Terrencezzj <terrence@cohere.ai >
2026-06-09 06:32:18 -07:00
Terrence Zhao and GitHub
3e8afdf785
[Cohere] Fix Cohere2MoE weight loading when using Transformers ≥5.10 ( #44747 )
...
Signed-off-by: Terrencezzj <terrence@cohere.ai >
2026-06-09 06:27:40 -07:00
Nicolò Lucchesi and GitHub
6690a0c4de
[PD][Bugfix] Fix KV Cache sharing with HMA ( #44629 )
...
Signed-off-by: NickLucche <nlucches@redhat.com >
2026-06-09 06:10:06 -07:00
Maria Guevara and GitHub
1c23c42030
[Rust Frontend] Support Kimi K2 tool call IDs ( #44901 )
2026-06-09 05:31:26 -07:00
xiangdong and GitHub
b12e42d132
[XPU][CI] Refine docker image build and pull/create lock mechanism in Intel GPU CI ( #44481 )
...
Signed-off-by: zengxian <xiangdong.zeng@intel.com >
2026-06-09 20:20:32 +08:00
69fdaffbcd
[Rust Frontend] Add /tokenize and /detokenize endpoints ( #44222 )
...
Signed-off-by: Tan Ngoc Do <darkknightkhtn2008@gmail.com >
Signed-off-by: TanNgocDo <darkknightkhtn2008@gmail.com >
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
2026-06-09 05:11:37 -07:00
80e2c4462d
[ROCm][Compile] Fuse AR + RMSNorm + per-group FP8 quant (+ DSv3.2 indexer fan-out) ( #42864 )
...
Signed-off-by: Markus Hartikainen <markus.hartikainen@amd.com >
Co-authored-by: Frida Andersson <fanderss@amd.com >
2026-06-09 12:06:56 +00:00
Sage and GitHub
5b3807e862
[KV Events] Switch event structs from array to map encoding ( #42892 )
...
Signed-off-by: Sage Ahrac <sagiahrak@gmail.com >
2026-06-09 11:39:52 +00:00
Qiuyang Yue and GitHub
59401ac9f1
[Kernel][Perf] Tune fused_moe FP8 config for Qwen3-Next-80B tp=4 on H100 (+25% at batch 96-512) ( #44830 )
...
Signed-off-by: Qiuyang Yue <yueqiuyang1389@gmail.com >
2026-06-09 04:15:51 -07:00
d841386d27
[Rust Frontend] Support API key authentication ( #44321 )
...
Signed-off-by: RickyChen / 陳昭儒 <ricky.chen@infinirc.com >
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-09 10:15:20 +00:00
Mohammad Miadh Angkad and GitHub
fff9210b2a
[CI/Docs] Remove stale disagg prefill links ( #44918 )
...
Signed-off-by: Mohammad Miadh Angkad <176301910+mmangkad@users.noreply.github.com >
2026-06-09 03:05:53 -07:00
Ma Jian and GitHub
70db1488c5
[DSV4][XPU] Add MHC fused_post_pre support ( #44144 )
...
Signed-off-by: Ma Jian <jian1.ma@intel.com >
2026-06-09 17:23:17 +08:00
Andreas Karatzas and GitHub
2385e140d6
[ROCm][CI] Stabilize sleep-mode memory release ( #43022 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-09 16:51:12 +08:00
Nicolò Lucchesi and GitHub
dab60fc658
[Bugfix][CI] Fix test_offloading_connector.py::test_fs_tiering_offloading ( #44903 )
...
Signed-off-by: NickLucche <nlucches@redhat.com >
2026-06-09 00:57:34 -07:00
wang.yuqi and GitHub
996222f4bf
[CI] Reorganize entrypoints CI ( #44947 )
...
Signed-off-by: wang.yuqi <yuqi.wang@daocloud.io >
2026-06-09 00:46:11 -07:00
e6fc848d4f
[Bugfix][MiniCPM-o] Fix cuda/cpu device mismatch in Resampler2_5 pos_embed ( #43844 )
...
Signed-off-by: Parth Ashwin Jain <parthash@amd.com >
Co-authored-by: Parth Ashwin Jain <parthash@amd.com >
Co-authored-by: Cyrus Leung <tlleungac@connect.ust.hk >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-08 23:28:26 -07:00
Andreas Karatzas and GitHub
f843ac1a1c
[Bugfix][CI] Gemma3 Transformers multimodal encoder profiling and build prompt-embedding fixtures ( #44952 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-09 05:49:30 +00:00
7c2aa3108a
fix: prevent MM cache hang from stale LRU order keys ( #43595 )
...
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-08 22:48:31 -07:00
ebf53ba373
[Bugfix][Rust Frontend] Set a structured-output backend so requests do not 500 ( #44729 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
2026-06-08 22:30:54 -07:00
baacbfcebf
[ROCm][MLA][Bugfix] Reserve FP8 prefill workspace before lock for Kimi-K2.5 ( #42978 )
...
Signed-off-by: Xavier Aguilar <xavier.aguilarfruto@amd.com >
Co-authored-by: Douglas Lehr <91553416+dllehr-amd@users.noreply.github.com >
Co-authored-by: Andreas Karatzas <akaratza@amd.com >
2026-06-08 22:25:52 -07:00
d8218b1ee7
[Bugfix] Propagate ImportError from load_audio_pyav when vllm[audio] … ( #44750 )
...
Signed-off-by: littlecircle0730 <littlecircle0730@gmail.com >
Signed-off-by: Hsiao-Yuan Chen <hy.c@Hsiao-YuandeMacBook-Pro.local >
Co-authored-by: Hsiao-Yuan Chen <hy.c@Hsiao-YuandeMacBook-Pro.local >
2026-06-09 04:24:52 +00:00
9f153aa781
[MM][Perf][CG] Support ViT full CUDA graph for glm4_1v image and video inference ( #40576 )
...
Signed-off-by: grYe99 <guorongye99@gmail.com >
Co-authored-by: grYe99 <guorongye99@gmail.com >
Co-authored-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-09 11:13:56 +08:00
Kunshang Ji and GitHub
d3de61502f
[XPU][CI] fix test case path ( #44940 )
...
Signed-off-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-08 20:02:31 -07:00
Lanze Liu and GitHub
540aaf2140
[Bugfix][Model] Qwen3-Omni: move cu_seqlens to GPU before VIT attention ( #44264 )
...
Signed-off-by: Lanze Liu <lanzetech@gmail.com >
2026-06-08 20:02:27 -07:00
Lanze Liu and GitHub
4128605ad4
[Docs] Remove broken link to deleted disaggregated_prefill.sh ( #44929 )
...
Signed-off-by: Lanze Liu <lanzetech@gmail.com >
2026-06-09 01:40:06 +00:00
e2f993dc41
[WideEP] Integrate DeepEP v2 ( #41183 )
...
Signed-off-by: Tyler Michael Smith <tlrmchlsmth@gmail.com >
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-06-08 18:07:29 -07:00
Andreas Karatzas and GitHub
05cb606cad
[ROCm][CI] Re-route NixlConnector jobs ( #44809 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-08 18:57:11 -05:00
3f627ebef7
[Misc] usage_stats: report more engine, spec-decode, and EP config ( #44595 )
...
Signed-off-by: Zach Xi <zachary.xi@gmail.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-06-08 15:20:00 -07:00
Bugen Zhao and GitHub
bc941f375d
[Rust Frontend] [Refactor] Refine utility call interfaces ( #44856 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-08 15:13:08 -07:00
Michael Goin and GitHub
6afa25000c
[Bugfix] Canonicalize FP8 weight layout to (K, N) at the source ( #44735 )
...
Signed-off-by: mgoin <mgoin64@gmail.com >
2026-06-08 14:37:36 -06:00
Mohammad Miadh Angkad and GitHub
823a0ab754
[Bugfix][MoE] Fix fused MoE expert mapping helper call sites ( #44897 )
...
Signed-off-by: Mohammad Miadh Angkad <176301910+mmangkad@users.noreply.github.com >
2026-06-08 13:35:04 -07:00
Wentao Ye and GitHub
2c27c294c0
[Model Runner V2] Fix mrv2 mm lora issue ( #44450 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-08 14:30:09 -04:00
ba94a3b998
[Attention] Extract KV-cache update from CPU attention backend ( #40470 )
...
Signed-off-by: Diego Maniloff <diego.maniloff@gmail.com >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: Matthew Bonanni <mbonanni@redhat.com >
2026-06-08 15:43:05 +00:00
bnellnm and GitHub
dc68bd8c41
[MoE Refactor] FusedMoE/MoERunner inversion refactor ( #41184 )
...
Signed-off-by: Bill Nell <bnell@redhat.com >
2026-06-08 10:42:58 -04:00
753e9d55e6
[Quantization] add online fp8 ptpc ( #44132 )
...
Signed-off-by: walterbm <walter.beller.morales@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-08 22:42:11 +08:00
akii96 and GitHub
ac3409d162
[Benchmark] Auto-detect and correct client/server tokenizer mismatch for random dataset ( #44708 )
2026-06-08 06:10:20 -07:00
wang.yuqi and GitHub
93ee4cd47f
[CI] Consolidate multimodal entrypoint tests. ( #44819 )
...
Signed-off-by: wang.yuqi <yuqi.wang@daocloud.io >
2026-06-08 04:48:08 -07:00
Li, Jiang and GitHub
980796cd07
[CI/Build][CPU] Fix flaky CI image build failure and unexpected warnings ( #44852 )
...
Signed-off-by: jiang1.li <jiang1.li@intel.com >
2026-06-08 11:10:06 +00:00
Nicolò Lucchesi and GitHub
5add018beb
[Connector] Remove P2pNcclConnector ( #44854 )
...
Signed-off-by: NickLucche <nlucches@redhat.com >
2026-06-08 18:58:29 +08:00
d5fe994e79
[CPU][Spec Decode] Warn about throughput loss when libiomp5 is not preloaded ( #44419 )
...
Signed-off-by: jmamou <jonathan.mamou@intel.com >
Signed-off-by: Jonathan Mamou <jonathan.mamou@intel.com >
Co-authored-by: Li, Jiang <bigpyj64@gmail.com >
Co-authored-by: Li, Jiang <jiang1.li@intel.com >
2026-06-08 03:45:08 -07:00
Chaojun Zhang and GitHub
fa662b1a8b
[XPU] Cap topk/topp Triton BLOCK_SIZE to 4096 to fix Top-p mask difference failures ( #44470 )
...
Signed-off-by: Chaojun Zhang <chaojun.zhang@intel.com >
2026-06-08 09:36:51 +00:00
3c0b4432be
[Rust Frontend] Add /pause, /resume, /is_paused endpoints ( #44499 )
...
Signed-off-by: Sahil Singh <sahiilsiingh37@gmail.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
2026-06-08 17:28:37 +08:00
Sungjae Lee and GitHub
469f3dcf1d
[BugFix] Use served model name in gemma4 audio-tower error message ( #44828 )
...
Signed-off-by: Sungjae Lee <33976427+llsj14@users.noreply.github.com >
Signed-off-by: Sungjae Lee <sung-jae.lee@navercorp.com >
2026-06-08 06:58:31 +00:00
xiangdong and GitHub
94fcdd007f
[XPU][CI] Add more test cases in Intel GPU CI ( #43663 )
...
Signed-off-by: zengxian <xiangdong.zeng@intel.com >
2026-06-08 06:21:24 +00:00
Andreas Karatzas and GitHub
d9ff7e4e9a
[ROCm][CI] Stabilizing teardown and timeout of flaky tests to prevent rare OOMs ( #44761 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-08 14:11:17 +08:00
Andreas Karatzas and GitHub
967c5c3bc3
[ROCm][CI] Stage C mirrors ( #42793 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-07 23:00:59 -07:00
Yan Ma and GitHub
54c660c3a6
[XPU][Minor] format moe kernel name and add in kernel list ( #44771 )
...
Signed-off-by: Yan Ma <yan.ma@intel.com >
2026-06-08 13:58:16 +08:00
Shanshan Shen and GitHub
8fb0274415
[MM][CG] Simplify ViT CUDA graph interfaces ( #44484 )
...
Signed-off-by: shen-shanshan <467638484@qq.com >
2026-06-08 05:57:06 +00:00
Ma Jian and GitHub
eebce65756
[XPU]feat: add DeepSeek-V4 XPU attention decode path ( #42953 )
...
Signed-off-by: Ma Jian <jian1.ma@intel.com >
2026-06-08 13:27:12 +08:00
303916e93d
[Bugfix]: Fix assertion in MambaManager.allocate_slots() ( #39562 )
...
Signed-off-by: Holworth <kangqihan17@mails.ucas.ac.cn >
Signed-off-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: OpenAI Codex <codex@openai.com >
Co-authored-by: Nick Hill <nickhill123@gmail.com >
2026-06-08 00:34:37 -04:00
Taneem Ibrahim and GitHub
5633405964
Added extra_repr() to pooler classes to improve debuggability ( #44805 )
...
Signed-off-by: Taneem Ibrahim <taneem.ibrahim@gmail.com >
2026-06-08 03:19:31 +00:00
6124a98a9b
[Bugfix] Fix FunASR-Nano crash during initialization ( #44215 )
...
Signed-off-by: SunskyXH <sunskyxh@gmail.com >
Co-authored-by: Roger Wang <hey@rogerw.io >
2026-06-07 20:00:02 -07:00
Agata Dobrzyniewicz and GitHub
2ed0a9627b
[Kernel][Test] Make kernel tests for mamba dual-HW (CUDA + XPU) ( #42736 )
...
Signed-off-by: Dobrzyniewicz, Agata <agata.dobrzyniewicz@intel.com >
2026-06-08 08:22:47 +08:00
4dcd10eb0d
[1/N][KV-Cache Layout Refactor] Refactor DSV4 KV cache config construction ( #44454 )
...
Signed-off-by: Lucas Wilkinson <lwilkins@redhat.com >
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: Matthew Bonanni <mbonanni@redhat.com >
2026-06-07 14:53:37 +00:00
Charlie Fu and GitHub
228bcc436b
[ROCm][Kernel] Enable permute_cols for ROCm ( #44674 )
...
Signed-off-by: charlifu <charlifu@amd.com >
2026-06-07 09:50:03 +00:00
3d3ba460a2
Modify torch dependency in xpu.txt ( #43087 )
...
Signed-off-by: Bram Vanroy <2779410+BramVanroy@users.noreply.github.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-07 16:33:50 +08:00
Mohammad Miadh Angkad and GitHub
66ecfd0568
[Dependency] Remove stale cuDNN frontend upper bound ( #42599 )
...
Signed-off-by: Mohammad Miadh Angkad <176301910+mmangkad@users.noreply.github.com >
2026-06-07 16:09:25 +08:00
Andreas Karatzas and GitHub
f0f6805d8a
[CI] Stabilize the multi-audio OpenAI server path ( #44051 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-07 15:54:32 +08:00
15652a6b70
[Doc] Fix multimodal torch.compile troubleshooting to not use removed VLLM_TORCH_COMPILE_LEVEL ( #44378 )
...
Signed-off-by: Daoyuan Li <94409450+DaoyuanLi2816@users.noreply.github.com >
Co-authored-by: Cyrus Leung <tlleungac@connect.ust.hk >
2026-06-07 00:34:07 -07:00
Yifan Qiao and GitHub
51ef688831
[Bugfix][Mooncake] Fix per-group block_size/block_hash and group_idx in MooncakeStoreConnector KV events ( #44103 )
...
Signed-off-by: Yifan Qiao <yifanqiao@inferact.ai >
2026-06-07 07:12:43 +00:00
Jared Wen and GitHub
6ac69203e8
[videoloader] implement glm46v video loader ( #44417 )
...
Signed-off-by: JaredforReal <w13431838023@gmail.com >
2026-06-07 06:27:20 +00:00
1505b3d8a1
[Cohere] Enable Cohere Mini Code model and update Command A-plus test registry ( #44707 )
...
Signed-off-by: Terrencezzj <terrence@cohere.ai >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-06 22:44:16 -07:00
32f34d3935
[feature] add index share feature for DSA MTP ( #44420 )
...
Signed-off-by: JaredforReal <w13431838023@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-06 22:04:14 -07:00
Qiuyang Yue and GitHub
9c7f7741d4
[Bugfix] Fix benchmark_moe.py after inplace mechanism removal ( #44041 )
...
Signed-off-by: Qiuyang Yue <yueqiuyang1389@gmail.com >
2026-06-07 00:32:00 -04:00
6181e80fe0
[XPU] add xpu branch in compressed_tensors_moe_w4a4_mxfp4 ( #44540 )
...
Signed-off-by: Zhu, Zufang <zufang.zhu@intel.com >
Signed-off-by: Kunshang Ji <jikunshang95@gmail.com >
Co-authored-by: Kunshang Ji <jikunshang95@gmail.com >
2026-06-07 12:27:34 +08:00
Yan Ma and GitHub
3bb46975bd
[XPU][Feature] transparent sleep mode support for XPU platform ( #37149 )
...
Signed-off-by: Yan Ma <yan.ma@intel.com >
2026-06-07 10:45:31 +08:00
Chaojun Zhang and GitHub
810966453a
[XPU] Support cpu kv offloading and tiering offloading on XPU platform ( #36423 )
...
Signed-off-by: Chaojun Zhang <chaojun.zhang@intel.com >
2026-06-07 09:59:28 +08:00
Woosuk Kwon and GitHub
2a983c79ac
[DSV4] Decouple DS V4 Sparse MLA Metadata from DS V3.2 ( #44699 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-06-06 20:37:56 -04:00
bc5745a00f
[ROCm][MLA] Replace torch.cat in sparse-MLA forward_mqa with fused concat_mla_q ( #42838 )
...
Signed-off-by: Markus Hartikainen <markus.hartikainen@amd.com >
Signed-off-by: Frida Andersson <fanderss@amd.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
Co-authored-by: Frida Andersson <fanderss@amd.com >
Co-authored-by: Douglas Lehr <91553416+dllehr-amd@users.noreply.github.com >
Co-authored-by: TJian <tunjian.tan@embeddedllm.com >
2026-06-06 18:20:50 -05:00
Nick Hill and GitHub
3b3d5287fa
[BugFix] Resolve multiple async kv load deadlock ( #44560 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
2026-06-06 23:05:47 +00:00
062b05ff3a
[ROCm][Perf] Fused MoE W4A16 HIP kernel for AMD RDNA3 (gfx1100) ( #44075 )
...
Signed-off-by: JartX <sagformas@epdcenter.es >
Co-authored-by: TJian <tunjian.tan@embeddedllm.com >
2026-06-06 15:30:39 -05:00
fa27d4e9cf
[PERF] [Qwen3.5] Split mixed prefill+decode batches: route decodes to the recurrent kernel ( #44700 )
...
Signed-off-by: Vadim Gimpelson <vadim.gimpelson@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-06 22:13:50 +08:00
Vadim Gimpelson and GitHub
67d3792d99
[Bugfix] Fix Qwen3.5-FP8 nightly fail. Guard fused_add_rms_norm input/weight dtype mismatch in RMSNorm + quant fusion ( #44694 )
2026-06-06 08:46:14 -04:00
00d1fb7747
[Bugfix][ROCm] ApplyRotaryEmb: fall back to native when flash_attn rotary grid would exceed the HIP per-dim limit ( #43684 )
...
Signed-off-by: vLLM ROCm fix <noreply@example.com >
Signed-off-by: amd-fuweiy <fuweiy@amd.com >
Co-authored-by: vLLM ROCm fix <noreply@example.com >
Co-authored-by: TJian <tunjian.tan@embeddedllm.com >
2026-06-06 02:29:16 -07:00
c9b4b184b4
[Bugfix][Voxtral] Add fetch_audio to MistralCommonFeatureExtractor (transformers>=5.10 compat) ( #44559 )
...
Signed-off-by: Yadan Wei <weiyadan@amazon.com >
Co-authored-by: Yadan Wei <weiyadan@amazon.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-06 07:58:09 +00:00
f87df1df9e
[Bugfix][MoE] Snapshot max_cudagraph_capture_size into FusedMoEConfig ( #44613 )
...
Signed-off-by: aoshen02 <aoshen@inferact.ai >
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-06-05 23:14:41 -07:00
Taneem Ibrahim and GitHub
eafbb06331
[Misc] Replaced asserts with proper exceptions to improve UX for pooling ( #44593 )
...
Signed-off-by: Taneem Ibrahim <taneem.ibrahim@gmail.com >
2026-06-06 05:57:26 +00:00
ec0a31d4aa
[Bugfix][Kernel] Fix mHC fused-RMSNorm big-fuse miscompile for hidden_size != 4096 ( #44692 )
...
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-06 10:44:21 +08:00
Devin Lai and GitHub
c8beda4cc3
[Rust Frontend] Add Phi-4 mini JSON tool parser ( #44213 )
2026-06-06 10:40:00 +08:00
2f27c9a150
Preserve layout-changing clones ( #44574 )
...
Signed-off-by: Michael Gschwind <mgschwind@nvidia.com >
Co-authored-by: Michael Gschwind <mgschwind@nvidia.com >
2026-06-05 20:45:24 -04:00
4765f0f189
[Bugfix] Fix sequence_parallel_chunk_impl custom op aliasing its input ( #44130 )
...
Signed-off-by: Vadim Gimpelson <vadim.gimpelson@gmail.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-06-05 23:56:36 +00:00
Terrence Zhao and GitHub
a50e675b0d
[Cohere] fix RoutingMethodType ( #44021 )
...
Signed-off-by: Terrencezzj <terrence@cohere.ai >
2026-06-05 16:25:53 -07:00
Daoyuan Li and GitHub
f6a708ab2b
[Doc] Add Llama-3.2-3B-Instruct to batch-invariance tested models ( #44435 )
...
Signed-off-by: Daoyuan Li <94409450+DaoyuanLi2816@users.noreply.github.com >
2026-06-05 16:04:32 -07:00
4200f62147
[ROCm][GPT-OSS] Fuse RoPE + static Q FP8 quant on fused RoPE+KV path ( #42832 )
...
Signed-off-by: Aakif Nawaz <aakif.nawaz@amd.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-05 16:22:19 -05:00
Walter Beller-Morales and GitHub
c73b0d0db9
[Core][Engine] allow DP ray placement groups to be set on specific nodes ( #44669 )
...
Signed-off-by: walterbm <walter.beller.morales@gmail.com >
2026-06-05 20:07:47 +00:00
Harry Mellor and GitHub
e28e369f78
Male Mergify comment less spammy ( #44666 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-05 10:56:52 -07:00
yzong-rh and GitHub
703fb17b13
[Bugfix] GPT-OSS instruction rendering ( #44330 )
...
Signed-off-by: Yifan Zong <yzong@redhat.com >
2026-06-05 13:52:32 -04:00
Sting Lin and GitHub
b593396c7a
Upgrade tpu-inference to v0.21.0 ( #44621 )
...
Signed-off-by: StingLin <sting.lin@cienet.com >
2026-06-05 16:12:49 +00:00
Flame and GitHub
91e17d4315
Fix sarvam forward compatibility with transformers v5 ( #38804 )
...
Signed-off-by: vikrantpalle <vikrantpalle@gmail.com >
2026-06-05 11:51:44 -04:00
TJian and GitHub
aa6fb8a329
[Bugfix] [ROCm] [Critical] fallback to regular abi for ROCm ( #44648 )
...
Signed-off-by: tjtanaa <tunjian.tan@embeddedllm.com >
2026-06-05 15:51:17 +00:00
Effi Ofer and GitHub
6a894574bf
Add objectstore as a secondary tier to multi-tier kv cache offloading ( #41968 )
...
Signed-off-by: Effi Ofer <effi.ofer@gmail.com >
2026-06-05 18:05:41 +03:00
Yan Ma and GitHub
7f003a1285
Support MiniCPMV batched preprocessing ( #44609 )
...
Signed-off-by: Yan Ma <yan.ma@intel.com >
2026-06-05 15:05:31 +00:00
Harry Mellor and GitHub
ef0df7dbd6
[CI] Bump mypy version 1.19.1 -> 1.20.2 ( #44647 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-05 14:56:27 +00:00
Harry Mellor and GitHub
a80af24356
Speed up docs build ( #44635 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-05 14:51:44 +00:00
Harry Mellor and GitHub
c66b19800b
[CI] Bump mistral-common ( #44649 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-05 14:18:50 +00:00
6a11d72df7
[Reasoning][Structured Outputs] Add Command A plus tags for structural tags ( #44588 )
...
Signed-off-by: rishitdholakia13 <rishit+github@cohere.com >
Co-authored-by: Chauncey <chaunceyjiang@gmail.com >
2026-06-05 06:51:20 -07:00
Woosuk Kwon and GitHub
02d2da0748
[DSV4] Move more ops out of eager breakpoint ( #44561 )
2026-06-05 06:42:41 -07:00
adhithyamulticoreware and GitHub
bbb6c274c8
[Bugfix] Fix gemma4 crash on CPU: guard mem_get_info call ( #44615 )
...
Signed-off-by: ADHITHYA BALAKRISHNAN <adhithya.balakrishnan@multicorewareinc.com >
2026-06-05 12:47:56 +00:00
62215e72c6
Remove KV cache scale boilerplate from model weight loading methods ( #43167 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-05 05:19:04 -07:00
7fe7800fa4
[BUG] Fix FP64 Gumbel precision coverage ( #43150 )
...
Signed-off-by: tianyu-z <zhangtianyupro@gmail.com >
Signed-off-by: Tianyu Zhang <53099276+tianyu-z@users.noreply.github.com >
Co-authored-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: OpenAI Codex <codex@openai.com >
2026-06-05 19:04:14 +08:00
8a83e6f2d7
[Rust Frontend] Batch auto-abort requests by engine ( #44591 )
...
Signed-off-by: Hugh Ryan <197298026+HueCodes@users.noreply.github.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
2026-06-05 02:59:09 -07:00
Chunyang Wen and GitHub
efc347f1b2
docs: fix tokenizer optimization typo ( #44066 )
...
Signed-off-by: chunyang.wen <chunyang.wen@gmail.com >
2026-06-05 02:12:49 -07:00
Nicolò Lucchesi and GitHub
d98b8f371c
[NixlConnector] Initiate deprecation cycle for kv_both role ( #43874 )
...
Signed-off-by: NickLucche <nlucches@redhat.com >
2026-06-05 11:08:17 +02:00
Chao-Ju Chen and GitHub
e64237ae82
[Rust Frontend] Support include_reasoning=false ( #44391 )
...
Signed-off-by: RickyChen / 陳昭儒 <ricky.chen@infinirc.com >
2026-06-05 16:47:50 +08:00
d61d8566ec
[Bugfix] Update mistral tokenizer test for continue_final_message fix ( #44622 )
...
Signed-off-by: Xu Zhou <xuzhou9417@163.com >
Co-authored-by: Xu Zhou <xuzhou9417@163.com >
2026-06-05 16:13:26 +08:00
Uranus and GitHub
d2f70da116
fix: pad dummy run query_start_loc ( #44603 )
...
Signed-off-by: UranusSeven <109661872+UranusSeven@users.noreply.github.com >
2026-06-05 00:43:04 -07:00
6542d48964
[Bugfix] Fix test_invocations flaky failure with newer openai SDK ( #44618 )
...
Signed-off-by: Xu Zhou <xuzhou9417@163.com >
Co-authored-by: Xu Zhou <xuzhou9417@163.com >
2026-06-05 07:36:20 +00:00
Ting SUN and GitHub
ca73293fa6
[Bugfix][Rust Frontend] Fix UTF-8 char-boundary panic in incremental detokenizer ( #44620 )
...
Signed-off-by: Ting Sun <suntcrick@gmail.com >
2026-06-05 07:36:17 +00:00
Vic Wen and GitHub
ef3af56a97
Fix LLM.wait_for_completion output type docstring ( #44617 )
...
Signed-off-by: viiccwen <viiccwen@gmail.com >
2026-06-05 00:16:38 -07:00
b4a6f26c90
[ROCm][perf] Use workspace manager for sparse indexer allocations ( #41002 )
...
Signed-off-by: Stig-Arne Grönroos <stig-arne.gronroos@amd.com >
Signed-off-by: Tuukka Sarvi <tuukka.sarvi@amd.com >
Co-authored-by: Stig-Arne Grönroos <stig-arne.gronroos@amd.com >
Co-authored-by: TJian <tunjian.tan@embeddedllm.com >
2026-06-04 23:46:29 -07:00
165b7864d0
[ROCM] [FEAT] Integrate Aiter hipBLASLt GEMM online tuning ( #40426 )
...
Signed-off-by: hanlin12 <hanlin12@amd.com >
Signed-off-by: Han Lin <hanlin12@amd.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: TJian <tunjian.tan@embeddedllm.com >
2026-06-04 23:45:36 -07:00
Li, Jiang and GitHub
c505cd93ef
[CI/Build] Disable CPU-Compatibility Tests ( #44605 )
...
Signed-off-by: jiang1.li <jiang1.li@intel.com >
2026-06-05 13:14:26 +08:00
qizixi and GitHub
96229fa99e
[KVConnector][1/N] PP-aware handshake aggregation and intermediate-PP output plumbing ( #43720 )
...
Signed-off-by: zixi-qi <zixi@inferact.ai >
2026-06-04 22:04:19 -07:00
da1daf40bf
[Bugfix] Exclude vision embedder from quantization in Gemma4 Unified ( #44571 )
...
Signed-off-by: Luciano Martins <lucianommartins@users.noreply.github.com >
Co-authored-by: Luciano Martins <lucianommartins@users.noreply.github.com >
2026-06-04 20:47:38 -07:00
Woosuk Kwon and GitHub
4efd6ffde0
[DSV4] Refactor DeepseekV4Attention ( #44569 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-06-04 20:23:07 -07:00
Chris Leonard and GitHub
56aff0dd15
[10/n] Migrate cuda_view and silu_and_mul_per_block_quant kernels to torch stale ABI. ( #44334 )
2026-06-04 20:14:43 -07:00
zofia and GitHub
063ce98fb7
[XPU][MoE] support block_fp8_moe on xpu ( #42139 )
...
Signed-off-by: Zhu, Zufang <zufang.zhu@intel.com >
Signed-off-by: zofia <110436990+zufangzhu@users.noreply.github.com >
2026-06-05 08:36:58 +08:00
Bugen Zhao and GitHub
62d6f06e3d
[Rust Frontend] Skip loading multimodal processor if --language-model-only is specified ( #44500 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-04 17:02:54 -07:00
Schwinn Saereesitthipitak and GitHub
b7c5baf63d
fix: keep DeepSeek V4 RoPE cache on inv_freq device ( #43926 )
...
Signed-off-by: Schwinn Saereesitthipitak <schwinns@nvidia.com >
Signed-off-by: Schwinn Saereesitthipitak <17022745+galletas1712@users.noreply.github.com >
2026-06-05 02:30:29 +04:00
Jiangyun Zhu and GitHub
a55fccfc7c
[mamba] unify KDA conv states into one cache to match 2-state SSM layout ( #44539 )
2026-06-04 20:38:05 +02:00
Wentao Ye and GitHub
41a4829f22
[Logs Refactor] Optimize shutdown logs, easier to follow and consistent ( #43707 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-04 14:36:32 -04:00
38fd2405f3
use split_group for pytorch process group creation ( #41980 )
...
Signed-off-by: Tushar Jain <tushar00jain@users.noreply.github.com >
Co-authored-by: Tushar Jain <tushar00jain@users.noreply.github.com >
2026-06-04 14:36:07 -04:00
Agata Dobrzyniewicz and GitHub
a947f7a420
[Kernel][Test] Extend lightning_attn and awq_triton kernel tests to XPU ( #43307 )
...
Signed-off-by: Dobrzyniewicz, Agata <agata.dobrzyniewicz@intel.com >
2026-06-04 14:25:59 -04:00
bnellnm and GitHub
439203d32c
[Bugfix] Fix test_cutlass_moe.py ( #44380 )
...
Signed-off-by: Bill Nell <bnell@redhat.com >
2026-06-04 14:18:52 -04:00
Taneem Ibrahim and GitHub
8d9536a775
[Misc] Add unit tests for pooler head classes ( #44471 )
...
Signed-off-by: Taneem Ibrahim <taneem.ibrahim@gmail.com >
2026-06-04 17:59:25 +00:00
Fadi Arafeh and GitHub
3da29aa4a5
[DOC] Add INT8 W4A8 docs and Arm's supported quantization schemes ( #34894 )
...
Signed-off-by: Fadi Arafeh <fadi.arafeh@arm.com >
2026-06-04 16:27:17 +00:00
06f94633e7
[ROCm][CI] Add test for Aiter unified attn kernel ( #44436 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
Signed-off-by: Divakar Verma <divakar.verma@amd.com >
Co-authored-by: Andreas Karatzas <akaratza@amd.com >
2026-06-04 16:15:05 +00:00
99ef652907
[Bugfix] Reject non-positive values for ParallelConfig int knobs ( #44057 )
...
Signed-off-by: jwzheng96 <jianweizheng@pku.edu.cn >
Signed-off-by: JianweiZheng <32029023+jwzheng96@users.noreply.github.com >
Co-authored-by: Wentao Ye <44945378+yewentao256@users.noreply.github.com >
2026-06-04 11:46:50 -04:00
Tyler Michael Smith and GitHub
4cc78c9d5d
[Core] Freeze garbage collector in workers after model initialization ( #44363 )
...
Signed-off-by: Tyler Michael Smith <tlrmchlsmth@gmail.com >
2026-06-04 08:39:04 -07:00
tc-mb and GitHub
3dbb4e0ace
[Bugfix] MiniCPM-V-4.6 video inference crash: placeholder count mismatches visual embedding count ( #44509 )
...
Signed-off-by: tc-mb <tianchi_cai@icloud.com >
2026-06-04 08:22:30 -07:00
b21443e23c
Add model support for granite speech plus ( #43519 )
...
Signed-off-by: Zvi Kons[WSL] <zvi@il.ibm.com >
Signed-off-by: Zvi Kons (BlueVela) <zvi@il.ibm.com >
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-06-04 14:47:48 +00:00
Michael Goin and GitHub
06ee2d8433
[Quant] Support compressed-tensors WNA8O8Int linears and WNInt embeddings ( #44340 )
...
Signed-off-by: mgoin <mgoin64@gmail.com >
2026-06-04 07:40:33 -07:00
Yongye Zhu and GitHub
b5235fca2e
[DSv4] Adding TRTLLM gen attention kernel ( #43827 )
2026-06-04 07:35:09 -07:00
Andreas Karatzas and GitHub
3e77036768
[ROCm][CI] Specifying time outs for the lm eval models ( #44255 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-04 22:35:00 +08:00
Andreas Karatzas and GitHub
6f68ca3e91
[ROCm][CI] Stabilize memory-release in the Hybrid model generation tests ( #44046 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-04 22:34:24 +08:00
Turner Jabbour and GitHub
0c96dd64fb
[ROCm] Bump fastsafetensors to v0.3.2 from PyPI, remove git source build ( #43625 )
...
Signed-off-by: Turner Jabbour <doubleujabbour@gmail.com >
2026-06-04 07:30:57 -07:00
Nicolò Lucchesi and GitHub
68f5e565c9
[PD][Nixl] Mamba prefix caching mode support ( #42554 )
...
Signed-off-by: NickLucche <nlucches@redhat.com >
2026-06-04 06:41:46 -07:00
QiliangCui2023 and GitHub
9354fb1ba5
[Bugfix][Compile] Guard per_token_group_fp8_quant lookup on non-CUDA platforms ( #44476 )
2026-06-04 09:31:50 -04:00
Harry Mellor and GitHub
f35b557239
Add GH token to docs build pre run check ( #44534 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-06-04 05:43:49 -07:00
Dipika Sikka and GitHub
e68988a248
Refactor CT NVFP4 linear to use a single class ( #42443 )
2026-06-04 08:25:08 -04:00
4b87b3e845
[Bugfix] fix EVS for qwen3-vl ( #44205 )
...
Signed-off-by: Rui "Garry" Gao <garrygaogg@gmail.com >
Co-authored-by: Cyrus Leung <tlleungac@connect.ust.hk >
2026-06-04 11:06:51 +00:00
90619351e3
[Attention] Mamba attention module refactor - LINEAR ( #43556 )
...
Signed-off-by: wangxiyuan <wangxiyuan1007@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-04 18:45:29 +08:00
d0975a4b50
[perf] Add gemma RMS AR fusion ( #42646 )
...
Signed-off-by: jiahanc <173873397+jiahanc@users.noreply.github.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: Jiangyun Zhu <riverclouds.zhu@qq.com >
2026-06-04 01:33:59 -07:00
Kevin_Xiong and GitHub
1bdc60ed53
Fix Kimi-K2.5 FlashInfer ViT metadata ( #44493 )
...
Signed-off-by: Kevin-XiongC <kevin_xiong1997@outlook.com >
2026-06-04 08:14:35 +00:00
a6183563b6
[Prefix Caching] DeepSeekv4 - Support selective prefix-cache retention for sliding-window KV cache ( #43447 )
...
Signed-off-by: wzhao18 <wzhao18.sz@gmail.com >
Signed-off-by: Yifan Qiao <yifanqiao@inferact.ai >
Co-authored-by: Yifan Qiao <yifanqiao@inferact.ai >
2026-06-04 00:48:31 -07:00
Andreas Karatzas and GitHub
22c2e87555
[CI] Reverted gitignore changes ( #44497 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-04 00:37:44 -07:00
wang.yuqi and GitHub
d01d0b4646
[Frontend] Consolidate online serving utils. ( #44479 )
...
Signed-off-by: wang.yuqi <yuqi.wang@daocloud.io >
2026-06-04 06:49:31 +00:00
b4b4aaa70e
[Inductor] Fast-path Inductor fallback for vllm::*/vllm_aiter::* custom ops ( #42129 )
...
Signed-off-by: Oxana Korzh <okorzh@amd.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-06-04 00:03:52 -05:00
Andreas Karatzas and GitHub
5e2af28838
[CI] Resolve release V2 docker build after ROCm CI wheels change ( #44463 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-03 21:35:40 -07:00
4f423bd5bc
[EPLB] Nixl communicator optimization. Zero-copy transfers ( #41633 )
...
Signed-off-by: ilmarkov <markovilya197@gmail.com >
Signed-off-by: Markov Ilya <markovilya19@gmail.com >
Signed-off-by: Tyler Michael Smith <tlrmchlsmth@gmail.com >
Co-authored-by: Markov Ilya <markovilya19@gmail.com >
Co-authored-by: Nicolò Lucchesi <nlucches@redhat.com >
Co-authored-by: Tyler Michael Smith <tyler@neuralmagic.com >
Co-authored-by: Tyler Michael Smith <tlrmchlsmth@gmail.com >
2026-06-04 03:40:34 +00:00
f0cd590d62
optimize the compressor 128 split cutedsl kernel ( #44230 )
...
Signed-off-by: Jie Fang <jief@nvidia.com >
Co-authored-by: Yongye Zhu <zyy1102000@gmail.com >
2026-06-03 20:22:57 -07:00
e6018c644a
[Refactor] Remove dead code in tests and parallel_state ( #41471 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-03 19:32:39 -07:00
f25952e59b
[MM][Perf][CG] Support ViT full CUDA graph for InternVL ( #41759 )
...
Signed-off-by: oguz <oguzhankir17@gmail.com >
Co-authored-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-04 10:24:25 +08:00
maobaolong and GitHub
b58e082d95
[KV Connector] Update lmcache kv_offloading_backend to use LMCacheMPConnector ( #42865 )
...
Signed-off-by: baoloongmao <baoloongmao@tencent.com >
2026-06-03 19:23:55 -07:00
Ted Mostly and GitHub
0c1e6f63f5
[Bugfix] Fix VLLMNotFoundError when using LoRA adapter name in poolin… ( #44410 )
...
Signed-off-by: Ted Mostly <wanghenshui@qq.com >
2026-06-04 02:22:03 +00:00
Giancarlo Delfin and GitHub
ceb0111a90
[Model Runner V2][Spec Decode] Add Gemma4 MTP support ( #43241 )
...
Signed-off-by: Giancarlo Delfin <gdelfin@inferact.ai >
2026-06-04 00:51:06 +00:00
0414d75410
[XPU] skip unapplied UT in test_gpu_model_runner.py ( #44289 )
...
Signed-off-by: Yan Ma <yan.ma@intel.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-04 08:48:17 +08:00
128adabfe0
[Bugfix] Fix Gemma4 MTP block_table batch_size mismatch under concurrent load ( #43982 )
...
Signed-off-by: Dmytro Kuntso <dkuntso@amazon.co.uk >
Co-authored-by: Dmytro Kuntso <dkuntso@amazon.co.uk >
2026-06-03 17:11:10 -07:00
bdbf08fc02
Bump actions/stale from 10.1.1 to 10.2.0 ( #35078 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-03 14:14:41 -07:00
Woosuk Kwon and GitHub
6bad553f4e
[Minor] Remove FlashInfer version check in topk_topp_sampler ( #44442 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-06-03 21:06:00 +00:00
91945b6e4a
[Bug Fix][Model Runner V2][Spec Decode] Warmup & capture with different attention states for speculator prefill ( #44253 )
...
Signed-off-by: Giancarlo Delfin <gdelfin@inferact.ai >
Co-authored-by: Woosuk Kwon <woosuk@inferact.ai >
2026-06-03 13:32:40 -07:00
2b237c7a41
[Bugfix] Honor tool_choice="none" in Chat Completions streaming ( #42752 )
...
Signed-off-by: hoobnn <111053672+hoobnn@users.noreply.github.com >
Signed-off-by: sfeng33 <4florafeng@gmail.com >
Co-authored-by: sfeng33 <4florafeng@gmail.com >
2026-06-03 13:27:45 -07:00
Wentao Ye and GitHub
dad95e34d8
[Feature] Support batch invariant rms norm with residual ( #42453 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-03 15:22:01 -04:00
a248b45d05
[Model] Add Gemma4 Unified (encoder-free) support ( #44429 )
...
Signed-off-by: Luciano Martins <lucianommartins@users.noreply.github.com >
Co-authored-by: Luciano Martins <lucianommartins@users.noreply.github.com >
2026-06-03 12:01:39 -07:00
linitra24 and GitHub
271328e256
[LoRA] Fix dedup for post-replacement module aliases ( #44413 )
...
Signed-off-by: bk-201 <joy25810@foxmail.com >
2026-06-03 18:23:23 +00:00
Wentao Ye and GitHub
2b91012650
[Refactor] Remove dead code fp quant ( #44122 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-06-03 14:22:23 -04:00
JartX and GitHub
5b2a2beade
[ROCm][CI] Move Model Executor test step from MI250 to MI300 (gfx942) ( #44370 )
...
Signed-off-by: JartX <sagformas@epdcenter.es >
2026-06-03 12:23:51 -05:00
59d0236193
[10b/n] Migrate custom all-reduce, DeepSeek V4 fused MLA, MiniMax reduce-RMS, and MXFP8 MoE to libtorch stable ABI ( #44365 )
...
Signed-off-by: Chris Leonard <chleonar@redhat.com >
Signed-off-by: Shengqi Chen <harry-chen@outlook.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-06-04 00:29:46 +08:00
0a5cbf633e
Handle spinloop ext load failure gracefully ( #43659 )
...
Signed-off-by: Patrick Schlangen <pschlan@amd.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-06-03 16:09:52 +00:00
Willow Lopez and GitHub
51e0c579b0
fix(config): validate max_num_scheduled_tokens >= 0 on all paths ( #44207 )
...
Signed-off-by: Oxygen56 <1391083091@qq.com >
2026-06-03 16:06:45 +00:00
0c6631f02a
[KVCache] Support Pluggable KVCacheSpec ( #37505 )
...
Signed-off-by: MengqingCao <cmq0113@163.com >
Signed-off-by: Mengqing Cao <cmq0113@163.com >
Signed-off-by: zjy0516 <riverclouds.zhu@qq.com >
Co-authored-by: zjy0516 <riverclouds.zhu@qq.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-03 09:05:16 -07:00
Nicolò Lucchesi and GitHub
df7252c343
[CI] Align PD tests to HMA on by default ( #44174 )
...
Signed-off-by: NickLucche <nlucches@redhat.com >
2026-06-04 00:04:30 +08:00
Jee Jee Li and GitHub
4d1fd13613
[CI/Build] Fix LoRA testing ( #44425 )
...
Signed-off-by: Jee Jee Li <pandaleefree@gmail.com >
2026-06-03 08:58:06 -07:00
Nick Hill and GitHub
ec8d60bea8
[Model Runner V2] Use FlashInfer sampler ( #42472 )
2026-06-03 07:59:31 -07:00
27f1d34a23
[Frontend][Responses API] Move developer-to-system conversion into HF renderer ( #43590 )
...
Signed-off-by: chaunceyjiang <chaunceyjiang@gmail.com >
Co-authored-by: kdcyberdude <kdsingh.cyberdude@gmail.com >
Co-authored-by: Ben Browning <bbrownin@redhat.com >
2026-06-03 14:52:24 +00:00
Flora Feng and GitHub
e3e132d2dd
[Refactor] Suppress SyntaxWarning from ast.literal_eval in tool parsers ( #44346 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-03 10:42:19 -04:00
e5232679a3
[XPU] Add XPU block-scaled W8A8 fp8 path ( #39968 )
...
Signed-off-by: Wu, Xiaochang <xiaochang.wu@intel.com >
Signed-off-by: Xiaochang Wu <xiaochang.wu@intel.com >
Co-authored-by: Yuxiang <yuxiang.liang@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-03 20:16:19 +08:00
309385a359
[Rust Frontend] Add /server_info to Rust frontend ( #43942 )
...
Signed-off-by: xunzhuo <xunzhuo@vllm-semantic-router.ai >
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
2026-06-03 04:30:47 -07:00
3d76f395e3
[SharedOffloadRegion] Align blocks to page-size ( #43689 )
...
Signed-off-by: varun sundar rabindranath <vsundarr@redhat.com >
Co-authored-by: varun sundar rabindranath <vsundarr@redhat.com >
2026-06-03 14:25:57 +03:00
Li, Jiang and GitHub
823d271c0d
[Attention][CPU] Standardize kv layout to blocks first ( #44393 )
...
Signed-off-by: jiang1.li <jiang1.li@intel.com >
2026-06-03 19:03:09 +08:00
Andy Lo and GitHub
95b1615ec9
[Perf] Improve multimodal item handling from O(n) to O(log n) per step ( #44212 )
...
Signed-off-by: Andy Lo <andy@mistral.ai >
2026-06-03 11:00:26 +00:00
1fa9ea09f6
[Perf] Triton fast path for small CPU→GPU swap_blocks_batch in the offloading connector ( #42212 )
...
Signed-off-by: Itay Etelis <itay.etelis@ibm.com >
Co-authored-by: Itay Etelis <itay.etelis@ibm.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-03 13:38:17 +03:00
02564b4de0
[XPU]fallback to TRITON_ATTN for vit attn on xpu when use float32 dtype ( #43759 )
...
Signed-off-by: Yan Ma <yan.ma@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-03 03:20:21 -07:00
Flora Feng and GitHub
209709a8c1
[Bugfix] Fix unstreamed tool call args dropped in Responses API streaming ( #44348 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-03 03:19:08 -07:00
ace95c9cf8
[Bugfix] Update TrtLLM MoE routing methods ( #44347 )
...
Signed-off-by: wzhao18 <wzhao18.sz@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-03 02:56:43 -07:00
Shanshan Shen and GitHub
0e2b13103b
[Doc] Update ViT CUDA graph interfaces ( #44388 )
...
Signed-off-by: shen-shanshan <467638484@qq.com >
2026-06-03 01:20:59 -07:00
Bugen Zhao and GitHub
449be4f934
[Rust Frontend] Fix several hf chat template rendering issues ( #44311 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-03 01:04:43 -07:00
6550ff12f2
[Rust Frontend] Add dynamic LoRA endpoints ( #43778 )
...
Signed-off-by: xunzhuo <xunzhuo@vllm-semantic-router.ai >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
2026-06-03 07:55:29 +00:00
4aaed4ca22
[Rust Frontend] Add server router extension hook ( #43774 )
...
Signed-off-by: NolanHo <kujyo.eia.serias@gmail.com >
Co-authored-by: OpenAI Codex <codex@openai.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
2026-06-03 07:45:31 +00:00
7268457999
[KV Offloading] Enable HMA models for Tiering Offloading ( #44287 )
...
Signed-off-by: varun sundar rabindranath <vsundarr@redhat.com >
Co-authored-by: varun sundar rabindranath <vsundarr@redhat.com >
2026-06-03 10:03:00 +03:00
9af53a3c13
[Perf] Add tuned selective_state_update configs for H200 and RTX PRO … ( #44251 )
...
Signed-off-by: Majid Taheri Andani <tahemaji@amazon.com >
Co-authored-by: Majid Taheri Andani <tahemaji@amazon.com >
Co-authored-by: tomeras91 <57313761+tomeras91@users.noreply.github.com >
2026-06-02 23:59:01 -07:00
Andreas Karatzas and GitHub
87954eb50e
[ROCm][CI] Optimize ROCm Docker build: registry cache, DeepEP, and ci-bake script ( #36949 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-02 23:43:07 -07:00
Charlie Fu and GitHub
71df063c49
Enable perf_token_group_quant/_C_stable_libtorch for ROCm ( #42758 )
...
Signed-off-by: charlifu <charlifu@amd.com >
2026-06-02 23:23:28 -07:00
Albert Cheng and GitHub
e0081ef8cf
[Benchmark] Enable reasoning-model (thinking) benchmarking via --chat-template-kwargs for client-rendered datasets ( #44244 )
...
Signed-off-by: Albert Cheng <albertching0112@gmail.com >
2026-06-02 22:49:51 -07:00
f0204358d9
[Bugfix] fix crash in postprocess for null tool args ( #43862 )
...
Signed-off-by: William-Rom <william.rom@intility.no >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-02 22:17:26 -07:00
Willow Lopez and GitHub
597bc15936
fix: resolve CUTLASS fmin compatibility for DeepSeek-V4 init ( #44236 )
...
Signed-off-by: Willow Lopez <100782273+Oxygen56@users.noreply.github.com >
2026-06-03 01:07:10 -04:00
Rotem Shavitt and GitHub
3f0a91bb96
Nit Changes in Tiered KV Offload ( #44293 )
...
Signed-off-by: Rotem Shavitt <rshavitt@gmail.com >
2026-06-02 21:53:21 -07:00
Flora Feng and GitHub
e67063826b
[CI] Add missing vllm/parser/ CI trigger and fix test_parse.py ( #44352 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-02 21:05:19 -07:00
Andreas Karatzas and GitHub
53b88d1dfc
[CI] Reject out-of-vocabulary before they reach the GPU logprob path ( #44042 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-02 22:27:52 -05:00
JartX and GitHub
7b476c8f14
[ROCm][CI] Skip fp8 reload tests on gfx90a (MI250) ( #44369 )
...
Signed-off-by: JartX <sagformas@epdcenter.es >
2026-06-02 22:27:14 -05:00
JartX and GitHub
4454a18695
[ROCm][CI] Fix stale wvSplitK GEMM fallback test for N=5 ( #44368 )
...
Signed-off-by: JartX <sagformas@epdcenter.es >
2026-06-02 22:00:25 -05:00
02a01496fc
[Platform] Add is_cumem_allocator_available ( #43838 )
...
Signed-off-by: wangxiyuan <wangxiyuan1007@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-03 10:54:50 +08:00
Kevin H. Luu and GitHub
27a93cd426
[docker] Stop using extra-index-url for flashinfer-jit-cache ( #44366 )
...
Signed-off-by: Kevin H. Luu <khluu000@gmail.com >
2026-06-02 18:58:22 -07:00
Wei Zhao and GitHub
969aec4bc8
[Bugfix] Fix Deepseek v4 non-mega-moe model init error ( #44356 )
...
Signed-off-by: wzhao18 <wzhao18.sz@gmail.com >
2026-06-02 18:26:30 -07:00
ca17b6b17d
[Perf] Apply single-pass min_larger finding and binary search in Triton Top-p path. ( #42191 )
...
Signed-off-by: js_park <cakeng@naver.com >
Co-authored-by: Nick Hill <nickhill123@gmail.com >
2026-06-02 17:57:26 -07:00
Woosuk Kwon and GitHub
b254e0456c
[DSV4] Minor cleanup for DeepseekV4MegaMoEExperts ( #44367 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-06-02 17:54:27 -07:00
Daoyuan Li and GitHub
bd98e97557
[Misc] Remove dead VLLM_RPC_TIMEOUT env var and fix profiling doc that references it ( #44128 )
...
Signed-off-by: Daoyuan Li <94409450+DaoyuanLi2816@users.noreply.github.com >
2026-06-03 00:22:10 +00:00
a4ac746405
[MoE/b12x] Accept W4A16 (kNvfp4Static, None) in FlashInferB12xExperts supports check ( #43332 )
...
Signed-off-by: Junhao Shen <junshen@nvidia.com >
Co-authored-by: Vadim Gimpelson <156319763+vadiklyutiy@users.noreply.github.com >
2026-06-02 15:20:37 -07:00
8b3b71ee9d
[CI/Build] Bump flashinfer to v0.6.12 ( #44036 )
...
Signed-off-by: Vadim Gimpelson <vadim.gimpelson@gmail.com >
Co-authored-by: Jee Jee Li <pandaleefree@gmail.com >
2026-06-02 15:19:05 -07:00
Siddharth Bedekar and GitHub
0917a009d3
Fix sparse NCCL weight transfer test construction ( #44345 )
...
Signed-off-by: Siddharth Bedekar <bedeksid@gmail.com >
2026-06-02 21:51:21 +00:00
3099de3617
[Kernel][MoE] Add GELU_TANH to CPU, CUTLASS, and WNA16 MoE backends ( #42027 )
...
Signed-off-by: lesj0610 <lesj0610@users.noreply.github.com >
Co-authored-by: lesj0610 <lesj0610@users.noreply.github.com >
2026-06-02 17:12:08 -04:00
Nick Hill and GitHub
e15f20258b
[ModelRunnerV2] Avoid pipeline parallel bubbles ( #42187 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
2026-06-02 14:02:01 -07:00
557781131a
[Misc] Remove stray empty file ( #44350 )
...
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-02 12:53:03 -07:00
Yifan Qiao and GitHub
e9e08c49b9
[Bugfix] Cache the EAGLE/MTP lookahead block in the SWA prefix-cache mask ( #44082 )
...
Signed-off-by: Yifan Qiao <yifanqiao@inferact.ai >
2026-06-02 12:21:07 -07:00
Woosuk Kwon and GitHub
e4a2e584e5
[MRV2] Remove assignment of graph_pool in cudagraph_utils ( #44338 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-06-02 11:50:27 -07:00
b8b49e2395
Bump actions/github-script from 8.0.0 to 9.0.0 ( #39667 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-02 11:26:57 -07:00
da107a59e5
[MRV2] Also enable MRV2 for Llama and Mistral dense models ( #43458 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: yewentao256 <zhyanwentao@126.com >
2026-06-02 11:18:46 -07:00
ed9a7526b6
[Anthropic] Support system role messages inside messages array ( #44283 )
...
Signed-off-by: chaunceyjiang <chaunceyjiang@gmail.com >
Co-authored-by: Aleksandar Yanakiev <alexander.yanakiev@discretestack.com >
Co-authored-by: Ang Kah Min, Kelvin <syraxius@hotmail.com >
2026-06-02 18:13:54 +00:00
2427094152
[Feature] Support EPLB for DeepSeek v4 Mega Moe ( #43339 )
...
Signed-off-by: wzhao18 <wzhao18.sz@gmail.com >
Co-authored-by: Wei Zhao (Engrg-Hardware 1) <weizha@login-lyris01.lyris.clusters.nvidia.com >
2026-06-02 10:56:44 -07:00
Kartavya sonar and GitHub
fe32e7830b
[Bugfix] flashinfer: fail fast when --kv-cache-dtype nvfp4 used on unsupported arch ( #43669 )
...
Signed-off-by: Kartavya Sonar <sonarkartavya@gmail.com >
2026-06-02 10:50:00 -07:00
afcb580715
[BugFix] Fix Humming MoE deploy error ( #43100 )
...
Signed-off-by: Alireza Dadgarnia <dadgarnia@Alirezas-MacBook-Pro-2.local >
Signed-off-by: Alireza Dadgarnia <49554709+adotdad@users.noreply.github.com >
Co-authored-by: Alireza Dadgarnia <dadgarnia@Alirezas-MacBook-Pro-2.local >
Co-authored-by: Jinzhen Lin <linjinzhen@hotmail.com >
2026-06-02 09:32:50 -07:00
3f3e2702c2
[XPU] Enable rms_norm/act quant fusions ( #43963 )
...
Signed-off-by: zhenwei-intel <zhenwei.liu@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-02 16:14:41 +00:00
Flora Feng and GitHub
478b49ddec
[Refactor] Remove dead code from parser infrastructure ( #44279 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-02 12:08:27 -04:00
Nick Hill and GitHub
cab5c9a2a9
[Core] Move max_concurrent_batches to VllmConfig ( #44274 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
2026-06-02 08:57:25 -07:00
Brian Dellabetta and GitHub
774e552397
[compressed-tensors] Asymmetric support for MoE WNA16 marlin ( #44025 )
...
Signed-off-by: Brian Dellabetta <bdellabe@redhat.com >
2026-06-02 08:51:45 -07:00
XiaoZ and GitHub
53fa09d085
[Misc] Support local image encoding in benchmarks ( #43843 )
...
Signed-off-by: xiaoz <Sukra1@outlook.com >
2026-06-02 15:15:06 +00:00
Chris Leonard and GitHub
4d93bc35c9
Migrate header files to torch stable abi ( #44013 )
2026-06-02 08:09:52 -07:00
Bugen Zhao and GitHub
586201ebdc
[Rust Frontend] Cover different thinking modes in roundtrip tests ( #44320 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-02 07:51:25 -07:00
pschlan-amd and GitHub
88f172188b
[ROCm] Fix AITER RMSNormQuantFusion for Kimi-Linear ( #44308 )
...
Signed-off-by: Patrick Schlangen <pschlan@amd.com >
2026-06-02 14:50:21 +00:00
Bugen Zhao and GitHub
880fc032f4
[Rust Frontend] Support recursive tool parameter conversion ( #44299 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-06-02 07:45:35 -07:00
6314de8bad
[XPU] [Bug] remove xpuw4a16 output size check ( #44168 )
...
Signed-off-by: Zhu, Zufang <zufang.zhu@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-02 22:26:20 +08:00
IdoAtadTD and GitHub
c91a87f01a
[BugFix] [GDN] Read linear_key_head_dim from hf_text_config for multimodal models ( #43978 )
...
Signed-off-by: IdoAtadTD <ido.atad@twodelta.com >
2026-06-02 17:17:55 +03:00
Matthew Bonanni and GitHub
ea0d045a05
[FlashAttention] Sync FA with upstream ( #44065 )
...
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
2026-06-02 07:15:37 -07:00
0bdfd5eb84
[Bugfix] Vendor MiniCPMV/MiniCPMO processors to unblock Transformers v5 ( #44282 )
...
Signed-off-by: guanwei-wu <b08901019@ntu.edu.tw >
Signed-off-by: wjinxu <1299461899@qq.com >
Co-authored-by: guanwei-wu <b08901019@ntu.edu.tw >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-06-02 07:14:38 -07:00
0cbc48c4f9
Support ModelOpt MXFP8 non-gated MoE ( #42958 )
...
Signed-off-by: tbarnatan <tbarnatan@nvidia.com >
Co-authored-by: Michael Goin <mgoin64@gmail.com >
2026-06-02 13:56:03 +00:00
2fd0e52252
[Bugfix] Fix Gemma4 startup crash with recent transformers multimodal processor ( #44232 )
...
Signed-off-by: Luciano Martins <lucianommartins@users.noreply.github.com >
Co-authored-by: Luciano Martins <lucianommartins@users.noreply.github.com >
2026-06-02 13:42:40 +00:00
654bd2bca4
[Bugfix] Sync block_size from EngineCore to frontend for hybrid Mamba… ( #42967 )
...
Signed-off-by: Amit Gruner <agruner@crusoe.ai >
Co-authored-by: Amit Gruner <agruner@crusoe.ai >
Co-authored-by: Jiangyun Zhu <riverclouds.zhu@qq.com >
2026-06-02 13:41:00 +00:00
wang.yuqi and GitHub
b623f7ea95
[Frontend] Consolidate dev entrypoints. ( #44170 )
...
Signed-off-by: wang.yuqi <yuqi.wang@daocloud.io >
2026-06-02 06:30:21 -07:00
Shreyas Kulkarni and GitHub
0eeba5eec1
Fix DFlash prefix cache corruption due to missing lookahead block ( #42971 )
...
Signed-off-by: Shreyas Kulkarni <shreyas.gp269@gmail.com >
2026-06-02 12:06:33 +00:00
f69ede495b
[XPU][Mamba] Triton-based selective scan forward op for XPU ( #43421 )
...
Signed-off-by: Marceli Fylcek <marceli.fylcek@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-02 03:50:26 -07:00
Ronen Schaffer and GitHub
2a2b5ca791
[KV Offload] Add on_schedule_end() hook to separate step lifecycle from event draining ( #44206 )
...
Signed-off-by: Ronen Schaffer <ronen.schaffer@ibm.com >
2026-06-02 13:42:52 +03:00
689b0eeb9e
[HARDWARE][POWER] Enable SHM communicator support for PowerPC ( #43754 )
...
Signed-off-by: Rukhaiya <rukhaiya@c643n08aix1-lp1.pok.stglabs.ibm.com >
Signed-off-by: Rukhaiya <bibirukhaiya123@gmail.com >
Co-authored-by: Rukhaiya <rukhaiya@c643n08aix1-lp1.pok.stglabs.ibm.com >
Co-authored-by: Akash kaothalkar <61960177+Akashcodes732@users.noreply.github.com >
Co-authored-by: Li, Jiang <jiang1.li@intel.com >
2026-06-02 18:06:32 +08:00
Isotr0py and GitHub
f8e9c56d15
[Multimodal] Automatically select registered video loader for VLM ( #44126 )
...
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-02 09:09:47 +00:00
alberto and GitHub
e30313220c
[Parser] Migrate ResponsesParser to unified Parser interface ( #42977 )
...
Signed-off-by: Alberto Perdomo <aperdomo@redhat.com >
2026-06-02 08:50:05 +00:00
d247a9dc13
[EC Connector] Non blocking EC Connector lookup ( #41627 )
...
Signed-off-by: omerpaz95 <omerpaz95@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-02 08:48:25 +00:00
Yifan Qiao and GitHub
7c37096620
[Core][Refactor]: thread scheduler_block_size into KVCacheManager and KVCacheCoordinator ( #44165 )
...
Signed-off-by: Yifan Qiao <yifanqiao@inferact.ai >
2026-06-02 01:14:44 -07:00
Maria Guevara and GitHub
b817b23f7b
[Rust Frontend] add --enable-request-id-headers flag support. ( #43883 )
...
Signed-off-by: Maria Guevara <kawaiiplush14@gmail.com >
2026-06-02 16:08:37 +08:00
Ronen Schaffer and GitHub
93da882e73
[kv_offload] Add @override decorators to subclass method implementations ( #44177 )
...
Signed-off-by: Ronen Schaffer <ronen.schaffer@ibm.com >
2026-06-02 08:07:47 +00:00
0b25cf4419
[CPU][Perf] Enable fused kernels for GDN's gated delta rules ( #43534 )
...
Signed-off-by: Fadi Arafeh <fadi.arafeh@arm.com >
Co-authored-by: Li, Jiang <jiang1.li@intel.com >
2026-06-02 08:00:48 +00:00
Jiangyun Zhu and GitHub
dcdfe66bfa
[Perf] use triton moe backend on hopper by default ( #44220 )
...
Signed-off-by: zjy0516 <riverclouds.zhu@qq.com >
2026-06-02 15:52:30 +08:00
Flora Feng and GitHub
68dafcca75
[Refactor] Unify reasoning + tool-call parsing behind Parser.parse() ( #44267 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-02 15:11:42 +08:00
zhrrr and GitHub
1edfd09ffd
[Model Runner V2] Use actual batch max_seq_len for attn metadata ( #43991 )
...
Signed-off-by: zhuhaoran <zhuhaoran.zhr@alibaba-inc.com >
2026-06-02 06:07:56 +00:00
zhrrr and GitHub
8a9eb40808
[Model Runner V2] Support zeroing freshly allocated KV blocks for hybrid + fp8 KVCache ( #43990 )
...
Signed-off-by: zhuhaoran <zhuhaoran.zhr@alibaba-inc.com >
2026-06-02 05:56:53 +00:00
f91fb2fcf3
[Bugfix] Convert Gemma4-MM ViT linear layers to vllm native impl ( #43798 )
...
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
Co-authored-by: ZiTian Zhao <zitian.zhao@tencentmusic.com >
Co-authored-by: B-201 <Joy25810@foxmail.com >
2026-06-01 21:41:16 -07:00
JooHo Lee and GitHub
a045c7425f
[MM][CG] Profile encoder CUDA graph pool memory ( #41714 )
...
Signed-off-by: JooHo Lee <jooho414@gmail.com >
2026-06-02 12:27:34 +08:00
a3a5a5ece5
[XPU][Bugfix] Fix per_token_group_fp8_quant missing dummy args on XPU ( #43930 )
...
Signed-off-by: Chaojun,Zhang <chaojun.zhang@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-06-02 03:09:21 +00:00
Or Ozeri and GitHub
480fadab1b
[BugFix][kv_offload]: Prevent offloading stale sliding window blocks ( #42959 )
...
Signed-off-by: Or Ozeri <oro@il.ibm.com >
2026-06-02 05:59:48 +03:00
279d25f5cb
[BugFix] Fix TypeError in MiniCPM-O audio feature unpadding ( #38053 )
...
Signed-off-by: Krishna Chaitanya Balusu <krishnabkc15@gmail.com >
Signed-off-by: wjinxu <1299461899@qq.com >
Signed-off-by: Kc Balusu <kcbalusu@users.noreply.github.com >
Co-authored-by: wjinxu <1299461899@qq.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
Co-authored-by: Cyrus Leung <tlleungac@connect.ust.hk >
Co-authored-by: Kc Balusu <kcbalusu@users.noreply.github.com >
2026-06-01 19:57:28 -07:00
Andreas Karatzas and GitHub
54d0c36fff
[CI] Stabilize OpenAI schema fuzzing for malformed structural tags ( #44131 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-06-01 19:56:15 -07:00
Flora Feng and GitHub
9affc17a05
[Refactor] Move unstreamed tool-arg flush from serving layer to parser ( #44017 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-06-02 10:37:43 +08:00
Alec and GitHub
816cc73a9b
[Bugfix][CI] Normalize NIXL connector CUDA wheel installs ( #44266 )
...
Signed-off-by: Alec Flowers <aflowers@nvidia.com >
2026-06-01 19:34:05 -07:00
Micah Williamson and GitHub
2588ec4f0a
[ROCm] Upgrade AITER to v0.1.13.post1 ( #44265 )
...
Signed-off-by: Micah Williamson <micah.williamson@amd.com >
2026-06-02 01:48:59 +00:00
d68f0b220e
[Bugfix][Mooncake] Release GPU pin on failed store in MooncakeStoreConnector ( #43742 )
...
Signed-off-by: Dao Le <Dao007forever@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-06-01 18:29:18 -07:00
Woosuk Kwon and GitHub
517e74a964
[DSV4] Refactor RoPE initialization ( #44262 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-06-02 01:26:58 +00:00
JartX and GitHub
48c0d13e65
[ROCm][CI] Skip unbacked dynamic shapes tests on PyTorch < 2.11 ( #44256 )
...
Signed-off-by: JartX <sagformas@epdcenter.es >
2026-06-01 19:09:01 -05:00
Woosuk Kwon and GitHub
8c3cc98cff
[DSV4] Remove unncessary classes & functions ( #44246 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-06-01 14:43:00 -07:00
Nick Hill and GitHub
e4cbc4385d
[Test][BugFix] Fix double-BOS in PD+specdec acceptance test ( #44234 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
2026-06-01 14:31:12 -07:00
Nick Hill and GitHub
6f8b40a23f
[BugFix][CI] Fix added _has_module tests ( #44248 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
2026-06-01 14:23:12 -07:00
266b9d9c64
[Frontend][Core] Add sparse NCCL weight transfer support for in-place updates ( #40096 )
...
Signed-off-by: Siddharth Bedekar <bedeksid@gmail.com >
Co-authored-by: OpenAI Codex <codex@openai.com >
2026-06-01 15:37:30 -04:00
182c67daf1
[Rust Frontend] Support streaming generate endpoint ( #43779 )
...
Signed-off-by: xunzhuo <xunzhuo@vllm-semantic-router.ai >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
2026-06-01 19:30:55 +00:00
fd9e91d7e4
[ROCm][CI] Fix and stabilize EAGLE3 acceptance tests ( #41294 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
Signed-off-by: Micah Williamson <micah.williamson@amd.com >
Co-authored-by: Micah Williamson <micah.williamson@amd.com >
2026-06-01 12:40:01 -05:00
Yongye Zhu and GitHub
035733515f
[Kernel][DSv4] Optimize sparse FP8 compressor kernels ( #44161 )
...
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
2026-06-02 00:18:32 +08:00
023808c23d
[Feature] Add support for JetBrains' Mellum v2 code generation model ( #43992 )
...
Signed-off-by: Madeesh Kannan <madeeswaran.kannan@jetbrains.com >
Co-authored-by: Robert Shaw <114415538+robertgshaw2-redhat@users.noreply.github.com >
2026-06-01 10:11:35 -04:00
985c97a6a8
[Perf] Optimize cutlass fp8 scaled mm bypassing padding, 20% kernel performance improvement ( #43706 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-06-01 09:05:21 -04:00
Chaojun Zhang and GitHub
bd0aecdc08
[XPU][CI] Fix test_audio_in_video flake by using module-scoped server fixture ( #44146 )
...
Signed-off-by: Chaojun Zhang <chaojun.zhang@intel.com >
2026-06-01 11:21:36 +00:00
8796838910
[Bugfix] fix wrong partial_rotary_factor calculation for bailing_moe model. ( #43770 )
...
Signed-off-by: zzt <zengzetang.zzt@antgroup.com >
Co-authored-by: Jiangyun Zhu <riverclouds.zhu@qq.com >
2026-06-01 02:42:49 -07:00
de21863419
[Rust Frontend] Add InternLM2 tool parser ( #43481 )
...
Signed-off-by: Will.hou <1205157517@qq.com >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Bugen Zhao <i@bugenzhao.com >
2026-06-01 08:58:46 +00:00
wang.yuqi and GitHub
0910f7e0e1
[Frontend] Resettle generative scoring entrypoint. ( #44153 )
...
Signed-off-by: wang.yuqi <yuqi.wang@daocloud.io >
2026-06-01 07:54:59 +00:00
Uranus and GitHub
1f6048abe5
fix: glm5.1 pp model loading ( #42944 )
...
Signed-off-by: UranusSeven <109661872+UranusSeven@users.noreply.github.com >
2026-06-01 15:14:47 +08:00
98f1279815
[CPU][RISC-V] Add missing RVV cpu_types helpers for WNA16 ( #42730 )
...
Signed-off-by: wcy <233313160abc@gmail.com >
Co-authored-by: Li, Jiang <jiang1.li@intel.com >
2026-06-01 14:56:41 +08:00
Isotr0py and GitHub
1fd8bd02a4
[Docs] Replace broken video url in examples ( #44159 )
...
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
2026-06-01 06:01:10 +00:00
29d69332aa
[BugFix] Fix _has_module to verify native deps via trial import ( #44035 )
...
Signed-off-by: esmeetu <jasonailu87@gmail.com >
Signed-off-by: Jeffrey Wang <jeffreywang@anyscale.com >
Signed-off-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: esmeetu <jasonailu87@gmail.com >
Co-authored-by: Nick Hill <nickhill123@gmail.com >
2026-05-31 22:06:33 -07:00
Lucas Wilkinson and GitHub
4721bb3aa4
[MRV2] Remove Eagle's dedicated CUDA graph pool ( #44078 )
...
Signed-off-by: Lucas Wilkinson <lwilkins@redhat.com >
2026-05-31 22:00:33 -07:00
Umut Polat and GitHub
f46e6be169
[Misc] Use VLLMValidationError consistently in chat completion and completion protocol validators ( #36254 )
...
Signed-off-by: umut-polat <52835619+umut-polat@users.noreply.github.com >
2026-06-01 04:04:11 +00:00
8b8546da1c
docs: fix MLA attention docstring examples ( #44118 )
...
Co-authored-by: nightcityblade <nightcityblade@gmail.com >
2026-05-31 12:28:38 -07:00
Jee Jee Li and GitHub
6bdabbad5b
[CI/Build] Enable Step3p7ForConditionalGeneration testing ( #43956 )
...
Signed-off-by: Jee Jee Li <jeejeelee@inferact.ai >
2026-05-31 05:16:12 +00:00
3fd9d2d357
[CPU][Zen] Route W8A8 and W4A16 linear inference through zentorch on AMD Zen CPUs ( #41813 )
...
Signed-off-by: R <Ganesh.R@amd.com >
Signed-off-by: Harshal Adhav <harshal.adhav@amd.com >
Signed-off-by: Aakar Dwivedi <aadwived@amd.com >
Co-authored-by: R <Ganesh.R@amd.com >
Co-authored-by: Harshal Adhav <harshal.adhav@amd.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
Co-authored-by: Michael Goin <mgoin64@gmail.com >
2026-05-30 14:17:21 -05:00
Woosuk Kwon and GitHub
27fa5aa3b9
[MRV2] Support breakable CUDA graph ( #44050 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-05-30 09:40:52 -07:00
e1105064b2
[Bug] Fix gemma4 MTP IMA issue when TP>1, CUDA error: an illegal memory access was encountered ( #43909 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-05-30 10:34:33 -04:00
Bugen Zhao and GitHub
50c80d7923
[Governance] Add @BugenZhao as Rust frontend code owner ( #44047 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-05-30 22:23:54 +08:00
3becc5db40
[ROCm] Add attention sink support to AITer flash attention backend ( #43817 )
...
Signed-off-by: Xiaoran Chen <xiaoran@fb.com >
Co-authored-by: Xiaoran Chen <xiaoran@fb.com >
2026-05-30 18:13:18 +08:00
124fac10cb
[Bugfix] Fix RMSNorm kernels to multiply in weight's native dtype ( #42379 )
...
Signed-off-by: Lanze Liu <lanzetech@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-05-29 23:16:53 -07:00
e9499996df
[BugFix][Platform] Fix import vllm.platforms.rocm error on non-CUDA test_gpt_oss.py ( #43571 )
...
Signed-off-by: Ma, Liangliang <liangliang.ma@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-05-29 23:16:49 -07:00
c0056b19bf
[ROCm] cmake: support PYTORCH_FOUND_HIP for torch 2.13 native HIP language support ( #43881 )
...
Signed-off-by: nemanjaudovic <nudovic@amd.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-05-29 22:16:57 -07:00
Andreas Karatzas and GitHub
ef8840adc7
[ROCm][CI] Fix failure in the Phi3V pooling test ( #44028 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-05-30 12:14:37 +08:00
Flora Feng and GitHub
1a096d8208
[Refactor] Remove dead current_tool_name_sent assignments from tool parsers ( #43997 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-05-29 21:45:15 -04:00
Gagan Dhakrey and GitHub
1e2ce5d11a
offload prompt_embeds decode in render_prompts_async to avoid blocking ( #43792 )
...
Signed-off-by: Gagan Dhakrey <gagandhakrey@gmail.com >
2026-05-30 01:36:34 +00:00
559d6710bf
[PERF]MiniMax-M2 gate kernel ( #38445 )
...
Signed-off-by: Jee Jee Li <pandaleefree@gmail.com >
Signed-off-by: qianlihuang <91178480+qianlihuang@users.noreply.github.com >
Co-authored-by: Yiliu Dong <91178480+qianlihuang@users.noreply.github.com >
2026-05-29 18:28:34 -07:00
bnellnm and GitHub
187457a952
Revert "[MoE Refactor] Migrate MoeWNA16Method quantization to MK orac… ( #44033 )
...
Signed-off-by: Bill Nell <bnell@redhat.com >
2026-05-29 16:45:29 -07:00
8fad266507
[CI] Fix smoke test step key to bypass block gate ( #43974 )
...
Signed-off-by: khluu <khluu000@gmail.com >
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-05-29 16:28:32 -07:00
Flora Feng and GitHub
8c6daf6e2f
[CI] Remove duplicate Harmony test coverage ( #44023 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-05-29 22:52:46 +00:00
bnellnm and GitHub
7b98f498cd
[MoE Refactor] Remove supports_expert_map ( #43108 )
...
Signed-off-by: Bill Nell <bnell@redhat.com >
2026-05-29 17:26:56 -04:00
106aa92f04
[MoE Refactor] Migrate MoeWNA16Method quantization to MK oracle ( #42647 )
...
Signed-off-by: Bill Nell <bnell@redhat.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-05-29 17:19:31 -04:00
yzong-rh and GitHub
46409fd2a1
[Fronten] Clean up stop_token_ids override for Harmony ( #44009 )
...
Signed-off-by: Yifan Zong <yzong@redhat.com >
2026-05-29 13:28:06 -07:00
38b864d81d
[Metrics] Exclude KV transfer tokens from iteration_tokens_total ( #43346 )
...
Signed-off-by: Tyler Michael Smith <tlrmchlsmth@gmail.com >
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-05-29 19:56:44 +00:00
Wentao Ye and GitHub
5dbf1605a0
[Feature] SSL support for dp supervisor ( #43688 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-05-29 19:28:12 +00:00
Kevin H. Luu and GitHub
acbc203340
Add @khluu to CODEOWNERS ( #44019 )
...
Signed-off-by: Kevin H. Luu <khluu000@gmail.com >
2026-05-29 12:24:29 -07:00
Flora Feng and GitHub
6de08e8b46
[CI] Remove redundant test_chat_with_tool_reasoning.py ( #44011 )
...
Signed-off-by: sfeng33 <4florafeng@gmail.com >
2026-05-29 19:23:56 +00:00
6aabe221a5
[CI] Make Model Executor test hangs fail fast with a traceback ( #43971 )
...
Signed-off-by: khluu <khluu000@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-05-29 11:58:25 -07:00
Wentao Ye and GitHub
739096a028
[Bug] Fix torch device issue for MOE permute ( #44005 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-05-29 18:55:00 +00:00
czhu-cohere and GitHub
8b9deeec4b
[Bugfix] Fix Ray placement group allocation with grouped nodes ( #43998 )
...
Signed-off-by: <conway.zhu@cohere.com >
Signed-off-by: root <conway.zhu@cohere.com >
2026-05-29 12:51:05 -06:00
d07ad0693b
[Bugfix] Use storage_block_size in KV cache reshape for compressed specs (DeepSeek V4) ( #43988 )
...
Signed-off-by: zixi-qi <zixi@inferact.ai >
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-05-29 11:14:25 -07:00
4aaba00f92
[EPLB] Make async EPLB default ( #43219 )
...
Signed-off-by: Markov Ilya <markovilya19@gmail.com >
Co-authored-by: Markov Ilya <markovilya19@gmail.com >
Co-authored-by: Tyler Michael Smith <tyler@neuralmagic.com >
2026-05-29 18:07:16 +00:00
84b2a8a7e7
[MoE Refactor] WNA16 MoE backend selection into oracle module ( #42553 )
...
Signed-off-by: Bill Nell <bnell@redhat.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-05-29 13:11:17 -04:00
4ff865c38e
[Bugfix] Disable allreduce_rms_fusion when pipeline_parallel_size > 1 ( #43616 )
...
Signed-off-by: zixi-qi <zixi@inferact.ai >
Co-authored-by: Claude <noreply@anthropic.com >
2026-05-29 22:57:43 +08:00
5502c3b52d
[Misc] added unit tests for the core pooling methods ( #43818 )
...
Signed-off-by: Taneem Ibrahim <taneem.ibrahim@gmail.com >
Co-authored-by: Wentao Ye <44945378+yewentao256@users.noreply.github.com >
2026-05-29 14:40:31 +00:00
Chunyang Wen and GitHub
f191d5630e
docs: clarify ITL acronym in optimization docs ( #43922 )
...
Signed-off-by: chunyang.wen <chunyang.wen@gmail.com >
2026-05-29 07:40:05 -07:00
11dfa3169d
Add vLLM library info to Hugging Face Hub requests ( #43857 )
...
Signed-off-by: Wauplin <lucainp@gmail.com >
Signed-off-by: Lucain Pouget <lucain@huggingface.co >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-05-29 14:04:58 +00:00
Li, Jiang and GitHub
3f6f508e14
[Bugfix][CPU] Remove invalid extra deps ( #43977 )
...
Signed-off-by: jiang1.li <jiang1.li@intel.com >
2026-05-29 22:02:09 +08:00
Harry Mellor and GitHub
0585b5ba2e
Skip docs build if PR doesn't affect docs ( #43972 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-05-29 12:09:52 +00:00
Thien Tran and GitHub
d2889722ff
[Bugfix] Corrupted MLA + linear attention ( #43961 )
...
Signed-off-by: Thien Tran <gau.nernst@yahoo.com.sg >
2026-05-29 05:00:51 -07:00
0b56815a24
[ROCm][Perf] DSv3.2 MI355X TP4 decode-step orchestration cleanup (3 micro-opts) ( #42982 )
...
Signed-off-by: Frida Andersson <fanderss@amd.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-05-29 04:26:57 -07:00
ab12aab127
[Bugfix] [ROCm] [DSV4] Fix AITER MXFP4 MoE weight loading and shuffle… ( #42595 )
...
Co-authored-by: MHYangAMD <MHYangAMD@users.noreply.github.com >
2026-05-29 04:08:33 -07:00
JartX and GitHub
0cff0741ff
[Kernel][ROCm] Native W4A16 kernel for AMD RDNA3 (gfx1100) — fp16 + bf16 ( #41394 )
...
Signed-off-by: JartX <sagformas@epdcenter.es >
2026-05-29 11:04:40 +00:00
60a7a2214f
[Bugfix] Fix Step3 pipeline parallel KeyError for residual tensor ( #37622 )
...
Co-authored-by: Jee Jee Li <pandaleefree@gmail.com >
2026-05-29 03:04:02 -07:00
Nicolò Lucchesi and GitHub
7ebc0ec104
[CI] Nixl+SimpleCPUOffloadingConnector unit tests ( #43871 )
...
Signed-off-by: NickLucche <nlucches@redhat.com >
2026-05-29 02:40:42 -07:00
e8b5199973
[XPU] support MTP of gdn attention ( #43565 )
...
Signed-off-by: mayuyuace <qiming1.zhang@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-05-29 17:10:24 +08:00
Simon Danielsson and GitHub
b7fb747d8d
[CI][ROCm] Don't skip MoRI-IO Connector tests ( #43703 )
...
Signed-off-by: simondanielsson <simon.danielsson99@hotmail.com >
2026-05-29 17:06:23 +08:00
Kunshang Ji and GitHub
30c6289b8e
[XPU] fix xpu install document triton-xpu version ( #43947 )
...
Signed-off-by: Kunshang Ji <kunshang.ji@intel.com >
2026-05-29 02:05:12 -07:00
Andreas Karatzas and GitHub
ff990d0d32
[ROCm][CI] Fix AITER unified attention for encoder-decoder cross-attention ( #43945 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-05-29 16:43:39 +08:00
Chauncey and GitHub
87f12e5c7c
[Frontend]Responses API supports chat_template_kwargs ( #43761 )
...
Signed-off-by: chaunceyjiang <chaunceyjiang@gmail.com >
2026-05-29 07:58:19 +00:00
kliuae and GitHub
ab7521d77c
[ROCm][DSv4] Remove device pipeline stall in sparse attention ( #43898 )
...
Signed-off-by: kliuae <kuanfu.liu@embeddedllm.com >
2026-05-29 15:42:40 +08:00
94d3f4d205
[CPU Backend] CPU top-k and top-p sampling kernels using Triton ( #43633 )
...
Signed-off-by: Li, Tianmu <tianmu.li@intel.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-05-29 15:02:39 +08:00
04516eabc8
[XPU] add gelu_tanh to xpu moe backend supported activations ( #42822 )
...
Signed-off-by: yintong-lu <yintong.lu@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-05-29 14:37:20 +08:00
648c3ebee6
[CI] Separate non-root smoke tests from image build step ( #43712 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-05-28 23:34:16 -07:00
22a58640b4
[9/n] Migrate attention and cache kernels to torch stable ABI (continued) ( #43717 )
...
Signed-off-by: Chris Leonard <chleonar@redhat.com >
Signed-off-by: Mikayla Gawarecki <mikaylagawarecki@gmail.com >
Co-authored-by: Mikayla Gawarecki <mikaylagawarecki@gmail.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-05-29 04:44:45 +00:00
710f077617
[Refactor] Remove dead code ( #43234 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-05-29 00:29:56 -04:00
d63108fb18
[kv_offload] Skip decode-phase blocks in CPU offload ( #43797 )
...
Signed-off-by: Itay Etelis <itay.etelis@ibm.com >
Co-authored-by: Itay Etelis <itay.etelis@ibm.com >
2026-05-29 06:39:43 +03:00
9636709372
[XPU] add scale transpose to prepare_fp8_moe_layer_for_xpu and bump up kernels ( #43277 )
...
Signed-off-by: mayuyuace <qiming1.zhang@intel.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-05-29 03:22:51 +00:00
Weida Hong and GitHub
dfe8ba7c80
Adjust design around encoder_cudagraph_forward ( #42288 )
...
Signed-off-by: Weida Hong <wdhongtw@google.com >
2026-05-29 03:02:52 +00:00
212deff2ec
[feat] add GlmgaProcessor specific logits in glm4_1v.py ( #43575 )
...
Signed-off-by: JaredforReal <w13431838023@gmail.com >
Signed-off-by: Isotr0py <mozf@mail2.sysu.edu.cn >
Signed-off-by: Isotr0py <Isotr0py@outlook.com >
Co-authored-by: Isotr0py <mozf@mail2.sysu.edu.cn >
Co-authored-by: Isotr0py <Isotr0py@outlook.com >
2026-05-29 02:56:02 +00:00
Woosuk Kwon and GitHub
7bd45da585
[DSv4] Move mHC tilelang kernels & Don't use CustomOP in dsv4/nvidia ( #43905 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-05-29 10:25:02 +08:00
bf18d7e0b4
[Misc][NUMA] Auto-bind to PCT priority cores on DGX B300 + widen EngineCore across shard NUMA nodes ( #43270 )
...
Signed-off-by: Vadim Gimpelson <vadim.gimpelson@gmail.com >
Co-authored-by: Cursor <noreply@cursor.com >
2026-05-29 10:07:44 +08:00
Bugen Zhao and GitHub
1521173c17
[Rust Frontend] Add /version endpoint using engine-reported value ( #43854 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-05-29 00:32:27 +00:00
b690b2bb67
[Model]Support Step-3.7-Flash ( #43859 )
...
Signed-off-by: luotingdan <luotingdan@stepfun.com >
Signed-off-by: Isotr0py <Isotr0py@outlook.com >
Signed-off-by: Jee Jee Li <jeejeelee@inferact.ai >
Co-authored-by: luotingdan <luotingdan@stepfun.com >
Co-authored-by: Isotr0py <Isotr0py@outlook.com >
Co-authored-by: Yu Huang <yuhuang@nvidia.com >
Co-authored-by: Jee Jee Li <jeejeelee@inferact.ai >
2026-05-28 17:01:48 -07:00
yzong-rh and GitHub
325a1ec4fb
[CI] Enable prefix caching in BFCL benchmark ( #43925 )
...
Signed-off-by: Yifan Zong <yzong@redhat.com >
2026-05-28 23:36:31 +00:00
69c9f19957
fix(frontend): Add multimodal placeholders to Gemma4 tool message template ( #41459 )
...
Signed-off-by: Harshal Janjani <harshaljanjani@gmail.com >
Co-authored-by: Ben Browning <bbrownin@redhat.com >
2026-05-28 14:48:12 -07:00
rasmith and GitHub
9769e2df2a
[AMD][CI][BugFix] Fix Distributed Compile Unit Tests (2xH100-2xMI300) group ( #43120 )
...
Signed-off-by: Randall Smith <Randall.Smith@amd.com >
2026-05-28 14:39:01 -07:00
Michael Goin and GitHub
03f03f9630
Refactor output filename handling in ci-fetch-log.sh ( #43901 )
...
Signed-off-by: Michael Goin <mgoin64@gmail.com >
2026-05-28 14:20:12 -07:00
Benjamin Chislett and GitHub
9202ea6fda
[Spec Decode] Allow causal DFlash ( #43445 )
2026-05-28 21:18:44 +00:00
Woosuk Kwon and GitHub
69b8956dcd
[Model Refactoring] Remove unncessary torch op registration for DSv4 ( #43891 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-05-28 14:04:55 -07:00
a3ed5ab10c
[KV Offload] Add per-request offloading policy via on_new_request lifecycle hook ( #43205 )
...
Signed-off-by: Ronen Schaffer <ronen.schaffer@ibm.com >
Co-authored-by: Or Ozeri <or@ozery.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-05-28 20:45:18 +00:00
7e53283b1c
[Core] Cleanup KVConnector handling with PP + fix MRV2 ( #43732 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-05-28 13:12:03 -07:00
9090368b65
[Feat] Add support for per GPU worker RDMA NIC selection ( #42083 )
...
Signed-off-by: Raj Joshi <rajjoshi@redhat.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-05-28 12:45:23 -07:00
Harry Mellor and GitHub
085ac221a3
Deprecate JAISLMHeadModel ( #43784 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-05-28 18:29:12 +00:00
Hua Huang and GitHub
9006204e90
[MM][CG] Avoid over-padding Qwen2.5-VL encoder cudagraph window metadata ( #42796 )
...
Signed-off-by: Hua Huang <huah@nvidia.com >
2026-05-28 11:22:56 -07:00
ed7fe831da
[ROCm] Enable the aiter top-k/top-p sampler by default ( #43331 )
...
Signed-off-by: John Qin <yanyuan.qin@amd.com >
Co-authored-by: TJian <tunjian.tan@embeddedllm.com >
2026-05-28 13:19:59 -05:00
Nicolò Lucchesi and GitHub
5b115bb8a3
[Attention][AMD] Standardize kv layout to blocks first for AMD ( #43660 )
...
Signed-off-by: NickLucche <nlucches@redhat.com >
2026-05-28 12:28:50 -05:00
53a2088675
Allow native KV cache dtype in Triton cache update ( #43330 )
...
Signed-off-by: Michael Gschwind <mgschwind@nvidia.com >
Co-authored-by: Michael Gschwind <mgschwind@nvidia.com >
2026-05-28 16:51:40 +00:00
Chao-Ju Chen and GitHub
099024762c
[Rust Frontend] Optimize multimodal prompt expansion ( #43670 )
...
Signed-off-by: RickyChen / 陳昭儒 <ricky.chen@infinirc.com >
2026-05-28 09:46:18 -07:00
9aa131f944
Add Cosmos3 Reasoner model ( #43356 )
...
Signed-off-by: Maciej Bala <mbala@nvidia.com >
Signed-off-by: MaciejBalaNV <mbala@nvidia.com >
Co-authored-by: Isotr0py <mozf@mail2.sysu.edu.cn >
Co-authored-by: Isotr0py <2037008807@qq.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: Roger Wang <hey@rogerw.io >
2026-05-28 09:43:55 -07:00
Micah Williamson and GitHub
1b5437cec8
[ROCm] Bump ROCm to 7.2.3 ( #43136 )
...
Signed-off-by: Micah Williamson <micah.williamson@amd.com >
2026-05-28 09:42:43 -07:00
3207e7680e
[XPU][MoE] Add WNA16 oracle backend for GPTQ sym-int4 (xpu_fused_moe) ( #41426 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
Co-authored-by: Kunshang Ji <kunshang.ji@intel.com >
2026-05-28 16:30:48 +00:00
Matthias Gehre and GitHub
a9ec46d4b7
[ROCm][Perf] Support N=5 in wvSplitK skinny GEMM kernels for speculative decoding ( #40687 )
...
Signed-off-by: Matthias Gehre <matthias.gehre@amd.com >
2026-05-28 16:28:21 +00:00
Ronen Schaffer and GitHub
4bfa0f2b14
[KV Offload] Rename SecondaryTierManager.get_finished() to get_finished_jobs() ( #43870 )
...
Signed-off-by: Ronen Schaffer <ronen.schaffer@ibm.com >
2026-05-28 16:00:18 +00:00
Vadim Gimpelson and GitHub
5d126dd155
[Bugfix] Exclude Ray DP from #42585 's deferred port allocation ( #43864 )
...
Signed-off-by: Vadim Gimpelson <vadim.gimpelson@gmail.com >
2026-05-28 15:55:14 +00:00
c08ebebf30
[Perf] Add do_not_specialize to Mamba SSD chunk kernels ( #43803 )
...
Signed-off-by: Majid Taheri Andani <tahemaji@amazon.com >
Co-authored-by: Majid Taheri Andani <tahemaji@amazon.com >
2026-05-28 15:40:02 +00:00
Wentao Ye and GitHub
be4062fd6c
[Bug] Fix tests/distributed/test_elastic_ep.py - assert False ( #43813 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-05-28 11:00:56 -04:00
577d693838
[rust] fix: aggregate is_sleeping and reset_prefix_cache across DP engines ( #43429 )
...
Signed-off-by: Will.hou <1205157517@qq.com >
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-28 07:56:56 -07:00
Bugen Zhao and GitHub
61a1e30473
[Rust Frontend] Reduce Gemma4 tool parser args scan complexity ( #43850 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-05-28 14:52:29 +00:00
Bugen Zhao and GitHub
3a282230ee
[Rust Frontend] Add hy_v3 tool parser ( #43872 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-05-28 14:42:47 +00:00
Li, Jiang and GitHub
20d69d100a
[CPU] Migrate cpu_awq into awq_marlin ( #43841 )
...
Signed-off-by: jiang1.li <jiang1.li@intel.com >
2026-05-28 22:36:31 +08:00
Simon Danielsson and GitHub
552eb81918
[Bugfix][ROCm] Resolve MoRI connector hangs at high concurrency ( #40344 )
...
Signed-off-by: simondanielsson <simon.danielsson99@hotmail.com >
2026-05-28 14:30:21 +00:00
Woosuk Kwon and GitHub
9957e4d240
[Model Refactoring] Remove torch compile dependency in DSv4 ( #43746 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-05-28 14:26:25 +00:00
864990e8d9
Add token-offset based selective offload in OffloadConnector ( #39983 )
...
Signed-off-by: Angelo Ruocco <ang@zurich.ibm.com >
Co-authored-by: Or Ozeri <or@ozery.com >
2026-05-28 14:11:02 +00:00
f3b2a819f7
[Perf][KDA] Fuse gate softplus, chunk-local cumsum, and RCP_LN2 scaling ( #43667 )
...
Signed-off-by: haojiangzheng <justineric096@gmail.com >
Co-authored-by: haojiangzheng <justineric096@gmail.com >
2026-05-28 13:47:08 +00:00
Wentao Ye and GitHub
64e1218673
[Perf] Optimize moe permute by pre-allocate buffer, 9~14% kernel performance improvement ( #43014 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
2026-05-28 06:18:26 -07:00
Julien Denize and GitHub
02606b0b09
[BUGFIX] Multimodal benchmark with MistralTokenizer ( #42965 )
...
Signed-off-by: juliendenize <julien.denize@mistral.ai >
Signed-off-by: Julien Denize <40604584+juliendenize@users.noreply.github.com >
2026-05-28 05:36:24 -07:00
19af4e6dd4
Fix OlmoHybridForCausalLM not initialising ( #43846 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-05-28 05:33:31 -07:00
omerpaz95 and GitHub
811d805195
[EC Connector] Add shutdown API to EC Connector. ( #42423 )
...
Signed-off-by: omerpaz95 <omerpaz95@gmail.com >
2026-05-28 12:28:01 +00:00
Vadim Gimpelson and GitHub
c1c4db8b4b
Log dummy DP step in iteration details ( #41406 )
...
Signed-off-by: Vadim Gimpelson <vadim.gimpelson@gmail.com >
Signed-off-by: Vadim Gimpelson <156319763+vadiklyutiy@users.noreply.github.com >
2026-05-28 12:18:39 +00:00
Chauncey and GitHub
d692b89c2c
[Feature] Add structured output and effort support to Anthropic Messages API ( #42396 )
...
Signed-off-by: chaunceyjiang <chaunceyjiang@gmail.com >
2026-05-28 12:06:48 +00:00
Bugen Zhao and GitHub
8e0580f4ee
[CI] Auto-apply rust label to relevant PRs ( #43866 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-05-28 11:57:22 +00:00
61288b5458
[Bugfix] Fix HyperCLOVAX CI failure after upstream removed remote code ( #43860 )
...
Signed-off-by: Kevin Luu <kevin@inferact.ai >
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-05-28 03:37:36 -07:00
a583c84e2b
[Bugfix][ROCm] Fix Accuracy Drop in Sparse Indexer on gfx950 ( #43781 )
...
Signed-off-by: tjtanaa <tunjian.tan@embeddedllm.com >
Signed-off-by: vllmellm <vllm.ellm@embeddedllm.com >
Signed-off-by: kliuae <kuanfu.liu@embeddedllm.com >
Co-authored-by: tjtanaa <tunjian.tan@embeddedllm.com >
Co-authored-by: vllmellm <vllm.ellm@embeddedllm.com >
2026-05-28 03:37:15 -07:00
4ec2817313
[Model][Bugfix] Rename weight_mapper to hf_to_vllm_mapper in LlamaNemotronVL pooling models ( #43581 )
...
Signed-off-by: Jakub Zakrzewski <jzakrzewski@nvidia.com >
Co-authored-by: opencode <noreply@opencode.ai >
Co-authored-by: tomeras91 <57313761+tomeras91@users.noreply.github.com >
2026-05-28 03:32:22 -07:00
Wei Zhao and GitHub
f2caefe226
[UX] Increase DP Coordinator startup timeout from 30s to 120s ( #42343 )
...
Signed-off-by: wzhao18 <wzhao18.sz@gmail.com >
2026-05-28 03:31:45 -07:00
Animesh Trivedi and GitHub
bfb9ebc211
[Feature] Add support for timed trace replay in vllm bench serve to replay Moonshot and Alibaba workload traces ( #39795 )
...
Signed-off-by: Animesh Trivedi <Animesh.Trivedi@ibm.com >
2026-05-28 03:31:34 -07:00
Andreas Karatzas and GitHub
a9bc0ad8e4
[ROCm][CI] Move workload from MI300 to MI325 ( #43824 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-05-28 03:31:29 -07:00
b372ad3e90
[Bugfix] Stream DeepSeek DSML tool-call argument deltas incrementally ( #42879 )
...
Signed-off-by: QwertyJack <7554089+QwertyJack@users.noreply.github.com >
Co-authored-by: QwertyJack <7554089+QwertyJack@users.noreply.github.com >
Co-authored-by: Chauncey <chaunceyjiang@gmail.com >
2026-05-28 17:50:23 +08:00
Harry Mellor and GitHub
2a781756a1
Restore Literal for WeightTransferConfig.backend ( #43183 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-05-28 09:39:41 +00:00
Woosuk Kwon and GitHub
a04afd76aa
[DSV4] Remove AMD/XPU path in deepseek_v4/nvidia ( #43829 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-05-28 08:00:52 +00:00
6cc8577421
[Kernel] Marlin MoE: include SM 12.x in default arch list ( #40923 )
...
Signed-off-by: Tony Liu <tonyliu0512@gmail.com >
Co-authored-by: Tony Liu <tonyliu0512@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-05-28 15:30:26 +08:00
d6b48f928f
[BugFix] Fix hard-coded timeout for multi-API-server startup ( #43768 )
...
Signed-off-by: Vadim Gimpelson <vadim.gimpelson@gmail.com >
Co-authored-by: Nick Hill <nickhill123@gmail.com >
2026-05-28 00:09:13 -07:00
Rotem Shavitt and GitHub
1b16f2ddc9
change name of fs_python secondary tier to fs. ( #43600 )
...
Signed-off-by: Rotem Shavitt <rshavitt@gmail.com >
2026-05-28 07:05:48 +00:00
TJian and GitHub
0ba46d4b11
[ROCm][DSV4] Enable Tilelang MHC replacing torch/triton mhc ( #43679 )
...
Signed-off-by: tjtanaa <tunjian.tan@embeddedllm.com >
2026-05-28 07:05:28 +00:00
JINO ROHIT and GitHub
e1814f822d
minor docs: fix incorrect example path ( #43830 )
...
Signed-off-by: JINO-ROHIT <find.jinorohit@gmail.com >
2026-05-27 22:58:43 -07:00
7909f82a45
[Bugfix][Frontend] streaming tool-call serializer drops first args chunk when name and args share a DeltaMessage ( #42683 )
...
Signed-off-by: ignaciosica <mignacio.sica@gmail.com >
Signed-off-by: sfeng33 <4florafeng@gmail.com >
Co-authored-by: sfeng33 <4florafeng@gmail.com >
2026-05-28 05:20:55 +00:00
Nick Hill and GitHub
626fa9bba5
[BugFix] Fix blocked reasoning parsing with MRV2 ( #43808 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
2026-05-28 04:59:34 +00:00
Thien Tran and GitHub
e54eff769d
[Bugfix] Pass routed_scaling_factor to FlashInfer TRTLLM BF16 MoE ( #43769 )
2026-05-27 21:29:14 -07:00
05ac829629
fix: parse Qwen3 XML JSON arguments first ( #43243 )
...
Signed-off-by: Yufeng He <40085740+he-yufeng@users.noreply.github.com >
Co-authored-by: Flora Feng <4florafeng@gmail.com >
2026-05-28 03:35:59 +00:00
Andreas Karatzas and GitHub
33e94fc3ad
[ROCm][CI] Stabilize Cargo cache and pre-test image checks ( #43815 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-05-28 11:24:44 +08:00
413ac5c070
[Misc][Rocm] Remove redundant AiterUnifiedAttentionBackend block size log ( #43664 )
...
Signed-off-by: NickLucche <nlucches@redhat.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-05-27 22:19:11 -05:00
Yongye Zhu and GitHub
2d2c660104
[MoE] Remove inplace fused experts mechanism ( #43727 )
...
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
2026-05-27 20:00:19 -07:00
Benjamin Bartels and GitHub
05eec7120e
Fix RunAI streamer tensor buffer reuse during weight loading ( #43464 )
...
Signed-off-by: bbartels <benjamin@bartels.dev >
2026-05-27 19:16:52 -07:00
Bugen Zhao and GitHub
c87f62ccf8
[Rust Frontend] Introduce mock engine for benchmark baseline ( #43469 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-05-28 01:40:35 +00:00
1223732dda
[ModelRunnerV2][Hybrid model] Support kernel block size in hybrid model ( #38831 )
...
Signed-off-by: MengqingCao <cmq0113@163.com >
Signed-off-by: Nick Hill <nickhill123@gmail.com >
Signed-off-by: Mengqing Cao <cmq0113@163.com >
Co-authored-by: Nick Hill <nickhill123@gmail.com >
2026-05-28 00:55:55 +00:00
amitz-nv and GitHub
381edde1b9
[Bugfix][Kernel] TRTLLM NVFP4 MoE chunking ( #43599 )
...
Signed-off-by: amitz-nv <203509407+amitz-nv@users.noreply.github.com >
2026-05-28 00:36:21 +00:00
Andreas Karatzas and GitHub
094124af15
Add @AndreasKaratzas to CODEOWNERS ( #43740 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-05-27 16:14:50 -07:00
Dakai An and GitHub
5963c19478
Fix Qwen3-VL and Qwen3-omni-thinker accuracy degradation from deepstack inputs under torch.compile ( #43617 )
...
Signed-off-by: Dakai An <dakaian108@gmail.com >
2026-05-27 15:34:08 -07:00
7fb9c0197a
[Bugfix][DFlash]allocate the proper number of lookahead slots ( #43733 )
...
Signed-off-by: Benjamin Chislett <bchislett@nvidia.com >
Signed-off-by: Benjamin Chislett <chislett.ben@gmail.com >
Co-authored-by: Nicolò Lucchesi <nicolo.lucchesi@gmail.com >
2026-05-27 21:45:34 +00:00
Harry Mellor and GitHub
2c2c966669
Validate against some config fields being set to 0 ( #43794 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-05-27 21:14:49 +00:00
Harry Mellor and GitHub
2616f67faa
Remove Transformers forward/backward compatibility tests ( #43785 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-05-27 12:46:36 -07:00
206b72c982
[Quantization] Fix Humming RoutedExperts import ( #43540 )
...
Signed-off-by: Minh Vu <vuhoangminh97@gmail.com >
Co-authored-by: Wentao Ye <44945378+yewentao256@users.noreply.github.com >
2026-05-27 10:51:56 -07:00
284e6f543d
[8/n] Migrate merge_attn_states, mamba, sampler to torch stable ABI (continued) ( #43361 )
...
Signed-off-by: Mikayla Gawarecki <mikaylagawarecki@gmail.com >
Signed-off-by: Chris Leonard <chleonar@redhat.com >
Co-authored-by: Mikayla Gawarecki <mikaylagawarecki@gmail.com >
Co-authored-by: Shengqi Chen <harry-chen@outlook.com >
2026-05-27 09:35:24 -07:00
jatseng-ai and GitHub
05c50c721e
[ROCm] mori: add InterNodeV1LL inter-node kernel selection via VLLM_MORI_INTERNODE_KERNEL ( #41751 )
...
Signed-off-by: jatseng-ai <jatseng@amd.com >
2026-05-28 00:33:32 +08:00
Harry Mellor and GitHub
41688e2dc7
Fix early CUDA init ( #43791 )
...
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com >
2026-05-27 09:30:11 -07:00
Chunyang Wen and GitHub
49a3510266
[Docs] Fix the duplicate doc icon issue ( #43546 )
...
Signed-off-by: chunyang.wen <chunyang.wen@gmail.com >
2026-05-27 16:09:58 +00:00
Injae Ryou and GitHub
165460941f
[BugFix] HFValidationError with cloud storage URIs when HF_HUB_OFFLINE=1 ( #39155 )
...
Signed-off-by: Injae Ryou <injaeryou@gmail.com >
2026-05-27 10:53:32 -05:00
Yongye Zhu and GitHub
03d9cc2fe2
[misc] Bump cutedsl version to 4.5.2 ( #43745 )
...
Signed-off-by: Yongye Zhu <zyy1102000@gmail.com >
2026-05-27 08:25:36 -07:00
52a31ccecc
[Bugfix] Map reasoning_effort to enable_thinking in chat template kwargs ( #43401 )
...
Signed-off-by: Ashwin Giridharan <girida@amazon.com >
Signed-off-by: Chauncey <chaunceyjiang@gmail.com >
Co-authored-by: Chauncey <chaunceyjiang@gmail.com >
2026-05-27 05:39:49 -07:00
2272062471
[Kernel] Enable TritonW4A16LinearKernel as CUDA fallback for non-Marlin-aligned W4A16 shapes ( #43731 )
...
Signed-off-by: Luciano Martins <lucianommartins@users.noreply.github.com >
Co-authored-by: Luciano Martins <lucianommartins@users.noreply.github.com >
2026-05-27 18:36:27 +08:00
Mohammad Miadh Angkad and GitHub
158289e0fc
[Docs] Fix MLA prefill backend default docs ( #43697 )
...
Signed-off-by: Mohammad Miadh Angkad <176301910+mmangkad@users.noreply.github.com >
2026-05-27 10:13:22 +00:00
Bugen Zhao and GitHub
396c8fee50
[Rust Frontend] Align tool parser fallback behavior between streaming & non-streaming paths ( #43662 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-05-27 10:13:12 +00:00
ad464e16c0
[Doc] Add Ascend NPU tab to the quickstart installation guide ( #43550 )
...
Signed-off-by: Aditya Singh <adisin650@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-05-27 08:41:29 +00:00
akii96 and GitHub
de12f5ca0b
[ROCm][GPT-OSS] Avoid repeated compile-time cos_sin_cache.to(bf16) casts in rotary path ( #42833 )
...
Signed-off-by: Aakif Nawaz <aakif.nawaz@amd.com >
2026-05-27 16:22:27 +08:00
683033d4ba
[Frontend] Add MiniCPM5 XML tool call parser ( #43175 )
...
Signed-off-by: zhangtao <zhangtao2@modelbest.cn >
Signed-off-by: zhangtao2 <zhangtao2@modelbest.cn >
Co-authored-by: zhangtao <zhangtao2@modelbest.cn >
Co-authored-by: Chauncey <chaunceyjiang@gmail.com >
2026-05-27 00:39:35 -07:00
8c94938cfb
[MRV2][BugFix] Fix KV connector handling in spec decode case ( #43719 )
...
Signed-off-by: Nick Hill <nickhill123@gmail.com >
Co-authored-by: Wentao Ye <44945378+yewentao256@users.noreply.github.com >
2026-05-27 06:37:56 +00:00
Nico Holmberg and GitHub
7b54690244
[ROCm][Perf] Expose AITER MoE sorting dispatch policy via env var ( #39177 )
...
Signed-off-by: nholmber <nholmber@users.noreply.github.com >
2026-05-27 13:11:02 +08:00
1fc2cee50a
[KVConnector][Mooncake] Wire reset_cache cascade end-to-end ( #42694 )
...
Signed-off-by: aoshen524 <aoshen524@gmail.com >
Signed-off-by: Ao Shen <aoshen@inferact.ai >
Co-authored-by: aoshen524 <aoshen524@gmail.com >
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-26 20:52:35 -07:00
Angela Yi and GitHub
0fa3114ae1
Fix test_aot_compile for torch 2.12 ( #43695 )
...
Signed-off-by: Angela Yi <yiangela7@gmail.com >
2026-05-26 23:12:49 -04:00
Woosuk Kwon and GitHub
adaa5e455a
[DSv4] Refactor compressor & Fix ROCm compatibility ( #43710 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-05-26 19:56:46 -07:00
c02c758ea4
[Deprecation] Deprecate functions as scheduled for v0.21.0 ( #43358 )
...
Signed-off-by: yewentao256 <zhyanwentao@126.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-05-26 19:56:21 -07:00
Matthew Bonanni and GitHub
aa6138169f
[MLA][Attention] Add OOT MLA prefill backend registration mechanism ( #43325 )
...
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
2026-05-26 19:56:09 -07:00
7e33081cee
[Attention] Make FlexAttention and FlashAttention use num-blocks first layouts ( #42095 )
...
Signed-off-by: Lucas Wilkinson <lwilkins@redhat.com >
Signed-off-by: Matthew Bonanni <mbonanni@redhat.com >
Co-authored-by: Matthew Bonanni <mbonanni@redhat.com >
Co-authored-by: Nicolò Lucchesi <nlucches@redhat.com >
2026-05-26 19:55:56 -07:00
Xin Yang and GitHub
d8eebe6d97
[Perf] Optimize Fp8BlockScaledMMLinearKernel input_scale tensor using new_empty() ( #43677 )
...
Signed-off-by: Xin Yang <xyangx@amazon.com >
2026-05-26 19:55:52 -07:00
Andreas Karatzas and GitHub
5bdb181df5
[ROCm][CI] Fix ROCm multimodal Qwen2.5-VL activation compile and Phi4MM ragged image mask handling ( #43647 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-05-26 19:53:34 -07:00
Bugen Zhao and GitHub
0b68f21e7c
[Rust Frontend] Add reasoning/tool parser & renderer roundtrip tests ( #43582 )
...
Signed-off-by: Bugen Zhao <i@bugenzhao.com >
2026-05-27 00:49:30 +00:00
dede691c95
[Bugfix] Split attention groups by num_heads_q for spec-decode drafts ( #43543 )
...
Signed-off-by: Luciano Martins <lucianommartins@users.noreply.github.com >
Co-authored-by: Luciano Martins <lucianommartins@users.noreply.github.com >
2026-05-27 00:11:01 +00:00
e19b9b1045
[ci] Add arm64 ci image ( #41303 )
...
Signed-off-by: khluu <khluu000@gmail.com >
Signed-off-by: Kevin H. Luu <khluu000@gmail.com >
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-05-26 14:38:09 -07:00
812e7e7364
[Bugfix][V1] Fix TOCTOU race causing intermittent EADDRINUSE on multi-API-server DP startup ( #42585 )
...
Signed-off-by: Vadim Gimpelson <vadim.gimpelson@gmail.com >
Signed-off-by: Vadim Gimpelson <156319763+vadiklyutiy@users.noreply.github.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-05-26 14:06:00 -07:00
d98cbf472b
[KV Connector] MooncakeStore: drop dead discard_partial_chunks parameter ( #43627 )
...
Signed-off-by: Zhewen Li <zhewen@inferact.ai >
Co-authored-by: Zhewen Li <zhewen@inferact.ai >
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-26 13:40:21 -07:00
Jee Jee Li and GitHub
6e503868ca
[Kernel] Porting fuse_minimax_qk_norm to manual fusion ( #43410 )
...
Signed-off-by: Jee Jee Li <jeejeelee@inferact.ai >
2026-05-26 13:16:03 -07:00
49b4882779
[CI] Soft-fail AMD entrypoints mirror tests ( #43709 )
...
Signed-off-by: Kevin Luu <kevin@inferact.ai >
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-05-26 13:08:48 -07:00
Woosuk Kwon and GitHub
193ce8812e
[DSv4] Drop _get_compressed_kv_buffer in DeepseekCompressor ( #43690 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-05-26 10:11:25 -07:00
3aea37d28e
[Doc] Add line limit to AGENTS.md ( #43635 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
Signed-off-by: Mark McLoughlin <markmc@redhat.com >
Co-authored-by: Mark McLoughlin <markmc@redhat.com >
2026-05-26 09:31:23 -07:00
Wei-Ming Chen and GitHub
6f5b533241
Add LM head quantization support for ModelOpt ( #42124 )
...
Signed-off-by: weimingc <17592131+meenchen@users.noreply.github.com >
2026-05-26 09:21:05 -07:00
Woosuk Kwon and GitHub
c8414a8271
[ROCm] Remove MegaMoE integration in deepseek v4 ( #43629 )
...
Signed-off-by: Woosuk Kwon <woosuk@inferact.ai >
2026-05-26 08:56:04 -07:00
f51bbc694d
[MoE Refactor] W4a8 int8 oracle ( #42789 )
...
Signed-off-by: Bill Nell <bnell@redhat.com >
Co-authored-by: Robert Shaw <114415538+robertgshaw2-redhat@users.noreply.github.com >
2026-05-26 11:15:42 -04:00
b226ddacfd
[MoE Refactor] Migrate ModelOptMxFp8FusedMoE to oracle ( #42768 )
...
Signed-off-by: Bill Nell <bnell@redhat.com >
Co-authored-by: Robert Shaw <114415538+robertgshaw2-redhat@users.noreply.github.com >
2026-05-26 11:14:14 -04:00
Yongye Zhu and GitHub
6ab6ffb428
[Feat][DSV4] Fuse q pad into deepseek v4 fused kernel ( #43162 )
2026-05-26 05:12:54 -10:00
Andreas Karatzas and GitHub
445ded18c1
[ROCm][CI] Extend ROCm quick reduce coverage ( #40990 )
...
Signed-off-by: Andreas Karatzas <akaratza@amd.com >
2026-05-26 21:57:13 +08:00
d565357a90
[Docs][ROCm] MoRI-IO Connector Usage Guide ( #43603 )
...
Signed-off-by: simondanielsson <simon.danielsson99@hotmail.com >
Signed-off-by: Simon Danielsson <70206058+simondanielsson@users.noreply.github.com >
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-05-26 21:52:30 +08:00
Mohammad Miadh Angkad and GitHub
a970fb5a1a
Fix CuPy runtime deps and restore humming ( #43530 )
...
Signed-off-by: Mohammad Miadh Angkad <176301910+mmangkad@users.noreply.github.com >
2026-05-26 05:59:40 -07:00
Chaojun Zhang and GitHub
861b97765d
[XPU] Fix fused MoE LoRA kernel crash on XPU by using platform-agnos num_compute_units ( #43646 )
...
Signed-off-by: Chaojun,Zhang <chaojun.zhang@intel.com >
2026-05-26 03:40:32 -07:00
ebd0692f80
[Model] Use AutoWeightsLoader for InternLM2 ( #38278 )
...
Signed-off-by: Jesus De Jesus <dejesus.9297@gmail.com >
Signed-off-by: javierdejesusda <javier.dejesusj9@gmail.com >
Co-authored-by: Cyrus Leung <tlleungac@connect.ust.hk >
2026-05-26 03:39:26 -07:00
739af5c7e1
[Reasoning] [Bugfix] Reject invalid thinking_token_budget values ( #43402 )
...
Signed-off-by: linzm1007 <linzm1007@126.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2026-05-26 03:37:30 -07:00
Thibault Castells and GitHub
5d09f471f4
[Misc] Support interleaved custom image benchmark datasets ( #43636 )
...
Signed-off-by: ThibaultCastells <thib.castells@icloud.com >
2026-05-26 03:37:25 -07:00
681d7dd38b
[Misc][Refactor][ROCm] Convert MoRI-related envvars to extra config args ( #43303 )
...
Signed-off-by: simondanielsson <simon.danielsson99@hotmail.com >
Co-authored-by: TJian <tunjian.tan@embeddedllm.com >
2026-05-26 03:33:35 -07:00
Ethan Feng and GitHub
755043cf3c
[KV Transfer] Enable HMA by default for connectors that support it ( #41847 )
...
Signed-off-by: Ethan Feng <ethan.fengch@gmail.com >
2026-05-26 12:28:51 +02:00