List of Signal features 2025-09-09
CPython version 2025-09-09
CPython JIT 2025-09-09
Added in CPython 3.13.
To enable tested on Ubuntu 25.04:
git clone https://github.com/python/cpython
cd cpython
git checkout v3.13.7
./configure --enable-experimental-jit
make -jHowever, the JIT appears to be useless tested as of this Python version, lol:
We can try to test it with python/inc_loop.py:but the result is just as pathetic as without JIT currently, taking about 1 second for only 10m loops.
time ./python python/inc_loop.py 10000000This can be compared with the optimal assembly from c/inc_loop_asm.c:which does 1 billion loops in about half a second on P14s.
time ./inc_loop_asm.out 1000000000For comparison, PyPy actually speeds things up and does 1 billion loops in about a second, so only 2x worse than native.
TODO triple check that JIT is enabled. Many threads say the command is:but that fails with:
./python -c 'import sysconfig; sysconfig.get_config_var("JIT_DEPS")'ModuleNotFoundError: No module named '_sysconfigdata__linux_x86_64-linux-gnu'For comparison with a properly implemented dynamic language JIT running nodejs/inc_loop.js does 1 billion loops in 0.6s on v22.14.0, close to native.
tonybaloney.github.io/posts/python-gets-a-jit.html documents what the initial "JIT" implementation does. It is just an extremely naive concatenation of instructions that avoids a for + switch. No wonder it doesn't speed things up much at all.
CPython feature 2025-09-09
Signal feature 2025-09-09
Receiving an anonymous donation in the UK 2025-09-09
PyPy 2025-09-09
Numba 2025-09-09
Jython 2025-09-09
Article published on the New York Times 2025-09-09
Person related to Silk Road 2025-09-09
Receiving an anonymous donation 2025-09-09
Anonymous Stack Overflow users who are likely professionals hiding the company the work at 2025-09-09
These people are amazing:
Article by Ryan Mac 2025-09-09
What is life? 2025-09-09
Ryan Mac Created 2025-09-09 Updated 2025-10-14
Fusion reactor type 2025-09-09
Fusion power company 2025-09-09
- 2025 techcrunch.com/2025/09/01/every-fusion-startup-that-has-raised-over-100m/ Every fusion startup that has raised over $100M
GenBio AI 2025-09-09
There are unlisted articles, also show them or only show them.
