JuliaParallel / JuliaParallel/DistributedArrays.jl

map with multiple arguments

Open
#123 1 comment 0 reactions 0 assignees View on GitHub
enhancement
Dominant language
Julia
Stars
205
Forks
34
PR merge metrics
No merged PRs in 30d

Description

It would be great if map could also be called with 2 or more distributed arrays as argument. Currently the fall-back map is used.

```julia
@everywhere using DistributedArrays
x = distribute([1:10;])
y = distribute(2*[1:10;],x);
@which map(x -> x+1,x)
@which map(x,y -> x+1,x,y)
```

The output is the following:
map(f, d::DistributedArrays.DArray) at /home/abarth/.julia/v0.5/DistributedArrays/src/mapreduce.jl:6
map(f, iters...) at abstractarray.jl:1711

In any case, thank you for your great library!

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.