app_config.yaml 477 B

1234567891011121314
  1. base_image: {{ env["RAY_IMAGE_NIGHTLY_CPU"] }}
  2. debian_packages: []
  3. # Lower the threshold to trigger memory pressure.
  4. env_vars: {"RAY_memory_usage_threshold": "0.5", "automatic_object_spilling_enabled": "0"}
  5. python:
  6. pip_packages: []
  7. conda_packages: []
  8. post_build_cmds:
  9. - pip3 uninstall -y ray && pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
  10. - pip3 install ray[default]
  11. - {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}