Skip to content

Commit 42770e6

Browse files
committed
Update taskflow to 3.10.0
1 parent 9488b07 commit 42770e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+7319
-8150
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#pragma once
2+
3+
namespace tf {
4+
5+
class Algorithm {
6+
7+
public:
8+
9+
template <typename T>
10+
static auto make_module_task(T&&);
11+
12+
};
13+
14+
} // end of namespace tf -----------------------------------------------------

lib/taskflow/algorithm/critical.hpp

Lines changed: 0 additions & 78 deletions
This file was deleted.

lib/taskflow/algorithm/data_pipeline.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,15 +189,15 @@ using a module task in a taskflow.
189189
The only difference is that tf::DataPipeline provides a data abstraction
190190
for users to quickly express dataflow in a pipeline.
191191
The following example creates a data-parallel pipeline of three stages
192-
that generate dataflow from `void` to `int`, `std::string`, `float`, and `void`.
192+
that generate dataflow from `void` to `int`, `std::string`, and `void`.
193193
194194
@code{.cpp}
195195
#include <taskflow/taskflow.hpp>
196196
#include <taskflow/algorithm/data_pipeline.hpp>
197197
198198
int main() {
199199
200-
// data flow => void -> int -> std::string -> float -> void
200+
// data flow => void -> int -> std::string -> void
201201
tf::Taskflow taskflow("pipeline");
202202
tf::Executor executor;
203203

0 commit comments

Comments
 (0)