You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# test1: Int128
function test1()
for i in 1:Int128(17000000)
end
end
# test2: BigInt
function test2()
for i in 1:BigInt(17000000)
end
end
test1()
test2()
println("\n>>>>>>>>>>>>>>test1:Int128")
@time test1()
@time test1()
@time test1()
println("\n>>>>>>>>>>>>>>test2:BigInt")
@time test2()
@time test2()
@time test2()
Also, the reason the times are so small in the first case is that the loop does nothing and so is removed completely. With all the extra code needed for BigInt, the compiler can't figure out that it's safe to remove (it calls a C library).
Just played around and saw this.
example code
RESUTL:
test1:Int128
test2:BigInt
Cheers
P
do some of the other issues relate to this: https://groups.google.com/forum/#!searchin/julia-users/BigInt/julia-users/6iKRmdIptJk/3W0MR2FE7TkJ
The text was updated successfully, but these errors were encountered: