From 256b644fb364749d1dcae73fedb79280c1c62ca3 Mon Sep 17 00:00:00 2001 From: Andy Castille Date: Thu, 12 Sep 2024 13:31:23 -0700 Subject: [PATCH] PEP 744: fix broken links to benchmarking-public images (GH-3953) --- peps/pep-0744.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/peps/pep-0744.rst b/peps/pep-0744.rst index 57332bc8d..9a0ff3de2 100644 --- a/peps/pep-0744.rst +++ b/peps/pep-0744.rst @@ -501,7 +501,7 @@ Speed ----- Currently, the JIT is `about as fast as the existing specializing interpreter -`__ +`__ on most platforms. Improving this is obviously a top priority at this point, since providing a significant performance gain is the entire motivation for having a JIT at all. A number of proposed improvements are already underway, and @@ -515,7 +515,7 @@ Because it allocates additional memory for executable machine code, the JIT does use more memory than the existing interpreter at runtime. According to the official benchmarks, the JIT currently uses about `10-20% more memory than the base interpreter -`__. +`__. The upper end of this range is due to ``aarch64-apple-darwin``, which has larger page sizes (and thus, a larger minimum allocation granularity).