Deprecations for v0.23 and v0.24#44992
Merged
Merged
Conversation
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Contributor
|
Documentation preview: https://vllm--44992.org.readthedocs.build/en/44992/ |
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
yewentao256
approved these changes
Jun 9, 2026
yewentao256
left a comment
Member
There was a problem hiding this comment.
LGTM, thanks for the work!
The `VLLM_USE_FLASHINFER_MOE_MXFP4_BF16=1` env var was device-aware: it selected `FLASHINFER_CUTLASS_MXFP4_BF16` on SM90 (H100) but `FLASHINFER_TRTLLM_MXFP4_BF16` on SM100 (B200). The migration to `--moe-backend flashinfer_cutlass` lost that distinction, so on the B200 GPQA eval the CUTLASS BF16 kernel is selected and rejects the deployment (the kernel is unsupported on SM100), crashing the engine with "does not support the deployment configuration". Use `flashinfer_trtllm` to match the backend the env var selected on B200, which is the hardware this eval step runs on. Co-authored-by: Claude <noreply@anthropic.com> Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Member
|
We have updated AMD CI to use only MI325 for the moment cause MI300 cluster is a bit flaky at the moment. So probably merge main for the AMD tests failures at least so that they run on MI325 |
Saddss
pushed a commit
to Saddss/vllm
that referenced
this pull request
Jun 14, 2026
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
afierka-intel
added a commit
to afierka-intel/vllm
that referenced
this pull request
Jun 16, 2026
Rename VLLM_TRITON_ATTN_USE_TD to the general VLLM_TRITON_USE_TD per the TD-adoption RFC (vllm-project#42545). The old name stays registered but is now ignored and warns on use (removed in v0.25), mirroring the existing HOST_IP deprecation in network_utils.py; vllm-project#44992 removed the generic deprecated_env helper, so the warning is emitted inline. Tri-state semantics of the new variable are unchanged. Co-authored-by: Claude <noreply@anthropic.com> Signed-off-by: Artur Fierka <artur.fierka@intel.com>
divineearthly
pushed a commit
to divineearthly/vllm
that referenced
this pull request
Jun 19, 2026
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> Signed-off-by: divineearthly <divineearthly@gmail.com>
tunglinwood
pushed a commit
to tunglinwood/vllm
that referenced
this pull request
Jun 22, 2026
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
nkzhenhua
pushed a commit
to nkzhenhua/vllm
that referenced
this pull request
Jun 24, 2026
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
oonyshch
pushed a commit
to afierka-intel/vllm
that referenced
this pull request
Jul 1, 2026
Rename VLLM_TRITON_ATTN_USE_TD to the general VLLM_TRITON_USE_TD per the TD-adoption RFC (vllm-project#42545). The old name stays registered but is now ignored and warns on use (removed in v0.25), mirroring the existing HOST_IP deprecation in network_utils.py; vllm-project#44992 removed the generic deprecated_env helper, so the warning is emitted inline. Tri-state semantics of the new variable are unchanged. Co-authored-by: Claude <noreply@anthropic.com> Signed-off-by: Artur Fierka <artur.fierka@intel.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Perform deletions for deprecations scheduled for:
*this PR does not include the deletion of the Transformers v4 code path. This is somewhat more complicated and will be done in a follow up PR.