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

Fused MOE for Mixtral #2542

Merged
merged 23 commits into from
Jan 30, 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
Prev Previous commit
fix typo
  • Loading branch information
pcmoritz committed Jan 30, 2024
commit d30e844d46ea60805b1e8cbf0b096e256db2c7d1
1 change: 0 additions & 1 deletion vllm/model_executor/models/mixtral.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
self.w2s,
routing_weights,
selected_experts,
routing_weights,
inplace=True)

final_hidden_states = tensor_model_parallel_all_reduce(
Expand Down
Loading