Skip to content

Commit

Permalink
PERF-#6694: Use lazy_map_partitions() for dtypes conversion (#6695)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Pavlenko <[email protected]>
  • Loading branch information
AndreyPavlenko authored Nov 3, 2023
1 parent 6157b96 commit 7a9415e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modin/core/dataframe/pandas/dataframe/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1548,7 +1548,7 @@ def astype_builder(df):
0, self._partitions, astype_builder, keep_partitioning=True
)
else:
new_frame = self._partition_mgr_cls.map_partitions(
new_frame = self._partition_mgr_cls.lazy_map_partitions(
self._partitions, astype_builder
)
return self.__constructor__(
Expand Down

0 comments on commit 7a9415e

Please sign in to comment.