Skip to content

Commit

Permalink
Merge branch 'dev-2.0.0-rc' into dev-2.0.0-sbt-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
talkingwallace committed Oct 11, 2023
2 parents 6750d92 + 570b2e1 commit bf6edba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/fate/arch/dataframe/ops/_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def _extract_columns(r_id):
blocks_with_id = []

for block_id in range(0, n, block_row_size):
block_indexes = indexes[block_id * block_row_size : (block_id + 1) * block_row_size]
block_indexes = indexes[block_id * block_row_size : min(n, (block_id + 1) * block_row_size)]

blocks = [[] for _ in range(block_num)]

Expand Down

0 comments on commit bf6edba

Please sign in to comment.