Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions models/deepseek-ai/DeepSeek-V4-Pro.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,10 @@ features:
- "--reasoning-parser"
- "deepseek_v4"
spec_decoding:
description: "Multi-Token Prediction speculative decoding with 2 speculative tokens (1 on Hopper)."
description: "Multi-Token Prediction speculative decoding with 2 speculative tokens."
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The update to num_speculative_tokens=2 for Hopper is consistent with recent kernel improvements mentioned in the PR description. However, DeepSeek-V4-Flash.yaml (lines 58-66) still contains the same num_speculative_tokens=1 override for Hopper. Since this improvement is hardware-dependent and applies to the MTP kernels used by both models, you should consider updating the Flash recipe as well to maintain consistency across the V4 model family and ensure optimal performance for all users on Hopper hardware.

args:
- "--speculative_config"
- '{"method":"mtp","num_speculative_tokens":2}'
hardware_overrides:
hopper:
args:
- "--speculative_config"
- '{"method":"mtp","num_speculative_tokens":1}'

opt_in_features:
- spec_decoding
Expand Down