-
Performance of the CPyExt going better. Maybe we should add support for PyPy and run basic tests on CI to be sure it's working?
Here is a quick benchmark for multiplication (``python -m pyperf tim…
-
### Bug Description
PyPy is working on a 3.11 version. This will require some adaptation from PyO3. I am opening an tracking issue for the C API changes that I think might be relevant.
- right now…
-
Revert "skipping" part of https://github.com/ikalnytskyi/picobox/pull/107
-
# A DSL for Peephole Transformation Rules of Integer Operations in the PyPy JIT | PyPy
[https://www.pypy.org/posts/2024/10/jit-peephole-dsl.html](https://www.pypy.org/posts/2024/10/jit-peephole-dsl…
-
We should test PyPy with `fusil-python-threaded`. Learn how to trigger the JIT and possible code templates that exercise more of the PyPy implementation.
-
Do a workflow for releasing a pip package
https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
Might need patchelf https://www…
-
*Original description is from when issue was only about PyPy.*
We do a fair bit of JSON deserializing (and serializing). On CPython, we use orjson. The json standard library on PyPy is slower, but …
-
I realize that this project is about CPython, but it seems to me that it would be useful for the Python community to also include in https://github.com/faster-cpython/benchmarking-public few performan…
-
Successfully built a new minor release ([v0.2.2](https://github.com/dlr-eoc/ukis-csmask/releases/tag/v0.2.2)) but [cannot publish it to pypy](https://github.com/dlr-eoc/ukis-csmask/actions/runs/114549…
-
In python, using +=
```
a[i] += j%u # Simple sum
a[i] += r
```
makes the code run in 3/4 times the original speed, and also increases pypy speed.