Skip to content
Open
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: 1 addition & 4 deletions src/maxtext/layers/moe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1247,10 +1247,7 @@ def jax_ragged_dot_gmm(inputs, kernel, tiling, group_sizes, expert_assignments,
return output

def get_tokamax_group_sizes(group_sizes, inputs, kernel):
# TODO (b/491979205) pipeline fsdp ag per repeat fails tokamax gmm
if self.config.use_qwix_quantization or (
self.config.using_pipeline_parallelism and self.config.pipeline_fsdp_ag_per_repeat
):
if self.config.use_qwix_quantization:
return group_sizes
elif self.config.attention == "vllm_rpa":
return group_sizes
Expand Down
Loading