Hacker News new | ask | show | jobs
by thechao 2186 days ago
This memoizes closures of functions, and lets them be executed on other processors? Does it support dependency tracking between memoized closures (incremental recomputation), or do I have to roll that, myself?
1 comments

Unfortunately you need to roll that yourself in joblib. But it is automatic in bionic (https://github.com/square/bionic), assuming your workflow can be structured in the way bionic likes.
Bionic is what I'm looking for (right on their use-case page): a Make replacement that can work with intermediate computations, and not just files.