|
|
|
|
|
by AboutTheWhisles
2748 days ago
|
|
Here is that exact workflow in modern C++ https://github.com/LiveAsynchronousVisualizedArchitecture/la... All the IO between nodes is serialized, so an output that is already in shared memory (to be examined or visualized in other programs) can also be written to disk. It can then be loaded as a 'constant' node and iterations can be done with hot reloading on the baked output. They key is that you need both live/hot/automatic reloading of execution AND snapshots/replay/rewind/baking. If you only have one or the other, you can't isolate a part of a program and iterate on it nearly as quickly. |
|