2017-03-17 16:48:25 -07:00
|
|
|
Ray
|
|
|
|
===
|
|
|
|
|
|
|
|
.. image:: https://travis-ci.org/ray-project/ray.svg?branch=master
|
|
|
|
:target: https://travis-ci.org/ray-project/ray
|
|
|
|
|
|
|
|
.. image:: https://readthedocs.org/projects/ray/badge/?version=latest
|
|
|
|
:target: http://ray.readthedocs.io/en/latest/?badge=latest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Ray is a flexible, high-performance distributed execution framework.
|
|
|
|
|
2017-12-06 18:17:51 -08:00
|
|
|
Ray comes with libraries that accelerate deep learning and reinforcement learning development:
|
|
|
|
|
2018-01-01 11:10:44 -08:00
|
|
|
- `Ray.tune`_: Hyperparameter Optimization Framework
|
|
|
|
- `Ray RLlib`_: A Scalable Reinforcement Learning Library
|
2017-12-06 18:17:51 -08:00
|
|
|
|
|
|
|
.. _`Ray.tune`: http://ray.readthedocs.io/en/latest/tune.html
|
|
|
|
.. _`Ray RLlib`: http://ray.readthedocs.io/en/latest/rllib.html
|
|
|
|
|
2017-09-30 15:37:28 -07:00
|
|
|
|
2017-08-27 19:55:39 -07:00
|
|
|
Installation
|
|
|
|
------------
|
2017-03-17 16:48:25 -07:00
|
|
|
|
2017-08-27 19:55:39 -07:00
|
|
|
- Ray can be installed on Linux and Mac with ``pip install ray``.
|
|
|
|
- To build Ray from source, see the instructions for `Ubuntu`_ and `Mac`_.
|
|
|
|
|
|
|
|
.. _`Ubuntu`: http://ray.readthedocs.io/en/latest/install-on-ubuntu.html
|
|
|
|
.. _`Mac`: http://ray.readthedocs.io/en/latest/install-on-macosx.html
|
|
|
|
|
|
|
|
|
2017-09-30 15:37:28 -07:00
|
|
|
Example Program
|
|
|
|
---------------
|
|
|
|
|
|
|
|
+------------------------------------------------+----------------------------------------------+
|
|
|
|
| **Basic Python** | **Distributed with Ray** |
|
|
|
|
+------------------------------------------------+----------------------------------------------+
|
|
|
|
|.. code:: python |.. code-block:: python |
|
|
|
|
| | |
|
|
|
|
| import time | import time |
|
|
|
|
| | import ray |
|
|
|
|
| | |
|
|
|
|
| | ray.init() |
|
|
|
|
| | |
|
|
|
|
| | @ray.remote |
|
|
|
|
| def f(): | def f(): |
|
|
|
|
| time.sleep(1) | time.sleep(1) |
|
|
|
|
| return 1 | return 1 |
|
|
|
|
| | |
|
|
|
|
| # Execute f serially. | # Execute f in parallel. |
|
|
|
|
| results = [f() for i in range(4)] | object_ids = [f.remote() for i in range(4)] |
|
|
|
|
| | results = ray.get(object_ids) |
|
|
|
|
+------------------------------------------------+----------------------------------------------+
|
|
|
|
|
|
|
|
|
2017-08-27 19:55:39 -07:00
|
|
|
More Information
|
|
|
|
----------------
|
|
|
|
|
|
|
|
- `Documentation`_
|
2017-09-30 15:37:28 -07:00
|
|
|
- `Tutorial`_
|
2017-08-27 19:55:39 -07:00
|
|
|
- `Blog`_
|
2018-01-02 16:33:07 -08:00
|
|
|
- `Ray paper`_
|
2017-09-30 15:37:28 -07:00
|
|
|
- `Ray HotOS paper`_
|
2017-08-27 19:55:39 -07:00
|
|
|
|
|
|
|
.. _`Documentation`: http://ray.readthedocs.io/en/latest/index.html
|
2017-09-30 15:37:28 -07:00
|
|
|
.. _`Tutorial`: https://github.com/ray-project/tutorial
|
2017-09-11 23:11:15 -07:00
|
|
|
.. _`Blog`: https://ray-project.github.io/
|
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
|
2017-10-03 10:23:47 -07:00
|
|
|
|
|
|
|
Getting Involved
|
|
|
|
----------------
|
|
|
|
|
|
|
|
- Ask questions on our mailing list `ray-dev@googlegroups.com`_.
|
|
|
|
- Please report bugs by submitting a `GitHub issue`_.
|
|
|
|
- Submit contributions using `pull requests`_.
|
|
|
|
|
|
|
|
.. _`ray-dev@googlegroups.com`: https://groups.google.com/forum/#!forum/ray-dev
|
|
|
|
.. _`GitHub issue`: https://github.com/ray-project/ray/issues
|
|
|
|
.. _`pull requests`: https://github.com/ray-project/ray/pulls
|