-
Notifications
You must be signed in to change notification settings - Fork 15
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
See if we can find a way to mutate BigInts for float parsing performance #5
Comments
@simonbyrne, I'd like to pick your brain on this at some point, in case you have any ideas on how to avoid the extra allocations from our usage of BigInts. |
Tough to say. The problem with It might be worth trying to do it via |
To expand on what I was thinking: have an array of The main downside is that |
Another option is to do some double-double tricks, then only fall back on the slow path in particularly bad cases. |
In which cases do we need more than double-double precision? |
Some examples in http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.144.5889&rep=rep1&type=pdf e.g.
|
Fix #5 by using as many BigInt in-place ops as possible to avoid allo…
No description provided.
The text was updated successfully, but these errors were encountered: