-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation that explains an inverted flame graph. Signed-off-by: Ivona Stojanovic <[email protected]>
- Loading branch information
1 parent
363502b
commit 1f53b24
Showing
5 changed files
with
93 additions
and
5 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
Add a new ``--inverted`` flag to ``memray flamegraph``. In an inverted flame graph, the roots are the functions that allocated memory, | ||
and the children of any given node represent the percentage of that node's | ||
allocations that can be attributed to a particular caller. The inverted flame graph is very helpful in analyzing where memory is being | ||
spent in aggregate. | ||
Add support for :ref:`inverted flame graphs`. In an inverted flame graph, the | ||
roots are the functions that allocated memory, and the children of any given | ||
node represent the percentage of that node's allocations that can be attributed | ||
to a particular caller. The inverted flame graph is very helpful in analyzing | ||
where memory is being spent in aggregate. You can generate one by passing the | ||
``--inverted`` flag to ``memray flamegraph``. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters