-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Decimal: improve SetFloat64 performance
This is done by NOT normalizing the float64's mantissa immediately: in most cases doing SetUint64(1<<63 | mantissa<<11) resulted in allocating two 64bits Words. Not normalizing results in allocating a single 64bits Word (the conversion doesn't require more when z.prec <= 18).
- Loading branch information
Showing
1 changed file
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters