fix interpreters readme

This commit is contained in:
ilia 2023-10-06 14:18:24 +03:00
parent d2991376d2
commit 805711e614

View File

@ -1,7 +1,17 @@
# Interpreters
## Tested interpreters
- CPython 3.9
- CPython 3.11
- PyPy 3.9
**Table of evaluation times in seconds**
![enter image description here](table.png)
## Testing Code
Three functions tested
Three realisations of mandelbrot functions tested:
```python
def linspace(start, stop, n):
if n == 1:
@ -77,12 +87,3 @@ def mandelbrot_np(
break
return image
```
## Tested interpreters
- CPython 3.9
- CPython 3.11
- PyPy 3.9
**Table of evaluation times in seconds**
![enter image description here](table.png)