From ce0b9a4c02a379990cbc9aaafac88f963858d555 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Wed, 5 Jun 2024 22:59:51 +0200 Subject: [PATCH 1/2] README.md: Fix typo "transferred" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 58a8950..34ff968 100644 --- a/README.md +++ b/README.md @@ -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. From 36140fc53d9285a5df0b2a5d1feb2d6ac8107389 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Wed, 5 Jun 2024 23:00:15 +0200 Subject: [PATCH 2/2] README.md: Fix spelling of OProfile, Sysprof, Xperf, Python profilers --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 34ff968..9d91596 100644 --- a/README.md +++ b/README.md @@ -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)