Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into issue_6899
Browse files Browse the repository at this point in the history
  • Loading branch information
dchigarev committed Jan 31, 2024
2 parents 9ac84ef + bfe77ed commit 05a9ea4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modin/core/dataframe/pandas/dataframe/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -3912,7 +3912,9 @@ def compute_aligned_columns(*dfs, initial_columns=None):
# aligned columns
parts = result._partitions.flatten()
aligned_columns = parts[0].apply(
compute_aligned_columns,
# TODO: unidist on MPI execution requires for this function to be preprocessed,
# otherwise, the execution fails. Look into the issue later.
self._partition_mgr_cls.preprocess_func(compute_aligned_columns),
*[part._data for part in parts[1:]],
initial_columns=self.columns,
)
Expand Down

0 comments on commit 05a9ea4

Please sign in to comment.