File tree 1 file changed +5
-4
lines changed
modin/core/dataframe/pandas/partitioning
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -503,7 +503,7 @@ def broadcast_axis_partitions(
503
503
keep_partitioning = False ,
504
504
num_splits = None ,
505
505
apply_indices = None ,
506
- send_all_right = True ,
506
+ broadcast_all = True ,
507
507
enumerate_partitions = False ,
508
508
lengths = None ,
509
509
apply_func_args = None ,
@@ -532,7 +532,7 @@ def broadcast_axis_partitions(
532
532
then the number of splits is preserved.
533
533
apply_indices : list of ints, default: None
534
534
Indices of `axis ^ 1` to apply function over.
535
- send_all_right : bool, default: True
535
+ broadcast_all : bool, default: True
536
536
Whether or not to pass all right axis partitions to each of the left axis partitions.
537
537
enumerate_partitions : bool, default: False
538
538
Whether or not to pass partition index into `apply_func`.
@@ -595,7 +595,7 @@ def broadcast_axis_partitions(
595
595
preprocessed_map_func ,
596
596
* (apply_func_args if apply_func_args else []),
597
597
other_axis_partition = (
598
- right_partitions if send_all_right else right_partitions [i ]
598
+ right_partitions if broadcast_all else right_partitions [i ]
599
599
),
600
600
** kw ,
601
601
** ({"partition_idx" : idx } if enumerate_partitions else {}),
@@ -698,7 +698,8 @@ def broadcast_apply(
698
698
left = left ,
699
699
right = right ,
700
700
apply_func = apply_func ,
701
- send_all_right = False ,
701
+ broadcast_all = False ,
702
+ keep_partitioning = True ,
702
703
)
703
704
return new_partitions
704
705
You can’t perform that action at this time.
0 commit comments