-
Notifications
You must be signed in to change notification settings - Fork 5
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
Investigate Performance Regression with Scala 2.13.0 #3
Comments
@desmondyeung have you considered to inline all prime constants manually? |
@plokhotnyuk yes, I had originally not inlined them with 2.12.9 because I actually found that it made performance much worse. It's seems that inlining them with 2.13 does help with larger input, but it's still slower than 2.12.9 without inlining. 2.12.9 inlined prime constants
2.13.0 inlined prime constants
with final prime constants:
with non-final prime constants
|
2.12.9
2.13.0
The text was updated successfully, but these errors were encountered: