File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -66,16 +66,19 @@ const QuadrupleF16 = DoubleFloat{DoubleFloat{Float16}}
66
66
@inline DoubleFloat (x:: Tuple{T,T} ) where {T<: AbstractFloat } = DoubleFloat {T} (x[1 ], x[2 ])
67
67
68
68
@inline function Double64 (x:: T ) where {T<: IEEEFloat }
69
+ ! isfinite (x) && return (Double64 (Float64 (x),zero (T)))
69
70
hi = Float64 (x)
70
71
lo = Float64 (x - Float64 (hi))
71
72
return Double64 (hi, lo)
72
73
end
73
74
@inline function Double32 (x:: T ) where {T<: IEEEFloat }
75
+ ! isfinite (x) && return (Double32 (Float32 (x),zero (T)))
74
76
hi = Float32 (x)
75
77
lo = Float32 (x - Float64 (hi))
76
78
return Double32 (hi, lo)
77
79
end
78
80
@inline function Double16 (x:: T ) where {T<: IEEEFloat }
81
+ ! isfinite (x) && return (Double16 (Float16 (x),zero (T)))
79
82
hi = Float16 (x)
80
83
lo = Float16 (x - Float64 (hi))
81
84
return Double16 (hi, lo)
You can’t perform that action at this time.
0 commit comments