started anaylsis work

This commit is contained in:
Niklas Halle 2025-06-03 13:43:48 +00:00
parent 1f6e0c9e86
commit d11d6afd40
9 changed files with 166075 additions and 102 deletions

View file

@ -113,9 +113,9 @@ def plot_latency_graph_overview(lat_graph: lg.LatencyGraph, excl_node_patterns,
input_nodes = [n.full_name for n in lvl_nodes if any(re.search(p, n.full_name) for p in input_node_patterns)]
output_nodes = [n.full_name for n in lvl_nodes if any(re.search(p, n.full_name) for p in output_node_patterns)]
print(', '.join(map(lambda n: n, input_nodes)))
print(', '.join(map(lambda n: n, output_nodes)))
print(', '.join(map(lambda n: n.full_name, lvl_nodes)))
print("Input Nodes:", ', '.join(map(lambda n: n, input_nodes)))
print("Output Nodes:", ', '.join(map(lambda n: n, output_nodes)))
print("Intermediate Nodes:", ', '.join(map(lambda n: n.full_name, lvl_nodes)))
def _collect_callbacks(n: lg.LGHierarchyLevel):
callbacks = []