mirror of
https://github.com/wassname/ray.git
synced 2026-07-01 09:44:50 +08:00
fix test (#5544)
This commit is contained in:
@@ -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 = []
|
||||
|
||||
|
||||
Reference in New Issue
Block a user