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

SharedArray setindex! slower than for Array #17060

Closed
mauro3 opened this issue Jun 22, 2016 · 3 comments
Closed

SharedArray setindex! slower than for Array #17060

mauro3 opened this issue Jun 22, 2016 · 3 comments
Labels
performance Must go faster

Comments

@mauro3
Copy link
Contributor

mauro3 commented Jun 22, 2016

Running this script:

@time 1
function f2(a)
    out = 0
    for i = eachindex(a)
        a[i] = out
    end
    a
end

n = 10^8
a = ones(Int, n)
f2([1])
@time f2(a)

a = convert(SharedArray, [1])
f2(a)
a = convert(SharedArray, ones(Int,n))
@time f2(a)

I get:

  0.000003 seconds (149 allocations: 9.013 KB)        <--- warm-up @time
  0.082624 seconds (4 allocations: 160 bytes)           <--- Array
  0.129632 seconds (4 allocations: 160 bytes)           <--- SharedArray

I don't know whether this is expected/fixable. If not, please close.

timings edited for clarity - Amit

@amitmurthy
Copy link
Contributor

I would guess the shmem segments have additional checks at the OS level compared to regular process memory. In context, the timings are over 100 million iterations - probably not much we can do here.

@yuyichao
Copy link
Contributor

I don't think the OS does anything about shared segments (it will be super expensive). I believe the issue is the a combination of #15369 and SharedArray being a mutable type (so some load of fields needs to be rooted).

@simonster
Copy link
Member

Another issue is that the field that holds the underlying Array object is undefined at SharedArray construction, so accessing that field requires an undefined check.

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

No branches or pull requests

4 participants