forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[train/release] Fix horovod user test master app config (ray-project#…
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
base_image: "anyscale/ray-ml:nightly-py37-gpu" | ||
env_vars: {} | ||
debian_packages: | ||
- curl | ||
|
||
python: | ||
pip_packages: | ||
- pytest | ||
- awscli | ||
conda_packages: [] | ||
|
||
post_build_cmds: | ||
- pip3 uninstall ray -y || true | ||
- pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }} | ||
- pip3 install 'ray[tune]' | ||
- pip3 install torch torchvision | ||
- HOROVOD_WITH_GLOO=1 HOROVOD_WITHOUT_MPI=1 HOROVOD_WITHOUT_TENSORFLOW=1 HOROVOD_WITHOUT_MXNET=1 HOROVOD_WITH_PYTORCH=1 pip3 install -U git+https://github.com/horovod/horovod.git | ||
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters