Home - Speed - Summaries: (main - py2.7) : (py3.10) : (py3.11) : Everything : RPython - Nightly builds - Waterfall - Builders - About

Console View


Categories: aarch64 benchmark-run linux32 linux64 macos-arm64 macos-x86_64 win64
Legend:   Passed Failed Warnings Failed Again Running Exception Offline No data

aarch64 benchmark-run linux32 linux64 macos-arm64 macos-x86_64 win64
mattip
only declare posix functions on posix platforms, add missing declaration
Matti Picus
cleanup, add tests from review
mattip
restore __pytrace__ use in pyinteractive after PR 5494
CF Bolz-Tereick
Merge pull request #4837 from mattip/add-source-code
RPYTHON: embed rpython code line as a comment in the generated C
mattip
fix tests by avoiding bare_setarrayitem
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
mattip
changes from review
mattip
turn 'app level lst = [None] * n' into a malloc + memset
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Matti Picus
Merge pull request #5494 from pypy/fastpath-next_instr
only re-retrieve next_instr when tracing or action_dispatch happens
Matti Picus
only re-retrieve next_instr when tracing or action_dispatch happens
Matti Picus
only re-retrieve next_instr when tracing or action_dispatch happens on both jitted and non-jitted paths
Matti Picus
remove one more dead llop
mattip
Merge branch 'main' into py3.11
mattip
Merge branch 'main' into memset
Matti Picus
skip hypothesis test on windows
mattip
fix for all 4 array allocation/fill modes
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Matti Picus
Merge pull request #5495 from pypy/fastpath-next_instr3
only re-retrieve next_instr when tracing or action_dispatch (py3.11)
mattip
changes from review
mattip
Revert "fix tests by avoiding bare_setarrayitem"
This reverts commit dfcbbe79960f0625ad753b510787d5686c7eda54.
mattip
refactor multiprocessing resource_tracker to work with PyPy
- Add a shadow registry for resilience when restarting
- When restarting the tracker, rebroadcast all outstanding REGISTERs
- Use the shadow registry instead of depending on refcount semantics
- In _send, only bail out if fd is None, otherwise deliver the message anyway
- Use discard instead of remove for UNREGISTER so out-of-order message delivery works
- In _cleanup_tests, change the order of operations

Co-Authored-By: Claude <noreply@anthropic.com>
mattip
Merge branch 'main' into py3.11
mattip
add a single writebarrier in ll_arrafill
mattip
add benchmark
CF Bolz-Tereick
Merge pull request #5469 from pypy/memset
turn 'app level lst = [None] * n' into a malloc + memset
CF Bolz-Tereick
add a array filling to our random test
mattip
Add op_gc_writebarrier to llinterp for the simulated GC write barriers
Previously the fallback was to a noop, so memory tests failed untranslated