mirror of
https://github.com/vale981/ray
synced 2025-03-09 21:06:39 -04:00
38 lines
911 B
YAML
38 lines
911 B
YAML
cluster_name: ray-rllib-regression-tests
|
|
|
|
min_workers: 0
|
|
max_workers: 0
|
|
|
|
docker:
|
|
image: anyscale/ray-ml:nightly-gpu
|
|
container_name: ray_container
|
|
pull_before_run: True
|
|
|
|
# Cloud-provider specific configuration.
|
|
provider:
|
|
type: aws
|
|
region: us-west-2
|
|
availability_zone: us-west-2a
|
|
cache_stopped_nodes: False
|
|
|
|
# How Ray will authenticate with newly launched nodes.
|
|
auth:
|
|
ssh_user: ubuntu
|
|
|
|
available_node_types:
|
|
gpu_ondemand:
|
|
node_config:
|
|
InstanceType: p3.16xlarge
|
|
resources: {"CPU": 64, "GPU": 8}
|
|
min_workers: 0
|
|
max_workers: 0
|
|
|
|
head_node_type: gpu_ondemand
|
|
worker_default_node_type: gpu_ondemand
|
|
|
|
# List of shell commands to run to set up nodes.
|
|
setup_commands:
|
|
- sudo apt update
|
|
- sudo apt-get install -y libglib2.0-0 libcudnn7=7.6.5.32-1+cuda10.1
|
|
# libcudnn8=8.0.5.39-1+cuda11.0
|
|
- pip install -U {{env["RAY_WHEEL"]}}
|