-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dataset][nightly-test] add pipelined ingestion/training nightly test
- Loading branch information
Showing
8 changed files
with
473 additions
and
6 deletions.
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
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
17 changes: 17 additions & 0 deletions
17
release/nightly_tests/dataset/pipelined_ingestion_app.yaml
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,17 @@ | ||
base_image: "anyscale/ray-ml:pinned-nightly-py37-gpu" | ||
env_vars: {} | ||
|
||
python: | ||
pip_packages: [] | ||
conda_packages: [] | ||
|
||
post_build_cmds: | ||
- pip uninstall -y numpy ray || true | ||
- sudo rm -rf /home/ray/anaconda3/lib/python3.7/site-packages/numpy | ||
- pip install numpy || true | ||
- pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }} | ||
- pip install -U git+https://github.com/ray-project/ray_shuffling_data_loader.git@add-embedding-model | ||
- pip install ray[default] | ||
- pip install pyarrow | ||
- pip install torch torchvision | ||
- HOROVOD_WITH_GLOO=1 HOROVOD_WITHOUT_MPI=1 HOROVOD_WITHOUT_TENSORFLOW=1 HOROVOD_WITHOUT_MXNET=1 HOROVOD_WITH_PYTORCH=1 pip install -U git+https://github.com/horovod/horovod.git |
29 changes: 29 additions & 0 deletions
29
release/nightly_tests/dataset/pipelined_ingestion_compute.yaml
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,29 @@ | ||
cloud_id: cld_17WvYIBBkdgLwEUNcLeRAE | ||
region: us-west-2 | ||
|
||
max_workers: 999 | ||
|
||
aws: | ||
IamInstanceProfile: {"Name": "ray-autoscaler-v1"} | ||
BlockDeviceMappings: | ||
- DeviceName: /dev/sda1 | ||
Ebs: | ||
VolumeSize: 500 | ||
|
||
head_node_type: | ||
name: head_node | ||
instance_type: i3.8xlarge | ||
|
||
worker_node_types: | ||
- name: memory_node | ||
instance_type: i3.8xlarge | ||
min_workers: 16 | ||
max_workers: 16 | ||
use_spot: false | ||
- name: gpu_node | ||
instance_type: i3.8xlarge | ||
min_workers: 4 | ||
max_workers: 4 | ||
use_spot: false | ||
resources: | ||
gpu: 4 |
Oops, something went wrong.