|
|
<?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="502" onload="init(evt)" viewBox="0 0 1200 502" 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="502.0" fill="url(#background)" /> <text id="title" x="600.00" y="24" >Flame Graph</text> <text id="details" x="10.00" y="485" > </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="485" > </text> <g id="frames"> <g > <title>[[kernel.kallsyms]] (2,984,347 samples, 0.02%)</title><rect x="81.2" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.24" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,013,054 samples, 0.02%)</title><rect x="36.3" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.34" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (22,960,895 samples, 0.14%)</title><rect x="63.3" y="293" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="66.35" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (9,138,290 samples, 0.05%)</title><rect x="642.4" y="389" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="645.42" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,719,035 samples, 0.01%)</title><rect x="622.9" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="625.87" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,514,069 samples, 0.13%)</title><rect x="284.4" y="357" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="287.40" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,305,250 samples, 0.01%)</title><rect x="1187.8" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.85" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (170,934,003 samples, 1.02%)</title><rect x="630.0" y="405" width="12.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="632.96" y="415.5" ></text> </g> <g > <title>__GI___mmap64 (34,459,889 samples, 0.21%)</title><rect x="62.5" y="405" width="2.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="65.53" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,719,035 samples, 0.01%)</title><rect x="622.9" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="625.87" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,386,961 samples, 0.03%)</title><rect x="461.8" y="133" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="464.80" y="143.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,697,005 samples, 0.03%)</title><rect x="81.0" y="309" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.05" y="319.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (1,978,527,500 samples, 11.85%)</title><rect x="483.0" y="357" width="139.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="485.99" y="367.5" >unsigned long std..</text> </g> <g > <title>[[kernel.kallsyms]] (32,612,475 samples, 0.20%)</title><rect x="62.7" y="309" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="65.67" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,681,645 samples, 0.05%)</title><rect x="81.7" y="197" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.74" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (48,820,201 samples, 0.29%)</title><rect x="1184.4" y="309" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.37" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (39,706,274 samples, 0.24%)</title><rect x="626.1" y="229" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="629.05" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,770,501 samples, 0.01%)</title><rect x="1188.8" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.84" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,783,901 samples, 0.07%)</title><rect x="81.5" y="245" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.45" y="255.5" ></text> </g> <g > <title>__libc_open64 (11,768,195 samples, 0.07%)</title><rect x="36.7" y="405" width="0.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> <text x="39.69" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (115,931,628 samples, 0.69%)</title><rect x="633.8" y="261" width="8.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="636.85" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,333,710 samples, 0.04%)</title><rect x="972.8" y="277" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="975.82" y="287.5" ></text> </g> <g > <title>_mm512_stream_load_si512 (3,341,072,171 samples, 20.02%)</title><rect x="737.1" y="341" width="236.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="740.05" y="351.5" >_mm512_stream_load_si512</text> </g> <g > <title>[[kernel.kallsyms]] (58,633,845 samples, 0.35%)</title><rect x="1183.7" y="373" width="4.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.68" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,671,139 samples, 0.02%)</title><rect x="1189.1" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.12" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,631,088 samples, 0.03%)</title><rect x="736.7" y="261" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="739.66" y="271.5" ></text> </g> <g > <title>[dash] (3,764,771 samples, 0.02%)</title><rect x="1188.4" y="309" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1191.44" y="319.5" ></text> </g> <g > <title>[libstdc++.so.6.0.32] (7,644,715,192 samples, 45.80%)</title><rect x="643.1" y="405" width="540.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="646.07" y="415.5" >[libstdc++.so.6.0.32]</text> </g> <g > <title>_dl_map_object (1,486,251 samples, 0.01%)</title><rect x="1189.7" y="421" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> <text x="1192.71" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,058,542 samples, 0.04%)</title><rect x="36.2" y="245" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.20" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (58,463,391 samples, 0.35%)</title><rect x="1183.7" y="357" width="4.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.69" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,205,399 samples, 0.09%)</title><rect x="11.1" y="357" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="14.08" y="367.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (326,443,524 samples, 1.96%)</title><rect x="37.7" y="405" width="23.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="40.69" y="415.5" >u..</text> </g> <g > <title>[[kernel.kallsyms]] (5,895,796 samples, 0.04%)</title><rect x="642.6" y="325" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="645.65" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,047,862 samples, 0.02%)</title><rect x="60.9" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="63.89" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,398,392 samples, 0.04%)</title><rect x="80.2" y="405" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.16" y="415.5" ></text> </g> <g > <title>idxd_cdev_release (1,487,496 samples, 0.01%)</title><rect x="80.0" y="309" width="0.1" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" /> <text x="83.02" y="319.5" ></text> </g> <g > <title>allocate_stack (79,822,745 samples, 0.48%)</title><rect x="623.2" y="405" width="5.7" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> <text x="626.21" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (34,459,889 samples, 0.21%)</title><rect x="62.5" y="373" width="2.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="65.53" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (19,865,524 samples, 0.12%)</title><rect x="974.1" y="197" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="977.12" y="207.5" ></text> </g> <g > <title>Filter<unsigned long, LT, (2,932,657,510 samples, 17.57%)</title><rect x="975.9" y="373" width="207.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="978.95" y="383.5" >Filter<unsigned long, LT, </text> </g> <g > <title>[[kernel.kallsyms]] (77,629,863 samples, 0.47%)</title><rect x="623.4" y="277" width="5.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="626.37" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (8,075,695 samples, 0.05%)</title><rect x="642.5" y="341" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="645.49" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (94,017,791 samples, 0.56%)</title><rect x="635.4" y="229" width="6.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="638.40" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,102,342,141 samples, 12.60%)</title><rect x="313.5" y="357" width="148.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="316.47" y="367.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (11,783,901 samples, 0.07%)</title><rect x="81.5" y="325" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.45" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,951,083 samples, 0.01%)</title><rect x="10.1" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.09" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,136,854 samples, 0.01%)</title><rect x="61.4" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.37" y="399.5" ></text> </g> <g > <title>QDPBench (16,662,013,509 samples, 99.83%)</title><rect x="10.0" y="437" width="1178.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> <text x="13.00" y="447.5" >QDPBench</text> </g> <g > <title>all (16,690,154,391 samples, 100%)</title><rect x="10.0" y="453" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.00" y="463.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,953,512 samples, 0.01%)</title><rect x="1188.5" y="101" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.50" y="111.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,487,416 samples, 0.13%)</title><rect x="63.5" y="277" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="66.45" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (10,559,325 samples, 0.06%)</title><rect x="35.9" y="309" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="38.88" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (27,298,793 samples, 0.16%)</title><rect x="71.2" y="373" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="74.19" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,508,164 samples, 0.01%)</title><rect x="530.7" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="533.66" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (34,459,889 samples, 0.21%)</title><rect x="62.5" y="357" width="2.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="65.53" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (97,406,721 samples, 0.58%)</title><rect x="73.2" y="325" width="6.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="76.24" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,298,600 samples, 0.04%)</title><rect x="37.1" y="261" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="40.05" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,487,496 samples, 0.01%)</title><rect x="80.0" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.02" y="287.5" ></text> </g> <g > <title>__pthread_create_2_1 (79,822,745 samples, 0.48%)</title><rect x="623.2" y="421" width="5.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> <text x="626.21" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,465,907 samples, 0.13%)</title><rect x="284.4" y="309" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="287.40" y="319.5" ></text> </g> <g > <title>std::barrier<NopStruct>::arrive_and_wait (1,482,210 samples, 0.01%)</title><rect x="975.7" y="373" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="978.73" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (31,760,944 samples, 0.19%)</title><rect x="973.3" y="341" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="976.28" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,573,264 samples, 0.03%)</title><rect x="36.2" y="229" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.23" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,272,663 samples, 0.02%)</title><rect x="61.1" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.12" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (17,625,245 samples, 0.11%)</title><rect x="10.9" y="373" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.91" y="383.5" ></text> </g> <g > <title>[unknown] (1,985,283 samples, 0.01%)</title><rect x="1189.0" y="421" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> <text x="1191.98" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,386,961 samples, 0.03%)</title><rect x="461.8" y="101" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="464.80" y="111.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,514,069 samples, 0.13%)</title><rect x="284.4" y="341" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="287.40" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,029,215 samples, 0.01%)</title><rect x="592.3" y="165" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="595.31" y="175.5" ></text> </g> <g > <title>[dash] (3,012,048 samples, 0.02%)</title><rect x="1188.4" y="293" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1191.44" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,017,802 samples, 0.04%)</title><rect x="11.7" y="309" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="14.66" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (42,083,290 samples, 0.25%)</title><rect x="1180.3" y="277" width="3.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.31" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,154,130 samples, 0.02%)</title><rect x="736.8" y="197" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="739.76" y="207.5" ></text> </g> <g > <title>__GI___libc_read (9,178,903 samples, 0.05%)</title><rect x="61.8" y="405" width="0.7" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="64.81" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,872,782 samples, 0.02%)</title><rect x="80.7" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.73" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (27,298,793 samples, 0.16%)</title><rect x="71.2" y="405" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="74.19" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (79,822,745 samples, 0.48%)</title><rect x="623.2" y="389" width="5.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="626.21" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,589,030 samples, 0.07%)</title><rect x="35.8" y="341" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="38.81" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,956,980 samples, 0.01%)</title><rect x="1188.5" y="133" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.50" y="143.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (72,600,207 samples, 0.43%)</title><rect x="66.0" y="277" width="5.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="69.04" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (8,750,101 samples, 0.05%)</title><rect x="642.4" y="373" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="645.45" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,047,862 samples, 0.02%)</title><rect x="60.9" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="63.89" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (9,178,903 samples, 0.05%)</title><rect x="61.8" y="341" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.81" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,003,659 samples, 0.01%)</title><rect x="642.9" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="645.92" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (8,954,404 samples, 0.05%)</title><rect x="11.5" y="325" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="14.53" y="335.5" ></text> </g> <g > <title>__GI___libc_malloc (1,747,685 samples, 0.01%)</title><rect x="61.7" y="421" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="64.66" y="431.5" ></text> </g> <g > <title>clone3 (171,106,329 samples, 1.03%)</title><rect x="629.9" y="421" width="12.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="632.95" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,219,922 samples, 0.02%)</title><rect x="973.0" y="165" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="976.04" y="175.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (31,390,263 samples, 0.19%)</title><rect x="973.3" y="325" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="976.31" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,524,968 samples, 0.03%)</title><rect x="80.2" y="341" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.22" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (68,841,100 samples, 0.41%)</title><rect x="637.2" y="197" width="4.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="640.18" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,685,003 samples, 0.03%)</title><rect x="736.7" y="245" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="739.72" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,029,215 samples, 0.01%)</title><rect x="592.3" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="595.31" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,996,137 samples, 0.01%)</title><rect x="1188.5" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.50" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (28,779,849 samples, 0.17%)</title><rect x="973.5" y="277" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="976.49" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (167,508,768 samples, 1.00%)</title><rect x="630.2" y="309" width="11.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="633.20" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,768,195 samples, 0.07%)</title><rect x="36.7" y="357" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.69" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (86,076,573 samples, 0.52%)</title><rect x="65.1" y="389" width="6.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.09" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,508,164 samples, 0.01%)</title><rect x="530.7" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="533.66" y="335.5" ></text> </g> <g > <title>[dash] (5,027,278 samples, 0.03%)</title><rect x="1188.4" y="373" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1191.44" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (81,352,837 samples, 0.49%)</title><rect x="636.3" y="213" width="5.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="639.29" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (27,030,047 samples, 0.16%)</title><rect x="71.2" y="341" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="74.21" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,428,370 samples, 0.01%)</title><rect x="1187.7" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.72" y="175.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,988,167 samples, 0.01%)</title><rect x="1188.5" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.50" y="159.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,551,575 samples, 0.03%)</title><rect x="972.9" y="245" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="975.95" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,988,167 samples, 0.01%)</title><rect x="1188.5" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.50" y="175.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (58,840,407 samples, 0.35%)</title><rect x="1183.7" y="389" width="4.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.67" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,663,202 samples, 0.02%)</title><rect x="1189.1" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.12" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (20,598,523 samples, 0.12%)</title><rect x="284.5" y="245" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="287.46" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,029,215 samples, 0.01%)</title><rect x="592.3" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="595.31" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,494,142 samples, 0.01%)</title><rect x="1187.9" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.90" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (98,360,300 samples, 0.59%)</title><rect x="73.2" y="405" width="6.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="76.17" y="415.5" ></text> </g> <g > <title>[dash] (4,452,368 samples, 0.03%)</title><rect x="1188.4" y="325" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1191.44" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,538,670 samples, 0.02%)</title><rect x="461.9" y="69" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="464.86" y="79.5" ></text> </g> <g > <title>[dash] (2,790,927 samples, 0.02%)</title><rect x="1188.4" y="261" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1191.44" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,508,164 samples, 0.01%)</title><rect x="530.7" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="533.66" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (8,578,008 samples, 0.05%)</title><rect x="61.9" y="325" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.85" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,694,625 samples, 0.02%)</title><rect x="79.8" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="82.83" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (85,885,490 samples, 0.51%)</title><rect x="65.1" y="373" width="6.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.10" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,783,901 samples, 0.07%)</title><rect x="81.5" y="341" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.45" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,013,132 samples, 0.01%)</title><rect x="462.0" y="37" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="464.96" y="47.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,459,913 samples, 0.01%)</title><rect x="1189.1" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.14" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (79,822,745 samples, 0.48%)</title><rect x="623.2" y="293" width="5.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="626.21" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (93,192,761 samples, 0.56%)</title><rect x="73.4" y="309" width="6.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="76.43" y="319.5" ></text> </g> <g > <title>_mm512_cmplt_epi64_mask (51,035,457 samples, 0.31%)</title><rect x="1004.8" y="341" width="3.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="1007.81" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,029,215 samples, 0.01%)</title><rect x="592.3" y="149" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="595.31" y="159.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,241,096 samples, 0.01%)</title><rect x="80.5" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.45" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (28,400,054 samples, 0.17%)</title><rect x="1185.8" y="293" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1188.82" y="303.5" ></text> </g> <g > <title>sudo (16,378,026 samples, 0.10%)</title><rect x="1188.8" y="437" width="1.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="1191.84" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,703,321 samples, 0.01%)</title><rect x="629.5" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="632.52" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,508,164 samples, 0.01%)</title><rect x="530.7" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="533.66" y="191.5" ></text> </g> <g > <title>Vector_Loader<unsigned long, (3,341,072,171 samples, 20.02%)</title><rect x="737.1" y="357" width="236.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="740.05" y="367.5" >Vector_Loader<unsigned long, </text> </g> <g > <title>[[kernel.kallsyms]] (1,703,321 samples, 0.01%)</title><rect x="629.5" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="632.52" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (33,090,070 samples, 0.20%)</title><rect x="62.6" y="325" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="65.63" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (58,126,171 samples, 0.35%)</title><rect x="1183.7" y="341" width="4.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.72" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (79,822,745 samples, 0.48%)</title><rect x="623.2" y="373" width="5.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="626.21" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,508,164 samples, 0.01%)</title><rect x="530.7" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="533.66" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,154,130 samples, 0.02%)</title><rect x="736.8" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="739.76" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,752,013 samples, 0.01%)</title><rect x="61.4" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.40" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (9,178,903 samples, 0.05%)</title><rect x="61.8" y="389" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.81" y="399.5" ></text> </g> <g > <title>scan_b (3,360,145 samples, 0.02%)</title><rect x="1183.3" y="389" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> <text x="1186.31" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,333,710 samples, 0.04%)</title><rect x="972.8" y="309" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="975.82" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,205,992 samples, 0.04%)</title><rect x="62.0" y="293" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.95" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,853,234 samples, 0.02%)</title><rect x="71.0" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="73.97" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,305,250 samples, 0.01%)</title><rect x="1187.8" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.85" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,386,961 samples, 0.03%)</title><rect x="461.8" y="165" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="464.80" y="175.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (30,829,164 samples, 0.18%)</title><rect x="1181.1" y="213" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1184.11" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,783,901 samples, 0.07%)</title><rect x="81.5" y="261" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.45" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,760,557 samples, 0.03%)</title><rect x="64.6" y="261" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="67.63" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,513,580 samples, 0.03%)</title><rect x="1187.4" y="197" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.44" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (25,711,524 samples, 0.15%)</title><rect x="71.3" y="309" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="74.30" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (20,527,324 samples, 0.12%)</title><rect x="974.1" y="213" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="977.07" y="223.5" ></text> </g> <g > <title>sum_check (2,878,667,061 samples, 17.25%)</title><rect x="82.4" y="389" width="203.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="85.40" y="399.5" >sum_check</text> </g> <g > <title>[[kernel.kallsyms]] (7,907,099 samples, 0.05%)</title><rect x="736.5" y="325" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="739.49" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (27,367,183 samples, 0.16%)</title><rect x="10.2" y="421" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.22" y="431.5" ></text> </g> <g > <title>syscall (59,135,613 samples, 0.35%)</title><rect x="1183.6" y="421" width="4.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="1186.64" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (9,178,903 samples, 0.05%)</title><rect x="61.8" y="357" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.81" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,727,658 samples, 0.07%)</title><rect x="1187.0" y="213" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.00" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (83,136,128 samples, 0.50%)</title><rect x="74.1" y="277" width="5.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="77.14" y="287.5" ></text> </g> <g > <title>__GI__Fork (2,671,139 samples, 0.02%)</title><rect x="1189.1" y="421" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="1192.12" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,643,071 samples, 0.05%)</title><rect x="61.9" y="309" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.92" y="319.5" ></text> </g> <g > <title>__futex_abstimed_wait_common64 (2,918,752 samples, 0.02%)</title><rect x="80.7" y="405" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> <text x="83.73" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,611,694 samples, 0.02%)</title><rect x="1187.8" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.83" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,136,854 samples, 0.01%)</title><rect x="61.4" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.37" y="383.5" ></text> </g> <g > <title>clone3 (1,969,534 samples, 0.01%)</title><rect x="10.1" y="405" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="13.08" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,564,155 samples, 0.02%)</title><rect x="36.4" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.45" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,154,130 samples, 0.02%)</title><rect x="736.8" y="165" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="739.76" y="175.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,783,901 samples, 0.07%)</title><rect x="81.5" y="389" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.45" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (98,360,300 samples, 0.59%)</title><rect x="73.2" y="389" width="6.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="76.17" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,102,342,141 samples, 12.60%)</title><rect x="313.5" y="373" width="148.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="316.47" y="383.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (3,062,127 samples, 0.02%)</title><rect x="61.1" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.14" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,817,411 samples, 0.02%)</title><rect x="80.7" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.73" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,487,496 samples, 0.01%)</title><rect x="80.0" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.02" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,768,195 samples, 0.07%)</title><rect x="36.7" y="373" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.69" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (17,537,008 samples, 0.11%)</title><rect x="71.9" y="277" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="74.88" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (170,827,701 samples, 1.02%)</title><rect x="630.0" y="357" width="12.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="632.97" y="367.5" ></text> </g> <g > <title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::_M_gen_rand (430,269,452 samples, 2.58%)</title><rect x="592.5" y="309" width="30.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> <text x="595.45" y="319.5" >st..</text> </g> <g > <title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::operator (1,028,590,995 samples, 6.16%)</title><rect x="550.2" y="325" width="72.7" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> <text x="553.15" y="335.5" >std::mer..</text> </g> <g > <title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::operator (14,606,246 samples, 0.09%)</title><rect x="12.2" y="405" width="1.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> <text x="15.22" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (170,934,003 samples, 1.02%)</title><rect x="630.0" y="389" width="12.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="632.96" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,482,252 samples, 0.01%)</title><rect x="10.1" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.12" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (19,623,361 samples, 0.12%)</title><rect x="10.8" y="389" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.77" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,494,142 samples, 0.01%)</title><rect x="1187.9" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.90" y="335.5" ></text> </g> <g > <title>__futex_abstimed_wait_common (4,108,250 samples, 0.02%)</title><rect x="80.6" y="421" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> <text x="83.64" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (12,046,441 samples, 0.07%)</title><rect x="35.8" y="373" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="38.78" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (98,219,220 samples, 0.59%)</title><rect x="73.2" y="357" width="6.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="76.18" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (25,552,635 samples, 0.15%)</title><rect x="973.7" y="261" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="976.72" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,514,069 samples, 0.13%)</title><rect x="284.4" y="373" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="287.40" y="383.5" ></text> </g> <g > <title>dsacache::Cache::SubmitTask (2,081,036 samples, 0.01%)</title><rect x="1183.3" y="357" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> <text x="1186.32" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (87,606,686 samples, 0.52%)</title><rect x="73.8" y="293" width="6.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="76.82" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,153,836 samples, 0.02%)</title><rect x="11.9" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="14.94" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,272,663 samples, 0.02%)</title><rect x="61.1" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.12" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (43,543,105 samples, 0.26%)</title><rect x="1180.2" y="293" width="3.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.21" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (8,571,557 samples, 0.05%)</title><rect x="36.0" y="293" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.02" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,717,899,768 samples, 10.29%)</title><rect x="340.6" y="245" width="121.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="343.65" y="255.5" >[[kernel.kallsy..</text> </g> <g > <title>__libc_openat64 (6,890,639 samples, 0.04%)</title><rect x="81.0" y="421" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> <text x="83.96" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (46,432,573 samples, 0.28%)</title><rect x="1180.0" y="357" width="3.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.00" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (31,147,731 samples, 0.19%)</title><rect x="973.3" y="309" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="976.32" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,675,855 samples, 0.02%)</title><rect x="80.7" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.74" y="287.5" ></text> </g> <g > <title>Vector_Loader<unsigned long, (2,426,901,829 samples, 14.54%)</title><rect x="1008.4" y="357" width="171.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="1011.42" y="367.5" >Vector_Loader<unsigned..</text> </g> <g > <title>numa_node_size64 (1,474,576 samples, 0.01%)</title><rect x="37.6" y="405" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="40.57" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,671,139 samples, 0.02%)</title><rect x="1189.1" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.12" y="383.5" ></text> </g> <g > <title>[dash] (5,027,278 samples, 0.03%)</title><rect x="1188.4" y="421" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1191.44" y="431.5" ></text> </g> <g > <title>[dash] (5,027,278 samples, 0.03%)</title><rect x="1188.4" y="357" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1191.44" y="367.5" ></text> </g> <g > <title>dsacache::Cache::Access (2,450,303 samples, 0.01%)</title><rect x="1183.3" y="373" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> <text x="1186.31" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,783,901 samples, 0.07%)</title><rect x="81.5" y="309" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.45" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,097,567,682 samples, 12.57%)</title><rect x="313.8" y="277" width="148.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="316.81" y="287.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (4,386,961 samples, 0.03%)</title><rect x="461.8" y="149" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="464.80" y="159.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,492,143 samples, 0.01%)</title><rect x="643.0" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="645.96" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,296,832 samples, 0.04%)</title><rect x="81.0" y="357" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.01" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (79,822,745 samples, 0.48%)</title><rect x="623.2" y="341" width="5.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="626.21" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,752,013 samples, 0.01%)</title><rect x="61.4" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.40" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,716,530,438 samples, 10.28%)</title><rect x="340.7" y="229" width="121.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="343.75" y="239.5" >[[kernel.kallsy..</text> </g> <g > <title>[[kernel.kallsyms]] (27,298,793 samples, 0.16%)</title><rect x="71.2" y="389" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="74.19" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (34,459,889 samples, 0.21%)</title><rect x="62.5" y="341" width="2.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="65.53" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,871,229 samples, 0.04%)</title><rect x="736.6" y="309" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="739.57" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (12,949,840 samples, 0.08%)</title><rect x="1186.9" y="229" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.91" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,386,961 samples, 0.03%)</title><rect x="461.8" y="117" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="464.80" y="127.5" ></text> </g> <g > <title>arch_fork (2,053,503 samples, 0.01%)</title><rect x="1188.5" y="213" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="1191.49" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,101,484,038 samples, 12.59%)</title><rect x="313.5" y="341" width="148.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="316.53" y="351.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (11,783,901 samples, 0.07%)</title><rect x="81.5" y="293" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.45" y="303.5" ></text> </g> <g > <title>date (2,837,853 samples, 0.02%)</title><rect x="1188.0" y="437" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> <text x="1191.01" y="447.5" ></text> </g> <g > <title>LT<unsigned long>::simd_filter (51,035,457 samples, 0.31%)</title><rect x="1004.8" y="357" width="3.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> <text x="1007.81" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,953,512 samples, 0.01%)</title><rect x="1188.5" y="117" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.50" y="127.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,548,006 samples, 0.02%)</title><rect x="642.8" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="645.81" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,614,446 samples, 0.01%)</title><rect x="64.9" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="67.86" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (98,219,220 samples, 0.59%)</title><rect x="73.2" y="373" width="6.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="76.18" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (31,929,300 samples, 0.19%)</title><rect x="973.3" y="357" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="976.27" y="367.5" ></text> </g> <g > <title>__libc_start_call_main (5,027,278 samples, 0.03%)</title><rect x="1188.4" y="389" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="1191.44" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,508,164 samples, 0.01%)</title><rect x="530.7" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="533.66" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (170,251,524 samples, 1.02%)</title><rect x="630.0" y="325" width="12.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="633.01" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,988,005 samples, 0.04%)</title><rect x="81.0" y="325" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.03" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,826,480 samples, 0.02%)</title><rect x="1187.6" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.63" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,942,821 samples, 0.01%)</title><rect x="10.1" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.09" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (29,869,518 samples, 0.18%)</title><rect x="973.4" y="293" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="976.41" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,080,686 samples, 0.04%)</title><rect x="62.0" y="261" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.99" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,804,532 samples, 0.03%)</title><rect x="37.2" y="245" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="40.16" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,029,215 samples, 0.01%)</title><rect x="592.3" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="595.31" y="239.5" ></text> </g> <g > <title>[libstdc++.so.6.0.32] (13,507,713 samples, 0.08%)</title><rect x="35.7" y="405" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="38.67" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (7,641,095 samples, 0.05%)</title><rect x="79.5" y="213" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="82.48" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,649,911 samples, 0.03%)</title><rect x="62.0" y="245" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="65.02" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,099,769,101 samples, 12.58%)</title><rect x="313.7" y="293" width="148.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="316.65" y="303.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (2,099,951 samples, 0.01%)</title><rect x="12.0" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="15.01" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,136,854 samples, 0.01%)</title><rect x="61.4" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.37" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,508,164 samples, 0.01%)</title><rect x="530.7" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="533.66" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,514,069 samples, 0.13%)</title><rect x="284.4" y="325" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="287.40" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (8,505,240 samples, 0.05%)</title><rect x="642.5" y="357" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="645.46" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (5,910,140 samples, 0.04%)</title><rect x="80.2" y="373" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.19" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,776,479 samples, 0.01%)</title><rect x="1187.9" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.88" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (79,822,745 samples, 0.48%)</title><rect x="623.2" y="325" width="5.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="626.21" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (20,598,523 samples, 0.12%)</title><rect x="284.5" y="213" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="287.46" y="223.5" ></text> </g> <g > <title>void fill_mt<unsigned long> (4,765,981,398 samples, 28.56%)</title><rect x="285.9" y="389" width="337.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> <text x="288.92" y="399.5" >void fill_mt<unsigned long></text> </g> <g > <title>[[kernel.kallsyms]] (6,890,639 samples, 0.04%)</title><rect x="81.0" y="405" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.96" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (45,051,036 samples, 0.27%)</title><rect x="1180.1" y="325" width="3.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.10" y="335.5" ></text> </g> <g > <title>__GI_munmap (11,783,901 samples, 0.07%)</title><rect x="81.5" y="405" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="84.45" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (98,219,220 samples, 0.59%)</title><rect x="73.2" y="341" width="6.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="76.18" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,768,195 samples, 0.07%)</title><rect x="36.7" y="389" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.69" y="399.5" ></text> </g> <g > <title>__GI___fstatat64 (2,136,854 samples, 0.01%)</title><rect x="61.4" y="421" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> <text x="64.37" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,029,215 samples, 0.01%)</title><rect x="592.3" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="595.31" y="303.5" ></text> </g> <g > <title>[[heap]] (2,774,665 samples, 0.02%)</title><rect x="10.0" y="421" width="0.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> <text x="13.03" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (54,114,770 samples, 0.32%)</title><rect x="1184.0" y="325" width="3.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1187.00" y="335.5" ></text> </g> <g > <title>sysmalloc (2,611,694 samples, 0.02%)</title><rect x="1187.8" y="421" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="1190.83" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,296,832 samples, 0.04%)</title><rect x="81.0" y="373" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.01" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,516,487 samples, 0.02%)</title><rect x="61.1" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.11" y="415.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (2,273,939,864 samples, 13.62%)</title><rect x="462.1" y="373" width="160.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="465.11" y="383.5" >unsigned long std::u..</text> </g> <g > <title>[[kernel.kallsyms]] (6,296,832 samples, 0.04%)</title><rect x="81.0" y="341" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.01" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (156,033,474 samples, 0.93%)</title><rect x="631.0" y="293" width="11.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="634.01" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (23,784,455 samples, 0.14%)</title><rect x="973.8" y="245" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="976.84" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,272,663 samples, 0.02%)</title><rect x="61.1" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.12" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (39,632,068 samples, 0.24%)</title><rect x="639.2" y="165" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="642.24" y="175.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (32,568,706 samples, 0.20%)</title><rect x="1181.0" y="229" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.98" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,101,484,038 samples, 12.59%)</title><rect x="313.5" y="325" width="148.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="316.53" y="335.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (11,783,901 samples, 0.07%)</title><rect x="81.5" y="229" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.45" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,101,484,038 samples, 12.59%)</title><rect x="313.5" y="309" width="148.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="316.53" y="319.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (5,627,656 samples, 0.03%)</title><rect x="80.2" y="357" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.21" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,386,961 samples, 0.03%)</title><rect x="461.8" y="85" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="464.80" y="95.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,028,459 samples, 0.02%)</title><rect x="973.0" y="197" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="975.98" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,464,255 samples, 0.07%)</title><rect x="36.7" y="341" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.71" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,589,333 samples, 0.02%)</title><rect x="80.7" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.75" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,719,035 samples, 0.01%)</title><rect x="622.9" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="625.87" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,029,215 samples, 0.01%)</title><rect x="592.3" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="595.31" y="191.5" ></text> </g> <g > <title>sh (6,361,978 samples, 0.04%)</title><rect x="1188.4" y="437" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> <text x="1191.39" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,508,164 samples, 0.01%)</title><rect x="530.7" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="533.66" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,601,215 samples, 0.04%)</title><rect x="736.6" y="293" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="739.59" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,029,215 samples, 0.01%)</title><rect x="592.3" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="595.31" y="287.5" ></text> </g> <g > <title>syscall (1,719,035 samples, 0.01%)</title><rect x="622.9" y="405" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="625.87" y="415.5" ></text> </g> <g > <title>dsacache::CacheData::WaitOnCompletion (1,457,120 samples, 0.01%)</title><rect x="975.6" y="373" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> <text x="978.61" y="383.5" ></text> </g> <g > <title>__libc_start_call_main (7,659,718,387 samples, 45.89%)</title><rect x="81.5" y="421" width="541.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="84.45" y="431.5" >__libc_start_call_main</text> </g> <g > <title>[[kernel.kallsyms]] (1,719,035 samples, 0.01%)</title><rect x="622.9" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="625.87" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,265,075 samples, 0.04%)</title><rect x="80.2" y="389" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.17" y="399.5" ></text> </g> <g > <title>__GI_sched_yield (6,909,017 samples, 0.04%)</title><rect x="80.1" y="421" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="83.12" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,419,831 samples, 0.03%)</title><rect x="736.7" y="229" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="739.74" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,121,752 samples, 0.13%)</title><rect x="1186.3" y="261" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.33" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (9,364,024 samples, 0.06%)</title><rect x="70.5" y="245" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="73.51" y="255.5" ></text> </g> <g > <title>__GI__Fork (2,053,503 samples, 0.01%)</title><rect x="1188.5" y="229" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="1191.49" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,136,854 samples, 0.01%)</title><rect x="61.4" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.37" y="415.5" ></text> </g> <g > <title>syscall (12,310,941 samples, 0.07%)</title><rect x="35.8" y="389" width="0.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="38.76" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,028,459 samples, 0.02%)</title><rect x="973.0" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="975.98" y="223.5" ></text> </g> <g > <title>__GI___close (3,047,862 samples, 0.02%)</title><rect x="60.9" y="421" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> <text x="63.89" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,783,901 samples, 0.07%)</title><rect x="81.5" y="277" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.45" y="287.5" ></text> </g> <g > <title>[anon] (315,347,043 samples, 1.89%)</title><rect x="13.4" y="421" width="22.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> <text x="16.35" y="431.5" >[..</text> </g> <g > <title>[[kernel.kallsyms]] (20,606,204 samples, 0.12%)</title><rect x="284.5" y="277" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="287.46" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,527,216 samples, 0.04%)</title><rect x="36.2" y="261" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.17" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (28,730,878 samples, 0.17%)</title><rect x="1181.3" y="197" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1184.25" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,949,750 samples, 0.03%)</title><rect x="62.1" y="229" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="65.07" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,223,971 samples, 0.13%)</title><rect x="974.0" y="229" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="977.03" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,534,588 samples, 0.02%)</title><rect x="80.4" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.36" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,719,035 samples, 0.01%)</title><rect x="622.9" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="625.87" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,951,083 samples, 0.01%)</title><rect x="10.1" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.09" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (40,233,089 samples, 0.24%)</title><rect x="1180.4" y="245" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.44" y="255.5" ></text> </g> <g > <title>_mm512_stream_load_si512 (2,426,901,829 samples, 14.54%)</title><rect x="1008.4" y="341" width="171.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="1011.42" y="351.5" >_mm512_stream_load_si512</text> </g> <g > <title>[[kernel.kallsyms]] (47,033,433 samples, 0.28%)</title><rect x="625.5" y="245" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="628.53" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,487,496 samples, 0.01%)</title><rect x="80.0" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.02" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,675,855 samples, 0.02%)</title><rect x="80.7" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.74" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,487,496 samples, 0.01%)</title><rect x="80.0" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.02" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (76,551,601 samples, 0.46%)</title><rect x="74.6" y="261" width="5.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="77.60" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,719,035 samples, 0.01%)</title><rect x="622.9" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="625.87" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,460,942 samples, 0.03%)</title><rect x="11.8" y="293" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="14.84" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,611,694 samples, 0.02%)</title><rect x="1187.8" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1190.83" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,671,139 samples, 0.02%)</title><rect x="1189.1" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.12" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,080,686 samples, 0.04%)</title><rect x="62.0" y="277" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.99" y="287.5" ></text> </g> <g > <title>[unknown] (354,975,232 samples, 2.13%)</title><rect x="35.7" y="421" width="25.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> <text x="38.67" y="431.5" >[..</text> </g> <g > <title>[[kernel.kallsyms]] (1,632,480 samples, 0.01%)</title><rect x="71.1" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="74.06" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (46,119,187 samples, 0.28%)</title><rect x="1180.0" y="341" width="3.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.03" y="351.5" ></text> </g> <g > <title>numactl (2,501,792 samples, 0.01%)</title><rect x="1188.2" y="437" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> <text x="1191.21" y="447.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (19,426,033 samples, 0.12%)</title><rect x="71.7" y="293" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="74.75" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (47,033,433 samples, 0.28%)</title><rect x="625.5" y="261" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="628.53" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,703,321 samples, 0.01%)</title><rect x="629.5" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="632.52" y="415.5" ></text> </g> <g > <title>__GI___close_nocancel (3,516,487 samples, 0.02%)</title><rect x="61.1" y="421" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> <text x="64.11" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,333,710 samples, 0.04%)</title><rect x="972.8" y="325" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="975.82" y="335.5" ></text> </g> <g > <title>_int_free (1,957,101 samples, 0.01%)</title><rect x="629.0" y="421" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> <text x="631.98" y="431.5" ></text> </g> <g > <title>unsigned int std::uniform_int_distribution<unsigned long>::_S_nd<unsigned long, std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>, unsigned int> (1,302,737,757 samples, 7.81%)</title><rect x="530.8" y="341" width="92.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="533.77" y="351.5" >unsigned in..</text> </g> <g > <title>main (7,646,077,668 samples, 45.81%)</title><rect x="82.3" y="405" width="540.6" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" /> <text x="85.29" y="415.5" >main</text> </g> <g > <title>[[kernel.kallsyms]] (2,317,293 samples, 0.01%)</title><rect x="1189.1" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.15" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,918,752 samples, 0.02%)</title><rect x="80.7" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.73" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (60,692,150 samples, 0.36%)</title><rect x="75.7" y="229" width="4.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="78.73" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,154,130 samples, 0.02%)</title><rect x="736.8" y="181" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="739.76" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (25,316,302 samples, 0.15%)</title><rect x="1186.0" y="277" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.04" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (10,351,960 samples, 0.06%)</title><rect x="36.8" y="293" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.79" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (34,459,889 samples, 0.21%)</title><rect x="62.5" y="389" width="2.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="65.53" y="399.5" ></text> </g> <g > <title>Sum<unsigned long>::simd_agg (978,023,398 samples, 5.86%)</title><rect x="667.9" y="357" width="69.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="670.91" y="367.5" >Sum<uns..</text> </g> <g > <title>[[kernel.kallsyms]] (2,074,300,180 samples, 12.43%)</title><rect x="315.5" y="261" width="146.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="318.45" y="271.5" >[[kernel.kallsyms]]</text> </g> <g > <title>[[kernel.kallsyms]] (3,047,862 samples, 0.02%)</title><rect x="60.9" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="63.89" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,671,139 samples, 0.02%)</title><rect x="1189.1" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.12" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,601,215 samples, 0.04%)</title><rect x="736.6" y="277" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="739.59" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (86,076,573 samples, 0.52%)</title><rect x="65.1" y="405" width="6.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.09" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (85,795,582 samples, 0.51%)</title><rect x="65.1" y="357" width="6.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.11" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,464,255 samples, 0.07%)</title><rect x="36.7" y="309" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.71" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,783,901 samples, 0.07%)</title><rect x="81.5" y="357" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.45" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (19,916,351 samples, 0.12%)</title><rect x="10.8" y="405" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.75" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (170,882,521 samples, 1.02%)</title><rect x="630.0" y="373" width="12.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="632.96" y="383.5" ></text> </g> <g > <title>__libc_start_main_impl (5,027,278 samples, 0.03%)</title><rect x="1188.4" y="405" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1191.44" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,269,744 samples, 0.07%)</title><rect x="81.5" y="213" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.49" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (74,353,261 samples, 0.45%)</title><rect x="65.9" y="293" width="5.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.92" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,464,255 samples, 0.07%)</title><rect x="36.7" y="325" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.71" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,679,361 samples, 0.04%)</title><rect x="36.2" y="277" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.16" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,790,353 samples, 0.01%)</title><rect x="61.2" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.19" y="287.5" ></text> </g> <g > <title>start_thread (7,655,702,764 samples, 45.87%)</title><rect x="642.4" y="421" width="541.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> <text x="645.37" y="431.5" >start_thread</text> </g> <g > <title>[[kernel.kallsyms]] (1,790,353 samples, 0.01%)</title><rect x="61.2" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.19" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,516,487 samples, 0.02%)</title><rect x="61.1" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.11" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,896,569 samples, 0.03%)</title><rect x="461.8" y="181" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="464.76" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,029,215 samples, 0.01%)</title><rect x="592.3" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="595.31" y="223.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,221,840 samples, 0.01%)</title><rect x="61.2" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.16" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,793,892 samples, 0.03%)</title><rect x="972.9" y="261" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="975.93" y="271.5" ></text> </g> <g > <title>__GI_munmap (99,011,204 samples, 0.59%)</title><rect x="73.1" y="421" width="7.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="76.12" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (85,604,867 samples, 0.51%)</title><rect x="65.1" y="341" width="6.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.12" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,508,164 samples, 0.01%)</title><rect x="530.7" y="229" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="533.66" y="239.5" ></text> </g> <g > <title>__libc_fork (2,053,503 samples, 0.01%)</title><rect x="1188.5" y="245" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" /> <text x="1191.49" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,508,164 samples, 0.01%)</title><rect x="530.7" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="533.66" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,957,743 samples, 0.02%)</title><rect x="62.1" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="65.14" y="223.5" ></text> </g> <g > <title>_int_malloc (9,200,876 samples, 0.06%)</title><rect x="629.1" y="421" width="0.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> <text x="632.12" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,333,710 samples, 0.04%)</title><rect x="972.8" y="293" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="975.82" y="303.5" ></text> </g> <g > <title>aggr_j (4,708,147,165 samples, 28.21%)</title><rect x="643.1" y="389" width="332.8" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" /> <text x="646.08" y="399.5" >aggr_j</text> </g> <g > <title>[[kernel.kallsyms]] (1,728,213 samples, 0.01%)</title><rect x="80.8" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.81" y="255.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (313,932,922 samples, 1.88%)</title><rect x="13.5" y="405" width="22.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="16.45" y="415.5" >u..</text> </g> <g > <title>[[kernel.kallsyms]] (1,719,035 samples, 0.01%)</title><rect x="622.9" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="625.87" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,783,901 samples, 0.07%)</title><rect x="81.5" y="373" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.45" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,535,860 samples, 0.02%)</title><rect x="973.0" y="181" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="976.02" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (59,013,896 samples, 0.35%)</title><rect x="1183.7" y="405" width="4.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1186.65" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (40,406,215 samples, 0.24%)</title><rect x="1180.4" y="261" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.43" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (27,298,793 samples, 0.16%)</title><rect x="71.2" y="357" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="74.19" y="367.5" ></text> </g> <g > <title>__GI___libc_read (9,534,685 samples, 0.06%)</title><rect x="61.8" y="421" width="0.7" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="64.79" y="431.5" ></text> </g> <g > <title>unsigned int std::uniform_int_distribution<unsigned long>::_S_nd<unsigned long, std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>, unsigned int> (234,974,728 samples, 1.41%)</title><rect x="19.0" y="389" width="16.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="22.03" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (8,243,056 samples, 0.05%)</title><rect x="36.9" y="277" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="39.94" y="287.5" ></text> </g> <g > <title>__GI___mmap64 (34,459,889 samples, 0.21%)</title><rect x="62.5" y="421" width="2.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="65.53" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,918,752 samples, 0.02%)</title><rect x="80.7" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.73" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (79,822,745 samples, 0.48%)</title><rect x="623.2" y="357" width="5.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="626.21" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,047,862 samples, 0.02%)</title><rect x="60.9" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="63.89" y="367.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (70,087,849 samples, 0.42%)</title><rect x="75.1" y="245" width="4.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="78.06" y="255.5" ></text> </g> <g > <title>Aggregation<unsigned long, Sum, (4,701,865,213 samples, 28.17%)</title><rect x="643.1" y="373" width="332.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="646.10" y="383.5" >Aggregation<unsigned long, Sum, </text> </g> <g > <title>[[kernel.kallsyms]] (2,918,752 samples, 0.02%)</title><rect x="80.7" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.73" y="367.5" ></text> </g> <g > <title>__GI_madvise (86,076,573 samples, 0.52%)</title><rect x="65.1" y="421" width="6.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="68.09" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (20,598,523 samples, 0.12%)</title><rect x="284.5" y="261" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="287.46" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (44,344,117 samples, 0.27%)</title><rect x="1180.2" y="309" width="3.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1183.15" y="319.5" ></text> </g> <g > <title>[[stack]] (15,461,958 samples, 0.09%)</title><rect x="12.2" y="421" width="1.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="15.16" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (9,178,903 samples, 0.05%)</title><rect x="61.8" y="373" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.81" y="383.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (170,424,049 samples, 1.02%)</title><rect x="630.0" y="341" width="12.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="632.99" y="351.5" ></text> </g> <g > <title>[[vdso]] (1,429,093 samples, 0.01%)</title><rect x="13.3" y="421" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="16.25" y="431.5" ></text> </g> <g > <title>__GI_mprotect (27,524,137 samples, 0.16%)</title><rect x="71.2" y="421" width="1.9" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> <text x="74.18" y="431.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (20,598,523 samples, 0.12%)</title><rect x="284.5" y="229" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="287.46" y="239.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,952,390 samples, 0.07%)</title><rect x="35.8" y="357" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="38.78" y="367.5" ></text> </g> <g > <title>scan_a (2,932,964,614 samples, 17.57%)</title><rect x="975.9" y="389" width="207.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="978.95" y="399.5" >scan_a</text> </g> <g > <title>[[kernel.kallsyms]] (61,335,026 samples, 0.37%)</title><rect x="637.7" y="181" width="4.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="640.71" y="191.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,739,642 samples, 0.02%)</title><rect x="60.9" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="63.91" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,174,239 samples, 0.07%)</title><rect x="11.4" y="341" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="14.37" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,825,488 samples, 0.03%)</title><rect x="81.1" y="293" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.11" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (11,380,058 samples, 0.07%)</title><rect x="35.8" y="325" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="38.82" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,502,081 samples, 0.01%)</title><rect x="81.3" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="84.34" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (83,796,790 samples, 0.50%)</title><rect x="65.3" y="325" width="5.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.25" y="335.5" ></text> </g> <g > <title>[dash] (4,452,368 samples, 0.03%)</title><rect x="1188.4" y="341" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1191.44" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (3,047,862 samples, 0.02%)</title><rect x="60.9" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="63.89" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,029,215 samples, 0.01%)</title><rect x="592.3" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="595.31" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,918,752 samples, 0.02%)</title><rect x="80.7" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.73" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,136,854 samples, 0.01%)</title><rect x="61.4" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="64.37" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (21,465,907 samples, 0.13%)</title><rect x="284.4" y="293" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="287.40" y="303.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,591,061 samples, 0.04%)</title><rect x="81.0" y="389" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="83.99" y="399.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,996,137 samples, 0.01%)</title><rect x="1188.5" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1191.50" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (17,222,304 samples, 0.10%)</title><rect x="70.0" y="261" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="72.96" y="271.5" ></text> </g> <g > <title>_mm512_mask_add_epi64 (978,023,398 samples, 5.86%)</title><rect x="667.9" y="341" width="69.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> <text x="670.91" y="351.5" >_mm512_..</text> </g> <g > <title>[[kernel.kallsyms]] (79,351,003 samples, 0.48%)</title><rect x="65.6" y="309" width="5.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="68.57" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (79,822,745 samples, 0.48%)</title><rect x="623.2" y="309" width="5.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="626.21" y="319.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,508,164 samples, 0.01%)</title><rect x="530.7" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="533.66" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (9,437,355 samples, 0.06%)</title><rect x="642.4" y="405" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="645.40" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,514,076 samples, 0.02%)</title><rect x="461.9" y="53" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="464.93" y="63.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (100,876,365 samples, 0.60%)</title><rect x="634.9" y="245" width="7.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="637.91" y="255.5" ></text> </g> <g > <title>[dash] (3,012,048 samples, 0.02%)</title><rect x="1188.4" y="277" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1191.44" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (6,766,459 samples, 0.04%)</title><rect x="461.6" y="197" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="464.63" y="207.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,671,139 samples, 0.02%)</title><rect x="1189.1" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1192.12" y="351.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (16,406,843 samples, 0.10%)</title><rect x="1186.7" y="245" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1189.67" y="255.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (145,080,863 samples, 0.87%)</title><rect x="631.8" y="277" width="10.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="634.79" y="287.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (2,029,215 samples, 0.01%)</title><rect x="592.3" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="595.31" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (26,224,119 samples, 0.16%)</title><rect x="71.3" y="325" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="74.27" y="335.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (1,414,436,594 samples, 8.47%)</title><rect x="362.1" y="213" width="100.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="365.10" y="223.5" >[[kernel.kal..</text> </g> <g > <title>arch_fork (2,671,139 samples, 0.02%)</title><rect x="1189.1" y="405" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="1192.12" y="415.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (15,517,270 samples, 0.09%)</title><rect x="72.0" y="261" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="75.03" y="271.5" ></text> </g> <g > <title>[[kernel.kallsyms]] (4,028,459 samples, 0.02%)</title><rect x="973.0" y="229" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="975.98" y="239.5" ></text> </g> </g> </svg>
|