6 ms·
Does graal native perform better than a non-native running with JIT compilation?
by mapme 4y ago
Does graal native perform better than a non-native running with JIT compilation?
- kaba0 4y agoIn certain cases it may, but generally the JIT compiled version will perform better on most workloads (but that can also use Graal)
- heretoo 4y agoNot in the community edition, but the enterprise edition appears to be quicker than JIT because of profile guided optimisations.
- Twirrim 4y agoif it's "long" running, you want the full JIT experience, because you essentially lose the entire "But how does my code actually run" optimisations that the JIT can do, and only have stuff that can be done ahead of time.