Skip to content

Commit

Permalink
Use Int256 to reduce BigInts in FD operations. (#93)
Browse files Browse the repository at this point in the history
* Use Int256 to avoid BigInt in FD operations.

We do not here explicitly introduce support for FD{BitIntegers.Int256},
though that should work out of the box both before and after this PR.

Rather, this PR _uses_ a (U)Int256 under the hood to prevent allocations
from Int128 widening to BigInt in FD operations.

* Further reduce BigInts by skipping a `rem()` in iseven

* Bump patch version number
  • Loading branch information
NHDaly committed Aug 12, 2024
1 parent ddee978 commit e0c1932
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 9 deletions.
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
name = "FixedPointDecimals"
uuid = "fb4d412d-6eee-574d-9565-ede6634db7b0"
authors = ["Fengyang Wang <fengyang.wang.0@gmail.com>", "Curtis Vogt <curtis.vogt@gmail.com>"]
version = "0.5.2"
version = "0.5.3"

[deps]
BitIntegers = "c3b6d118-76ef-56ca-8cc7-ebb389d030a1"
Parsers = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"

[compat]
Parsers = "2.7"
BitIntegers = "0.3.1"
julia = "1.6"

[extras]
Expand Down
35 changes: 27 additions & 8 deletions src/FixedPointDecimals.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ export checked_abs, checked_add, checked_cld, checked_div, checked_fld,
checked_mod, checked_mul, checked_neg, checked_rem, checked_sub

using Base: decompose, BitInteger

import BitIntegers # For 128-bit _widemul / _widen
import Parsers

# floats that support fma and are roughly IEEE-like
Expand Down Expand Up @@ -118,6 +120,21 @@ function __init__()
return
end

# Custom widemul implementation to avoid the cost of widening to BigInt.
# FD{Int128} operations should widen to 256 bits internally, rather than to a BigInt.
const BitInteger128 = Union{Int128, UInt128}
_widemul(x, y) = _widen(x) * _widen(y)
_widemul(x::Signed,y::Unsigned) = _widen(x) * signed(_widen(y))
_widemul(x::Unsigned,y::Signed) = signed(_widen(x)) * _widen(y)

# Custom widen implementation to avoid the cost of widening to BigInt.
# FD{Int128} operations should widen to 256 bits internally, rather than to a BigInt.
_widen(::Type{Int128}) = BitIntegers.Int256
_widen(::Type{UInt128}) = BitIntegers.UInt256
_widen(t::Type) = widen(t)
_widen(x::T) where {T} = (_widen(T))(x)


(::Type{T})(x::Real) where {T <: FD} = convert(T, x)

floattype(::Type{<:FD{T}}) where {T<:Union{Int8, UInt8, Int16, UInt16}} = Float32
Expand Down Expand Up @@ -157,7 +174,9 @@ function _round_to_nearest(quotient::T,
divisor::T,
::RoundingMode{M}=RoundNearest) where {T <: Integer, M}
halfdivisor = divisor >> 1
if iseven(divisor) && remainder == halfdivisor
# PERF Note: Only need the last bit to check iseven, and default iseven(Int256)
# allocates, so we truncate first.
if iseven((divisor % Int8)) && remainder == halfdivisor
# `:NearestTiesAway` will tie away from zero, e.g. -8.5 ->
# -9. `:NearestTiesUp` will always ties towards positive
# infinity. `:Nearest` will tie towards the nearest even
Expand Down Expand Up @@ -188,7 +207,7 @@ _round_to_nearest(q, r, d, m=RoundNearest) = _round_to_nearest(promote(q, r, d).
# correctness test suite.
function Base.:*(x::FD{T, f}, y::FD{T, f}) where {T, f}
powt = coefficient(FD{T, f})
quotient, remainder = fldmodinline(widemul(x.i, y.i), powt)
quotient, remainder = fldmodinline(_widemul(x.i, y.i), powt)
reinterpret(FD{T, f}, _round_to_nearest(quotient, remainder, powt))
end

Expand Down Expand Up @@ -416,7 +435,7 @@ function Base.checked_sub(x::T, y::T) where {T<:FD}
end
function Base.checked_mul(x::FD{T,f}, y::FD{T,f}) where {T<:Integer,f}
powt = coefficient(FD{T, f})
quotient, remainder = fldmodinline(widemul(x.i, y.i), powt)
quotient, remainder = fldmodinline(_widemul(x.i, y.i), powt)
v = _round_to_nearest(quotient, remainder, powt)
typemin(T) <= v <= typemax(T) || Base.Checked.throw_overflowerr_binaryop(:*, x, y)
return reinterpret(FD{T, f}, T(v))
Expand Down Expand Up @@ -474,7 +493,7 @@ checked_rdiv(x::FD, y::FD) = checked_rdiv(promote(x, y)...)

function checked_rdiv(x::FD{T,f}, y::FD{T,f}) where {T<:Integer,f}
powt = coefficient(FD{T, f})
quotient, remainder = fldmod(widemul(x.i, powt), y.i)
quotient, remainder = fldmod(_widemul(x.i, powt), y.i)
v = _round_to_nearest(quotient, remainder, y.i)
typemin(T) <= v <= typemax(T) || Base.Checked.throw_overflowerr_binaryop(:/, x, y)
return reinterpret(FD{T, f}, v)
Expand All @@ -484,8 +503,8 @@ end
# FixedDecimal.
function checked_rdiv(x::Integer, y::FD{T, f}) where {T<:Integer, f}
powt = coefficient(FD{T, f})
powtsq = widemul(powt, powt)
quotient, remainder = fldmod(widemul(x, powtsq), y.i)
powtsq = _widemul(powt, powt)
quotient, remainder = fldmod(_widemul(x, powtsq), y.i)
v = _round_to_nearest(quotient, remainder, y.i)
typemin(T) <= v <= typemax(T) || Base.Checked.throw_overflowerr_binaryop(:/, x, y)
reinterpret(FD{T, f}, v)
Expand Down Expand Up @@ -722,7 +741,7 @@ NOTE: This function is expensive, since it contains a while-loop, but it is actu
This function does not have or depend on any side-effects.
"""
function max_exp10(::Type{T}) where {T <: Integer}
W = widen(T)
W = _widen(T)
type_max = W(typemax(T))

powt = one(W)
Expand Down Expand Up @@ -759,4 +778,4 @@ value(fd::FD) = fd.i
# for generic hashing
Base.decompose(fd::FD) = decompose(Rational(fd))

end
end # module

4 comments on commit e0c1932

@NHDaly
Copy link
Member Author

@NHDaly NHDaly commented on e0c1932 Aug 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/112987

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.3 -m "<description of version>" e0c1932523fdddcbf1b610442eb6f6f51f94c189
git push origin v0.5.3

@NHDaly
Copy link
Member Author

@NHDaly NHDaly commented on e0c1932 Aug 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/112987

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.3 -m "<description of version>" e0c1932523fdddcbf1b610442eb6f6f51f94c189
git push origin v0.5.3

Please sign in to comment.