-
Do the TruffleRuby team run any benchmarks with engine.LanguageAgnosticInlining=true/false ? The flag is being deprecated so presumably it will always be switched on in forthcoming releases. On short lived processes (i.e. CI type things) running with engine.LanguageAgnosticInlining=false is faster when in throughput mode but the flag is only really relevant for long lived processes hence the question. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The old Truffle inlining ( How much faster is it in your case? |
Beta Was this translation helpful? Give feedback.
The old Truffle inlining (
--engine.LanguageAgnosticInlining=false
) is essentially deprecated at this point, which is why the option is deprecated.No, we don't run benchmarks with that option anymore (we did to compare for a while).
How much faster is it in your case?
I guess MultiTier (should reach same peak) or Mode=latency (much slower peak but faster warmup than default) is more important for CI things.