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
4 changes: 4 additions & 0 deletions benches/bench.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ from bench_from_string import main as bench_from_string
from bench_round import main as bench_round
from bench_comparison import main as bench_comparison
from bench_exp import main as bench_exp
from bench_ln import main as bench_ln
from bench_power import main as bench_power


fn main() raises:
Expand All @@ -21,3 +23,5 @@ fn main() raises:
bench_round()
bench_comparison()
bench_exp()
bench_ln()
bench_power()
2 changes: 1 addition & 1 deletion benches/bench_multiply.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ fn main() raises:

# Case 11: Decimal multiplication with many digits after the decimal point
var case11_a_mojo = Decimal.E()
var case11_b_mojo = Decimal.E05()
var case11_b_mojo = dm.constants.E0D5()
var case11_a_py = pydecimal.Decimal("1").exp()
var case11_b_py = pydecimal.Decimal("0.5").exp()
run_benchmark(
Expand Down
Loading
Loading