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

Avoid temporary varargs tuple creation in argument passing #90370

Open
colorfulappl mannequin opened this issue Dec 31, 2021 · 7 comments
Open

Avoid temporary varargs tuple creation in argument passing #90370

colorfulappl mannequin opened this issue Dec 31, 2021 · 7 comments
Assignees
Labels
3.14 new features, bugs and security fixes performance Performance or resource usage topic-argument-clinic

Comments

@colorfulappl
Copy link
Mannequin

colorfulappl mannequin commented Dec 31, 2021

BPO 46212
Nosy @larryhastings, @pablogsal, @isidentical, @erlend-aasland, @colorfulappl
PRs
  • gh-90370: Avoid temporary varargs tuple creation in argument passing #30312
  • Files
  • bench-print.py
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = None
    created_at = <Date 2021-12-31.10:05:47.113>
    labels = ['3.11', 'expert-argument-clinic', 'performance']
    title = 'Avoid temporary `varargs` tuple creation in argument passing'
    updated_at = <Date 2022-01-21.14:06:02.177>
    user = 'https://github.com/colorfulappl'

    bugs.python.org fields:

    activity = <Date 2022-01-21.14:06:02.177>
    actor = 'erlendaasland'
    assignee = 'none'
    closed = False
    closed_date = None
    closer = None
    components = ['Argument Clinic']
    creation = <Date 2021-12-31.10:05:47.113>
    creator = 'colorfulappl'
    dependencies = []
    files = ['50533']
    hgrepos = []
    issue_num = 46212
    keywords = ['patch']
    message_count = 6.0
    messages = ['409412', '409413', '409414', '409659', '411129', '411130']
    nosy_count = 5.0
    nosy_names = ['larry', 'pablogsal', 'BTaskaya', 'erlendaasland', 'colorfulappl']
    pr_nums = ['30312']
    priority = 'normal'
    resolution = None
    stage = 'patch review'
    status = 'open'
    superseder = None
    type = 'performance'
    url = 'https://bugs.python.org/issue46212'
    versions = ['Python 3.11']

    @colorfulappl
    Copy link
    Mannequin Author

    colorfulappl mannequin commented Dec 31, 2021

    When "Augument Clinic generated code" are parsing arguments, the args are packed to a tuple before passing to callee. This may be unnecessary.

    Pass a raw pointer which points to on-stack varargs, and a varargssize integer to indicate how many varargs are passed, can save the time of tuple creation/destruction and value copy.

    @colorfulappl colorfulappl mannequin added 3.11 only security fixes topic-argument-clinic performance Performance or resource usage labels Dec 31, 2021
    @colorfulappl
    Copy link
    Mannequin Author

    colorfulappl mannequin commented Dec 31, 2021

    I wrote some microbenchs.

    Patch: b68176d

    Environment:
    macOS 12.1
    clang 13.0.0
    configure with --enable-optimizations

    Result on microbench:

    +--------------------------------------------+-------------------------+------------------------+
    | Benchmark                                  | ./opt_baseline/res.json | ./opt_patched/res.json |
    +============================================+=========================+========================+
    | print(a, b, c)                             | 917 ns                  | 820 ns: 1.12x faster   |
    +--------------------------------------------+-------------------------+------------------------+
    | print(a, b, c, *v)                         | 1.56 us                 | 1.62 us: 1.04x slower  |
    +--------------------------------------------+-------------------------+------------------------+
    | print(a, sep='', file=stdout)              | 376 ns                  | 295 ns: 1.27x faster   |
    +--------------------------------------------+-------------------------+------------------------+
    | print(*v, sep='', flush=True, file=stdout) | 2.02 us                 | 1.94 us: 1.04x faster  |
    +--------------------------------------------+-------------------------+------------------------+
    | Geometric mean                             | (ref)                   | 1.05x faster           |
    +--------------------------------------------+-------------------------+------------------------+
    
    Benchmark hidden because not significant (3): print(a), print(a, sep='', flush=True, file=stdout), print(a, b, c, *v, sep='', flush=True, file=stdout)
    

    @erlend-aasland
    Copy link
    Contributor

    Note that _PyArg_UnpackKeywordsWithVararg is defined with PyAPI_FUNC. Changing its argument spec is strictly a backwards incompatible change, IIUC.

    @colorfulappl
    Copy link
    Mannequin Author

    colorfulappl mannequin commented Jan 4, 2022

    I am a rookie in Python, did not notice changing PyAPI_FUNC means breaking backward compatibility.

    I have reverted _PyArg_UnpackKeywordsWithVararg and committed again.

    @isidentical
    Copy link
    Member

    Note that _PyArg_UnpackKeywordsWithVararg is defined with PyAPI_FUNC. Changing its argument spec is strictly a backwards incompatible change, IIUC.

    AFAIK we have committed _PyArg_UnpackKeywordsWithVararg on 3.11 alpha, so I think it should be fine. Also CC: @pablogsal

    @erlend-aasland
    Copy link
    Contributor

    AFAIK we have committed _PyArg_UnpackKeywordsWithVararg on 3.11 alpha, so I think it should be fine.

    I see, so no ABI worries then.

    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    @iritkatriel iritkatriel added 3.12 bugs and security fixes and removed 3.11 only security fixes labels Sep 7, 2022
    @skirpichev skirpichev self-assigned this Oct 26, 2024
    @skirpichev skirpichev added 3.14 new features, bugs and security fixes and removed 3.12 bugs and security fixes labels Oct 26, 2024
    @skirpichev
    Copy link
    Member

    It seems #30312 was abandoned by author. I'll continue this work.

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    3.14 new features, bugs and security fixes performance Performance or resource usage topic-argument-clinic
    Projects
    None yet
    Development

    No branches or pull requests

    4 participants