You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding a configurable runner script would be very helpful for development and experimenting with different graphs. Currently there is the examples/schedule that is a go-to script for experiments but it's all hard-coded
A new script could have the following arguments:
For scheduling:
dfg - data-flow graph in GraphML. Should be mandatory argument, it would be nice if this was also a positional argument
max-events - total number of events to be processed (currently we have a map of (name, graph) to schedule but we are mostly interested in running the same graph max-events times)
slots - number of events that can be processed concurrently (currently MAX_GRAPHS_RUN)
For tracing:
some option to get and save a gantt plot to a given file
Adding a configurable runner script would be very helpful for development and experimenting with different graphs. Currently there is the
examples/schedule
that is a go-to script for experiments but it's all hard-codedA new script could have the following arguments:
dfg
- data-flow graph in GraphML. Should be mandatory argument, it would be nice if this was also a positional argumentmax-events
- total number of events to be processed (currently we have a map of (name, graph) to schedule but we are mostly interested in running the same graphmax-events
times)slots
- number of events that can be processed concurrently (currentlyMAX_GRAPHS_RUN
)max-events
)It would be great if writing files was followed with some information like
@info Written <whatever this file is supposed to be> to <filename>
The text was updated successfully, but these errors were encountered: