diff --git a/README.md b/README.md index 94d0076b..eff8e75a 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ multithreaded calculations via higher-order functions, with a focus on [data par It re-exports the very useful function `chunks` from [ChunkSplitters.jl](https://github.com/m3g/ChunkSplitters.jl), and provides the following functions -
tmapreduce +
`tmapreduce`

tmapreduce(f, op, A::AbstractArray; @@ -46,7 +46,7 @@ needed if you are using a `:static` schedule, since the `:dynamic` schedule is u

-
treducemap +
`treducemap`

treducemap(op, f, A::AbstractArray; @@ -85,7 +85,7 @@ needed if you are using a `:static` schedule, since the `:dynamic` schedule is u

-
treduce +
`treduce`

@@ -124,7 +124,7 @@ needed if you are using a `:static` schedule, since the `:dynamic` schedule is u

-
tforeach +
`tforeach`

tforeach(f, A::AbstractArray; @@ -144,7 +144,7 @@ Apply `f` to each element of `A` on multiple parallel tasks, and return `nothing

-
tmap +
`tmap`

@@ -166,7 +166,7 @@ A multithreaded function like `Base.map`. Create a new container `similar` to `A

-
tmap! +
`tmap!`

tmap!(f, out, A::AbstractArray;