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

gh-128308: pass **kwargs to asyncio task_factory #128768

Merged
merged 20 commits into from
Jan 20, 2025

Conversation

graingert
Copy link
Contributor

@graingert graingert commented Jan 13, 2025

@graingert graingert force-pushed the pass-kwargs-to-task-factory branch from 5b7bf7b to 0da18e8 Compare January 13, 2025 07:49
@graingert graingert marked this pull request as ready for review January 13, 2025 15:31
@graingert
Copy link
Contributor Author

graingert commented Jan 20, 2025

We were somewhat worried about the performance of creating a dict with kwargs and then unpacking it, but it seems pretty similar if not faster:

It's a bit slower in the case where we have a name and a factory, which is a bit odd, but most of the time you'd be using a Loop subclass not a factory if you cared about this level of performance.

import pyperf


runner = pyperf.Runner()
runner.timeit(
    name="create a task with a name",
    stmt="loop.create_task(coro(), name='hello')",
    setup=["import asyncio; loop = asyncio.EventLoop()", "async def coro(): pass"],
    teardown="loop.call_soon(loop.stop); loop.run_forever(); loop.close()",
)
runner.timeit(
    name="create a task without a name",
    stmt="loop.create_task(coro())",
    setup=["import asyncio; loop = asyncio.EventLoop()", "async def coro(): pass"],
    teardown="loop.call_soon(loop.stop); loop.run_forever(); loop.close()",
)
runner.timeit(
    name="create a task with a name and factory",
    stmt="loop.create_task(coro(), name='hello')",
    setup=[
        "import asyncio; loop = asyncio.EventLoop()",
        "def task_factory(loop, coro, **kwargs): return asyncio.Task(coro, loop=loop, **kwargs)",
        "loop.set_task_factory(task_factory)",
        "async def coro(): pass",
    ],
    teardown="loop.call_soon(loop.stop); loop.run_forever(); loop.close()",
)
runner.timeit(
    name="create a task without a name, with a factory",
    stmt="loop.create_task(coro())",
    setup=[
        "import asyncio; loop = asyncio.EventLoop()",
        "def task_factory(loop, coro, **kwargs): return asyncio.Task(coro, loop=loop, **kwargs)",
        "loop.set_task_factory(task_factory)",
        "async def coro(): pass",
    ],
    teardown="loop.call_soon(loop.stop); loop.run_forever(); loop.close()",
)

before: 6f167d7

.....................
create a task with a name: Mean +- std dev: 1.27 us +- 0.10 us
.....................
create a task without a name: Mean +- std dev: 1.29 us +- 0.10 us
.....................
create a task with a name and factory: Mean +- std dev: 1.28 us +- 0.10 us
.....................
create a task without a name, with a factory: Mean +- std dev: 1.34 us +- 0.10 us

after: 539d2e9

.....................
create a task with a name: Mean +- std dev: 1.25 us +- 0.09 us
.....................
create a task without a name: Mean +- std dev: 1.22 us +- 0.10 us
.....................
create a task with a name and factory: Mean +- std dev: 1.53 us +- 0.11 us
.....................
create a task without a name, with a factory: Mean +- std dev: 1.32 us +- 0.10 us

@kumaraditya303 kumaraditya303 merged commit 38a9956 into python:main Jan 20, 2025
44 checks passed
srinivasreddy pushed a commit to srinivasreddy/cpython that referenced this pull request Jan 21, 2025
@asvetlov asvetlov added the needs backport to 3.13 bugs and security fixes label Feb 13, 2025
@miss-islington-app
Copy link

Thanks @graingert for the PR, and @kumaraditya303 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13.
🐍🍒⛏🤖

@miss-islington-app
Copy link

Sorry, @graingert and @kumaraditya303, I could not cleanly backport this to 3.13 due to a conflict.
Please backport using cherry_picker on command line.

cherry_picker 38a99568763604ccec5d5027f0658100ad76876f 3.13

@bedevere-app
Copy link

bedevere-app bot commented Feb 13, 2025

GH-130084 is a backport of this pull request to the 3.13 branch.

@bedevere-app bedevere-app bot removed the needs backport to 3.13 bugs and security fixes label Feb 13, 2025
asvetlov pushed a commit to asvetlov/cpython that referenced this pull request Feb 13, 2025
…onGH-128768)

(cherry picked from commit 38a9956)

Co-authored-by: Thomas Grainger <[email protected]>
Co-authored-by: Kumar Aditya <[email protected]>
kumaraditya303 added a commit that referenced this pull request Feb 14, 2025
…#130084)

* [3.13] gh-128308: pass `**kwargs` to asyncio task_factory (GH-128768)
(cherry picked from commit 38a9956)

Co-authored-by: Thomas Grainger <[email protected]>
Co-authored-by: Kumar Aditya <[email protected]>


---------

Co-authored-by: Thomas Grainger <[email protected]>
Co-authored-by: Kumar Aditya <[email protected]>
@graingert graingert deleted the pass-kwargs-to-task-factory branch March 20, 2025 16:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants