-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigate external tools for graphical representations of traces #89
Comments
To be able to exploit existing tools we'd need to be able to generate |
orbuculum has some graphical tools we may be able to exploit. Specifically |
After a brief look at hotspot and similar tools, it seems like the most ubiquitous profilers are based upon a thread-based execution model with PC samples as the input data. RTIC is based upon exception handlers; PC samples can be generated, but these are not yet supported by RTIC Scope. The information we want to plot is essentially a single state over time, with some details. The set of data we want to trace is likely to increase as development continues, but at present we'll need to resort to ah-hoc tools to get something useful. E.g. |
Some experimental work with Python plotting has been done in 0a8490c. |
See https://www.brendangregg.com/flamegraphs.html
The whole website seems like an interesting read. We can probably find something to help us visualize traces of RTIC applications.
The text was updated successfully, but these errors were encountered: