|
|
|
|
|
by vive-la-liberte
3820 days ago
|
|
Slide 27/36, aka. slide 18/23, shows a type of graph which I have also seen in the Google Chrome Dev Tools as well as a couple of other places. Someone told me once the name of that kind graph but I've forgotten what it was. I've never learned how to read that kind of graph. So, if someone would be so kind, please tell me what it's called and how to read it. |
|
I think the basic idea is: say you have some code like this.
function a() { // 6 ms b(); // 3 ms c(); // 3 ms } Then you might have a flame chart that looks like this:
[-b-][-c]
[---a---]
Essentially you're decomposing the time we spend in a() into its constituent pieces b() and c().