Skip to content

Commit

Permalink
try that
Browse files Browse the repository at this point in the history
  • Loading branch information
MasonProtter committed Jan 28, 2024
1 parent 13edfaa commit 7e15492
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ This is meant to be a simple, unambitious package that provides basic, user-frie
multithreaded calculations via higher-order functions, with a focus on [data parallelism](https://en.wikipedia.org/wiki/Data_parallelism).

It re-exports the very useful function `chunks` from [ChunkSplitters.jl](https://github.com/m3g/ChunkSplitters.jl), and
provides the following functions
provides the following functions:

<details><summary> `tmapreduce` </summary>
<details><summary> tmapreduce </summary>
<p>

tmapreduce(f, op, A::AbstractArray;
Expand Down Expand Up @@ -46,7 +46,9 @@ needed if you are using a `:static` schedule, since the `:dynamic` schedule is u
</details>
</p>

<details><summary>`treducemap`</summary>
____________________________________

<details><summary> treducemap </summary>
<p>

treducemap(op, f, A::AbstractArray;
Expand Down Expand Up @@ -85,7 +87,9 @@ needed if you are using a `:static` schedule, since the `:dynamic` schedule is u
</details>
</p>

<details><summary>`treduce`</summary>
____________________________________

<details><summary>treduce</summary>
<p>


Expand Down Expand Up @@ -124,7 +128,7 @@ needed if you are using a `:static` schedule, since the `:dynamic` schedule is u
</details>
</p>

<details><summary>`tforeach`</summary>
<details><summary>tforeach</summary>
<p>

tforeach(f, A::AbstractArray;
Expand All @@ -144,7 +148,9 @@ Apply `f` to each element of `A` on multiple parallel tasks, and return `nothing
</details>
</p>

<details><summary>`tmap`</summary>
____________________________________

<details><summary>tmap</summary>
<p>


Expand All @@ -166,7 +172,9 @@ A multithreaded function like `Base.map`. Create a new container `similar` to `A
</details>
</p>

<details><summary>`tmap!`</summary>
____________________________________

<details><summary>tmap!</summary>
<p>

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

0 comments on commit 7e15492

Please sign in to comment.