taskflow
taskflow copied to clipboard
A General-purpose Parallel and Heterogeneous Task Programming System
The current doxygen documentation does not show the class ``Executor``, see https://taskflow.github.io/taskflow/annotated.html. I don't know for sure which line of code inside the executor.hpp file confuses doxygen, but excluding the...
I'm testing out the new exception handling in version 3.7.0. ``` tf::Executor executor1; tf::Taskflow taskFlow; taskFlow.emplace([](tf::Subflow& sf) { tf::Task A = sf.emplace([]() { throw std::runtime_error("exception on A"); }); tf::Task B...
**Describe the bug** When using tf::Runtime::corun with a lambda that accepts a tf::Subflow as described in the documentation, a compilation error occurs. The error indicates that the lambda does not...
Hi @tsung-wei-huang and Taskflow Team, I've been experimenting with a custom wrapper class that integrates with Taskflow, aiming to create a monad-like pipeline for data processing. Here is a simplified...
this is just a mechanism for preventing run of unnecessary tasks after Pipeflow has stopped. its also useful to manage the number of lines that we are using because its...
## Is there a way to remove a dependency between two tasks after it's been established? Hello, thank you for this excellent library! I'm currently using Taskflow to build a...
Today to build compute graph dynamically task flow provides dependent_async API. This API is provided on the executor class. If I want to add dependent task on to the same...
This pull request updates the code to use C++20's `requires` keyword in place of SFINAE-based constraints. This change brings several benefits: 1. **Improved Readability**: `requires` offers a cleaner and more...
Solves #506 Of course I just show my changes, and I expect some improvements must be made to upstream this. Let me know if you see some area for improvement....
There were numerous requests to run processes with a dependency graph defined by taskflow. Imagine we had a blocking function which forks a child process and waits for the child...