Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Benchmark shall loop correctly #7781

Merged
merged 1 commit into from
Sep 11, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,17 @@ sum_conv list (acc:V) =
sum_any list (acc:Any) =
case list of
Nil -> acc
Cons x xs -> @Tail_Call sum xs acc+x
Cons x xs -> @Tail_Call sum_any xs acc+x
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bench runs in between 140-150ms per operation.


sum_int list (acc:Integer) =
case list of
Nil -> acc
Cons x xs -> @Tail_Call sum xs acc+x
Cons x xs -> @Tail_Call sum_int xs acc+x
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bench runs in between 140-150ms per operation.


sum_multi list (acc:Text|Decimal|Integer|Any) =
case list of
Nil -> acc
Cons x xs -> @Tail_Call sum xs acc+x
Cons x xs -> @Tail_Call sum_multi xs acc+x
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bench runs in between 140-150ms per operation.


generator n =
go x v l = if x > n then l else
Expand Down
Loading