Open cwschilly opened 5 months ago
For example, clicking a function in the indented tree should highlight the corresponding function in the sunburst diagram.
To this end, e_id is a unique identifier for every event, while ftn_id identifies the same function called throughout the runtime.
e_id
ftn_id
For example, every AdvanceTimeStep call will have a different e_id, but the same ftn_id.
We can use these ids to link the plots (selecting a function on one plot will highlight the same function (same e_id) on another plot)
For example, clicking a function in the indented tree should highlight the corresponding function in the sunburst diagram.
To this end,
e_id
is a unique identifier for every event, whileftn_id
identifies the same function called throughout the runtime.For example, every AdvanceTimeStep call will have a different
e_id
, but the sameftn_id
.We can use these ids to link the plots (selecting a function on one plot will highlight the same function (same
e_id
) on another plot)