This commit is contained in:
Eric Liang
2019-08-26 23:24:40 -07:00
committed by GitHub
parent 03a1b75852
commit ff73b67154
+2 -2
View File
@@ -52,11 +52,11 @@ def test_object_broadcast(ray_start_cluster_with_resource):
def f(x):
return
x = np.zeros(150 * 1024 * 1024, dtype=np.uint8)
x = np.zeros(10 * 1024 * 1024, dtype=np.uint8)
@ray.remote
def create_object():
return np.zeros(150 * 1024 * 1024, dtype=np.uint8)
return np.zeros(10 * 1024 * 1024, dtype=np.uint8)
object_ids = []