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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ magic.lock
# VSCode environments
.vscode
tempCodeRunnerFile.mojo
/temp*.mojo
# macOS environments
.DS_Store
# log files
Expand Down
4 changes: 4 additions & 0 deletions benches/bench.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ from bench_multiply import main as bench_multiply
from bench_divide import main as bench_divide
from bench_sqrt import main as bench_sqrt
from bench_from_float import main as bench_from_float
from bench_from_string import main as bench_from_string
from bench_comparison import main as bench_comparison


fn main() raises:
Expand All @@ -13,3 +15,5 @@ fn main() raises:
bench_divide()
bench_sqrt()
bench_from_float()
bench_from_string()
bench_comparison()
Loading