-
Notifications
You must be signed in to change notification settings - Fork 148
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
Fastutils wrapping benchmark #142
Conversation
When I run the code wrapped version of fastutils collection performs 50% worse than not wrapped:
This is possibly due to boxing. |
Fastutils wrapping benchmark
I verified on my computer as well, and it is indeed 50% slower on mine too... |
Yes, looks like using Int2IntOpenHashMap as Map[Int, Int] makes the methods boxed. Right, we have go back with InfoKeepers. And hope for efficient specialization in Scala one day. |
I'm afraid that this means whenever we use:
then we have boxing... |
|
@pankajgupta please have a look and check it too |
Interesting indeed. In general, in cassovary the desire has been to be first and foremost On Mon, Feb 9, 2015 at 2:38 PM, Szymon [email protected] wrote:
|
No description provided.