Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use task-based rechunking to prechunk along partial boundaries #8831

Merged
merged 12 commits into from
Aug 20, 2024
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ repos:
- tornado
- pyarrow
- urllib3
- git+https://github.com/dask/dask
- git+https://github.com/hendrikmakait/dask@prechunk-p2p-rechunk
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TODO: Revert before merging

- git+https://github.com/dask/zict

# Increase this value to clear the cache on GitHub actions if nothing else in this file
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/environment-3.10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencies:
# Temporary fix for https://github.com/pypa/setuptools/issues/4496
- setuptools < 71
- pip:
- git+https://github.com/dask/dask
- git+https://github.com/hendrikmakait/dask@prechunk-p2p-rechunk
- git+https://github.com/dask-contrib/dask-expr
- git+https://github.com/dask/zict
- git+https://github.com/dask/crick # Only tested here
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/environment-3.11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies:
# Temporary fix for https://github.com/pypa/setuptools/issues/4496
- setuptools < 71
- pip:
- git+https://github.com/dask/dask
- git+https://github.com/hendrikmakait/dask@prechunk-p2p-rechunk
- git+https://github.com/dask-contrib/dask-expr
- git+https://github.com/dask/zict
# Revert after https://github.com/dask/distributed/issues/8614 is fixed
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/environment-3.12.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies:
# Temporary fix for https://github.com/pypa/setuptools/issues/4496
- setuptools < 71
- pip:
- git+https://github.com/dask/dask
- git+https://github.com/hendrikmakait/dask@prechunk-p2p-rechunk
- git+https://github.com/dask-contrib/dask-expr
- git+https://github.com/dask/zict
# Revert after https://github.com/dask/distributed/issues/8614 is fixed
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/environment-mindeps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies:
# Distributed depends on the latest version of Dask
- pip
- pip:
- git+https://github.com/dask/dask
- git+https://github.com/hendrikmakait/dask@prechunk-p2p-rechunk
# test dependencies
- pytest
- pytest-cov
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/gpuci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ rapids-logger "Install distributed"
python -m pip install -e .

rapids-logger "Install dask"
python -m pip install git+https://github.com/dask/dask
python -m pip install git+https://github.com/hendrikmakait/dask@prechunk-p2p-rechunk

rapids-logger "Check Python versions"
python --version
Expand Down
Loading
Loading