Velimir Mlaker
Velimir Mlaker
Add a makefile that builds a Python virtual environment and runs all programs.
Add the tox virtualenv management into the flow to be able to test for different Python versions.
Add to documentation an example of how to distribute an embarrasingly parallel problem to mulitple cores. Consider a cascade of concentric for-loops, marshalling the outer for-loop to workers.
Fan-in linkage should not be allowed. For example: ``` python stage1.link(stage2.link(stage3)) stage1.link(stage3) # This is bad. ``` In the second line above, `link()` method should detect that stage3 has already...
Add Frens Jan Rumph's max_backlog option to documentation. Add related entries to: - Pipeline concepts - MPipe cookbook - Examples