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
5 changes: 0 additions & 5 deletions vllm/v1/worker/tt_model_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -1127,11 +1127,6 @@ def execute_with_model_input(
None if s == SEED_NONE_SENTINEL else s
for s in sampling_param_dict["seed"]
]
# Cap top_k values to MAX_K for on-device sampling due to
# https://github.com/tenstorrent/tt-metal/issues/35661
sampling_param_dict["top_k"] = [
min(k, MAX_K) for k in sampling_param_dict["top_k"]
]
kwargs["sampling_params"] = TTSamplingParams(**sampling_param_dict)

# Pass prompt and output tokens for decode with sampling penalties
Expand Down
Loading