mirror of
https://github.com/wassname/ray.git
synced 2026-08-08 11:25:28 +08:00
* Working prototype * Pass buffer length, fix tests * Don't buffer per default * Dispatch and process save in one go, added tests * Fix tests * Pass adaptive seconds to train_buffered, stop result processing after STOP decision * Fix tests, add release test * Update tests * Added detailed logs for slow operations * Update python/ray/tune/trial_runner.py Co-authored-by: Richard Liaw <rliaw@berkeley.edu> * Apply suggestions from code review * Revert tests and go back to old tuning loop * nit Co-authored-by: Richard Liaw <rliaw@berkeley.edu>
34 lines
651 B
YAML
34 lines
651 B
YAML
cluster_name: ray-tune-scalability-tests
|
|
|
|
min_workers: 15
|
|
max_workers: 15
|
|
initial_workers: 15
|
|
|
|
target_utilization_fraction: 0.8
|
|
idle_timeout_minutes: 15
|
|
|
|
docker:
|
|
image: anyscale/ray:nightly
|
|
container_name: ray_container
|
|
pull_before_run: true
|
|
|
|
provider:
|
|
type: aws
|
|
region: us-west-2
|
|
availability_zone: us-west-2a
|
|
cache_stopped_nodes: false
|
|
|
|
auth:
|
|
ssh_user: ubuntu
|
|
|
|
head_node:
|
|
# 64 CPUs
|
|
InstanceType: m5.16xlarge
|
|
|
|
worker_nodes:
|
|
# 64 CPUs
|
|
InstanceType: m5.16xlarge
|
|
|
|
setup_commands:
|
|
- pip install -U https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-1.2.0.dev0-cp37-cp37m-manylinux2014_x86_64.whl
|