Skip to content

Commit

Permalink
[XPU] bug fix for xpu_parallel_matmul tensor parallel output. (Paddle…
Browse files Browse the repository at this point in the history
  • Loading branch information
FeixLiu authored and lvdongyi committed Oct 23, 2024
1 parent 3412f50 commit 32e3ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paddlenlp/transformers/tensor_parallel_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def parallel_matmul(lm_output, logit_weights, tensor_parallel_output=True, train
logits = xpu_parallel_matmul(
lm_output,
logit_weights,
tensor_parallel_output,
tensor_parallel_output=tensor_parallel_output,
training=training,
)
return logits
Expand Down

0 comments on commit 32e3ccc

Please sign in to comment.