Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BigInt in loops: Very slow / memory allocated #10553

Closed
peter1000 opened this issue Mar 18, 2015 · 2 comments
Closed

BigInt in loops: Very slow / memory allocated #10553

peter1000 opened this issue Mar 18, 2015 · 2 comments

Comments

@peter1000
Copy link

Just played around and saw this.

example code

# 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()

RESUTL:

test1:Int128

  • elapsed time: 0.002589673 seconds (30 kB allocated)
  • elapsed time: 4.766e-6 seconds (80 bytes allocated)
  • elapsed time: 3.005e-6 seconds (80 bytes allocated)

test2:BigInt

  • elapsed time: 12.609860677 seconds (1815 MB allocated, 18.62% gc time in 83 pauses with 0 full sweep)
  • elapsed time: 12.971541848 seconds (1815 MB allocated, 18.77% gc time in 83 pauses with 0 full sweep)
  • elapsed time: 12.701018697 seconds (1815 MB allocated, 19.60% gc time in 83 pauses with 0 full sweep)

Cheers
P

do some of the other issues relate to this: https://groups.google.com/forum/#!searchin/julia-users/BigInt/julia-users/6iKRmdIptJk/3W0MR2FE7TkJ

@timholy
Copy link
Member

timholy commented Mar 18, 2015

See #10084 (closing in favor of that, since it's a potential fix).

@timholy timholy closed this as completed Mar 18, 2015
@JeffBezanson
Copy link
Member

Dup of #4176

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).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants