Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bugfix][CPU] fix missing input intermediate_tensors in the cpu_model_runner #8733

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Changes from 1 commit
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
Next Next commit
fix cpu model runner input
  • Loading branch information
bigPYJ1151 committed Sep 23, 2024
commit d4f7df1c360d22d63f7bdabfd64a6c2409fad522
1 change: 1 addition & 0 deletions vllm/worker/cpu_model_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ def execute_model(
model_input.attn_metadata,
**MultiModalInputs.as_kwargs(model_input.multi_modal_kwargs or {},
device=self.device),
"intermediate_tensors": intermediate_tensors,
}

hidden_states = model_executable(**execute_model_kwargs)
Expand Down
Loading