mirror of
https://github.com/vale981/ray
synced 2025-03-07 02:51:39 -05:00
No description
![]() * fix yaml bug * add ext agent * gpus * update * tuning * docs * Sun Oct 15 21:09:25 PDT 2017 * lint * update * Sun Oct 15 22:39:55 PDT 2017 * Sun Oct 15 22:40:17 PDT 2017 * Sun Oct 15 22:43:06 PDT 2017 * Sun Oct 15 22:46:06 PDT 2017 * Sun Oct 15 22:46:21 PDT 2017 * Sun Oct 15 22:48:11 PDT 2017 * Sun Oct 15 22:48:44 PDT 2017 * Sun Oct 15 22:49:23 PDT 2017 * Sun Oct 15 22:50:21 PDT 2017 * Sun Oct 15 22:53:00 PDT 2017 * Sun Oct 15 22:53:34 PDT 2017 * Sun Oct 15 22:54:33 PDT 2017 * Sun Oct 15 22:54:50 PDT 2017 * Sun Oct 15 22:55:20 PDT 2017 * Sun Oct 15 22:56:56 PDT 2017 * Sun Oct 15 22:59:03 PDT 2017 * fix * Update tune_mnist_ray.py * remove script trial * fix * reorder * fix ex * py2 support * upd * comments * comments * cleanup readme * fix trial * annotate * Update rllib.rst * init pausing * Docs, Lint * fix danglings and restore endpoint moved to trialrunner * renaming * nit * start always starts from checkpoint * smalls * nits * lint * last change |
||
---|---|---|
.travis | ||
cmake/Modules | ||
doc | ||
docker | ||
examples | ||
python | ||
site | ||
src | ||
test | ||
vsprojects | ||
.clang-format | ||
.editorconfig | ||
.gitignore | ||
.style.yapf | ||
.travis.yml | ||
build-docker.sh | ||
build.sh | ||
CMakeLists.txt | ||
LICENSE | ||
pylintrc | ||
Ray.sln | ||
README.rst |
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 ---------------- - `Documentation`_ - `Tutorial`_ - `Blog`_ - `Ray HotOS paper`_ .. _`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 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