mirror of
https://github.com/vale981/ray
synced 2025-03-09 12:56:46 -04:00
37 lines
1 KiB
YAML
37 lines
1 KiB
YAML
# This file is generated by `ray project create`.
|
|
|
|
name: ray_stress_tests
|
|
|
|
cluster:
|
|
config: ray-project/cluster.yaml
|
|
params:
|
|
- name: ray_version # Ray version string.
|
|
default: "0.8.2"
|
|
|
|
- name: commit # Ray commit SHA string.
|
|
default: "f5a1307a608fe5fdbdb04616b22c91f029af329a"
|
|
|
|
- name: ray_branch
|
|
default: "releases/0.8.2"
|
|
|
|
commands:
|
|
- name: test_many_tasks
|
|
help: "Run a stress test that executes many tasks."
|
|
command: |
|
|
python test_many_tasks.py
|
|
|
|
- name: test_dead_actors
|
|
help: "Run a stress test that spawns and kills many actors."
|
|
command: |
|
|
python test_dead_actors.py
|
|
|
|
# Pathnames for files and directories that should be saved
|
|
# in a snapshot but that should not be synced with a# session. Pathnames can be relative to the project
|
|
# directory or absolute. Generally, this should be files
|
|
# that were created by an active session, such as
|
|
# application checkpoints and logs.
|
|
output_files: [
|
|
# For example, uncomment this to save the logs from the
|
|
# last ray job.
|
|
# "/tmp/ray/session_latest",
|
|
]
|