Created
June 26, 2019 21:19
-
-
Save simon-mo/842b73f74e664cb963fb5cf6c2c8062c to your computer and use it in GitHub Desktop.
Parallel Sorting in ray
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Blocks are sorted twice here. First time they are sorted in
partition_input_blockwhich sorts a whole block. Second time they are sorted incompute_output_block. At the same time there is no such thing as "Step 2" where workers distribute unsorted data into blocks between cutoffs, as shown on the picture.