-
Notifications
You must be signed in to change notification settings - Fork 11
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
Use more inlinable definitions #45
Conversation
@ratherforky can you try this out and see if it fixes the problem you were having? |
Sorry, I can't remember what code I was working on when this came up. I thought I responded on the original post, but I must've forgot 😅 I remember trying to come up with a minimal example/benchmark but I couldn't figure out exactly what caused the lack of inlining. My understanding is that GHC will already inline the current code most of the time, but it's decided by heuristics, which makes it hard to pin down a minimal example. I think it'd be pretty much the same situation with this new code. E.g. looking at the inlining for
v.s. this new code:
It ends up the same but with the two more or less swapped around. If we instead used this code: {-# INLINE (|>) #-}
(|>) :: a -> (a -> b) -> b
(|>) = apply
{-# INLINE apply #-}
apply :: a -> (a -> b) -> b
apply x f = f x We get:
The big difference for For I've made a pull request (#46) with INLINE pragmas and tweaked definitions to have the appropriate number of LHS arguments and keep things simple/closer to the main branch. I cut I've included the relevant parts of the .hi files for the different versions of the code for comparison: main branch inlining .hi
gh-35-inlining branch inlining .hi
my PR inlining .hi
Footnotes
|
I think this should fix #35, but I'm not sure how to prove it.