Skip to content

Commit cfa1a18

Browse files
catch Inf
1 parent 3cdd9c8 commit cfa1a18

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Double.jl

+3
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,19 @@ const QuadrupleF16 = DoubleFloat{DoubleFloat{Float16}}
6666
@inline DoubleFloat(x::Tuple{T,T}) where {T<:AbstractFloat} = DoubleFloat{T}(x[1], x[2])
6767

6868
@inline function Double64(x::T) where {T<:IEEEFloat}
69+
!isfinite(x) && return(Double64(Float64(x),zero(T)))
6970
hi = Float64(x)
7071
lo = Float64(x - Float64(hi))
7172
return Double64(hi, lo)
7273
end
7374
@inline function Double32(x::T) where {T<:IEEEFloat}
75+
!isfinite(x) && return(Double32(Float32(x),zero(T)))
7476
hi = Float32(x)
7577
lo = Float32(x - Float64(hi))
7678
return Double32(hi, lo)
7779
end
7880
@inline function Double16(x::T) where {T<:IEEEFloat}
81+
!isfinite(x) && return(Double16(Float16(x),zero(T)))
7982
hi = Float16(x)
8083
lo = Float16(x - Float64(hi))
8184
return Double16(hi, lo)

0 commit comments

Comments
 (0)