JuliaParallel / JuliaParallel/DistributedArrays.jl

map with multiple arguments

Abierto
#123 1 comentario 0 reacciones 0 asignados Ver en GitHub
enhancement
Lenguaje dominante
Julia
Estrellas
205
Forks
34
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

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!

Guía de contribución

No hay ninguna guía de contribución indexada para este repositorio

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.