Skip to content
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

Fix typos in readme #89

Merged
merged 2 commits into from
Jun 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ It can:
* read output from:
* [Linux perf](https://perf.wiki.kernel.org/)
* [Valgrind's callgrind tool](https://valgrind.org/docs/manual/cl-manual.html)
* [oprofile](https://oprofile.sourceforge.net/)
* [sysprof](http://www.sysprof.com/)
* [xperf](https://learn.microsoft.com/en-us/windows-hardware/test/wpt/)
* [OProfile](https://oprofile.sourceforge.net/)
* [Sysprof](http://www.sysprof.com/)
* [Xperf](https://learn.microsoft.com/en-us/windows-hardware/test/wpt/)
* [VTune](https://www.intel.com/content/www/us/en/developer/tools/oneapi/vtune-profiler.html)
* [Very Sleepy](https://www.codersnotes.com/sleepy/)
* [python profilers](https://docs.python.org/3/library/profile.html#profile-stats)
* [Python profilers](https://docs.python.org/3/library/profile.html#profile-stats)
* [Java's HPROF](https://docs.oracle.com/javase/7/docs/technotes/samples/hprof.html)
* prof, [gprof](https://sourceware.org/binutils/docs/gprof/)
* [DTrace](https://en.wikipedia.org/wiki/DTrace)
Expand Down Expand Up @@ -268,7 +268,7 @@ An edge represents the calls between two functions and has the following layout:

Where:

* _total time %_ is the percentage of the running time transfered from the children to this parent (if available);
* _total time %_ is the percentage of the running time transferred from the children to this parent (if available);
* _calls_ is the number of calls the parent function called the children.

Note that in recursive cycles, the _total time %_ in the node is the same for the whole functions in the cycle, and there is no _total time %_ figure in the edges inside the cycle, since such figure would make no sense.
Expand Down