Skip to content

Commit b078194

Browse files
committed
Remove BigInt,BigFloat from benchmarks cause too slow
1 parent 90a86b5 commit b078194

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

benchmark/benchmarks.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ fd_FixedPointDecimal_types = [
3030
]
3131
inttypes = [Int32,Int64,Int128]
3232
floattypes = [Float32,Float64]
33-
bigtypes = [BigInt, BigFloat]
33+
#bigtypes = [BigInt, BigFloat]
3434

35-
alltypes = (inttypes..., bigtypes..., floattypes..., fd_FixedPointDecimal_types...,)
35+
alltypes = (inttypes..., floattypes..., fd_FixedPointDecimal_types...,)
3636

3737
identity1(a,_) = a
3838
allops = (*, /, +, ÷, identity1)
3939

4040
# Category for the results output CSV
4141
category(::Type{<:Union{inttypes...}}) = "Int"
4242
category(::Type{<:Union{floattypes...}}) = "Float"
43-
category(::Type{<:Union{bigtypes...}}) = "Big"
43+
#category(::Type{<:Union{bigtypes...}}) = "Big"
4444
category(::Type{<:FixedPointDecimals.FixedDecimal}) = "FixedDecimal"
4545
type(T::Type) = "$T"
4646
type(T::Type{<:Union{Int32, Int64}}) = " $T"

0 commit comments

Comments
 (0)