Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ For the latest development version, clone the [GitHub repository](https://github
| ---------- | ------ |
| v0.1.0 | >=25.1 |
| v0.2.0 | >=25.2 |
| v0.3.0 | >=25.2 |

## Quick start

Expand Down
5 changes: 5 additions & 0 deletions benches/bigdecimal/bench.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ from bench_bigdecimal_sqrt import main as bench_sqrt
from bench_bigdecimal_exp import main as bench_exp
from bench_bigdecimal_ln import main as bench_ln
from bench_bigdecimal_root import main as bench_root
from bench_bigdecimal_round import main as bench_round
from bench_bigdecimal_scale_up_by_power_of_10 import main as bench_scale_up


Expand All @@ -23,6 +24,7 @@ sqrt: Square root
exp: Exponential
ln: Natural logarithm
root: Root
round: Round
all: Run all benchmarks
q: Exit
=========================================
Expand All @@ -47,6 +49,8 @@ scaleup: Scale up by power of 10
bench_ln()
elif command == "root":
bench_root()
elif command == "round":
bench_round()
elif command == "all":
bench_add()
bench_sub()
Expand All @@ -56,6 +60,7 @@ scaleup: Scale up by power of 10
bench_exp()
bench_ln()
bench_root()
bench_round()
elif command == "q":
return
elif command == "scaleup":
Expand Down
Loading