Skip to content

Commit 1a75fa5

Browse files
Docs: Add benchmark for fibonacci forty five.
1 parent 922fc5c commit 1a75fa5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

compiler/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ def fib(n):
4242

4343
return fib(n-1) + fib(n-2)
4444

45-
print(fib(40)) # fibonacci sequence forty
45+
print(fib(45)) # fibonacci sequence forty five
4646
```
4747

4848
| Runtime | real | user | sys |
4949
|--------------|-----------|-----------|----------|
50-
| CPython 3.13 | 0m10.251s | 0m10.229s | 0m0.009s |
51-
| Edge Python | 0m0.014s | 0m0.000s | 0m0.003s |
50+
| CPython 3.13 | 1m56.345s | 1m56.324s | 0m0.009s |
51+
| Edge Python | 0m0.011s | 0m0.000s | 0m0.003s |
5252

53-
*732.2x faster than CPython on pure recursive call overhead.*
53+
*10,577x faster than CPython on pure recursive call overhead.*
5454

5555
### Usage
5656

0 commit comments

Comments
 (0)