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
25 changes: 25 additions & 0 deletions benches/bigdecimal/bench.mojo
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from bench_bigdecimal_add import main as bench_add


fn main() raises:
print(
"""
=========================================
This is the BigInt Benchmarks
=========================================
add: Add
all: Run all benchmarks
q: Exit
=========================================
"""
)
var command = input("Type name of bench you want to run: ")
if command == "add":
bench_add()
elif command == "all":
bench_add()
elif command == "q":
return
else:
print("Invalid input")
main()
Loading