-
Notifications
You must be signed in to change notification settings - Fork 323
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
Inline implementation of GToJSON #652
Conversation
Generic implementation should use inlining when possible in order to eliminate Generic sum/product combinators in final generated code. The simplifications can actually lead to smaller code and faster compilation. Compilation time (GHC 8.4): - G/BigProduct.hs is 25% faster - G/BigRecord.hs is 2x faster Runtime performance: - BigRecord/toJSON/generic is more than 2x faster (same as BigRecord/toJSON/th) - BigProduct/encode/generic is more than 2x faster (still almost 2x slower than BigProduct/encode/th The same approach dose not improve GFromJSON due to the presence of unsaturated applications.
Thanks! These were actually removed in #335 by @RyanGlScott, and for similar reasons that you have for adding them again! Is this due to GHC improvements since then? It would be nice to know how e.g. pandoc-types compilation speed is affected (#296). |
Regarding pandoc-types 1.16.0.1 (as mentioned in #335) : it seems that this patch is not so harmful but #653 hurts GHC 7.10 and 8.0. Here is the performance of "stack ghc -- -O -Rghc-timing -fforce-recomp Text/Pandoc/Definition.hs" With GHC 8.4.3 (stackage 12.1): With GHC 8.2.2 (stackage 11.12) With GHC 8.0.2 (Stackage 9.21) With GHC 7.10 (Stackage 6.35) About #653, I actually see a NOINLINE trick to make it less horrible. I will try it and comment separately. |
Let's merge this! |
This work aims at solving a couple of performance issues with the Generic ToJSON instances where inlining is incomplete. As a result the generated code contains a number of references to Generic Rep types and to Aeson's generic helpers, which breaks the structure of the code and slows down both compilation and execution, especially for large types.
Commit message
Generic implementation should use inlining when possible
in order to eliminate Generic sum/product combinators
in final generated code.
The simplifications can actually lead to smaller code and faster
compilation.
Compilation time (GHC 8.4):
Runtime performance:
(same as BigRecord/toJSON/th)
(still almost 2x slower than BigProduct/encode/th
The same approach dose not improve GFromJSON due to the presence
of unsaturated applications.