Skip to content

Commit

Permalink
Merge branch 'master' into taskid
Browse files Browse the repository at this point in the history
  • Loading branch information
MasonProtter authored Jan 30, 2024
2 parents 13e4bf5 + 67c4d73 commit e0fa14a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Rather, OhMyThreads is meant to be a simpler, more maintainable, and more access
like [ThreadsX.jl](https://github.com/tkf/ThreadsX.jl) or [Folds.jl](https://github.com/JuliaFolds2/Folds.jl).

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

<details><summary> tmapreduce </summary>
<p>
Expand Down Expand Up @@ -41,7 +41,7 @@ is the parallelized version of
(√1 + √2) + (√3 + √4) + √5
```

This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/m3g/ChunkSplitters.jl).
This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/JuliaFolds2/ChunkSplitters.jl).

## Keyword arguments:

Expand Down Expand Up @@ -85,7 +85,7 @@ is the parallelized version of
(√1 + √2) + (√3 + √4) + √5
```

This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/m3g/ChunkSplitters.jl).
This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/JuliaFolds2/ChunkSplitters.jl).

## Keyword arguments:

Expand Down Expand Up @@ -128,7 +128,7 @@ is the parallelized version of
(1 + 2) + (3 + 4) + 5
```

This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/m3g/ChunkSplitters.jl).
This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/JuliaFolds2/ChunkSplitters.jl).

## Keyword arguments:

Expand Down
4 changes: 2 additions & 2 deletions readme_generator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Unlike most JuliaFolds2 packages, it is not built off of
Rather, OhMyThreads is meant to be a simpler, more maintainable, and more accessible alternative to packages
like [ThreadsX.jl](https://github.com/tkf/ThreadsX.jl) or [Folds.jl](https://github.com/JuliaFolds2/Folds.jl).
OhMyThreads.jl re-exports the very useful function `chunks` from
[ChunkSplitters.jl](https://github.com/m3g/ChunkSplitters.jl), and provides the following functions:
OhMyThreads.jl re-exports the function `chunks` from
[ChunkSplitters.jl](https://github.com/JuliaFolds2/ChunkSplitters.jl), and provides the following functions:
""")
for sym (:tmapreduce, :treducemap, :treduce, :tmap, :tmap!, :tforeach, :tcollect)
println(io, "<details><summary> $sym </summary>\n<p>\n")
Expand Down
6 changes: 3 additions & 3 deletions src/OhMyThreads.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ is the parallelized version of
(√1 + √2) + (√3 + √4) + √5
This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/m3g/ChunkSplitters.jl).
This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/JuliaFolds2/ChunkSplitters.jl).
## Keyword arguments:
Expand Down Expand Up @@ -64,7 +64,7 @@ is the parallelized version of
(√1 + √2) + (√3 + √4) + √5
This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/m3g/ChunkSplitters.jl).
This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/JuliaFolds2/ChunkSplitters.jl).
## Keyword arguments:
Expand Down Expand Up @@ -100,7 +100,7 @@ is the parallelized version of
(1 + 2) + (3 + 4) + 5
This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/m3g/ChunkSplitters.jl).
This data is divided into chunks to be worked on in parallel using [ChunkSplitters.jl](https://github.com/JuliaFolds2/ChunkSplitters.jl).
## Keyword arguments:
Expand Down

0 comments on commit e0fa14a

Please sign in to comment.