Skip to content

Commit bb0368e

Browse files
committed
move graphs into user docs folder
1 parent 60cb50a commit bb0368e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ GraalPy has first-class support for embedding in Java and can turn Python applic
2020
* Install [packages](docs/user/Python-Runtime.md#installing-packages) like *NumPy*, *PyTorch*, or *Tensorflow*; run [Hugging Face](https://huggingface.co/) models like *Stable Diffusion* or *GPT*
2121
* See if the packages you need work with our [Python Compatibility Checker](https://www.graalvm.org/python/compatibility/)
2222
* Use almost any standard Python feature, the CPython tests run on every commit and pass ~85%
23-
![](docs/mcd.svg)<sup>
23+
![](docs/user/mcd.svg)<sup>
2424
We run the tests of the [top PyPI packages](https://hugovk.github.io/top-pypi-packages/) on GraalPy every day.
2525
For more than 96% of the top PyPI packages, there is at least one recent version that installs successfully and we are currently passing over 50% of all tests those top packages.
2626
</sup>
@@ -30,7 +30,7 @@ For more than 96% of the top PyPI packages, there is at least one recent version
3030
* Pure Python code is often faster than on CPython after JIT compilation
3131
* C extension performance near CPython, but varies depending on the specific interactions of native and Python code
3232
* GraalPy is ~4x faster than CPython on the official [Python Performance Benchmark Suite](https://pyperformance.readthedocs.io/)
33-
![](docs/performance.svg)<sup>
33+
![](docs/user/performance.svg)<sup>
3434
Benchmarks run via `pip install pyperformance && pyperformance run` on each of CPython and GraalPy.
3535
Harness and benchmarks adapted by hand for Jython due to missing Python 3 support.
3636
Each interpreter was installed via <tt>[pyenv](https://github.com/pyenv/pyenv)</tt>.

docs/user/Performance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ redirect_from:
1313

1414
GraalPy uses the state-of-the-art just-in-time (JIT) compiler of GraalVM.
1515
When JIT compiled, GraalPy runs Python code ~4x faster than CPython on the official [Python Performance Benchmark Suite](https://pyperformance.readthedocs.io/).
16-
![](docs/performance.svg)
16+
![](performance.svg)
1717

18-
These benchmarks can be run simply by installing the `pyperformance` package and calling `pyperformance run` on each of CPython and GraalPy.
19-
To get the Jython numbers, however, the harness and benchmarks was adapted by due to missing Python 3 support in Jyton.
18+
These benchmarks can be run by installing the `pyperformance` package and calling `pyperformance run` on each of CPython and GraalPy.
19+
To get the Jython numbers we adapted the harness and benchmarks because of missing Python 3 support in Jython.
2020
The speedup was then calculated by taking the pair-wise intersection of working benchmarks and calculating the geomean.
2121

2222
Without a JIT compiler, GraalPy currently executes pure Python code around ~4x slower than CPython.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)