No description
Find a file
Robert Nishihara 6c31adf781 Add blog post for 0.2 release. (#1029)
* Draft of 0.2 release blog post.

* Add figure.

* Change date in filename.

* Shrink PNG.

* Add link to plasma store documentation.

* Small updates to blog post.
2017-10-01 14:40:58 -07:00
.travis [rllib] Changes for preprocessors (#1033) 2017-09-30 13:11:20 -07:00
cmake/Modules Changes to build to fix creation of wheels. (#840) 2017-08-21 17:49:35 -07:00
doc Making our landing pages look better (#1022) 2017-09-30 15:37:28 -07:00
docker Pin opencv-python version to 3.2.0.8 in dockerfile. (#926) 2017-09-03 23:51:59 -07:00
examples Resnet Example Uses tf.Datasets now (#960) 2017-09-20 14:14:04 -07:00
python Bump version number to 0.2.1. (#1026) 2017-10-01 12:33:13 -07:00
site Add blog post for 0.2 release. (#1029) 2017-10-01 14:40:58 -07:00
src upgrade to latest arrow to fix XCode 9 problem (#1042) 2017-09-30 16:24:59 -07:00
test Workaround for passing empty list to ray.wait. (#1043) 2017-10-01 11:45:02 -07:00
vsprojects Windows compatibility (#57) 2016-11-22 17:04:24 -08:00
.clang-format Implement object table notification subscriptions and switch to using Redis modules for object table. (#134) 2016-12-18 18:19:02 -08:00
.editorconfig Update Windows support (#317) 2016-07-28 13:11:13 -07:00
.gitignore [rllib] Fix issues with PPO model restoration (#1018) 2017-09-28 13:12:06 -07:00
.style.yapf Make Monitor remove dead Redis entries from exiting drivers. (#994) 2017-09-26 00:11:38 -07:00
.travis.yml Fix valgrind tests. (#1037) 2017-09-30 00:11:09 -07:00
build-docker.sh Fix build-docker.sh bug (#515) 2017-05-06 18:57:08 -07:00
build.sh Changes to build to fix creation of wheels. (#840) 2017-08-21 17:49:35 -07:00
CMakeLists.txt Rebase Ray on latest arrow (remove numbuf from Ray). (#910) 2017-09-04 22:58:49 -07:00
LICENSE [rllib] Basic port of baselines/deepq to rllib (#709) 2017-07-07 18:37:00 +00:00
pylintrc adding pylint (#233) 2016-07-08 12:39:11 -07:00
Ray.sln Windows compatibility (#57) 2016-11-22 17:04:24 -08:00
README.rst Making our landing pages look better (#1022) 2017-09-30 15:37:28 -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.


Installation
------------

- 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


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)               |
+------------------------------------------------+----------------------------------------------+


More Information
----------------

- `Mailing List`_
- `Documentation`_
- `Tutorial`_
- `Blog`_
- `Ray HotOS paper`_

.. _`Mailing List`: https://groups.google.com/forum/#!forum/ray-dev
.. _`Documentation`: http://ray.readthedocs.io/en/latest/index.html
.. _`Tutorial`: https://github.com/ray-project/tutorial
.. _`Blog`: https://ray-project.github.io/
.. _`Ray HotOS paper`: https://arxiv.org/abs/1703.03924