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

asyncmap doesn't preserve shape #18500

Closed
andreasnoack opened this issue Sep 14, 2016 · 0 comments
Closed

asyncmap doesn't preserve shape #18500

andreasnoack opened this issue Sep 14, 2016 · 0 comments
Labels
parallelism Parallel or distributed computation

Comments

@andreasnoack
Copy link
Member

julia> map(identity, [1 2; 3 4])
2×2 Array{Int64,2}:
 1  2
 3  4

vs

julia> asyncmap(identity, [1 2; 3 4])
4-element Array{Any,1}:
 1
 3
 2
 4

cc: @amitmurthy

@ViralBShah ViralBShah added the parallelism Parallel or distributed computation label Sep 14, 2016
@simonster simonster added bug Indicates an unexpected problem or unintended behavior and removed bug Indicates an unexpected problem or unintended behavior labels Sep 14, 2016
amitmurthy added a commit that referenced this issue Oct 22, 2016
fcard pushed a commit to fcard/julia that referenced this issue Feb 28, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
parallelism Parallel or distributed computation
Projects
None yet
Development

No branches or pull requests

3 participants