Skip to content

Commit 4e13c00

Browse files
committed
Fix typo: taskpool --> threadpool
1 parent 03e0daf commit 4e13c00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ The folder `example/` contains several examples and is a great place to learn to
723723
| [debug.cpp](./example/debug.cpp)| inspects a taskflow through the dump method |
724724
| [emplace.cpp](./example/emplace.cpp)| demonstrates the difference between the emplace method and the silent_emplace method |
725725
| [matrix.cpp](./example/matrix.cpp) | creates two set of matrices and multiply each individually in parallel |
726-
| [multiple_dispatch.cpp](./example/multiple_dispatch.cpp) | illustrates dispatching multiple taskflow graphs as independent batches (which all run on the same taskpool) |
726+
| [multiple_dispatch.cpp](./example/multiple_dispatch.cpp) | illustrates dispatching multiple taskflow graphs as independent batches (which all run on the same threadpool) |
727727
| [parallel_for.cpp](./example/parallel_for.cpp)| parallelizes a for loop with unbalanced workload |
728728
| [reduce.cpp](./example/reduce.cpp)| performs reduce operations over linear containers |
729729
| [subflow.cpp](./example/subflow.cpp)| demonstrates how to create a subflow graph that spawns three dynamic tasks |

example/multiple_dispatch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// An example to show dispatching multiple Taskflow graphs as
2-
// separate batches (which will all run on the same Taskpool).
2+
// separate batches (which will all run on the same Threadpool).
33
//
44
// It first dispatches 5 "independent" tasks (#100-104),
55
// then launches four batches (0-3) of a task graph with inter-dependencies,

0 commit comments

Comments
 (0)