chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
# coding: utf-8
|
||||
import asyncio
|
||||
import sys
|
||||
|
||||
import numpy as np
|
||||
import pytest
|
||||
|
||||
import ray
|
||||
from ray.cluster_utils import Cluster, cluster_not_supported
|
||||
|
||||
|
||||
@pytest.mark.xfail(cluster_not_supported, reason="cluster not supported")
|
||||
@pytest.mark.asyncio
|
||||
async def test_asyncio_cluster_wait():
|
||||
cluster = Cluster()
|
||||
head_node = cluster.add_node()
|
||||
cluster.add_node(resources={"OTHER_NODE": 100})
|
||||
|
||||
ray.init(address=head_node.address)
|
||||
|
||||
@ray.remote(num_cpus=0, resources={"OTHER_NODE": 1})
|
||||
def get_array():
|
||||
return np.random.random((192, 1080, 3)).astype(np.uint8) # ~ 0.5MB
|
||||
|
||||
object_ref = get_array.remote()
|
||||
|
||||
await asyncio.wait_for(object_ref, timeout=10)
|
||||
|
||||
ray.shutdown()
|
||||
cluster.shutdown()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(pytest.main(["-sv", __file__]))
|
||||
Reference in New Issue
Block a user