2018-12-23 22:59:23 -08:00
.. image :: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png
2017-03-17 16:48:25 -07:00
2020-11-10 10:53:28 -08:00
.. image :: https://readthedocs.org/projects/ray/badge/?version=master
:target: http://docs.ray.io/en/master/?badge=master
2017-03-17 16:48:25 -07:00
2020-10-05 19:39:23 -07:00
.. image :: https://img.shields.io/badge/Ray-Join%20Slack-blue
:target: https://forms.gle/9TSdDYUgxYs8SA9e8
2020-12-10 01:13:40 -08:00
.. image :: https://img.shields.io/badge/Discuss-Ask%20Questions-blue
:target: https://discuss.ray.io/
2021-08-27 20:29:34 -07:00
2021-07-14 18:55:24 -07:00
.. image :: https://img.shields.io/twitter/follow/raydistributed.svg?style=social&logo=twitter
:target: https://twitter.com/raydistributed
2020-12-10 01:13:40 -08:00
2017-03-17 16:48:25 -07:00
|
2022-08-09 11:24:18 -07:00
Ray is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a toolkit of libraries (Ray AIR) for simplifying ML compute:
2019-08-28 17:54:15 -07:00
2022-08-03 13:19:00 -07:00
.. image :: https://github.com/ray-project/ray/raw/master/doc/source/images/what-is-ray-padded.svg
2017-03-17 16:48:25 -07:00
2022-08-03 13:19:00 -07:00
..
https://docs.google.com/drawings/d/1Pl8aCYOsZCo61cmp57c7Sja6HhIygGCvSZLi_AuBuqo/edit
2019-08-28 17:54:15 -07:00
2022-08-03 13:19:00 -07:00
Learn more about `Ray AIR`_ and its libraries:
- `Datasets`_ : Distributed Data Preprocessing
- `Train`_ : Distributed Training
2019-08-28 17:54:15 -07:00
- `Tune`_ : Scalable Hyperparameter Tuning
- `RLlib`_ : Scalable Reinforcement Learning
2021-09-14 16:32:07 -07:00
- `Serve`_ : Scalable and Programmable Serving
2019-08-28 17:54:15 -07:00
2022-08-03 13:19:00 -07:00
Or more about `Ray Core`_ and its key abstractions:
2019-08-28 17:54:15 -07:00
2022-08-03 13:19:00 -07:00
- `Tasks`_ : Stateless functions executed in the cluster.
- `Actors`_ : Stateful worker processes created in the cluster.
- `Objects`_ : Immutable values accessible across the cluster.
2019-08-28 17:54:15 -07:00
2022-08-05 18:42:45 -07:00
Ray runs on any machine, cluster, cloud provider, and Kubernetes, and features a growing
2022-08-03 13:19:00 -07:00
`ecosystem of community integrations`_ .
2020-07-24 14:53:21 -07:00
2022-08-03 13:19:00 -07:00
Install Ray with: `` pip install ray `` . For nightly wheels, see the
`Installation page <https://docs.ray.io/en/latest/installation.html> `__ .
2020-07-24 14:53:21 -07:00
2022-08-03 13:19:00 -07:00
.. _`Serve`: https://docs.ray.io/en/latest/serve/index.html
.. _`Datasets`: https://docs.ray.io/en/latest/data/dataset.html
.. _`Workflow`: https://docs.ray.io/en/latest/workflows/concepts.html
.. _`Train`: https://docs.ray.io/en/latest/train/train.html
.. _`Tune`: https://docs.ray.io/en/latest/tune/index.html
.. _`RLlib`: https://docs.ray.io/en/latest/rllib/index.html
.. _`ecosystem of community integrations`: https://docs.ray.io/en/latest/ray-overview/ray-libraries.html
2020-07-24 14:53:21 -07:00
2022-08-05 18:42:45 -07:00
Why Ray?
--------
Today's ML workloads are increasingly compute-intensive. As convenient as they are, single-node development environments such as your laptop cannot scale to meet these demands.
Ray is a unified way to scale Python and AI applications from a laptop to a cluster.
With Ray, you can seamlessly scale the same code from a laptop to a cluster. Ray is designed to be general-purpose, meaning that it can performantly run any kind of workload. If your application is written in Python, you can scale it with Ray, no other infrastructure required.
2017-08-27 19:55:39 -07:00
More Information
----------------
2020-03-23 08:46:56 -07:00
- `Documentation`_
2022-08-03 13:19:00 -07:00
- `Ray Architecture whitepaper`_
2022-08-22 16:41:51 -07:00
- `Ray AIR Technical whitepaper`_
2022-08-03 13:19:00 -07:00
- `Exoshuffle: large-scale data shuffle in Ray`_
- `Ownership: a distributed futures system for fine-grained tasks`_
2019-08-28 17:54:15 -07:00
- `RLlib paper`_
- `Tune paper`_
2017-08-27 19:55:39 -07:00
2020-09-01 09:48:35 -07:00
*Older documents:*
- `Ray paper`_
- `Ray HotOS paper`_
2022-08-03 13:19:00 -07:00
.. _`Ray AIR`: https://docs.ray.io/en/latest/ray-air/getting-started.html
.. _`Ray Core`: https://docs.ray.io/en/latest/ray-core/walkthrough.html
.. _`Tasks`: https://docs.ray.io/en/latest/ray-core/tasks.html
.. _`Actors`: https://docs.ray.io/en/latest/ray-core/actors.html
.. _`Objects`: https://docs.ray.io/en/latest/ray-core/objects.html
.. _`Documentation`: http://docs.ray.io/en/latest/index.html
.. _`Ray Architecture whitepaper`: https://docs.google.com/document/d/1lAy0Owi-vPz2jEqBSaHNQcy2IBSDEHyXNOQZlGuj93c/preview
2022-08-22 16:41:51 -07:00
.. _`Ray AIR Technical whitepaper`: https://docs.google.com/document/d/1bYL-638GN6EeJ45dPuLiPImA8msojEDDKiBx3YzB4_s/preview
2022-03-15 13:12:01 -07:00
.. _`Exoshuffle: large-scale data shuffle in Ray`: https://arxiv.org/abs/2203.05072
2022-08-03 13:19:00 -07:00
.. _`Ownership: a distributed futures system for fine-grained tasks`: https://www.usenix.org/system/files/nsdi21-wang.pdf
2018-01-02 16:33:07 -08:00
.. _`Ray paper`: https://arxiv.org/abs/1712.05889
2017-09-30 15:37:28 -07:00
.. _`Ray HotOS paper`: https://arxiv.org/abs/1703.03924
2019-08-28 17:54:15 -07:00
.. _`RLlib paper`: https://arxiv.org/abs/1712.09381
.. _`Tune paper`: https://arxiv.org/abs/1807.05118
2017-10-03 10:23:47 -07:00
Getting Involved
----------------
2022-03-22 00:17:53 -07:00
.. list-table ::
:widths: 25 50 25 25
:header-rows: 1
* - Platform
- Purpose
- Estimated Response Time
- Support Level
* - `Discourse Forum`_
- For discussions about development and questions about usage.
- < 1 day
- Community
* - `GitHub Issues`_
- For reporting bugs and filing feature requests.
- < 2 days
- Ray OSS Team
* - `Slack`_
- For collaborating with other Ray users.
- < 2 days
- Community
* - `StackOverflow`_
- For asking questions about how to use Ray.
- 3-5 days
- Community
* - `Meetup Group`_
- For learning about Ray projects and best practices.
- Monthly
- Ray DevRel
* - `Twitter`_
- For staying up-to-date on new features.
- Daily
- Ray DevRel
.. _`Discourse Forum`: https://discuss.ray.io/
2019-01-23 13:30:02 -08:00
.. _`GitHub Issues`: https://github.com/ray-project/ray/issues
.. _`StackOverflow`: https://stackoverflow.com/questions/tagged/ray
2019-09-16 20:26:03 -07:00
.. _`Meetup Group`: https://www.meetup.com/Bay-Area-Ray-Meetup/
.. _`Twitter`: https://twitter.com/raydistributed
2021-08-13 13:25:51 -07:00
.. _`Slack`: https://forms.gle/9TSdDYUgxYs8SA9e8