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
It would be useful to get a timing profile for symbolic simulation: a list of (e.g. LLVM) function names followed by the cumulative (including sub calls) and non cumulative run time. Sorting the results by cumulative time might be a good default. To get other sort orders, we can pipe the output into sort -k <i>,<i>n or whatever.
The best approximation I have right now is running saw -v2 and paying attention to which function names stay on the screen for a long time.
The text was updated successfully, but these errors were encountered:
It would be useful to get a timing profile for symbolic simulation: a list of (e.g. LLVM) function names followed by the cumulative (including sub calls) and non cumulative run time. Sorting the results by cumulative time might be a good default. To get other sort orders, we can pipe the output into
sort -k <i>,<i>n
or whatever.The best approximation I have right now is running
saw -v2
and paying attention to which function names stay on the screen for a long time.The text was updated successfully, but these errors were encountered: