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/biguint/bench.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ from bench_biguint_add import main as bench_add
from bench_biguint_subtraction import main as bench_subtraction
from bench_biguint_multiply import main as bench_multiply
from bench_biguint_truncate_divide import main as bench_truncate_divide
from bench_biguint_sqrt import main as bench_sqrt
from bench_biguint_from_string import main as bench_from_string


Expand All @@ -15,6 +16,7 @@ add: Add
sub: Subtract
mul: Multiply
div: Truncate divide (//)
sqrt: Square root
fromstr: From string
all: Run all benchmarks
q: Exit
Expand All @@ -30,6 +32,8 @@ q: Exit
bench_multiply()
elif command == "div":
bench_truncate_divide()
elif command == "sqrt":
bench_sqrt()
elif command == "fromstr":
bench_from_string()
elif command == "all":
Expand Down
Loading