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

WIP: simplify fill implementation #179

Closed
wants to merge 1 commit into from
Closed

Conversation

johnynek
Copy link
Collaborator

fill is one of the main combinators that is complicated by having a hardLine for two reasons:

  1. Union is only created in two places: grouped and fill. fill is much more complex (a naive implementation would be exponential).
  2. we have a very complicated implementation to make it stack safe.

It occurs to me, we could greatly simplify using defer and it is only a bit slower:

[info] Benchmark                    (size)   Mode  Cnt   Score    Error   Units
[info] PaigesBenchmark.fill100         100  thrpt    3  44.600 ± 67.349  ops/ms
[info] PaigesBenchmark.fill100        1000  thrpt    3   4.585 ±  1.628  ops/ms
[info] PaigesBenchmark.fill100       10000  thrpt    3   0.500 ±  0.252  ops/ms
[info] PaigesBenchmark.fillSpec100     100  thrpt    3  33.180 ± 22.547  ops/ms
[info] PaigesBenchmark.fillSpec100    1000  thrpt    3   3.568 ±  1.130  ops/ms
[info] PaigesBenchmark.fillSpec100   10000  thrpt    3   0.376 ±  0.494  ops/ms

so the simpler implementation is about 75% as fast.

One problem with this implementation is that if the separator does not have line in it we are in a very bad case, but if you don't have a line in the fill sep, then you have an exponentially bad time searching for a fit.

cc @seanmcl


@Benchmark
def fill100(): String =
Doc.fill(Doc.text(","), strs.map(Doc.text)).render(100)
Doc.fill(Doc.line, strs.map(Doc.text)).render(100)
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

not using line here is kind of a worst case. The original fill didn't even have this arg, it always used line.

@codecov-io
Copy link

codecov-io commented Sep 11, 2019

Codecov Report

Merging #179 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #179   +/-   ##
=======================================
  Coverage   97.08%   97.08%           
=======================================
  Files           4        4           
  Lines         274      274           
  Branches       19       19           
=======================================
  Hits          266      266           
  Misses          8        8

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 6c2a701...ca30ff7. Read the comment docs.

@johnynek
Copy link
Collaborator Author

this was folded into #181

@johnynek johnynek closed this Sep 12, 2019
@larsrh larsrh deleted the oscar/simplify_fill branch February 21, 2020 22:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants