We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In particular, trying to assign elements from a different process silently fails.
julia> a 3x4 SharedArray{Float64,2}: -0.978909 0.956941 -0.727437 0.123889 1.52651 -0.524361 -0.69585 -0.0347904 0.556024 1.01309 0.724335 -1.39348 julia> b = deepcopy(a) 3x4 SharedArray{Float64,2}: -0.978909 0.956941 -0.727437 0.123889 1.52651 -0.524361 -0.69585 -0.0347904 0.556024 1.01309 0.724335 -1.39348 julia> remotecall_fetch(2, setindex!, b, 5, 4:6) 3x4 SharedArray{Float64,2}: -0.978909 5.0 -0.727437 0.123889 1.52651 5.0 -0.69585 -0.0347904 0.556024 5.0 0.724335 -1.39348 julia> b 3x4 SharedArray{Float64,2}: -0.978909 0.956941 -0.727437 0.123889 1.52651 -0.524361 -0.69585 -0.0347904 0.556024 1.01309 0.724335 -1.39348
The text was updated successfully, but these errors were encountered:
Oh and worse than what is described above, the assignment acts on the original array:
julia> a 3x4 SharedArray{Float64,2}: -0.978909 5.0 -0.727437 0.123889 1.52651 5.0 -0.69585 -0.0347904 0.556024 5.0 0.724335 -1.39348
Sorry, something went wrong.
beb4398
No branches or pull requests
In particular, trying to assign elements from a different process silently fails.
The text was updated successfully, but these errors were encountered: