You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now I'm working on function inlining. The inlining works by optimistically attempting to inline any function whose entire body is non-escaping.
The problem is that operations such as // or ** seem innocuous enough, but are unspecialized and so cannot be differentiated from an overloaded binary op. These things exist in bm_chaos and bm_spectralnorm. They thus block inlining of really simple small functions.
For now, I shall just add specializations for them on my branch for the sake of benchmarking, but in the long term, we need some way to collect this profiling information and reflect that to tier 2. Something like what @markshannon suggested about some sort of dispatch table for infrequent and the long tail of specializations maybe?
The text was updated successfully, but these errors were encountered:
For now, I shall just add specializations for them on my branch for the sake of benchmarking
Why not merge these in? There are already specializations for other binary ops like multiply, add and subtract so we can add some for // and ** too, right?
Right now I'm working on function inlining. The inlining works by optimistically attempting to inline any function whose entire body is non-escaping.
The problem is that operations such as
//
or**
seem innocuous enough, but are unspecialized and so cannot be differentiated from an overloaded binary op. These things exist in bm_chaos and bm_spectralnorm. They thus block inlining of really simple small functions.For now, I shall just add specializations for them on my branch for the sake of benchmarking, but in the long term, we need some way to collect this profiling information and reflect that to tier 2. Something like what @markshannon suggested about some sort of dispatch table for infrequent and the long tail of specializations maybe?
The text was updated successfully, but these errors were encountered: