Skip to content

Commit 64df9f2

Browse files
committed
Merge branch 'master' of github.com:hcarlsso/ParallelMapReduce.jl
2 parents 8a5aa91 + 04d18ee commit 64df9f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ end
1111
However, since `@distributed` partitions `itrs` evenly across nodes, some nodes
1212
may be idle if the nodes are different in computational speed, or equivalently
1313
if `f` takes different time to compute depending on the input. With the added option
14-
`pmapreduce(f, +, itrs...; algorithm = :reduction_local)`, computations are
14+
`pmapreduce(f, op, itrs...; algorithm = :reduction_local)`, computations are
1515
dynamically load balanced, that is, the elements in `itrs` are only distributed
16-
to a worker which is free. The result of each computation of `f` are stored
16+
to a worker which is free. The result of each computation of `f` is stored
1717
and reduced locally, until `itrs` is exhausted, and then sent back to the master
1818
process, where the results from the nodes are further reduced, thus saving
1919
communication bandwidth.

0 commit comments

Comments
 (0)