Release 0.7.5 updates (#5727)

This commit is contained in:
Eric Liang
2019-09-26 10:30:37 -07:00
committed by GitHub
parent 8a33891a40
commit 5ecb02fb80
12 changed files with 252 additions and 58 deletions
+25
View File
@@ -52,6 +52,31 @@ documentation:
.. image:: http://goog-perftools.sourceforge.net/doc/pprof-test-big.gif
Running Microbenchmarks
-----------------------
To run a set of single-node Ray microbenchmarks, use:
.. code-block:: bash
ray microbenchmark
The following are the results for the 0.7.5 release on a Python 3 / a m4.16xl instance:
.. code-block:: text
single core get calls per second 12169.8 +- 386.41
single core put calls per second 3117.45 +- 94.17
single core put gigabytes per second 11.32 +- 3.4
multi core put calls per second 16221.06 +- 895.13
multi core put gigabytes per second 24.14 +- 0.29
single core tasks sync per second 887.77 +- 3.69
single core tasks async per second 4524.45 +- 196.39
multi core tasks async per second 6963.49 +- 161.31
single core actor calls sync per second 762.4 +- 56.47
single core actor calls async per second 1030.44 +- 45.42
multi core actor calls async per second 6065.92 +- 175.05
References
----------
+1 -1
View File
@@ -5,7 +5,7 @@ RLlib is an open-source library for reinforcement learning that offers both high
.. image:: rllib-stack.svg
To get started, take a look over the `custom env example <https://github.com/ray-project/ray/blob/master/rllib/examples/custom_env.py>`__ and the `API documentation <rllib-training.html>`__. If you're looking to develop custom algorithms with RLlib, also check out `concepts and custom algorithms <rllib-concepts.html>`__.
To get started, take a look over the `custom env example <https://github.com/ray-project/ray/blob/master/rllib/examples/custom_env.py>`__ and the `API documentation <rllib-toc.html>`__. If you're looking to develop custom algorithms with RLlib, also check out `concepts and custom algorithms <rllib-concepts.html>`__.
RLlib in 60 seconds
-------------------