This contains my bachelors thesis and associated tex files, code snippets and maybe more. Topic: Data Movement in Heterogeneous Memories with Intel Data Streaming Accelerator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

2101 lines
94 KiB

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="2134" onload="init(evt)" viewBox="0 0 1200 2134" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="2134.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="2117" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="2117" > </text>
<g id="frames">
<g >
<title>_int_malloc (216,840,944 samples, 0.02%)</title><rect x="913.4" y="2037" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="916.42" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (775,843,115 samples, 0.07%)</title><rect x="1177.1" y="2005" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.09" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (326,373,228 samples, 0.03%)</title><rect x="199.2" y="133" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.23" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (294,344,443 samples, 0.03%)</title><rect x="1140.3" y="2037" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1143.33" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (1,519,364,581 samples, 0.14%)</title><rect x="198.9" y="1989" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,705,882,416 samples, 0.16%)</title><rect x="911.4" y="1941" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.42" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,416,246,691 samples, 0.13%)</title><rect x="911.7" y="1893" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.73" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (385,705,768 samples, 0.04%)</title><rect x="198.5" y="1893" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.50" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (1,266,275,835 samples, 0.12%)</title><rect x="198.9" y="293" width="1.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,568,354,044 samples, 0.24%)</title><rect x="938.8" y="2005" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.83" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,924,459 samples, 0.02%)</title><rect x="935.5" y="1893" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.48" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (346,377,157 samples, 0.03%)</title><rect x="1185.1" y="1893" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.13" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="117" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (227,221,336 samples, 0.02%)</title><rect x="1140.4" y="1909" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1143.41" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (437,583,386 samples, 0.04%)</title><rect x="914.7" y="1909" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.73" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (1,513,140,274 samples, 0.14%)</title><rect x="198.9" y="1637" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1647.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,405,887,019 samples, 0.13%)</title><rect x="908.8" y="1957" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="911.84" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (1,514,810,618 samples, 0.14%)</title><rect x="198.9" y="1781" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (147,415,547 samples, 0.01%)</title><rect x="911.1" y="2005" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.14" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (557,614,008 samples, 0.05%)</title><rect x="198.3" y="2005" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.31" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (1,507,931,754 samples, 0.14%)</title><rect x="198.9" y="485" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (485,981,158 samples, 0.05%)</title><rect x="914.0" y="1941" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.99" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (1,513,140,274 samples, 0.14%)</title><rect x="198.9" y="1605" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1615.5" ></text>
</g>
<g >
<title>[unknown] (1,509,338,458 samples, 0.14%)</title><rect x="198.9" y="1237" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (776,700,116 samples, 0.07%)</title><rect x="1177.1" y="2021" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.09" y="2031.5" ></text>
</g>
<g >
<title>main (16,001,035,558 samples, 1.50%)</title><rect x="915.2" y="2037" width="17.7" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="918.22" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (367,666,092 samples, 0.03%)</title><rect x="1177.5" y="1877" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.54" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,195,144,659 samples, 0.21%)</title><rect x="935.7" y="1989" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.69" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="949" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="959.5" ></text>
</g>
<g >
<title>[unknown] (1,509,338,458 samples, 0.14%)</title><rect x="198.9" y="1141" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,290,779 samples, 0.01%)</title><rect x="199.6" y="69" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.60" y="79.5" ></text>
</g>
<g >
<title>__mprotect (640,883,317 samples, 0.06%)</title><rect x="938.1" y="2053" width="0.7" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="941.11" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (439,218,776 samples, 0.04%)</title><rect x="914.7" y="1989" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.73" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (551,971,836 samples, 0.05%)</title><rect x="935.1" y="2037" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.06" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="645" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (168,124,798 samples, 0.02%)</title><rect x="1140.5" y="1893" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1143.47" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,318,095,995 samples, 0.59%)</title><rect x="925.9" y="1877" width="7.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="928.90" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (326,373,228 samples, 0.03%)</title><rect x="199.2" y="149" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.23" y="159.5" ></text>
</g>
<g >
<title>__munmap (1,719,836,370 samples, 0.16%)</title><rect x="911.4" y="2037" width="1.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="914.40" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (1,512,291,854 samples, 0.14%)</title><rect x="198.9" y="1589" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1599.5" ></text>
</g>
<g >
<title>[unknown] (749,881,472 samples, 0.07%)</title><rect x="198.9" y="213" width="0.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="223.5" ></text>
</g>
<g >
<title>[unknown] (1,516,703,886 samples, 0.14%)</title><rect x="198.9" y="1877" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (251,679,967 samples, 0.02%)</title><rect x="198.6" y="1845" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.64" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (551,971,836 samples, 0.05%)</title><rect x="935.1" y="2021" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.06" y="2031.5" ></text>
</g>
<g >
<title>clone3 (326,373,228 samples, 0.03%)</title><rect x="199.2" y="181" width="0.4" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="202.23" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (92,055,433 samples, 0.01%)</title><rect x="914.6" y="2005" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.59" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (326,373,228 samples, 0.03%)</title><rect x="199.2" y="85" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.23" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (168,864,478 samples, 0.02%)</title><rect x="1185.3" y="1861" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.32" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,290,779 samples, 0.01%)</title><rect x="199.6" y="101" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.60" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (635,467,791 samples, 0.06%)</title><rect x="938.1" y="2021" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.12" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (1,501,870,958 samples, 0.14%)</title><rect x="198.9" y="373" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="383.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="693" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,209,748,008 samples, 0.21%)</title><rect x="935.7" y="2037" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.68" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="53" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (942,534,446 samples, 0.09%)</title><rect x="909.4" y="1861" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="912.35" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (1,513,952,540 samples, 0.14%)</title><rect x="198.9" y="1733" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (1,507,931,754 samples, 0.14%)</title><rect x="198.9" y="501" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (732,349,049 samples, 0.07%)</title><rect x="909.6" y="1845" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="912.59" y="1855.5" ></text>
</g>
<g >
<title>syscall (565,955,559 samples, 0.05%)</title><rect x="198.3" y="2037" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="201.30" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (326,373,228 samples, 0.03%)</title><rect x="199.2" y="37" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.23" y="47.5" ></text>
</g>
<g >
<title>[unknown] (115,374,949 samples, 0.01%)</title><rect x="198.9" y="149" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,202,569,698 samples, 0.21%)</title><rect x="935.7" y="2021" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.68" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,281,853,864 samples, 0.31%)</title><rect x="194.6" y="1957" width="3.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="197.63" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="773" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (347,231,745 samples, 0.03%)</title><rect x="938.4" y="1909" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.44" y="1919.5" ></text>
</g>
<g >
<title>clone3 (139,290,779 samples, 0.01%)</title><rect x="199.6" y="197" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="202.60" y="207.5" ></text>
</g>
<g >
<title>[unknown] (605,605,038 samples, 0.06%)</title><rect x="198.9" y="197" width="0.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (526,771,786 samples, 0.05%)</title><rect x="198.3" y="1957" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.34" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (644,673,500,643 samples, 60.30%)</title><rect x="198.9" y="2037" width="711.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="2047.5" >[unknown]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,200,416,113 samples, 0.21%)</title><rect x="935.7" y="2005" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.69" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (1,509,338,458 samples, 0.14%)</title><rect x="198.9" y="1109" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1119.5" ></text>
</g>
<g >
<title>[unknown] (1,509,847,310 samples, 0.14%)</title><rect x="198.9" y="1317" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,603,349,955 samples, 0.71%)</title><rect x="924.5" y="1925" width="8.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="927.49" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (92,210,346 samples, 0.01%)</title><rect x="914.6" y="2037" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.59" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (113,817,015 samples, 0.01%)</title><rect x="935.5" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.54" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (273,421,491 samples, 0.03%)</title><rect x="1140.4" y="2005" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1143.35" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (1,510,362,054 samples, 0.14%)</title><rect x="198.9" y="1381" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (245,523,659 samples, 0.02%)</title><rect x="1140.4" y="1941" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1143.39" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="69" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="79.5" ></text>
</g>
<g >
<title>dml_wait_busy_poll (643,072,183,036 samples, 60.15%)</title><rect x="200.7" y="2021" width="709.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="203.67" y="2031.5" >dml_wait_busy_poll</text>
</g>
<g >
<title>[unknown] (816,811,363 samples, 0.08%)</title><rect x="198.9" y="229" width="0.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,564,871,386 samples, 0.24%)</title><rect x="938.8" y="1957" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.83" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (231,940,490 samples, 0.02%)</title><rect x="910.8" y="1877" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="913.85" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (532,088,507 samples, 0.05%)</title><rect x="910.5" y="2005" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="913.52" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (445,141,995 samples, 0.04%)</title><rect x="914.0" y="1925" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.03" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,568,354,044 samples, 0.24%)</title><rect x="938.8" y="1989" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.83" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (1,516,703,886 samples, 0.14%)</title><rect x="198.9" y="1861" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (774,120,056 samples, 0.07%)</title><rect x="1177.1" y="1941" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.09" y="1951.5" ></text>
</g>
<g >
<title>main (32,823,632,573 samples, 3.07%)</title><rect x="1140.8" y="2053" width="36.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="1143.75" y="2063.5" >main</text>
</g>
<g >
<title>__mmap (2,214,572,972 samples, 0.21%)</title><rect x="935.7" y="2053" width="2.4" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="938.67" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (1,513,952,540 samples, 0.14%)</title><rect x="198.9" y="1765" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,425,369,577 samples, 0.32%)</title><rect x="194.5" y="2021" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="197.47" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="37" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="47.5" ></text>
</g>
<g >
<title>dml_wait_busy_poll (180,052,690,191 samples, 16.84%)</title><rect x="941.9" y="2053" width="198.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="944.94" y="2063.5" >dml_wait_busy_poll</text>
</g>
<g >
<title>[unknown] (1,510,917,260 samples, 0.14%)</title><rect x="198.9" y="1461" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,229,825,479 samples, 0.49%)</title><rect x="927.1" y="1861" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="930.11" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (218,071,948 samples, 0.02%)</title><rect x="60.6" y="1941" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="63.63" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,357,604,755 samples, 0.22%)</title><rect x="939.1" y="1877" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="942.06" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (96,865,129 samples, 0.01%)</title><rect x="911.2" y="1925" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.20" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (777,560,374 samples, 0.07%)</title><rect x="1177.1" y="2037" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.09" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (247,747,930 samples, 0.02%)</title><rect x="1185.2" y="1877" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.23" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="53" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="229" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="133" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (526,983,769 samples, 0.05%)</title><rect x="913.9" y="2005" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.94" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,577,686,241 samples, 0.15%)</title><rect x="1183.8" y="2037" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.77" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (774,120,056 samples, 0.07%)</title><rect x="1177.1" y="1973" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.09" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (549,325,915 samples, 0.05%)</title><rect x="198.3" y="1973" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.32" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (438,350,113 samples, 0.04%)</title><rect x="914.7" y="1941" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.73" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (142,816,579 samples, 0.01%)</title><rect x="198.8" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.76" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (1,523,038,540 samples, 0.14%)</title><rect x="198.9" y="2005" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (1,509,338,458 samples, 0.14%)</title><rect x="198.9" y="1173" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (509,567,325 samples, 0.05%)</title><rect x="914.0" y="1957" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.96" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,041,760,942 samples, 0.19%)</title><rect x="935.9" y="1957" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.86" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,252,622,537 samples, 0.12%)</title><rect x="909.0" y="1909" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="912.01" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (481,027,653 samples, 0.04%)</title><rect x="935.1" y="1925" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.13" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (1,508,964,014 samples, 0.14%)</title><rect x="198.9" y="1061" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1071.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (369,456,556 samples, 0.03%)</title><rect x="198.5" y="1877" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.51" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="101" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="111.5" ></text>
</g>
<g >
<title>[unknown] (1,496,654,240 samples, 0.14%)</title><rect x="198.9" y="341" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="351.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="885" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="895.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,558,857,346 samples, 0.24%)</title><rect x="938.8" y="1941" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.84" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (107,016,952 samples, 0.01%)</title><rect x="938.0" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.00" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (1,502,378,439 samples, 0.14%)</title><rect x="198.9" y="405" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (149,508,836 samples, 0.01%)</title><rect x="911.1" y="2021" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.14" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="933" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="943.5" ></text>
</g>
<g >
<title>clone3 (118,188,876 samples, 0.01%)</title><rect x="200.2" y="277" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="203.19" y="287.5" ></text>
</g>
<g >
<title>[unknown] (1,507,931,754 samples, 0.14%)</title><rect x="198.9" y="565" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,553,635,316 samples, 0.15%)</title><rect x="1183.8" y="2005" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.79" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (1,523,902,310 samples, 0.14%)</title><rect x="198.9" y="2021" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (1,488,840,418 samples, 0.14%)</title><rect x="198.9" y="309" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="319.5" ></text>
</g>
<g >
<title>[unknown] (1,512,291,854 samples, 0.14%)</title><rect x="198.9" y="1573" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1583.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (480,303,387 samples, 0.04%)</title><rect x="937.6" y="1909" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="940.58" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (1,510,917,260 samples, 0.14%)</title><rect x="198.9" y="1493" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1503.5" ></text>
</g>
<g >
<title>[unknown] (1,004,772,325 samples, 0.09%)</title><rect x="198.9" y="245" width="1.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (437,583,386 samples, 0.04%)</title><rect x="914.7" y="1925" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.73" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,568,354,044 samples, 0.24%)</title><rect x="938.8" y="1973" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.83" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (1,513,140,274 samples, 0.14%)</title><rect x="198.9" y="1653" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="917" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="927.5" ></text>
</g>
<g >
<title>[unknown] (1,496,613,607 samples, 0.14%)</title><rect x="198.9" y="325" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,003,741 samples, 0.01%)</title><rect x="911.2" y="1941" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.17" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,719,738,872 samples, 0.16%)</title><rect x="911.4" y="2021" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.40" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,715,098,246 samples, 0.16%)</title><rect x="911.4" y="1973" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.41" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,620,018,286 samples, 0.71%)</title><rect x="924.5" y="2021" width="8.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="927.47" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (212,960,081 samples, 0.02%)</title><rect x="937.9" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="940.88" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (1,085,602,432 samples, 0.10%)</title><rect x="198.9" y="261" width="1.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (98,869,846 samples, 0.01%)</title><rect x="913.6" y="1989" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.55" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (378,761,087 samples, 0.04%)</title><rect x="914.8" y="1845" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.80" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,326,186,354 samples, 0.59%)</title><rect x="925.9" y="1893" width="7.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="928.90" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (520,798,600 samples, 0.05%)</title><rect x="935.1" y="1941" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.09" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="901" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (334,158,922 samples, 0.03%)</title><rect x="938.5" y="1893" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.45" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (1,502,358,998 samples, 0.14%)</title><rect x="198.9" y="389" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (225,685,274 samples, 0.02%)</title><rect x="914.3" y="1845" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.28" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (239,424,194 samples, 0.02%)</title><rect x="1140.4" y="1925" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1143.39" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (150,097,419 samples, 0.01%)</title><rect x="60.7" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="63.71" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,269,314,902 samples, 0.21%)</title><rect x="939.2" y="1861" width="2.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="942.16" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (1,509,847,310 samples, 0.14%)</title><rect x="198.9" y="1333" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1343.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="757" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,301,733,610 samples, 0.12%)</title><rect x="936.7" y="1925" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="939.68" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (145,084,195 samples, 0.01%)</title><rect x="60.7" y="1861" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="63.71" y="1871.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.32] (171,105,899,248 samples, 16.00%)</title><rect x="10.1" y="2053" width="188.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="13.08" y="2063.5" >[libstdc++.so.6.0.32]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,343,548,879 samples, 0.31%)</title><rect x="194.6" y="1989" width="3.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="197.56" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="581" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (141,499,043 samples, 0.01%)</title><rect x="911.1" y="1957" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.15" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,290,779 samples, 0.01%)</title><rect x="199.6" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.60" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,160,221,191 samples, 0.11%)</title><rect x="909.1" y="1877" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="912.11" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (326,373,228 samples, 0.03%)</title><rect x="199.2" y="117" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.23" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (462,493,752 samples, 0.04%)</title><rect x="1177.4" y="1909" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.44" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="223.5" ></text>
</g>
<g >
<title>[unknown] (1,509,338,458 samples, 0.14%)</title><rect x="198.9" y="1205" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1215.5" ></text>
</g>
<g >
<title>[unknown] (1,503,593,455 samples, 0.14%)</title><rect x="198.9" y="437" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (608,699,561 samples, 0.06%)</title><rect x="938.1" y="1941" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.15" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (267,239,279 samples, 0.02%)</title><rect x="60.6" y="2005" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="63.58" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,559,477,557 samples, 0.15%)</title><rect x="1183.8" y="2021" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.79" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,928,961,330 samples, 0.18%)</title><rect x="196.1" y="1877" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="199.12" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,363,328,608 samples, 0.31%)</title><rect x="194.5" y="2005" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="197.54" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (292,182,448 samples, 0.03%)</title><rect x="60.5" y="2021" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="63.55" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (530,198,146 samples, 0.05%)</title><rect x="910.5" y="1989" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="913.52" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,466,466,584 samples, 0.23%)</title><rect x="938.9" y="1893" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.94" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,407,630,981 samples, 0.13%)</title><rect x="908.8" y="1973" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="911.84" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,505,191,359 samples, 0.14%)</title><rect x="1183.8" y="1973" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.85" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="789" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="799.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,021,715 samples, 0.01%)</title><rect x="913.1" y="1829" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.14" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (757,926,201 samples, 0.07%)</title><rect x="1177.1" y="1925" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.11" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (1,504,491,984 samples, 0.14%)</title><rect x="198.9" y="453" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="191.5" ></text>
</g>
<g >
<title>[unknown] (1,509,847,310 samples, 0.14%)</title><rect x="198.9" y="1349" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="117" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,447,780,358 samples, 0.14%)</title><rect x="911.7" y="1909" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.70" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (1,518,427,918 samples, 0.14%)</title><rect x="198.9" y="1925" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (1,508,964,014 samples, 0.14%)</title><rect x="198.9" y="1093" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1103.5" ></text>
</g>
<g >
<title>[unknown] (1,508,964,014 samples, 0.14%)</title><rect x="198.9" y="1077" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1087.5" ></text>
</g>
<g >
<title>[unknown] (1,510,362,054 samples, 0.14%)</title><rect x="198.9" y="1429" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,617,438,223 samples, 0.71%)</title><rect x="924.5" y="2005" width="8.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="927.47" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (1,508,964,014 samples, 0.14%)</title><rect x="198.9" y="1045" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1055.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,381,465,249 samples, 0.13%)</title><rect x="908.9" y="1941" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="911.87" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (1,508,964,014 samples, 0.14%)</title><rect x="198.9" y="1029" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (127,151,874 samples, 0.01%)</title><rect x="1140.5" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1143.52" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,338,517,642 samples, 0.13%)</title><rect x="911.8" y="1877" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.82" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="1013" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (250,754,391 samples, 0.02%)</title><rect x="1140.4" y="1957" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1143.38" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (1,509,847,310 samples, 0.14%)</title><rect x="198.9" y="1253" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1263.5" ></text>
</g>
<g >
<title>[unknown] (1,513,952,540 samples, 0.14%)</title><rect x="198.9" y="1701" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1711.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (409,429,421 samples, 0.04%)</title><rect x="198.5" y="1925" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.47" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="997" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1007.5" ></text>
</g>
<g >
<title>[unknown] (1,516,188,504 samples, 0.14%)</title><rect x="198.9" y="1813" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="597" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,645,753,875 samples, 0.15%)</title><rect x="911.5" y="1925" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.48" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (520,520,422 samples, 0.05%)</title><rect x="941.1" y="1845" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="944.09" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,360,394,704 samples, 0.13%)</title><rect x="1184.0" y="1957" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.01" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (466,000,580 samples, 0.04%)</title><rect x="198.4" y="1941" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.41" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (203,750,144 samples, 0.02%)</title><rect x="60.6" y="1925" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="63.65" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (1,509,338,458 samples, 0.14%)</title><rect x="198.9" y="1221" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (310,570,647 samples, 0.03%)</title><rect x="914.2" y="1877" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.18" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (326,373,228 samples, 0.03%)</title><rect x="199.2" y="101" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.23" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (165,296,707 samples, 0.02%)</title><rect x="60.7" y="1893" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="63.69" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (640,883,317 samples, 0.06%)</title><rect x="938.1" y="2037" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.11" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="661" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="671.5" ></text>
</g>
<g >
<title>[unknown] (182,881,762 samples, 0.02%)</title><rect x="198.9" y="165" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="175.5" ></text>
</g>
<g >
<title>pthread_create@GLIBC_2.2.5 (781,849,489 samples, 0.07%)</title><rect x="1177.1" y="2053" width="0.8" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="1180.09" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (439,218,776 samples, 0.04%)</title><rect x="914.7" y="1973" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.73" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="223.5" ></text>
</g>
<g >
<title>__close_nocancel (150,712,566 samples, 0.01%)</title><rect x="911.1" y="2037" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="914.14" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="85" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="95.5" ></text>
</g>
<g >
<title>__madvise (551,971,836 samples, 0.05%)</title><rect x="935.1" y="2053" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="938.06" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="101" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="111.5" ></text>
</g>
<g >
<title>__libc_start_call_main (18,415,174,055 samples, 1.72%)</title><rect x="914.7" y="2053" width="20.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="917.73" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="149" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (326,373,228 samples, 0.03%)</title><rect x="199.2" y="53" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.23" y="63.5" ></text>
</g>
<g >
<title>[unknown] (1,502,510,316 samples, 0.14%)</title><rect x="198.9" y="421" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="431.5" ></text>
</g>
<g >
<title>[unknown] (1,513,140,274 samples, 0.14%)</title><rect x="198.9" y="1621" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (1,512,291,854 samples, 0.14%)</title><rect x="198.9" y="1557" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1567.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (439,218,776 samples, 0.04%)</title><rect x="914.7" y="2005" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.73" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (1,513,952,540 samples, 0.14%)</title><rect x="198.9" y="1717" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1727.5" ></text>
</g>
<g >
<title>__munmap (2,576,176,875 samples, 0.24%)</title><rect x="938.8" y="2053" width="2.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="941.82" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (1,510,917,260 samples, 0.14%)</title><rect x="198.9" y="1509" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="69" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (303,667,544 samples, 0.03%)</title><rect x="937.8" y="1893" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="940.78" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="837" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="847.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="613" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (563,197,025 samples, 0.05%)</title><rect x="198.3" y="2021" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.30" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (551,971,836 samples, 0.05%)</title><rect x="935.1" y="2005" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.06" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="133" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,715,098,246 samples, 0.16%)</title><rect x="911.4" y="1957" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.41" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (1,517,565,605 samples, 0.14%)</title><rect x="198.9" y="1909" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477,252,349 samples, 0.04%)</title><rect x="1185.0" y="1909" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.98" y="1919.5" ></text>
</g>
<g >
<title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (3,967,819,794 samples, 0.37%)</title><rect x="1185.6" y="2053" width="4.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1188.59" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (551,523,687 samples, 0.05%)</title><rect x="198.3" y="1989" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.31" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,438,128,520 samples, 0.13%)</title><rect x="936.5" y="1941" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="939.53" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="725" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (634,616,217 samples, 0.06%)</title><rect x="938.1" y="2005" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.12" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (326,373,228 samples, 0.03%)</title><rect x="199.2" y="69" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.23" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="101" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (299,370,444 samples, 0.03%)</title><rect x="914.2" y="1861" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.20" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (468,654,514 samples, 0.04%)</title><rect x="935.1" y="1909" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.15" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="85" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,474,792,002 samples, 0.14%)</title><rect x="908.8" y="2005" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="911.77" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (191,311,551 samples, 0.02%)</title><rect x="198.7" y="1829" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.71" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (103,378,892 samples, 0.01%)</title><rect x="913.5" y="2021" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.55" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,530,810,450 samples, 0.24%)</title><rect x="938.9" y="1909" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.87" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (1,510,362,054 samples, 0.14%)</title><rect x="198.9" y="1397" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (267,318,514 samples, 0.03%)</title><rect x="1140.4" y="1973" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1143.36" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (146,897,823 samples, 0.01%)</title><rect x="911.1" y="1973" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.14" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (250,194,741 samples, 0.02%)</title><rect x="60.6" y="1973" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="63.60" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (1,499,242,567 samples, 0.14%)</title><rect x="198.9" y="357" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="367.5" ></text>
</g>
<g >
<title>[unknown] (1,507,931,754 samples, 0.14%)</title><rect x="198.9" y="517" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="527.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="629" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="639.5" ></text>
</g>
<g >
<title>[unknown] (1,510,362,054 samples, 0.14%)</title><rect x="198.9" y="1445" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,576,176,875 samples, 0.24%)</title><rect x="938.8" y="2037" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.82" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (1,519,168,717 samples, 0.14%)</title><rect x="198.9" y="1973" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (1,509,847,310 samples, 0.14%)</title><rect x="198.9" y="1285" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1295.5" ></text>
</g>
<g >
<title>[unknown] (1,518,427,918 samples, 0.14%)</title><rect x="198.9" y="1957" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1967.5" ></text>
</g>
<g >
<title>std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;::_M_gen_rand (1,789,063,980 samples, 0.17%)</title><rect x="1178.1" y="2053" width="2.0" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1181.13" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,612,567,894 samples, 0.71%)</title><rect x="924.5" y="1989" width="8.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="927.48" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (629,979,489 samples, 0.06%)</title><rect x="938.1" y="1973" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.13" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="223.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="677" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="181" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="165" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395,817,328 samples, 0.04%)</title><rect x="914.8" y="1861" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.78" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (551,262,684 samples, 0.05%)</title><rect x="935.1" y="1989" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.06" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="821" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="831.5" ></text>
</g>
<g >
<title>[unknown] (1,507,931,754 samples, 0.14%)</title><rect x="198.9" y="549" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="559.5" ></text>
</g>
<g >
<title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (1,969,317,493 samples, 0.18%)</title><rect x="932.9" y="2037" width="2.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="935.88" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,547,645,636 samples, 0.24%)</title><rect x="938.9" y="1925" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.85" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,606,480,862 samples, 0.71%)</title><rect x="924.5" y="1941" width="8.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="927.48" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (1,511,775,501 samples, 0.14%)</title><rect x="198.9" y="1525" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1535.5" ></text>
</g>
<g >
<title>all (1,069,187,264,616 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="2095.5" ></text>
</g>
<g >
<title>[unknown] (1,516,188,504 samples, 0.14%)</title><rect x="198.9" y="1829" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (272,549,730 samples, 0.03%)</title><rect x="1140.4" y="1989" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1143.36" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (147,415,547 samples, 0.01%)</title><rect x="911.1" y="1989" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.14" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (534,712,482 samples, 0.05%)</title><rect x="913.9" y="2021" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.94" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (1,145,818,813 samples, 0.11%)</title><rect x="198.9" y="277" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="287.5" ></text>
</g>
<g >
<title>__munmap (121,850,112 samples, 0.01%)</title><rect x="199.8" y="229" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="202.83" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,010,775,607 samples, 0.19%)</title><rect x="196.0" y="1893" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="199.03" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,569,223,409 samples, 0.24%)</title><rect x="938.8" y="2021" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.83" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,716,777,330 samples, 0.16%)</title><rect x="911.4" y="1989" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.40" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (440,088,114 samples, 0.04%)</title><rect x="914.7" y="2021" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.73" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (382,981,503 samples, 0.04%)</title><rect x="938.4" y="1925" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.40" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="197" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,519,061,001 samples, 0.70%)</title><rect x="924.6" y="1909" width="8.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="927.58" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,548,425,959 samples, 0.14%)</title><rect x="1183.8" y="1989" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.80" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (1,507,931,754 samples, 0.14%)</title><rect x="198.9" y="533" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="543.5" ></text>
</g>
<g >
<title>[unknown] (1,510,362,054 samples, 0.14%)</title><rect x="198.9" y="1365" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1375.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="741" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (435,185,623 samples, 0.04%)</title><rect x="914.7" y="1893" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.74" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="69" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="79.5" ></text>
</g>
<g >
<title>[unknown] (1,517,042,269 samples, 0.14%)</title><rect x="198.9" y="1893" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="133" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="53" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (525,384,124 samples, 0.05%)</title><rect x="910.5" y="1957" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="913.53" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,316,773,214 samples, 0.31%)</title><rect x="194.6" y="1973" width="3.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="197.59" y="1983.5" ></text>
</g>
<g >
<title>aggr_j (46,011,205,355 samples, 4.30%)</title><rect x="10.1" y="2037" width="50.8" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.09" y="2047.5" >aggr_j</text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="805" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="815.5" ></text>
</g>
<g >
<title>read (537,330,819 samples, 0.05%)</title><rect x="913.9" y="2037" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="916.93" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (92,083,326 samples, 0.01%)</title><rect x="914.6" y="2021" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.59" y="2031.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (95,112,223 samples, 0.01%)</title><rect x="914.6" y="2053" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="917.59" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (543,194,689 samples, 0.05%)</title><rect x="935.1" y="1957" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.07" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,202,079,101 samples, 0.11%)</title><rect x="909.1" y="1893" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="912.07" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="229" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (326,373,228 samples, 0.03%)</title><rect x="199.2" y="165" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.23" y="175.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="853" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="863.5" ></text>
</g>
<g >
<title>scan_a (124,443,526,238 samples, 11.64%)</title><rect x="60.9" y="2037" width="137.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="63.91" y="2047.5" >scan_a</text>
</g>
<g >
<title>[[kernel.kallsyms]] (634,616,217 samples, 0.06%)</title><rect x="938.1" y="1989" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.12" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (1,509,338,458 samples, 0.14%)</title><rect x="198.9" y="1157" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,114,353,415 samples, 0.29%)</title><rect x="194.8" y="1909" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="197.81" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (1,518,427,918 samples, 0.14%)</title><rect x="198.9" y="1941" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (98,869,846 samples, 0.01%)</title><rect x="913.6" y="1973" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.55" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,297,968,466 samples, 0.12%)</title><rect x="909.0" y="1925" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="911.96" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,290,779 samples, 0.01%)</title><rect x="199.6" y="37" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.60" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,432,925,507 samples, 0.13%)</title><rect x="908.8" y="1989" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="911.81" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,612,567,894 samples, 0.71%)</title><rect x="924.5" y="1973" width="8.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="927.48" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (394,437,977 samples, 0.04%)</title><rect x="198.5" y="1909" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.49" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="965" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="975.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="37" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="47.5" ></text>
</g>
<g >
<title>[unknown] (648,426,821,463 samples, 60.65%)</title><rect x="198.9" y="2053" width="715.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="2063.5" >[unknown]</text>
</g>
<g >
<title>[unknown] (1,509,847,310 samples, 0.14%)</title><rect x="198.9" y="1269" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (396,855,578 samples, 0.04%)</title><rect x="914.1" y="1909" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.09" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (536,407,408 samples, 0.05%)</title><rect x="910.5" y="2021" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="913.52" y="2031.5" ></text>
</g>
<g >
<title>syscall (1,580,796,650 samples, 0.15%)</title><rect x="1183.8" y="2053" width="1.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1186.76" y="2063.5" ></text>
</g>
<g >
<title>__munmap (440,088,114 samples, 0.04%)</title><rect x="914.7" y="2037" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="917.73" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (1,513,952,540 samples, 0.14%)</title><rect x="198.9" y="1749" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1759.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="245" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,609,957,986 samples, 0.71%)</title><rect x="924.5" y="1957" width="8.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="927.48" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (143,851,028 samples, 0.01%)</title><rect x="938.0" y="1861" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="940.96" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (259,107,464 samples, 0.02%)</title><rect x="60.6" y="1989" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="63.59" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (94,879,422 samples, 0.01%)</title><rect x="913.6" y="1957" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.56" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (1,516,188,504 samples, 0.14%)</title><rect x="198.9" y="1845" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (468,063,009 samples, 0.04%)</title><rect x="910.6" y="1925" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="913.59" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (581,521,360 samples, 0.05%)</title><rect x="1184.9" y="1925" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.87" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,290,779 samples, 0.01%)</title><rect x="199.6" y="133" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.60" y="143.5" ></text>
</g>
<g >
<title>[unknown] (1,509,338,458 samples, 0.14%)</title><rect x="198.9" y="1189" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,290,779 samples, 0.01%)</title><rect x="199.6" y="165" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.60" y="175.5" ></text>
</g>
<g >
<title>QDPBench (1,069,165,668,013 samples, 100.00%)</title><rect x="10.0" y="2069" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.00" y="2079.5" >QDPBench</text>
</g>
<g >
<title>[unknown] (1,514,810,618 samples, 0.14%)</title><rect x="198.9" y="1797" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (524,632,297 samples, 0.05%)</title><rect x="913.9" y="1989" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.95" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,290,779 samples, 0.01%)</title><rect x="199.6" y="53" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.60" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (99,386,128 samples, 0.01%)</title><rect x="913.6" y="2005" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.55" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (1,505,354,586 samples, 0.14%)</title><rect x="198.9" y="469" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,222,303,275 samples, 0.11%)</title><rect x="911.9" y="1845" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.95" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (343,450,230 samples, 0.03%)</title><rect x="914.1" y="1893" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.15" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,717,648,232 samples, 0.16%)</title><rect x="911.4" y="2005" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.40" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="149" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="159.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="709" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283,011,707 samples, 0.03%)</title><rect x="1140.3" y="2021" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1143.34" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (1,509,338,458 samples, 0.14%)</title><rect x="198.9" y="1125" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (298,112,324 samples, 0.03%)</title><rect x="910.8" y="1893" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="913.77" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (774,983,740 samples, 0.07%)</title><rect x="1177.1" y="1989" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.09" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (1,513,952,540 samples, 0.14%)</title><rect x="198.9" y="1669" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1679.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,161,359,162 samples, 0.11%)</title><rect x="1184.2" y="1941" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.23" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (426,115,677 samples, 0.04%)</title><rect x="910.6" y="1909" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="913.64" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="261" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="271.5" ></text>
</g>
<g >
<title>[unknown] (1,510,362,054 samples, 0.14%)</title><rect x="198.9" y="1413" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,290,779 samples, 0.01%)</title><rect x="199.6" y="149" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.60" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,850,112 samples, 0.01%)</title><rect x="199.8" y="165" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.83" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (418,591,247 samples, 0.04%)</title><rect x="914.8" y="1877" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.76" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (774,120,056 samples, 0.07%)</title><rect x="1177.1" y="1957" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.09" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (241,978,666 samples, 0.02%)</title><rect x="60.6" y="1957" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="63.60" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,271,996,419 samples, 0.12%)</title><rect x="911.9" y="1861" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="914.89" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (459,912,571 samples, 0.04%)</title><rect x="1177.4" y="1893" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1180.44" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (1,510,917,260 samples, 0.14%)</title><rect x="198.9" y="1477" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1487.5" ></text>
</g>
<g >
<title>[unknown] (1,509,847,310 samples, 0.14%)</title><rect x="198.9" y="1301" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1311.5" ></text>
</g>
<g >
<title>[unknown] (1,512,291,854 samples, 0.14%)</title><rect x="198.9" y="1541" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1551.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (622,617,093 samples, 0.06%)</title><rect x="938.1" y="1957" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="941.13" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (528,925,342 samples, 0.05%)</title><rect x="910.5" y="1973" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="913.52" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (1,513,952,540 samples, 0.14%)</title><rect x="198.9" y="1685" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="1695.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (176,610,192 samples, 0.02%)</title><rect x="60.7" y="1909" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="63.68" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (506,309,843 samples, 0.05%)</title><rect x="910.5" y="1941" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="913.55" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,290,779 samples, 0.01%)</title><rect x="199.6" y="85" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.60" y="95.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="869" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="879.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (318,096,298 samples, 0.03%)</title><rect x="198.6" y="1861" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.57" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="37" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (129,627,027 samples, 0.01%)</title><rect x="1185.4" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.36" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,235,132,767 samples, 0.30%)</title><rect x="194.7" y="1941" width="3.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="197.68" y="1951.5" ></text>
</g>
<g >
<title>std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;::operator (3,317,471,338 samples, 0.31%)</title><rect x="1180.1" y="2053" width="3.7" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1183.10" y="2063.5" ></text>
</g>
<g >
<title>__GI___libc_open (536,911,878 samples, 0.05%)</title><rect x="910.5" y="2037" width="0.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="913.51" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,154,863,756 samples, 0.20%)</title><rect x="935.7" y="1973" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.74" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (521,784,067 samples, 0.05%)</title><rect x="913.9" y="1973" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="916.95" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (546,168,763 samples, 0.05%)</title><rect x="935.1" y="1973" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.06" y="1983.5" ></text>
</g>
<g >
<title>clone3 (221,984,563 samples, 0.02%)</title><rect x="200.3" y="293" width="0.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="203.32" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,845,947,544 samples, 0.17%)</title><rect x="196.2" y="1861" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="199.21" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,188,876 samples, 0.01%)</title><rect x="200.2" y="117" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.19" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (221,984,563 samples, 0.02%)</title><rect x="200.3" y="85" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.32" y="95.5" ></text>
</g>
<g >
<title>[unknown] (1,508,437,358 samples, 0.14%)</title><rect x="198.9" y="981" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (439,218,776 samples, 0.04%)</title><rect x="914.7" y="1957" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.73" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (139,290,779 samples, 0.01%)</title><rect x="199.6" y="117" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.60" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,196,234,395 samples, 0.30%)</title><rect x="194.7" y="1925" width="3.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="197.72" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (272,019,832 samples, 0.03%)</title><rect x="198.9" y="181" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="201.92" y="191.5" ></text>
</g>
</g>
</svg>