Skip to content

Commit

Permalink
Update profile.md
Browse files Browse the repository at this point in the history
Remove incorrect sentence copied from the incorrect internal documentation :)
  • Loading branch information
zeux committed Nov 5, 2021
1 parent dc509b9 commit adacdcd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/_pages/profile.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ This produces an SVG file that can be opened in a browser (the image below is cl

[![profile.svg](/assets/images/chess-profile.svg)](/assets/images/chess-profile.svg)

In a flame graph visualization, the individual bars represent function calls, the width represents how much of the total program runtime they execute, and the deepness of the
red color represents how expensive they are based on their speed and how many times they are called: Dark Red bars are often the best targets for optimization, followed by
Bright Red, Dark Orange, Light Orange, Dark Yellow, Light Yellow. This is a fantastic visualization technique that allows you to hone in on the specific bottlenecks affecting
In a flame graph visualization, the individual bars represent function calls, the width represents how much of the total program runtime they execute, and the nesting matches the call stack encountered during program execution. This is a fantastic visualization technique that allows you to hone in on the specific bottlenecks affecting
your program performance, optimize those exact bottlenecks, and then re-generate the profile data and visualizer, and look for the next set of true bottlenecks (if any).

Hovering your mouse cursor over individual sections will display detailed function information in the status bar and in a tooltip. If you want to Search for a specific named
Expand Down

0 comments on commit adacdcd

Please sign in to comment.