Skip to content
Snippets Groups Projects

Add selection mechanism in graph

Merged Olivier BICHLER requested to merge select into dev
1 unresolved thread
Compare and
38 files
+ 2437
390
Compare changes
  • Side-by-side
  • Inline
Files
38
@@ -42,7 +42,7 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib =
:param scheduler: Scheduler instance managing the computation graph.
Uses `graph_view` and `get_static_scheduling` methods
Uses `graph_view` and `get_sequential_static_scheduling` methods
to retrieve the computation graph layout and ordered nodes.
:type scheduler: aidge_core.Scheduler
:param export_folder_path: Path to the folder where the generated export files will be saved.
@@ -88,7 +88,7 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib =
outputs_size: List[int] = []
# List of aidge_core.Node ordered by scheduler
list_forward_nodes: List[aidge_core.Node] = scheduler.get_static_scheduling()
list_forward_nodes: List[aidge_core.Node] = scheduler.get_sequential_static_scheduling()
# If exportLib define use it
# else parse component in platform
Loading