From dc03506108dae81027d966af6cf6248cebefcc9f Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Fri, 25 May 2018 22:19:47 -0700 Subject: [PATCH] Update resource documentation (remove outdated limitations). (#2022) --- doc/source/resources.rst | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/doc/source/resources.rst b/doc/source/resources.rst index 6b70254a5..05e44b8ea 100644 --- a/doc/source/resources.rst +++ b/doc/source/resources.rst @@ -108,16 +108,3 @@ decorator. @ray.remote(resources={'Resource2': 1}) def f(): return 1 - -Current Limitations -------------------- - -We are working to remove the following limitations. - -- **Actor Resource Requirements:** Currently only GPUs are used to determine - actor placement. -- **Recovering from Bad Scheduling:** Currently Ray does not recover from poor - scheduling decisions. For example, suppose there are two GPUs (on separate - machines) in the cluster and we wish to run two GPU tasks. There are scenarios - in which both tasks can be accidentally scheduled on the same machine, which - will result in poor load balancing.