Skip to content
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
Next Next commit
static cast
  • Loading branch information
tianleiwu committed Jul 28, 2025
commit 4c07bcf6dc65c9919c1af3e7a708e1a5efe509de
2 changes: 1 addition & 1 deletion onnxruntime/contrib_ops/cuda/moe/ft_moe/moe_kernel.cu
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ void CutlassMoeFCRunner<T, WeightType, Enable>::run_moe_fc(
swiglu_output_buffer + total_past_rows_ * inter_size,
gemm1_output_buffer + total_past_rows_ * 2 * inter_size,
inter_size,
total_covered_rows_,
static_cast<int>(total_covered_rows_),
swiglu_alpha,
stream);

Expand Down
Loading