Skip to content

Commit 4b76603

Browse files
committedJun 24, 2024
change right partition sending
1 parent b860281 commit 4b76603

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎modin/core/dataframe/pandas/partitioning/partition_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,6 @@ def broadcast_axis_partitions(
576576
# load-balance the data as well.
577577
kw = {
578578
"num_splits": num_splits,
579-
"other_axis_partition": right_partitions,
580579
"maintain_partitioning": keep_partitioning,
581580
}
582581
if lengths:
@@ -591,6 +590,7 @@ def broadcast_axis_partitions(
591590
left_partitions[i].apply(
592591
preprocessed_map_func,
593592
*(apply_func_args if apply_func_args else []),
593+
other_axis_partition=right_partitions[i] if right_partitions is not None else None,
594594
**kw,
595595
**({"partition_idx": idx} if enumerate_partitions else {}),
596596
**kwargs,

0 commit comments

Comments
 (0)