mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
![]() Fixes a bug in push-based shuffle in computing the merge task <> reduce tasks mapping when the number of reduce tasks does not divide evenly by the number of merge tasks. Previously, if there were N reduce tasks for one merge task, we would do: [N + 1, N + 1, ..., N + 1, all left over tasks] which could lead to negative many reduce tasks n the last merge partition. This PR changes it to: [N + 1, N + 1, ..., N + 1, N, N, N, ...] Related issue number Closes #25863. |
||
---|---|---|
.. | ||
ray | ||
requirements | ||
asv.conf.json | ||
build-wheel-macos-arm64.sh | ||
build-wheel-macos.sh | ||
build-wheel-manylinux2014.sh | ||
build-wheel-windows.sh | ||
MANIFEST.in | ||
README-building-wheels.md | ||
requirements.txt | ||
requirements_linters.txt | ||
requirements_ml_docker.txt | ||
setup.py |