asyncmap doesn't preserve shape #18500 Closed andreasnoack opened this Issue on Sep 13 · 0 comments Projects None yet Labels parallel Milestone No milestone Assignees No one assigned 3 participants @andreasnoack @ViralBShah @simonster Notifications You’re not receiving notifications from this thread. @andreasnoack The Julia Language member andreasnoack commented on Sep 13 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 parallel label on Sep 14 @simonster simonster added bug and removed bug labels on Sep 14 @amitmurthy amitmurthy added a commit that closed this issue 2 days ago @amitmurthy asyncmap retains shape. closes #18500