Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[core][aDAG] Fix microbenchmark regression adag 2 #47683

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion python/ray/_private/ray_experimental_perf.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,12 @@ def _exec(dag, num_args=1, payload_size=1):
async def exec_async(tag):
async def _exec_async():
fut = await compiled_dag.execute_async(b"x")
await fut
if not isinstance(fut, list):
await fut
else:
# TODO(sang): Right now, it doesn't work with asyncio.gather.
for f in fut:
await f

return await asyncio_timeit(
tag,
Expand Down
Loading