dspatch
dspatch copied to clipboard
The Refreshingly Simple Cross-Platform C++ Dataflow / Patching / Pipelining / Graph Processing / Stream Processing / Reactive Programming Framework
Hi, I'm looking into dspatch as a framework for emulating the behavior of programmable logic on an FPGA. dspatch looks perfect, except for a timing issue I cannot resolve. For...
A diagram illustrating how different parts of dspatch are interconnected would be highly appreciated.
Do you have any plan for Error processing mechanism and automatically Type/Format negotiation between components?
It is quite simple and refreshing indeed. It would be nice to add named inputs/outputs so that components can be connected by name. It would be less bug prone, especially...
Is it possible to add an exception handling method? For example, Node B depends on the output of A. When node A crashes or throws an exception, the circuit diagram...
In addition to execution diagram, you can dump the graph to a DOT format and visualize it using a number of free [GraphViz](https://www.graphviz.org/) tools. https://dreampuf.github.io/GraphvizOnline/ // dump the circuit graph...
Hello, As the title says, the cause is that when I load the release lib using debug it crashes, and vice versa. Is there already a way to distinguish between...
Hi! How to implement a delay line component with single thread and no autotick. We are simulate digital logic with explicitly call Tick() only on input values change. Is where...