|
|
<?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="646" onload="init(evt)" viewBox="0 0 1200 646" 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="646.0" fill="url(#background)" /> <text id="title" x="600.00" y="24" >Flame Graph</text> <text id="details" x="10.00" y="629" > </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="629" > </text> <g id="frames"> <g > <title>__count_memcg_events (3,821,882 samples, 0.02%)</title><rect x="1131.4" y="373" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> <text x="1134.36" y="383.5" ></text> </g> <g > <title>update_process_times (5,146,731 samples, 0.03%)</title><rect x="791.5" y="341" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="794.49" y="351.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (7,884,915 samples, 0.05%)</title><rect x="941.9" y="453" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="944.94" y="463.5" ></text> </g> <g > <title>dml::core::hardware_device::submit (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="389" width="0.9" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> <text x="1149.73" y="399.5" ></text> </g> <g > <title>unmap_page_range (12,974,723 samples, 0.08%)</title><rect x="29.9" y="197" width="0.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> <text x="32.87" y="207.5" ></text> </g> <g > <title>__mem_cgroup_charge (12,102,933 samples, 0.07%)</title><rect x="948.4" y="357" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="951.45" y="367.5" ></text> </g> <g > <title>__strstr_avx512 (2,478,575 samples, 0.02%)</title><rect x="1143.4" y="437" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> <text x="1146.35" y="447.5" ></text> </g> <g > <title>Aggregation<unsigned long, Sum, (2,644,773,911 samples, 16.19%)</title><rect x="629.1" y="501" width="191.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="632.14" y="511.5" >Aggregation<unsigned lon..</text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (571,144,167 samples, 3.50%)</title><rect x="1148.7" y="565" width="41.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="1151.75" y="575.5" >uns..</text> </g> <g > <title>perf_event_mmap_output (1,530,993 samples, 0.01%)</title><rect x="1136.4" y="277" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> <text x="1139.35" y="287.5" ></text> </g> <g > <title>exc_page_fault (1,830,044,679 samples, 11.20%)</title><rect x="303.2" y="469" width="132.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> <text x="306.21" y="479.5" >exc_page_fault</text> </g> <g > <title>sysmalloc (21,283,512 samples, 0.13%)</title><rect x="1138.3" y="325" width="1.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="1141.27" y="335.5" ></text> </g> <g > <title>free_unref_page_prepare (1,730,235 samples, 0.01%)</title><rect x="30.4" y="149" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="33.37" y="159.5" ></text> </g> <g > <title>kmem_cache_alloc (1,721,694 samples, 0.01%)</title><rect x="1142.7" y="293" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> <text x="1145.72" y="303.5" ></text> </g> <g > <title>accfg_get_param_long (1,490,139 samples, 0.01%)</title><rect x="10.3" y="469" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="13.31" y="479.5" ></text> </g> <g > <title>std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="341" width="3.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> <text x="1146.53" y="351.5" ></text> </g> <g > <title>folio_add_new_anon_rmap (3,195,706 samples, 0.02%)</title><rect x="1011.6" y="357" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" /> <text x="1014.56" y="367.5" ></text> </g> <g > <title>vm_area_alloc (3,054,209 samples, 0.02%)</title><rect x="1136.5" y="325" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> <text x="1139.46" y="335.5" ></text> </g> <g > <title>update_process_times (2,170,601 samples, 0.01%)</title><rect x="819.4" y="341" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="822.45" y="351.5" ></text> </g> <g > <title>__x64_sys_munmap (1,728,623 samples, 0.01%)</title><rect x="10.5" y="421" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> <text x="13.51" y="431.5" ></text> </g> <g > <title>page_counter_try_charge (2,596,328 samples, 0.02%)</title><rect x="303.6" y="341" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> <text x="306.58" y="351.5" ></text> </g> <g > <title>vma_alloc_folio (12,924,242 samples, 0.08%)</title><rect x="950.2" y="357" width="0.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> <text x="953.20" y="367.5" ></text> </g> <g > <title>auto dml::detail::submit<dml::hardware, dml::mem_copy_operation, dml::execution_interface<dml::hardware, std::allocator<unsigned char> >, dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (57,276,083 samples, 0.35%)</title><rect x="1143.5" y="437" width="4.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> <text x="1146.53" y="447.5" ></text> </g> <g > <title>std::thread::thread<void (3,409,299 samples, 0.02%)</title><rect x="31.0" y="437" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="33.99" y="447.5" ></text> </g> <g > <title>ksys_read (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="133" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="1150.13" y="143.5" ></text> </g> <g > <title>all (16,337,436,059 samples, 100%)</title><rect x="10.0" y="597" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.00" y="607.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (5,492,973 samples, 0.03%)</title><rect x="819.7" y="325" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="822.68" y="335.5" ></text> </g> <g > <title>unmap_vmas (1,728,977 samples, 0.01%)</title><rect x="11.9" y="373" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> <text x="14.87" y="383.5" ></text> </g> <g > <title>change_protection (19,560,452 samples, 0.12%)</title><rect x="1138.3" y="197" width="1.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> <text x="1141.33" y="207.5" ></text> </g> <g > <title>__folio_alloc (1,479,835,396 samples, 9.06%)</title><rect x="328.5" y="373" width="106.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="331.50" y="383.5" >__folio_alloc</text> </g> <g > <title>__x64_sys_mprotect (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="245" width="1.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> <text x="1141.33" y="255.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="165" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="1014.00" y="175.5" ></text> </g> <g > <title>path_openat (11,335,071 samples, 0.07%)</title><rect x="1141.7" y="293" width="0.9" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> <text x="1144.74" y="303.5" ></text> </g> <g > <title>__GI___fstatat64 (2,319,458 samples, 0.01%)</title><rect x="1138.0" y="357" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> <text x="1140.99" y="367.5" ></text> </g> <g > <title>perf_event_task_tick (1,626,903 samples, 0.01%)</title><rect x="819.5" y="309" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="822.49" y="319.5" ></text> </g> <g > <title>irqentry_exit_to_user_mode (1,731,095 samples, 0.01%)</title><rect x="270.6" y="469" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> <text x="273.56" y="479.5" ></text> </g> <g > <title>node_read_meminfo (14,183,508 samples, 0.09%)</title><rect x="1140.3" y="261" width="1.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" /> <text x="1143.34" y="271.5" ></text> </g> <g > <title>openat (3,078,371 samples, 0.02%)</title><rect x="1146.9" y="213" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" /> <text x="1149.91" y="223.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (4,508,335 samples, 0.03%)</title><rect x="270.6" y="485" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="273.56" y="495.5" ></text> </g> <g > <title>try_charge_memcg (4,050,786 samples, 0.02%)</title><rect x="951.3" y="325" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="954.31" y="335.5" ></text> </g> <g > <title>tick_sched_timer (7,126,171 samples, 0.04%)</title><rect x="942.0" y="405" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="944.99" y="415.5" ></text> </g> <g > <title>free_unref_page_list (6,056,971 samples, 0.04%)</title><rect x="23.4" y="165" width="0.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="26.43" y="175.5" ></text> </g> <g > <title>exit_to_user_mode_prepare (2,049,407 samples, 0.01%)</title><rect x="1132.0" y="421" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="1134.96" y="431.5" ></text> </g> <g > <title>folio_add_lru (6,122,334 samples, 0.04%)</title><rect x="1011.1" y="357" width="0.5" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> <text x="1014.11" y="367.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (5,156,974 samples, 0.03%)</title><rect x="791.5" y="453" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="794.49" y="463.5" ></text> </g> <g > <title>folio_add_new_anon_rmap (3,082,256 samples, 0.02%)</title><rect x="949.9" y="357" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" /> <text x="952.89" y="367.5" ></text> </g> <g > <title>_mm512_mask_add_epi64 (757,239,970 samples, 4.63%)</title><rect x="737.2" y="469" width="54.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> <text x="740.17" y="479.5" >_mm51..</text> </g> <g > <title>exit_to_user_mode_prepare (5,918,508 samples, 0.04%)</title><rect x="1137.5" y="341" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="1140.51" y="351.5" ></text> </g> <g > <title>__rmqueue_pcplist (2,876,947 samples, 0.02%)</title><rect x="950.6" y="293" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> <text x="953.58" y="303.5" ></text> </g> <g > <title>std::thread& std::vector<std::thread, std::allocator<std::thread> >::emplace_back<void (3,409,299 samples, 0.02%)</title><rect x="31.0" y="501" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> <text x="33.99" y="511.5" ></text> </g> <g > <title>allocate_stack (3,409,299 samples, 0.02%)</title><rect x="31.0" y="389" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> <text x="33.99" y="399.5" ></text> </g> <g > <title>qi_flush_dev_iotlb_pasid (8,586,262 samples, 0.05%)</title><rect x="1138.3" y="149" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1141.33" y="159.5" ></text> </g> <g > <title>update_process_times (2,777,240 samples, 0.02%)</title><rect x="270.7" y="373" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="273.68" y="383.5" ></text> </g> <g > <title>tick_sched_timer (1,460,612 samples, 0.01%)</title><rect x="1131.1" y="197" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="1134.10" y="207.5" ></text> </g> <g > <title>dsacache::CacheData::WaitOnCompletion (1,883,293 samples, 0.01%)</title><rect x="821.2" y="501" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> <text x="824.17" y="511.5" ></text> </g> <g > <title>allocate_fake_cpuc (3,459,982 samples, 0.02%)</title><rect x="628.7" y="373" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> <text x="631.70" y="383.5" ></text> </g> <g > <title>__hrtimer_run_queues (7,126,171 samples, 0.04%)</title><rect x="942.0" y="421" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="944.99" y="431.5" ></text> </g> <g > <title>internal_get_user_pages_fast (2,228,742 samples, 0.01%)</title><rect x="943.0" y="389" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="945.98" y="399.5" ></text> </g> <g > <title>perf_event_task_tick (5,146,731 samples, 0.03%)</title><rect x="791.5" y="309" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="794.49" y="319.5" ></text> </g> <g > <title>kmalloc_node_trace (1,729,995 samples, 0.01%)</title><rect x="628.7" y="341" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> <text x="631.70" y="351.5" ></text> </g> <g > <title>__x64_sys_madvise (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="469" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1151.00" y="479.5" ></text> </g> <g > <title>lru_add_fn (2,023,224 samples, 0.01%)</title><rect x="1011.4" y="325" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> <text x="1014.41" y="335.5" ></text> </g> <g > <title>__sysfs_device_parse (1,490,139 samples, 0.01%)</title><rect x="10.3" y="501" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> <text x="13.31" y="511.5" ></text> </g> <g > <title>qi_submit_sync (32,864,156 samples, 0.20%)</title><rect x="12.5" y="149" width="2.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="15.50" y="159.5" ></text> </g> <g > <title>__x64_sys_get_mempolicy (4,556,948 samples, 0.03%)</title><rect x="942.8" y="421" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> <text x="945.81" y="431.5" ></text> </g> <g > <title>qi_submit_sync (42,381,487 samples, 0.26%)</title><rect x="26.8" y="149" width="3.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="29.81" y="159.5" ></text> </g> <g > <title>__GI___close_nocancel (6,690,044 samples, 0.04%)</title><rect x="1137.4" y="405" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> <text x="1140.45" y="415.5" ></text> </g> <g > <title>do_syscall_64 (38,464,959 samples, 0.24%)</title><rect x="1143.9" y="181" width="2.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1146.95" y="191.5" ></text> </g> <g > <title>vma_alloc_folio (3,430,412 samples, 0.02%)</title><rect x="941.6" y="389" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> <text x="944.59" y="399.5" ></text> </g> <g > <title>get_page_from_freelist (1,715,406 samples, 0.01%)</title><rect x="1012.5" y="325" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="1015.49" y="335.5" ></text> </g> <g > <title>void std::vector<int, std::allocator<int> >::_M_range_initialize<int const*> (3,431,863 samples, 0.02%)</title><rect x="943.2" y="437" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> <text x="946.24" y="447.5" ></text> </g> <g > <title>vma_prepare (2,582,768 samples, 0.02%)</title><rect x="1136.9" y="309" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> <text x="1139.87" y="319.5" ></text> </g> <g > <title>__alloc_pages (7,939,545 samples, 0.05%)</title><rect x="1012.0" y="341" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="1015.04" y="351.5" ></text> </g> <g > <title>irqentry_exit_to_user_mode (2,049,407 samples, 0.01%)</title><rect x="1132.0" y="437" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> <text x="1134.96" y="447.5" ></text> </g> <g > <title>vscnprintf (13,571,657 samples, 0.08%)</title><rect x="1140.4" y="229" width="1.0" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> <text x="1143.39" y="239.5" ></text> </g> <g > <title>__GI___mmap64 (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="421" width="3.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="1136.09" y="431.5" ></text> </g> <g > <title>hrtimer_interrupt (7,666,902 samples, 0.05%)</title><rect x="819.6" y="437" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="822.61" y="447.5" ></text> </g> <g > <title>__alloc_pages (1,479,835,396 samples, 9.06%)</title><rect x="328.5" y="357" width="106.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="331.50" y="367.5" >__alloc_pages</text> </g> <g > <title>pte_alloc_one (6,060,859 samples, 0.04%)</title><rect x="328.1" y="389" width="0.4" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> <text x="331.07" y="399.5" ></text> </g> <g > <title>get_page_from_freelist (1,694,345 samples, 0.01%)</title><rect x="31.1" y="229" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="34.05" y="239.5" ></text> </g> <g > <title>QDPBench (16,337,436,058 samples, 100.00%)</title><rect x="10.0" y="581" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> <text x="13.00" y="591.5" >QDPBench</text> </g> <g > <title>charge_memcg (4,050,786 samples, 0.02%)</title><rect x="951.3" y="341" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="954.31" y="351.5" ></text> </g> <g > <title>__libc_start_main_impl (8,541,764,204 samples, 52.28%)</title><rect x="10.5" y="549" width="617.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="13.51" y="559.5" >__libc_start_main_impl</text> </g> <g > <title>__GI__IO_doallocbuf (25,072,445 samples, 0.15%)</title><rect x="1138.0" y="389" width="1.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> <text x="1140.99" y="399.5" ></text> </g> <g > <title>__kmalloc_node (2,093,173 samples, 0.01%)</title><rect x="1140.0" y="293" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> <text x="1143.02" y="303.5" ></text> </g> <g > <title>charge_memcg (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="133" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="1146.53" y="143.5" ></text> </g> <g > <title>std::_Hashtable<unsigned char*, std::pair<unsigned char* const, dsacache::CacheData>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> >, std::__detail::_Select1st, std::equal_to<unsigned char*>, std::hash<unsigned char*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<unsigned char*, dsacache::CacheData&> (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="437" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="1150.78" y="447.5" ></text> </g> <g > <title>kernel_get_mempolicy (4,556,948 samples, 0.03%)</title><rect x="942.8" y="405" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> <text x="945.81" y="415.5" ></text> </g> <g > <title>charge_memcg (2,598,122 samples, 0.02%)</title><rect x="303.3" y="373" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="306.27" y="383.5" ></text> </g> <g > <title>mbind (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="437" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> <text x="1139.75" y="447.5" ></text> </g> <g > <title>folio_lruvec_lock_irqsave (2,414,711 samples, 0.01%)</title><rect x="1011.2" y="325" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> <text x="1014.24" y="335.5" ></text> </g> <g > <title>__GI_munmap (1,728,623 samples, 0.01%)</title><rect x="10.5" y="469" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="13.51" y="479.5" ></text> </g> <g > <title>perf_event_init_task (19,899,347 samples, 0.12%)</title><rect x="627.6" y="469" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="630.64" y="479.5" ></text> </g> <g > <title>Vector_Loader<unsigned long, (384,094,614 samples, 2.35%)</title><rect x="791.9" y="485" width="27.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="794.86" y="495.5" >V..</text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="165" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1150.13" y="175.5" ></text> </g> <g > <title>__alloc_file (3,366,665 samples, 0.02%)</title><rect x="1141.7" y="261" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> <text x="1144.74" y="271.5" ></text> </g> <g > <title>scheduler_tick (6,579,035 samples, 0.04%)</title><rect x="819.7" y="357" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="822.68" y="367.5" ></text> </g> <g > <title>std::thread::_M_start_thread (3,409,299 samples, 0.02%)</title><rect x="31.0" y="421" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="33.99" y="431.5" ></text> </g> <g > <title>handle_mm_fault (2,542,727,303 samples, 15.56%)</title><rect x="948.0" y="405" width="183.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="950.99" y="415.5" >handle_mm_fault</text> </g> <g > <title>[anon] (2,347,633 samples, 0.01%)</title><rect x="10.0" y="565" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> <text x="13.01" y="575.5" ></text> </g> <g > <title>do_user_addr_fault (2,547,045,986 samples, 15.59%)</title><rect x="948.0" y="421" width="183.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="950.95" y="431.5" >do_user_addr_fault</text> </g> <g > <title>main (8,539,248,506 samples, 52.27%)</title><rect x="10.7" y="517" width="616.8" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" /> <text x="13.69" y="527.5" >main</text> </g> <g > <title>__GI_munmap (260,351,057 samples, 1.59%)</title><rect x="12.0" y="341" width="18.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="15.00" y="351.5" ></text> </g> <g > <title>get_page_from_freelist (3,430,412 samples, 0.02%)</title><rect x="941.6" y="341" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="944.59" y="351.5" ></text> </g> <g > <title>try_charge_memcg (2,357,402 samples, 0.01%)</title><rect x="949.1" y="325" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="952.07" y="335.5" ></text> </g> <g > <title>__mmu_notifier_invalidate_range_end (78,711,041 samples, 0.48%)</title><rect x="24.2" y="197" width="5.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> <text x="27.18" y="207.5" ></text> </g> <g > <title>lru_add_fn (3,223,510 samples, 0.02%)</title><rect x="949.5" y="325" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> <text x="952.53" y="335.5" ></text> </g> <g > <title>__GI___libc_read (21,636,096 samples, 0.13%)</title><rect x="1139.8" y="405" width="1.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="1142.81" y="415.5" ></text> </g> <g > <title>asm_exc_page_fault (3,409,299 samples, 0.02%)</title><rect x="31.0" y="373" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="33.99" y="383.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="277" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1141.33" y="287.5" ></text> </g> <g > <title>do_syscall_64 (19,250,418 samples, 0.12%)</title><rect x="1141.6" y="357" width="1.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1144.55" y="367.5" ></text> </g> <g > <title>[unknown] (4,568,590 samples, 0.03%)</title><rect x="10.2" y="565" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> <text x="13.18" y="575.5" ></text> </g> <g > <title>__vm_munmap (259,486,254 samples, 1.59%)</title><rect x="12.1" y="277" width="18.7" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" /> <text x="15.06" y="287.5" ></text> </g> <g > <title>_raw_spin_lock (6,009,917 samples, 0.04%)</title><rect x="303.8" y="389" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> <text x="306.83" y="399.5" ></text> </g> <g > <title>__mod_lruvec_page_state (3,035,337 samples, 0.02%)</title><rect x="1012.6" y="325" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="1015.61" y="335.5" ></text> </g> <g > <title>__x64_sys_munmap (259,486,254 samples, 1.59%)</title><rect x="12.1" y="293" width="18.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> <text x="15.06" y="303.5" ></text> </g> <g > <title>clear_huge_page (818,171,051 samples, 5.01%)</title><rect x="952.0" y="357" width="59.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="955.02" y="367.5" >clear_..</text> </g> <g > <title>devices_init (1,487,221 samples, 0.01%)</title><rect x="1146.7" y="309" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1149.73" y="319.5" ></text> </g> <g > <title>__kmem_cache_alloc_node (1,729,995 samples, 0.01%)</title><rect x="628.7" y="325" width="0.1" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" /> <text x="631.70" y="335.5" ></text> </g> <g > <title>syscall_exit_to_user_mode (5,918,508 samples, 0.04%)</title><rect x="1137.5" y="357" width="0.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" /> <text x="1140.51" y="367.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (2,777,240 samples, 0.02%)</title><rect x="270.7" y="469" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="273.68" y="479.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (8,062,003 samples, 0.05%)</title><rect x="941.9" y="469" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="944.92" y="479.5" ></text> </g> <g > <title>__hrtimer_run_queues (5,146,731 samples, 0.03%)</title><rect x="791.5" y="389" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="794.49" y="399.5" ></text> </g> <g > <title>hrtimer_interrupt (7,126,171 samples, 0.04%)</title><rect x="942.0" y="437" width="0.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="944.99" y="447.5" ></text> </g> <g > <title>pte_alloc_one (12,504,536 samples, 0.08%)</title><rect x="1011.9" y="357" width="0.9" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> <text x="1014.93" y="367.5" ></text> </g> <g > <title>mas_wr_modify (1,728,362 samples, 0.01%)</title><rect x="12.3" y="213" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> <text x="15.31" y="223.5" ></text> </g> <g > <title>vma_merge (5,204,666 samples, 0.03%)</title><rect x="1146.4" y="117" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> <text x="1149.35" y="127.5" ></text> </g> <g > <title>vm_mmap_pgoff (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="373" width="3.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1136.09" y="383.5" ></text> </g> <g > <title>accfg_get_param_long (4,602,798 samples, 0.03%)</title><rect x="1146.9" y="229" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="1149.91" y="239.5" ></text> </g> <g > <title>scan_a (1,678,013,450 samples, 10.27%)</title><rect x="821.3" y="517" width="121.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="824.31" y="527.5" >scan_a</text> </g> <g > <title>_raw_spin_lock (2,039,788 samples, 0.01%)</title><rect x="951.9" y="357" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> <text x="954.87" y="367.5" ></text> </g> <g > <title>exit_to_user_mode_prepare (1,731,095 samples, 0.01%)</title><rect x="270.6" y="453" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="273.56" y="463.5" ></text> </g> <g > <title>syscall (4,556,948 samples, 0.03%)</title><rect x="942.8" y="469" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="945.81" y="479.5" ></text> </g> <g > <title>do_syscall_64 (2,565,568 samples, 0.02%)</title><rect x="1146.9" y="165" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1149.94" y="175.5" ></text> </g> <g > <title>do_syscall_64 (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="389" width="3.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1136.09" y="399.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="293" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="1014.00" y="303.5" ></text> </g> <g > <title>unmap_region (1,728,623 samples, 0.01%)</title><rect x="10.5" y="357" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> <text x="13.51" y="367.5" ></text> </g> <g > <title>__rmqueue_pcplist (12,992,411 samples, 0.08%)</title><rect x="345.4" y="325" width="1.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> <text x="348.43" y="335.5" ></text> </g> <g > <title>__hrtimer_run_queues (2,714,507 samples, 0.02%)</title><rect x="819.4" y="389" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="822.41" y="399.5" ></text> </g> <g > <title>intel_invalidate_range (78,711,041 samples, 0.48%)</title><rect x="24.2" y="181" width="5.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="27.18" y="191.5" ></text> </g> <g > <title>perf_iterate_ctx (32,825,072 samples, 0.20%)</title><rect x="1134.1" y="293" width="2.4" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> <text x="1137.09" y="303.5" ></text> </g> <g > <title>__split_vma (2,597,797 samples, 0.02%)</title><rect x="12.1" y="229" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> <text x="15.12" y="239.5" ></text> </g> <g > <title>count_memcg_events.constprop.0 (3,821,882 samples, 0.02%)</title><rect x="1131.4" y="389" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> <text x="1134.36" y="399.5" ></text> </g> <g > <title>do_anonymous_page (2,419,571 samples, 0.01%)</title><rect x="1143.7" y="149" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="1146.72" y="159.5" ></text> </g> <g > <title>alloc_fd (2,581,399 samples, 0.02%)</title><rect x="1141.6" y="309" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="1144.55" y="319.5" ></text> </g> <g > <title>walk_component (2,915,734 samples, 0.02%)</title><rect x="1142.3" y="261" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" /> <text x="1145.31" y="271.5" ></text> </g> <g > <title>asm_exc_page_fault (1,731,639 samples, 0.01%)</title><rect x="506.6" y="453" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="509.60" y="463.5" ></text> </g> <g > <title>get_page_from_freelist (1,732,237 samples, 0.01%)</title><rect x="328.2" y="357" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="331.19" y="367.5" ></text> </g> <g > <title>qi_submit_sync (7,061,195 samples, 0.04%)</title><rect x="1148.0" y="373" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="1151.00" y="383.5" ></text> </g> <g > <title>numa_node_to_cpus (2,831,897 samples, 0.02%)</title><rect x="820.2" y="453" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="823.22" y="463.5" ></text> </g> <g > <title>_raw_spin_lock_irqsave (1,505,920 samples, 0.01%)</title><rect x="1145.8" y="37" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1148.78" y="47.5" ></text> </g> <g > <title>std::pair<std::__detail::_Node_iterator<std::pair<unsigned char* const, dsacache::CacheData>, false, false>, bool> std::_Hashtable<unsigned char*, std::pair<unsigned char* const, dsacache::CacheData>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> >, std::__detail::_Select1st, std::equal_to<unsigned char*>, std::hash<unsigned char*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::emplace<unsigned char*, dsacache::CacheData&> (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="469" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" /> <text x="1150.78" y="479.5" ></text> </g> <g > <title>void std::destroy_at<std::pair<unsigned char* const, dsacache::CacheData> > (262,080,827 samples, 1.60%)</title><rect x="12.0" y="405" width="18.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> <text x="15.00" y="415.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (2,724,344 samples, 0.02%)</title><rect x="819.4" y="437" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="822.41" y="447.5" ></text> </g> <g > <title>__hrtimer_run_queues (1,460,612 samples, 0.01%)</title><rect x="1131.1" y="213" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1134.10" y="223.5" ></text> </g> <g > <title>clear_page_erms (309,607,106 samples, 1.90%)</title><rect x="305.6" y="373" width="22.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="308.58" y="383.5" >c..</text> </g> <g > <title>exc_page_fault (2,547,614,283 samples, 15.59%)</title><rect x="948.0" y="437" width="184.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> <text x="950.95" y="447.5" >exc_page_fault</text> </g> <g > <title>dsacache::CacheData::Deallocate (260,351,057 samples, 1.59%)</title><rect x="12.0" y="357" width="18.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="15.00" y="367.5" ></text> </g> <g > <title>__GI__IO_doallocbuf (25,072,445 samples, 0.15%)</title><rect x="1138.0" y="405" width="1.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> <text x="1140.99" y="415.5" ></text> </g> <g > <title>add_wq (8,186,564 samples, 0.05%)</title><rect x="1146.9" y="245" width="0.6" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> <text x="1149.87" y="255.5" ></text> </g> <g > <title>std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> > >::_M_deallocate_nodes (262,080,827 samples, 1.60%)</title><rect x="12.0" y="453" width="18.9" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> <text x="15.00" y="463.5" ></text> </g> <g > <title>do_sys_openat2 (18,616,272 samples, 0.11%)</title><rect x="1141.6" y="325" width="1.3" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" /> <text x="1144.55" y="335.5" ></text> </g> <g > <title>do_syscall_64 (259,486,254 samples, 1.59%)</title><rect x="12.1" y="309" width="18.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="15.06" y="319.5" ></text> </g> <g > <title>__handle_mm_fault (2,542,611 samples, 0.02%)</title><rect x="31.0" y="309" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> <text x="33.99" y="319.5" ></text> </g> <g > <title>read (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="213" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="1150.13" y="223.5" ></text> </g> <g > <title>_int_memalign (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="277" width="3.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> <text x="1146.53" y="287.5" ></text> </g> <g > <title>vma_alloc_folio (1,640,530,564 samples, 10.04%)</title><rect x="1012.8" y="357" width="118.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> <text x="1015.83" y="367.5" >vma_alloc_folio</text> </g> <g > <title>__cond_resched (7,615,401 samples, 0.05%)</title><rect x="954.3" y="341" width="0.6" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" /> <text x="957.35" y="351.5" ></text> </g> <g > <title>sysmalloc (42,505,783 samples, 0.26%)</title><rect x="1143.7" y="245" width="3.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="1146.66" y="255.5" ></text> </g> <g > <title>kmem_cache_alloc_bulk (1,585,774 samples, 0.01%)</title><rect x="1146.4" y="69" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="1149.35" y="79.5" ></text> </g> <g > <title>kernel_mbind (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="373" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="1139.75" y="383.5" ></text> </g> <g > <title>__handle_mm_fault (2,537,101,790 samples, 15.53%)</title><rect x="948.1" y="389" width="183.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> <text x="951.12" y="399.5" >__handle_mm_fault</text> </g> <g > <title>clear_page_erms (1,231,860,598 samples, 7.54%)</title><rect x="346.4" y="325" width="89.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="349.41" y="335.5" >clear_page..</text> </g> <g > <title>qi_flush_dev_iotlb_pasid (10,837,698 samples, 0.07%)</title><rect x="1143.9" y="69" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1146.95" y="79.5" ></text> </g> <g > <title>mas_prev_nentry (1,563,935 samples, 0.01%)</title><rect x="1133.1" y="277" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" /> <text x="1136.09" y="287.5" ></text> </g> <g > <title>decltype (3,409,299 samples, 0.02%)</title><rect x="31.0" y="453" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" /> <text x="33.99" y="463.5" ></text> </g> <g > <title>check_preemption_disabled (1,676,042 samples, 0.01%)</title><rect x="949.1" y="309" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="952.11" y="319.5" ></text> </g> <g > <title>do_mmap (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="357" width="3.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="1136.09" y="367.5" ></text> </g> <g > <title>__alloc_pages (3,430,412 samples, 0.02%)</title><rect x="941.6" y="357" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="944.59" y="367.5" ></text> </g> <g > <title>vfs_fstatat (1,512,504 samples, 0.01%)</title><rect x="1138.1" y="293" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="1141.05" y="303.5" ></text> </g> <g > <title>__GI___mmap64 (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="437" width="3.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="1136.09" y="447.5" ></text> </g> <g > <title>__GI_munmap (18,146,766 samples, 0.11%)</title><rect x="10.7" y="501" width="1.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="13.69" y="511.5" ></text> </g> <g > <title>folio_add_lru (7,530,893 samples, 0.05%)</title><rect x="949.3" y="357" width="0.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> <text x="952.35" y="367.5" ></text> </g> <g > <title>intel_cpuc_prepare (1,729,995 samples, 0.01%)</title><rect x="628.7" y="357" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> <text x="631.70" y="367.5" ></text> </g> <g > <title>do_syscall_64 (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="149" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1150.13" y="159.5" ></text> </g> <g > <title>do_syscall_64 (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="261" width="1.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1141.33" y="271.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (4,556,948 samples, 0.03%)</title><rect x="942.8" y="453" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="945.81" y="463.5" ></text> </g> <g > <title>perf_iterate_sb.constprop.0 (32,825,072 samples, 0.20%)</title><rect x="1134.1" y="309" width="2.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="1137.09" y="319.5" ></text> </g> <g > <title>sum_check (3,317,095,812 samples, 20.30%)</title><rect x="31.3" y="501" width="239.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="34.30" y="511.5" >sum_check</text> </g> <g > <title>std::pair<std::__detail::_Node_iterator<std::pair<unsigned char* const, dsacache::CacheData>, false, false>, bool> std::_Hashtable<unsigned char*, std::pair<unsigned char* const, dsacache::CacheData>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> >, std::__detail::_Select1st, std::equal_to<unsigned char*>, std::hash<unsigned char*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_emplace<unsigned char*, dsacache::CacheData&> (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="453" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> <text x="1150.78" y="463.5" ></text> </g> <g > <title>tlb_finish_mmu (161,743,813 samples, 0.99%)</title><rect x="12.5" y="213" width="11.7" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> <text x="15.50" y="223.5" ></text> </g> <g > <title>__next_zones_zonelist (3,096,950 samples, 0.02%)</title><rect x="950.2" y="309" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> <text x="953.24" y="319.5" ></text> </g> <g > <title>memcg_check_events (4,262,574 samples, 0.03%)</title><rect x="948.8" y="325" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" /> <text x="951.77" y="335.5" ></text> </g> <g > <title>kmalloc_trace (1,729,987 samples, 0.01%)</title><rect x="628.8" y="357" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> <text x="631.82" y="367.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (2,163,378 samples, 0.01%)</title><rect x="1131.1" y="261" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1134.10" y="271.5" ></text> </g> <g > <title>dsacache::Cache::Access (2,844,259,210 samples, 17.41%)</title><rect x="942.5" y="501" width="205.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> <text x="945.51" y="511.5" >dsacache::Cache::Access</text> </g> <g > <title>qi_flush_dev_iotlb_pasid (7,061,195 samples, 0.04%)</title><rect x="1148.0" y="389" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1151.00" y="399.5" ></text> </g> <g > <title>clear_huge_page (2,583,148 samples, 0.02%)</title><rect x="941.4" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="944.41" y="399.5" ></text> </g> <g > <title>copy_process (22,478,709 samples, 0.14%)</title><rect x="627.5" y="485" width="1.6" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> <text x="630.45" y="495.5" ></text> </g> <g > <title>do_syscall_64 (18,146,766 samples, 0.11%)</title><rect x="10.7" y="469" width="1.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="13.69" y="479.5" ></text> </g> <g > <title>dsacache::Cache::GetFromCache (2,051,374 samples, 0.01%)</title><rect x="821.0" y="485" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> <text x="824.02" y="495.5" ></text> </g> <g > <title>do_sys_openat2 (2,565,568 samples, 0.02%)</title><rect x="1146.9" y="133" width="0.2" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" /> <text x="1149.94" y="143.5" ></text> </g> <g > <title>_raw_spin_lock (2,581,399 samples, 0.02%)</title><rect x="1141.6" y="293" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> <text x="1144.55" y="303.5" ></text> </g> <g > <title>sysfs_kf_seq_show (14,183,508 samples, 0.09%)</title><rect x="1140.3" y="293" width="1.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> <text x="1143.34" y="303.5" ></text> </g> <g > <title>format_decode (3,780,724 samples, 0.02%)</title><rect x="1140.8" y="197" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" /> <text x="1143.83" y="207.5" ></text> </g> <g > <title>__mmu_notifier_invalidate_range_end (26,909,047 samples, 0.16%)</title><rect x="1143.9" y="101" width="2.0" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> <text x="1146.95" y="111.5" ></text> </g> <g > <title>_IO_new_fclose (7,527,675 samples, 0.05%)</title><rect x="1137.4" y="437" width="0.5" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> <text x="1140.39" y="447.5" ></text> </g> <g > <title>asm_exc_page_fault (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="245" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="1146.53" y="255.5" ></text> </g> <g > <title>__mem_cgroup_charge (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="149" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="1146.53" y="159.5" ></text> </g> <g > <title>__folio_alloc (1,694,345 samples, 0.01%)</title><rect x="31.1" y="261" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="34.05" y="271.5" ></text> </g> <g > <title>_mm512_mask_testn_epi8_mask (1,617,669 samples, 0.01%)</title><rect x="1143.4" y="421" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> <text x="1146.42" y="431.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 (446,356,922 samples, 2.73%)</title><rect x="595.2" y="421" width="32.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> <text x="598.21" y="431.5" >st..</text> </g> <g > <title>dml::detail::ml::impl::hardware::submit (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="405" width="0.9" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="1149.73" y="415.5" ></text> </g> <g > <title>vfs_read (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="117" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1150.13" y="127.5" ></text> </g> <g > <title>aggr_j (2,660,666,540 samples, 16.29%)</title><rect x="629.1" y="517" width="192.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" /> <text x="632.14" y="527.5" >aggr_j</text> </g> <g > <title>clear_page_erms (1,325,383,434 samples, 8.11%)</title><rect x="1035.5" y="293" width="95.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="1038.53" y="303.5" >clear_page_..</text> </g> <g > <title>dsacache::Cache::ExecuteCopy (57,276,083 samples, 0.35%)</title><rect x="1143.5" y="469" width="4.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> <text x="1146.53" y="479.5" ></text> </g> <g > <title>qi_flush_piotlb (16,071,349 samples, 0.10%)</title><rect x="1144.7" y="69" width="1.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="1147.73" y="79.5" ></text> </g> <g > <title>__handle_mm_fault (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="181" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> <text x="1146.53" y="191.5" ></text> </g> <g > <title>accfg_get_param_str (3,070,305 samples, 0.02%)</title><rect x="1147.2" y="229" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> <text x="1150.24" y="239.5" ></text> </g> <g > <title>scheduler_tick (2,170,601 samples, 0.01%)</title><rect x="819.4" y="325" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="822.45" y="335.5" ></text> </g> <g > <title>preempt_count_add (1,462,822 samples, 0.01%)</title><rect x="1131.8" y="373" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="1134.77" y="383.5" ></text> </g> <g > <title>do_mprotect_pkey (38,464,959 samples, 0.24%)</title><rect x="1143.9" y="149" width="2.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="1146.95" y="159.5" ></text> </g> <g > <title>device_parse (8,186,564 samples, 0.05%)</title><rect x="1146.9" y="277" width="0.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="1149.87" y="287.5" ></text> </g> <g > <title>numa_bitmask_clearall (2,584,213 samples, 0.02%)</title><rect x="942.6" y="437" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="945.63" y="447.5" ></text> </g> <g > <title>scheduler_tick (2,777,240 samples, 0.02%)</title><rect x="270.7" y="357" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="273.68" y="367.5" ></text> </g> <g > <title>mas_prev (1,563,935 samples, 0.01%)</title><rect x="1133.1" y="293" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> <text x="1136.09" y="303.5" ></text> </g> <g > <title>syscall_exit_to_user_mode (2,109,428 samples, 0.01%)</title><rect x="820.9" y="421" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" /> <text x="823.87" y="431.5" ></text> </g> <g > <title>do_syscall_64 (4,556,948 samples, 0.03%)</title><rect x="942.8" y="437" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="945.81" y="447.5" ></text> </g> <g > <title>do_mbind (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="357" width="0.5" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> <text x="1139.75" y="367.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> (571,144,167 samples, 3.50%)</title><rect x="1148.7" y="549" width="41.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="1151.75" y="559.5" >uns..</text> </g> <g > <title>exc_page_fault (3,280,828 samples, 0.02%)</title><rect x="1143.7" y="213" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> <text x="1146.66" y="223.5" ></text> </g> <g > <title>handle_mm_fault (6,013,560 samples, 0.04%)</title><rect x="941.4" y="437" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="944.41" y="447.5" ></text> </g> <g > <title>mem_cgroup_charge_statistics (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="117" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> <text x="1146.53" y="127.5" ></text> </g> <g > <title>hrtimer_interrupt (5,146,731 samples, 0.03%)</title><rect x="791.5" y="405" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="794.49" y="415.5" ></text> </g> <g > <title>__memcpy (3,104,328 samples, 0.02%)</title><rect x="1140.6" y="197" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> <text x="1143.61" y="207.5" ></text> </g> <g > <title>do_user_addr_fault (3,280,828 samples, 0.02%)</title><rect x="1143.7" y="197" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="1146.66" y="207.5" ></text> </g> <g > <title>dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="421" width="3.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> <text x="1146.53" y="431.5" ></text> </g> <g > <title>perf_event_alloc (15,574,048 samples, 0.10%)</title><rect x="627.9" y="421" width="1.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> <text x="630.95" y="431.5" ></text> </g> <g > <title>__GI___libc_malloc (22,752,987 samples, 0.14%)</title><rect x="1138.2" y="357" width="1.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="1141.16" y="367.5" ></text> </g> <g > <title>mas_alloc_nodes (1,585,774 samples, 0.01%)</title><rect x="1146.4" y="85" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> <text x="1149.35" y="95.5" ></text> </g> <g > <title>do_huge_pmd_anonymous_page (2,494,709,541 samples, 15.27%)</title><rect x="951.1" y="373" width="180.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> <text x="954.14" y="383.5" >do_huge_pmd_anonymous_p..</text> </g> <g > <title>scheduler_tick (5,146,731 samples, 0.03%)</title><rect x="791.5" y="325" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="794.49" y="335.5" ></text> </g> <g > <title>mod_memcg_state (2,422,137 samples, 0.01%)</title><rect x="1012.1" y="293" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="1015.07" y="303.5" ></text> </g> <g > <title>syscall (2,285,719 samples, 0.01%)</title><rect x="10.0" y="549" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="13.01" y="559.5" ></text> </g> <g > <title>free_tail_page_prepare (12,096,311 samples, 0.07%)</title><rect x="10.9" y="293" width="0.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" /> <text x="13.94" y="303.5" ></text> </g> <g > <title>tick_sched_handle (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="229" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="1014.00" y="239.5" ></text> </g> <g > <title>__alloc_pages (1,694,345 samples, 0.01%)</title><rect x="31.1" y="245" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="34.05" y="255.5" ></text> </g> <g > <title>__GI___libc_read (21,636,096 samples, 0.13%)</title><rect x="1139.8" y="389" width="1.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="1142.81" y="399.5" ></text> </g> <g > <title>do_vmi_munmap (18,146,766 samples, 0.11%)</title><rect x="10.7" y="421" width="1.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="13.69" y="431.5" ></text> </g> <g > <title>__mmu_notifier_invalidate_range_end (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="421" width="0.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> <text x="1151.00" y="431.5" ></text> </g> <g > <title>__folio_alloc (11,611,654 samples, 0.07%)</title><rect x="950.2" y="341" width="0.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="953.20" y="351.5" ></text> </g> <g > <title>Sum<unsigned long>::simd_agg (757,239,970 samples, 4.63%)</title><rect x="737.2" y="485" width="54.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="740.17" y="495.5" >Sum<u..</text> </g> <g > <title>vfs_read (19,372,267 samples, 0.12%)</title><rect x="1140.0" y="325" width="1.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1142.97" y="335.5" ></text> </g> <g > <title>__GI_exit (2,515,698 samples, 0.02%)</title><rect x="10.5" y="517" width="0.2" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" /> <text x="13.51" y="527.5" ></text> </g> <g > <title>tick_sched_handle (1,460,612 samples, 0.01%)</title><rect x="1131.1" y="181" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="1134.10" y="191.5" ></text> </g> <g > <title>inherit_task_group.isra.0 (19,899,347 samples, 0.12%)</title><rect x="627.6" y="453" width="1.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> <text x="630.64" y="463.5" ></text> </g> <g > <title>do_anonymous_page (38,255,303 samples, 0.23%)</title><rect x="948.4" y="373" width="2.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="951.37" y="383.5" ></text> </g> <g > <title>mem_cgroup_charge_statistics (3,814,030 samples, 0.02%)</title><rect x="948.5" y="325" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> <text x="951.49" y="335.5" ></text> </g> <g > <title>__GI___libc_read (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="197" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="1150.13" y="207.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (7,728,229 samples, 0.05%)</title><rect x="820.5" y="453" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="823.47" y="463.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (1,728,623 samples, 0.01%)</title><rect x="10.5" y="453" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="13.51" y="463.5" ></text> </g> <g > <title>perf_iterate_ctx (6,351,246 samples, 0.04%)</title><rect x="1145.9" y="85" width="0.5" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> <text x="1148.89" y="95.5" ></text> </g> <g > <title>get_page_from_freelist (1,638,023,280 samples, 10.03%)</title><rect x="1012.9" y="309" width="118.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="1015.95" y="319.5" >get_page_from_..</text> </g> <g > <title>do_madvise (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="453" width="0.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1151.00" y="463.5" ></text> </g> <g > <title>accfg_device_get_first (1,487,221 samples, 0.01%)</title><rect x="1146.7" y="325" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="1149.73" y="335.5" ></text> </g> <g > <title>get_page_from_freelist (1,479,835,396 samples, 9.06%)</title><rect x="328.5" y="341" width="106.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="331.50" y="351.5" >get_page_from..</text> </g> <g > <title>x86_pmu_event_init (6,918,889 samples, 0.04%)</title><rect x="628.6" y="389" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> <text x="631.57" y="399.5" ></text> </g> <g > <title>do_user_addr_fault (1,830,044,679 samples, 11.20%)</title><rect x="303.2" y="453" width="132.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="306.21" y="463.5" >do_user_addr_fault</text> </g> <g > <title>__mmu_notifier_invalidate_range (1,729,045 samples, 0.01%)</title><rect x="10.7" y="357" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> <text x="13.69" y="367.5" ></text> </g> <g > <title>update_load_avg (1,445,866 samples, 0.01%)</title><rect x="942.4" y="325" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" /> <text x="945.40" y="335.5" ></text> </g> <g > <title>exc_page_fault (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="229" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> <text x="1146.53" y="239.5" ></text> </g> <g > <title>memcg_slab_post_alloc_hook (1,486,139 samples, 0.01%)</title><rect x="1140.0" y="261" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="1143.02" y="271.5" ></text> </g> <g > <title>__mod_zone_page_state (1,731,117 samples, 0.01%)</title><rect x="23.6" y="117" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="26.62" y="127.5" ></text> </g> <g > <title>mbind_range (3,444,002 samples, 0.02%)</title><rect x="1136.8" y="341" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> <text x="1139.81" y="351.5" ></text> </g> <g > <title>__fput (5,918,508 samples, 0.04%)</title><rect x="1137.5" y="309" width="0.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> <text x="1140.51" y="319.5" ></text> </g> <g > <title>update_process_times (1,460,612 samples, 0.01%)</title><rect x="1131.1" y="165" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="1134.10" y="175.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="405" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1139.75" y="415.5" ></text> </g> <g > <title>do_vmi_align_munmap (259,486,254 samples, 1.59%)</title><rect x="12.1" y="245" width="18.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> <text x="15.06" y="255.5" ></text> </g> <g > <title>__list_del_entry_valid (1,456,703 samples, 0.01%)</title><rect x="1035.3" y="277" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> <text x="1038.26" y="287.5" ></text> </g> <g > <title>__mmu_notifier_invalidate_range (76,977,428 samples, 0.47%)</title><rect x="12.5" y="197" width="5.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> <text x="15.50" y="207.5" ></text> </g> <g > <title>vsnprintf (13,571,657 samples, 0.08%)</title><rect x="1140.4" y="213" width="1.0" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> <text x="1143.39" y="223.5" ></text> </g> <g > <title>void fill_mt<unsigned long> (4,936,796,643 samples, 30.22%)</title><rect x="270.9" y="501" width="356.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> <text x="273.88" y="511.5" >void fill_mt<unsigned long></text> </g> <g > <title>unmap_region (254,294,478 samples, 1.56%)</title><rect x="12.4" y="229" width="18.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> <text x="15.44" y="239.5" ></text> </g> <g > <title>qi_submit_sync (36,329,554 samples, 0.22%)</title><rect x="24.2" y="149" width="2.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="27.18" y="159.5" ></text> </g> <g > <title>kmem_cache_alloc (3,054,209 samples, 0.02%)</title><rect x="1136.5" y="309" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> <text x="1139.46" y="319.5" ></text> </g> <g > <title>asm_exc_page_fault (2,590,206,895 samples, 15.85%)</title><rect x="945.9" y="453" width="187.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="948.89" y="463.5" >asm_exc_page_fault</text> </g> <g > <title>operator new (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="309" width="3.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> <text x="1146.53" y="319.5" ></text> </g> <g > <title>__memcg_kmem_charge_page (6,224,139 samples, 0.04%)</title><rect x="1012.0" y="325" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="1015.04" y="335.5" ></text> </g> <g > <title>__do_sys_newfstatat (1,512,504 samples, 0.01%)</title><rect x="1138.1" y="309" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> <text x="1141.05" y="319.5" ></text> </g> <g > <title>grow_heap (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="309" width="1.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> <text x="1141.33" y="319.5" ></text> </g> <g > <title>perf_iterate_sb.constprop.0 (6,351,246 samples, 0.04%)</title><rect x="1145.9" y="101" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="1148.89" y="111.5" ></text> </g> <g > <title>mas_wr_node_store (1,728,362 samples, 0.01%)</title><rect x="12.3" y="197" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> <text x="15.31" y="207.5" ></text> </g> <g > <title>devices_init (2,466,668 samples, 0.02%)</title><rect x="10.2" y="549" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="13.24" y="559.5" ></text> </g> <g > <title>page_remove_rmap (1,729,498 samples, 0.01%)</title><rect x="30.1" y="181" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> <text x="33.05" y="191.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (2,714,507 samples, 0.02%)</title><rect x="819.4" y="421" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="822.41" y="431.5" ></text> </g> <g > <title>clear_page_erms (778,310,223 samples, 4.76%)</title><rect x="954.9" y="341" width="56.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="957.90" y="351.5" >clear..</text> </g> <g > <title>do_filp_open (1,537,896 samples, 0.01%)</title><rect x="1146.9" y="117" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="1149.94" y="127.5" ></text> </g> <g > <title>__GI_mprotect (39,224,955 samples, 0.24%)</title><rect x="1143.9" y="213" width="2.8" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> <text x="1146.89" y="223.5" ></text> </g> <g > <title>__strncasecmp_l_evex (2,453,327 samples, 0.02%)</title><rect x="1143.2" y="389" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> <text x="1146.18" y="399.5" ></text> </g> <g > <title>__vm_munmap (18,146,766 samples, 0.11%)</title><rect x="10.7" y="437" width="1.3" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" /> <text x="13.69" y="447.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (5,156,974 samples, 0.03%)</title><rect x="791.5" y="437" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="794.49" y="447.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (5,146,731 samples, 0.03%)</title><rect x="791.5" y="293" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="794.49" y="303.5" ></text> </g> <g > <title>update_process_times (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="213" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="1014.00" y="223.5" ></text> </g> <g > <title>internal_get_user_pages_fast (2,670,813 samples, 0.02%)</title><rect x="820.5" y="389" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="823.51" y="399.5" ></text> </g> <g > <title>dml::core::dispatcher::hw_dispatcher::~hw_dispatcher (1,728,623 samples, 0.01%)</title><rect x="10.5" y="485" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> <text x="13.51" y="495.5" ></text> </g> <g > <title>sync_regs (12,011,565 samples, 0.07%)</title><rect x="1132.1" y="437" width="0.9" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> <text x="1135.10" y="447.5" ></text> </g> <g > <title>qi_flush_piotlb (10,974,190 samples, 0.07%)</title><rect x="1139.0" y="149" width="0.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="1141.95" y="159.5" ></text> </g> <g > <title>__x64_sys_openat (18,616,272 samples, 0.11%)</title><rect x="1141.6" y="341" width="1.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="1144.55" y="351.5" ></text> </g> <g > <title>do_dentry_open (2,033,850 samples, 0.01%)</title><rect x="1142.0" y="277" width="0.1" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> <text x="1144.98" y="287.5" ></text> </g> <g > <title>dml::core::dispatcher::hw_queue::initialize_new_queue (1,537,469 samples, 0.01%)</title><rect x="1147.5" y="309" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> <text x="1150.46" y="319.5" ></text> </g> <g > <title>task_tick_fair (1,445,866 samples, 0.01%)</title><rect x="942.4" y="341" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="945.40" y="351.5" ></text> </g> <g > <title>memcg_account_kmem (2,422,137 samples, 0.01%)</title><rect x="1012.1" y="309" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> <text x="1015.07" y="319.5" ></text> </g> <g > <title>__GI___libc_malloc (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="341" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="1150.78" y="351.5" ></text> </g> <g > <title>__fopen_internal (20,850,721 samples, 0.13%)</title><rect x="1141.6" y="437" width="1.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" /> <text x="1144.55" y="447.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (5,146,731 samples, 0.03%)</title><rect x="791.5" y="421" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="794.49" y="431.5" ></text> </g> <g > <title>dml::handler<dml::mem_copy_operation, dml::execution_interface<dml::hardware, std::allocator<unsigned char> >::allocator_type> dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (57,276,083 samples, 0.35%)</title><rect x="1143.5" y="453" width="4.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> <text x="1146.53" y="463.5" ></text> </g> <g > <title>do_vmi_munmap (1,728,623 samples, 0.01%)</title><rect x="10.5" y="389" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="13.51" y="399.5" ></text> </g> <g > <title>syscall (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="421" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="1139.75" y="431.5" ></text> </g> <g > <title>kernel_get_mempolicy (5,075,534 samples, 0.03%)</title><rect x="820.5" y="405" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> <text x="823.47" y="415.5" ></text> </g> <g > <title>__kmem_cache_alloc_node (2,093,173 samples, 0.01%)</title><rect x="1140.0" y="277" width="0.2" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" /> <text x="1143.02" y="287.5" ></text> </g> <g > <title>mtree_load (1,843,021 samples, 0.01%)</title><rect x="820.7" y="389" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" /> <text x="823.70" y="399.5" ></text> </g> <g > <title>arch_get_unmapped_area_topdown (1,563,935 samples, 0.01%)</title><rect x="1133.1" y="325" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> <text x="1136.09" y="335.5" ></text> </g> <g > <title>mod_objcg_state (1,543,680 samples, 0.01%)</title><rect x="1137.8" y="245" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" /> <text x="1140.76" y="255.5" ></text> </g> <g > <title>do_syscall_64 (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="485" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1151.00" y="495.5" ></text> </g> <g > <title>tick_sched_handle (5,146,731 samples, 0.03%)</title><rect x="791.5" y="357" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="794.49" y="367.5" ></text> </g> <g > <title>__GI___libc_read (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="181" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="1150.13" y="191.5" ></text> </g> <g > <title>__GI___libc_malloc (3,431,863 samples, 0.02%)</title><rect x="943.2" y="325" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="946.24" y="335.5" ></text> </g> <g > <title>__GI___getdelim (49,290,423 samples, 0.30%)</title><rect x="1137.9" y="437" width="3.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> <text x="1140.93" y="447.5" ></text> </g> <g > <title>__libc_open64 (19,250,418 samples, 0.12%)</title><rect x="1141.6" y="389" width="1.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> <text x="1144.55" y="399.5" ></text> </g> <g > <title>mmap_region (48,171,543 samples, 0.29%)</title><rect x="1133.3" y="341" width="3.4" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" /> <text x="1136.27" y="351.5" ></text> </g> <g > <title>__libc_start_call_main (8,541,764,204 samples, 52.28%)</title><rect x="10.5" y="533" width="617.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="13.51" y="543.5" >__libc_start_call_main</text> </g> <g > <title>dml::detail::ml::task<std::allocator<unsigned char> >::task (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="389" width="3.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> <text x="1146.53" y="399.5" ></text> </g> <g > <title>perf_try_init_event (6,918,889 samples, 0.04%)</title><rect x="628.6" y="405" width="0.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> <text x="631.57" y="415.5" ></text> </g> <g > <title>handle_mm_fault (3,280,828 samples, 0.02%)</title><rect x="1143.7" y="181" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="1146.66" y="191.5" ></text> </g> <g > <title>__strcasestr (4,045,089 samples, 0.02%)</title><rect x="1143.1" y="421" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> <text x="1146.06" y="431.5" ></text> </g> <g > <title>__x64_sys_mprotect (38,464,959 samples, 0.24%)</title><rect x="1143.9" y="165" width="2.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> <text x="1146.95" y="175.5" ></text> </g> <g > <title>dsacache::Cache::AllocOnNode (2,768,859,594 samples, 16.95%)</title><rect x="943.5" y="469" width="200.0" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" /> <text x="946.55" y="479.5" >dsacache::Cache::AllocOnNode</text> </g> <g > <title>__hrtimer_run_queues (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="261" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1014.00" y="271.5" ></text> </g> <g > <title>numa_node_to_cpus (2,584,213 samples, 0.02%)</title><rect x="942.6" y="453" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="945.63" y="463.5" ></text> </g> <g > <title>std::__new_allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="325" width="3.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> <text x="1146.53" y="335.5" ></text> </g> <g > <title>charge_memcg (2,596,328 samples, 0.02%)</title><rect x="303.6" y="373" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="306.58" y="383.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (18,146,766 samples, 0.11%)</title><rect x="10.7" y="485" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="13.69" y="495.5" ></text> </g> <g > <title>kvfree_call_rcu (2,652,940 samples, 0.02%)</title><rect x="1137.5" y="261" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> <text x="1140.51" y="271.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (2,657,438,501 samples, 16.27%)</title><rect x="435.5" y="485" width="192.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="438.51" y="495.5" >unsigned long std::unifor..</text> </g> <g > <title>perf_adjust_freq_unthr_context (1,626,903 samples, 0.01%)</title><rect x="819.5" y="293" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="822.49" y="303.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,671,517,566 samples, 10.23%)</title><rect x="506.7" y="453" width="120.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="509.72" y="463.5" >unsigned int st..</text> </g> <g > <title>lru_gen_add_folio (2,065,739 samples, 0.01%)</title><rect x="949.6" y="309" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> <text x="952.61" y="319.5" ></text> </g> <g > <title>krc_this_cpu_lock (1,791,831 samples, 0.01%)</title><rect x="1137.6" y="245" width="0.1" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" /> <text x="1140.57" y="255.5" ></text> </g> <g > <title>perf_event_task_tick (5,671,208 samples, 0.03%)</title><rect x="942.0" y="341" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="944.99" y="351.5" ></text> </g> <g > <title>two_way_short_needle (3,184,226 samples, 0.02%)</title><rect x="1143.1" y="405" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> <text x="1146.12" y="415.5" ></text> </g> <g > <title>do_anonymous_page (2,598,122 samples, 0.02%)</title><rect x="303.3" y="405" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="306.27" y="415.5" ></text> </g> <g > <title>tick_sched_timer (2,714,507 samples, 0.02%)</title><rect x="819.4" y="373" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="822.41" y="383.5" ></text> </g> <g > <title>scheduler_tick (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="197" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="1014.00" y="207.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (1,415,984 samples, 0.01%)</title><rect x="1035.4" y="293" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="1038.43" y="303.5" ></text> </g> <g > <title>hrtimer_interrupt (2,777,240 samples, 0.02%)</title><rect x="270.7" y="437" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="273.68" y="447.5" ></text> </g> <g > <title>check_preemption_disabled (1,713,789 samples, 0.01%)</title><rect x="1012.2" y="293" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="1015.25" y="303.5" ></text> </g> <g > <title>__GI_madvise (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="517" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="1151.00" y="527.5" ></text> </g> <g > <title>perf_event_task_tick (5,492,973 samples, 0.03%)</title><rect x="819.7" y="341" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="822.68" y="351.5" ></text> </g> <g > <title>intel_invalidate_range (76,977,428 samples, 0.47%)</title><rect x="12.5" y="181" width="5.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="15.50" y="191.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (1,415,984 samples, 0.01%)</title><rect x="1035.4" y="277" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1038.43" y="287.5" ></text> </g> <g > <title>unmap_vmas (1,728,623 samples, 0.01%)</title><rect x="10.5" y="341" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> <text x="13.51" y="351.5" ></text> </g> <g > <title>intel_cpuc_finish (1,730,138 samples, 0.01%)</title><rect x="628.9" y="373" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" /> <text x="631.95" y="383.5" ></text> </g> <g > <title>down_read (1,551,814 samples, 0.01%)</title><rect x="1142.4" y="213" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> <text x="1145.41" y="223.5" ></text> </g> <g > <title>hrtimer_interrupt (2,714,507 samples, 0.02%)</title><rect x="819.4" y="405" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="822.41" y="415.5" ></text> </g> <g > <title>down_write (2,822,695 samples, 0.02%)</title><rect x="1146.5" y="85" width="0.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" /> <text x="1149.52" y="95.5" ></text> </g> <g > <title>vma_alloc_folio (1,479,835,396 samples, 9.06%)</title><rect x="328.5" y="389" width="106.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> <text x="331.50" y="399.5" >vma_alloc_folio</text> </g> <g > <title>release_pages (84,766,385 samples, 0.52%)</title><rect x="18.1" y="181" width="6.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> <text x="21.06" y="191.5" ></text> </g> <g > <title>_IO_new_file_close_it (6,690,044 samples, 0.04%)</title><rect x="1137.4" y="421" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> <text x="1140.45" y="431.5" ></text> </g> <g > <title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::operator (571,144,167 samples, 3.50%)</title><rect x="1148.7" y="533" width="41.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> <text x="1151.75" y="543.5" >std..</text> </g> <g > <title>qi_submit_sync (44,113,272 samples, 0.27%)</title><rect x="14.9" y="149" width="3.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="17.87" y="159.5" ></text> </g> <g > <title>std::__new_allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> >::allocate (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="373" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> <text x="1150.78" y="383.5" ></text> </g> <g > <title>__hrtimer_run_queues (2,777,240 samples, 0.02%)</title><rect x="270.7" y="421" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="273.68" y="431.5" ></text> </g> <g > <title>inode_permission (1,722,389 samples, 0.01%)</title><rect x="1142.1" y="261" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" /> <text x="1145.13" y="271.5" ></text> </g> <g > <title>numa_node_of_cpu (4,248,901 samples, 0.03%)</title><rect x="942.5" y="469" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="945.51" y="479.5" ></text> </g> <g > <title>clone3 (7,216,796,516 samples, 44.17%)</title><rect x="627.5" y="565" width="521.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="630.45" y="575.5" >clone3</text> </g> <g > <title>qi_submit_sync (10,837,698 samples, 0.07%)</title><rect x="1143.9" y="53" width="0.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="1146.95" y="63.5" ></text> </g> <g > <title>__x64_sys_openat (2,565,568 samples, 0.02%)</title><rect x="1146.9" y="149" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="1149.94" y="159.5" ></text> </g> <g > <title>folio_batch_move_lru (4,953,093 samples, 0.03%)</title><rect x="949.4" y="341" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> <text x="952.45" y="351.5" ></text> </g> <g > <title>hrtimer_interrupt (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="277" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="1014.00" y="287.5" ></text> </g> <g > <title>__x64_sys_get_mempolicy (5,075,534 samples, 0.03%)</title><rect x="820.5" y="421" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> <text x="823.47" y="431.5" ></text> </g> <g > <title>__GI_mprotect (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="293" width="1.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> <text x="1141.33" y="303.5" ></text> </g> <g > <title>dml::core::dispatcher::hw_dispatcher::get_instance (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="373" width="0.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> <text x="1149.73" y="383.5" ></text> </g> <g > <title>__kmem_cache_free (2,404,641 samples, 0.01%)</title><rect x="1137.8" y="261" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> <text x="1140.76" y="271.5" ></text> </g> <g > <title>do_user_addr_fault (6,013,560 samples, 0.04%)</title><rect x="941.4" y="453" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="944.41" y="463.5" ></text> </g> <g > <title>get_mem_cgroup_from_mm (3,711,864 samples, 0.02%)</title><rect x="951.6" y="341" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> <text x="954.60" y="351.5" ></text> </g> <g > <title>tick_sched_timer (2,777,240 samples, 0.02%)</title><rect x="270.7" y="405" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="273.68" y="415.5" ></text> </g> <g > <title>path_openat (1,537,896 samples, 0.01%)</title><rect x="1146.9" y="101" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> <text x="1149.94" y="111.5" ></text> </g> <g > <title>dml::core::dispatcher::hw_device::initialize_new_device (10,229,766 samples, 0.06%)</title><rect x="1146.8" y="325" width="0.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" /> <text x="1149.83" y="335.5" ></text> </g> <g > <title>free_pcppages_bulk (4,326,961 samples, 0.03%)</title><rect x="23.4" y="149" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="26.43" y="159.5" ></text> </g> <g > <title>do_anonymous_page (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="165" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="1146.53" y="175.5" ></text> </g> <g > <title>do_user_addr_fault (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="213" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="1146.53" y="223.5" ></text> </g> <g > <title>_mid_memalign (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="293" width="3.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> <text x="1146.53" y="303.5" ></text> </g> <g > <title>__handle_mm_fault (6,013,560 samples, 0.04%)</title><rect x="941.4" y="421" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> <text x="944.41" y="431.5" ></text> </g> <g > <title>lru_gen_del_folio.constprop.0 (4,325,621 samples, 0.03%)</title><rect x="23.9" y="165" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="26.87" y="175.5" ></text> </g> <g > <title>__mem_cgroup_charge (2,598,122 samples, 0.02%)</title><rect x="303.3" y="389" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="306.27" y="399.5" ></text> </g> <g > <title>dsacache::Cache::SubmitTask (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="421" width="0.9" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> <text x="1149.73" y="431.5" ></text> </g> <g > <title>dsacache::Cache::GetCacheNode (8,805,849 samples, 0.05%)</title><rect x="942.5" y="485" width="0.6" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> <text x="945.51" y="495.5" ></text> </g> <g > <title>vma_merge (3,444,002 samples, 0.02%)</title><rect x="1136.8" y="325" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> <text x="1139.81" y="335.5" ></text> </g> <g > <title>asm_exc_page_fault (3,280,828 samples, 0.02%)</title><rect x="1143.7" y="229" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="1146.66" y="239.5" ></text> </g> <g > <title>__hrtimer_run_queues (7,666,902 samples, 0.05%)</title><rect x="819.6" y="421" width="0.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="822.61" y="431.5" ></text> </g> <g > <title>_int_malloc (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="261" width="3.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> <text x="1146.53" y="271.5" ></text> </g> <g > <title>std::__new_allocator<int>::allocate (3,431,863 samples, 0.02%)</title><rect x="943.2" y="357" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> <text x="946.24" y="367.5" ></text> </g> <g > <title>mutex_unlock (1,578,372 samples, 0.01%)</title><rect x="1140.2" y="293" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> <text x="1143.23" y="303.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (2,654,842,180 samples, 16.25%)</title><rect x="435.7" y="469" width="191.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="438.70" y="479.5" >unsigned long std::unifor..</text> </g> <g > <title>vma_alloc_folio (1,559,530 samples, 0.01%)</title><rect x="1143.8" y="133" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> <text x="1146.78" y="143.5" ></text> </g> <g > <title>_start (8,541,764,204 samples, 52.28%)</title><rect x="10.5" y="565" width="617.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="13.51" y="575.5" >_start</text> </g> <g > <title>__sysfs_device_parse (8,186,564 samples, 0.05%)</title><rect x="1146.9" y="261" width="0.6" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> <text x="1149.87" y="271.5" ></text> </g> <g > <title>__alloc_pages (1,638,884,491 samples, 10.03%)</title><rect x="1012.9" y="325" width="118.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="1015.89" y="335.5" >__alloc_pages</text> </g> <g > <title>get_page_from_freelist (7,950,647 samples, 0.05%)</title><rect x="950.5" y="309" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="953.47" y="319.5" ></text> </g> <g > <title>qi_flush_piotlb (2,592,030 samples, 0.02%)</title><rect x="1148.5" y="389" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="1151.51" y="399.5" ></text> </g> <g > <title>do_syscall_64 (1,512,504 samples, 0.01%)</title><rect x="1138.1" y="325" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1141.05" y="335.5" ></text> </g> <g > <title>qi_flush_dev_iotlb_pasid (36,329,554 samples, 0.22%)</title><rect x="24.2" y="165" width="2.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="27.18" y="175.5" ></text> </g> <g > <title>do_huge_pmd_anonymous_page (6,013,560 samples, 0.04%)</title><rect x="941.4" y="405" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> <text x="944.41" y="415.5" ></text> </g> <g > <title>do_vmi_align_munmap (18,146,766 samples, 0.11%)</title><rect x="10.7" y="405" width="1.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> <text x="13.69" y="415.5" ></text> </g> <g > <title>do_huge_pmd_anonymous_page (2,542,611 samples, 0.02%)</title><rect x="31.0" y="293" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> <text x="33.99" y="303.5" ></text> </g> <g > <title>_raw_spin_lock (1,730,541 samples, 0.01%)</title><rect x="17.8" y="133" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> <text x="20.81" y="143.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (20,775,227 samples, 0.13%)</title><rect x="1139.9" y="373" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1142.87" y="383.5" ></text> </g> <g > <title>do_syscall_64 (6,690,044 samples, 0.04%)</title><rect x="1137.4" y="373" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1140.45" y="383.5" ></text> </g> <g > <title>dml::core::dispatcher::hw_dispatcher::hw_dispatcher (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="357" width="0.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" /> <text x="1149.73" y="367.5" ></text> </g> <g > <title>update_process_times (7,126,171 samples, 0.04%)</title><rect x="942.0" y="373" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="944.99" y="383.5" ></text> </g> <g > <title>dsacache::Cache::Access (14,009,326 samples, 0.09%)</title><rect x="820.2" y="501" width="1.0" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> <text x="823.16" y="511.5" ></text> </g> <g > <title>__GI__IO_file_open (19,250,418 samples, 0.12%)</title><rect x="1141.6" y="405" width="1.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="1144.55" y="415.5" ></text> </g> <g > <title>__mod_memcg_state (1,561,926 samples, 0.01%)</title><rect x="1012.1" y="277" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> <text x="1015.13" y="287.5" ></text> </g> <g > <title>std::allocator_traits<std::allocator<int> >::allocate (3,431,863 samples, 0.02%)</title><rect x="943.2" y="389" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> <text x="946.24" y="399.5" ></text> </g> <g > <title>down_write (8,479,830 samples, 0.05%)</title><rect x="1133.3" y="325" width="0.6" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" /> <text x="1136.27" y="335.5" ></text> </g> <g > <title>clear_page_erms (2,147,468 samples, 0.01%)</title><rect x="950.9" y="293" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="953.87" y="303.5" ></text> </g> <g > <title>scan_b (2,845,120,776 samples, 17.41%)</title><rect x="942.5" y="517" width="205.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> <text x="945.51" y="527.5" >scan_b</text> </g> <g > <title>std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> > >::_M_deallocate_node (262,080,827 samples, 1.60%)</title><rect x="12.0" y="437" width="18.9" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> <text x="15.00" y="447.5" ></text> </g> <g > <title>device_parse (1,490,139 samples, 0.01%)</title><rect x="10.3" y="517" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="13.31" y="527.5" ></text> </g> <g > <title>do_syscall_64 (23,342,525 samples, 0.14%)</title><rect x="627.5" y="533" width="1.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="630.45" y="543.5" ></text> </g> <g > <title>__mmu_notifier_invalidate_range_end (19,560,452 samples, 0.12%)</title><rect x="1138.3" y="181" width="1.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> <text x="1141.33" y="191.5" ></text> </g> <g > <title>tick_sched_handle (7,126,171 samples, 0.04%)</title><rect x="942.0" y="389" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="944.99" y="399.5" ></text> </g> <g > <title>do_filp_open (11,335,071 samples, 0.07%)</title><rect x="1141.7" y="309" width="0.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="1144.74" y="319.5" ></text> </g> <g > <title>std::_Hashtable<unsigned char*, std::pair<unsigned char* const, dsacache::CacheData>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> >, std::__detail::_Select1st, std::equal_to<unsigned char*>, std::hash<unsigned char*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::clear (262,080,827 samples, 1.60%)</title><rect x="12.0" y="469" width="18.9" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" /> <text x="15.00" y="479.5" ></text> </g> <g > <title>qi_submit_sync (10,974,190 samples, 0.07%)</title><rect x="1139.0" y="133" width="0.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="1141.95" y="143.5" ></text> </g> <g > <title>__run_exit_handlers (2,515,698 samples, 0.02%)</title><rect x="10.5" y="501" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> <text x="13.51" y="511.5" ></text> </g> <g > <title>__pthread_create_2_1 (3,409,299 samples, 0.02%)</title><rect x="31.0" y="405" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> <text x="33.99" y="415.5" ></text> </g> <g > <title>std::allocator<int>::allocate (3,431,863 samples, 0.02%)</title><rect x="943.2" y="373" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> <text x="946.24" y="383.5" ></text> </g> <g > <title>_IO_new_file_fopen (19,250,418 samples, 0.12%)</title><rect x="1141.6" y="421" width="1.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="1144.55" y="431.5" ></text> </g> <g > <title>kernfs_fop_open (2,033,850 samples, 0.01%)</title><rect x="1142.0" y="261" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> <text x="1144.98" y="271.5" ></text> </g> <g > <title>_raw_spin_lock_irqsave (2,594,701 samples, 0.02%)</title><rect x="29.6" y="133" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="32.62" y="143.5" ></text> </g> <g > <title>down_read (1,523,186 samples, 0.01%)</title><rect x="942.9" y="389" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> <text x="945.87" y="399.5" ></text> </g> <g > <title>task_mm_cid_work (1,731,095 samples, 0.01%)</title><rect x="270.6" y="421" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" /> <text x="273.56" y="431.5" ></text> </g> <g > <title>__mod_lruvec_page_state (1,732,325 samples, 0.01%)</title><rect x="328.4" y="357" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="331.38" y="367.5" ></text> </g> <g > <title>lock_vma_under_rcu (3,289,225 samples, 0.02%)</title><rect x="1131.6" y="405" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" /> <text x="1134.64" y="415.5" ></text> </g> <g > <title>dsacache::Cache::Clear (262,080,827 samples, 1.60%)</title><rect x="12.0" y="501" width="18.9" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> <text x="15.00" y="511.5" ></text> </g> <g > <title>numa_bitmask_clearall (2,295,921 samples, 0.01%)</title><rect x="820.3" y="437" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="823.26" y="447.5" ></text> </g> <g > <title>__mod_node_page_state (1,602,438 samples, 0.01%)</title><rect x="1011.6" y="309" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="1014.61" y="319.5" ></text> </g> <g > <title>std::pair<std::__detail::_Node_iterator<std::pair<unsigned char* const, dsacache::CacheData>, false, false>, bool> std::unordered_map<unsigned char*, dsacache::CacheData, std::hash<unsigned char*>, std::equal_to<unsigned char*>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> > >::emplace<unsigned char*, dsacache::CacheData&> (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="485" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> <text x="1150.78" y="495.5" ></text> </g> <g > <title>__do_sys_clone3 (23,342,525 samples, 0.14%)</title><rect x="627.5" y="517" width="1.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="630.45" y="527.5" ></text> </g> <g > <title>mas_preallocate (1,585,774 samples, 0.01%)</title><rect x="1146.4" y="101" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" /> <text x="1149.35" y="111.5" ></text> </g> <g > <title>__handle_mm_fault (3,280,828 samples, 0.02%)</title><rect x="1143.7" y="165" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> <text x="1146.66" y="175.5" ></text> </g> <g > <title>clear_huge_page (327,751,872 samples, 2.01%)</title><rect x="304.3" y="389" width="23.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="307.27" y="399.5" >c..</text> </g> <g > <title>zap_page_range_single (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="437" width="0.7" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" /> <text x="1151.00" y="447.5" ></text> </g> <g > <title>__folio_alloc (1,559,530 samples, 0.01%)</title><rect x="1143.8" y="117" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="1146.78" y="127.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (19,250,418 samples, 0.12%)</title><rect x="1141.6" y="373" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1144.55" y="383.5" ></text> </g> <g > <title>inherit_event.isra.0 (19,034,831 samples, 0.12%)</title><rect x="627.7" y="437" width="1.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" /> <text x="630.70" y="447.5" ></text> </g> <g > <title>[libstdc++.so.6.0.32] (7,183,800,766 samples, 43.97%)</title><rect x="629.1" y="533" width="518.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="632.14" y="543.5" >[libstdc++.so.6.0.32]</text> </g> <g > <title>std::unordered_map<unsigned char*, dsacache::CacheData, std::hash<unsigned char*>, std::equal_to<unsigned char*>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> > >::clear (262,080,827 samples, 1.60%)</title><rect x="12.0" y="485" width="18.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> <text x="15.00" y="495.5" ></text> </g> <g > <title>kernfs_fop_release (5,918,508 samples, 0.04%)</title><rect x="1137.5" y="293" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> <text x="1140.51" y="303.5" ></text> </g> <g > <title>void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> > >::destroy<std::pair<unsigned char* const, dsacache::CacheData> > (262,080,827 samples, 1.60%)</title><rect x="12.0" y="421" width="18.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" /> <text x="15.00" y="431.5" ></text> </g> <g > <title>_raw_spin_lock_irqsave (2,414,711 samples, 0.01%)</title><rect x="1011.2" y="309" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1014.24" y="319.5" ></text> </g> <g > <title>intel_invalidate_range (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="405" width="0.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="1151.00" y="415.5" ></text> </g> <g > <title>get_unmapped_area (2,424,458 samples, 0.01%)</title><rect x="1133.1" y="341" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> <text x="1136.09" y="351.5" ></text> </g> <g > <title>numa_node_size64 (87,109,009 samples, 0.53%)</title><rect x="1137.2" y="453" width="6.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="1140.24" y="463.5" ></text> </g> <g > <title>lookup_fast (2,915,734 samples, 0.02%)</title><rect x="1142.3" y="245" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="1145.31" y="255.5" ></text> </g> <g > <title>mprotect_fixup (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="213" width="1.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> <text x="1141.33" y="223.5" ></text> </g> <g > <title>tlb_finish_mmu (16,417,789 samples, 0.10%)</title><rect x="10.7" y="373" width="1.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> <text x="13.69" y="383.5" ></text> </g> <g > <title>_IO_new_file_underflow (46,708,541 samples, 0.29%)</title><rect x="1138.0" y="421" width="3.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" /> <text x="1140.99" y="431.5" ></text> </g> <g > <title>do_syscall_64 (5,974,528 samples, 0.04%)</title><rect x="1136.7" y="389" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1139.75" y="399.5" ></text> </g> <g > <title>folio_batch_move_lru (4,437,935 samples, 0.03%)</title><rect x="1011.2" y="341" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> <text x="1014.24" y="351.5" ></text> </g> <g > <title>seq_read_iter (1,524,427 samples, 0.01%)</title><rect x="1147.1" y="101" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> <text x="1150.13" y="111.5" ></text> </g> <g > <title>try_charge_memcg (3,331,473 samples, 0.02%)</title><rect x="1012.2" y="309" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="1015.25" y="319.5" ></text> </g> <g > <title>asm_exc_page_fault (6,530,628 samples, 0.04%)</title><rect x="941.4" y="485" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="944.41" y="495.5" ></text> </g> <g > <title>void std::vector<std::thread, std::allocator<std::thread> >::_M_realloc_insert<void (3,409,299 samples, 0.02%)</title><rect x="31.0" y="485" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> <text x="33.99" y="495.5" ></text> </g> <g > <title>mod_lruvec_page_state.constprop.0 (3,035,337 samples, 0.02%)</title><rect x="1012.6" y="341" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> <text x="1015.61" y="351.5" ></text> </g> <g > <title>mod_lruvec_page_state.constprop.0 (1,732,325 samples, 0.01%)</title><rect x="328.4" y="373" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> <text x="331.38" y="383.5" ></text> </g> <g > <title>wqs_init (8,186,564 samples, 0.05%)</title><rect x="1146.9" y="293" width="0.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> <text x="1149.87" y="303.5" ></text> </g> <g > <title>uncharge_batch (2,593,230 samples, 0.02%)</title><rect x="18.2" y="133" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> <text x="21.18" y="143.5" ></text> </g> <g > <title>do_huge_pmd_anonymous_page (1,826,580,369 samples, 11.18%)</title><rect x="303.5" y="405" width="131.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> <text x="306.46" y="415.5" >do_huge_pmd_anon..</text> </g> <g > <title>__kmem_cache_alloc_node (1,729,987 samples, 0.01%)</title><rect x="628.8" y="341" width="0.1" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" /> <text x="631.82" y="351.5" ></text> </g> <g > <title>__rmqueue_pcplist (42,564,946 samples, 0.26%)</title><rect x="1032.3" y="293" width="3.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> <text x="1035.29" y="303.5" ></text> </g> <g > <title>tick_sched_handle (2,170,601 samples, 0.01%)</title><rect x="819.4" y="357" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="822.45" y="367.5" ></text> </g> <g > <title>__mod_lruvec_page_state (2,643,773 samples, 0.02%)</title><rect x="949.9" y="341" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="952.92" y="351.5" ></text> </g> <g > <title>numa_alloc_onnode (58,089,727 samples, 0.36%)</title><rect x="1133.0" y="453" width="4.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" /> <text x="1136.04" y="463.5" ></text> </g> <g > <title>__free_one_page (4,326,961 samples, 0.03%)</title><rect x="23.4" y="133" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> <text x="26.43" y="143.5" ></text> </g> <g > <title>std::_Vector_base<int, std::allocator<int> >::_M_allocate (3,431,863 samples, 0.02%)</title><rect x="943.2" y="405" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="946.24" y="415.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (23,342,525 samples, 0.14%)</title><rect x="627.5" y="549" width="1.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="630.45" y="559.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (2,777,240 samples, 0.02%)</title><rect x="270.7" y="453" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="273.68" y="463.5" ></text> </g> <g > <title>__count_memcg_events (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="101" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> <text x="1146.53" y="111.5" ></text> </g> <g > <title>std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> > >::allocate (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="405" width="0.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> <text x="1150.78" y="415.5" ></text> </g> <g > <title>tlb_batch_pages_flush (84,766,385 samples, 0.52%)</title><rect x="18.1" y="197" width="6.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" /> <text x="21.06" y="207.5" ></text> </g> <g > <title>intel_invalidate_range (1,729,045 samples, 0.01%)</title><rect x="10.7" y="341" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="13.69" y="351.5" ></text> </g> <g > <title>groups_init (1,490,139 samples, 0.01%)</title><rect x="10.3" y="533" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> <text x="13.31" y="543.5" ></text> </g> <g > <title>tick_sched_timer (5,146,731 samples, 0.03%)</title><rect x="791.5" y="373" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="794.49" y="383.5" ></text> </g> <g > <title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::operator (972,825,231 samples, 5.95%)</title><rect x="557.2" y="437" width="70.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> <text x="560.19" y="447.5" >std::me..</text> </g> <g > <title>__GI__IO_file_doallocate (25,072,445 samples, 0.15%)</title><rect x="1138.0" y="373" width="1.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> <text x="1140.99" y="383.5" ></text> </g> <g > <title>_int_malloc (22,752,987 samples, 0.14%)</title><rect x="1138.2" y="341" width="1.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> <text x="1141.16" y="351.5" ></text> </g> <g > <title>free_unref_page (2,594,918 samples, 0.02%)</title><rect x="30.3" y="165" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="33.30" y="175.5" ></text> </g> <g > <title>numa_node_of_cpu (4,229,723 samples, 0.03%)</title><rect x="820.2" y="469" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="823.16" y="479.5" ></text> </g> <g > <title>ksys_read (20,070,864 samples, 0.12%)</title><rect x="1139.9" y="341" width="1.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="1142.92" y="351.5" ></text> </g> <g > <title>mprotect_fixup (38,464,959 samples, 0.24%)</title><rect x="1143.9" y="133" width="2.8" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> <text x="1146.95" y="143.5" ></text> </g> <g > <title>vma_prepare (2,822,695 samples, 0.02%)</title><rect x="1146.5" y="101" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> <text x="1149.52" y="111.5" ></text> </g> <g > <title>std::allocator_traits<std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> > >::allocate (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="357" width="3.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="1146.53" y="367.5" ></text> </g> <g > <title>debug_smp_processor_id (1,617,684 samples, 0.01%)</title><rect x="1012.4" y="293" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="1015.37" y="303.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (2,163,378 samples, 0.01%)</title><rect x="1131.1" y="277" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="1134.10" y="287.5" ></text> </g> <g > <title>operator new (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="357" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> <text x="1150.78" y="367.5" ></text> </g> <g > <title>unmap_page_range (1,728,977 samples, 0.01%)</title><rect x="11.9" y="357" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> <text x="14.87" y="367.5" ></text> </g> <g > <title>advise_stack_range (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="533" width="0.7" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> <text x="1151.00" y="543.5" ></text> </g> <g > <title>getname_flags.part.0 (3,101,514 samples, 0.02%)</title><rect x="1142.7" y="309" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> <text x="1145.68" y="319.5" ></text> </g> <g > <title>std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> > >::_M_allocate_node<unsigned char*, dsacache::CacheData&> (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="421" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="1150.78" y="431.5" ></text> </g> <g > <title>__vm_munmap (1,728,623 samples, 0.01%)</title><rect x="10.5" y="405" width="0.1" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" /> <text x="13.51" y="415.5" ></text> </g> <g > <title>page_counter_uncharge (1,727,997 samples, 0.01%)</title><rect x="18.2" y="117" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> <text x="21.25" y="127.5" ></text> </g> <g > <title>__alloc_pages (11,611,654 samples, 0.07%)</title><rect x="950.2" y="325" width="0.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="953.20" y="335.5" ></text> </g> <g > <title>page_counter_try_charge (4,050,786 samples, 0.02%)</title><rect x="951.3" y="309" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> <text x="954.31" y="319.5" ></text> </g> <g > <title>memcg_check_events (1,732,342 samples, 0.01%)</title><rect x="303.3" y="357" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" /> <text x="306.33" y="367.5" ></text> </g> <g > <title>free_unref_page_prepare (13,824,412 samples, 0.08%)</title><rect x="10.8" y="309" width="1.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="13.81" y="319.5" ></text> </g> <g > <title>void std::allocator_traits<std::allocator<std::thread> >::construct<std::thread, void (3,409,299 samples, 0.02%)</title><rect x="31.0" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="33.99" y="479.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (5,671,208 samples, 0.03%)</title><rect x="942.0" y="325" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="944.99" y="335.5" ></text> </g> <g > <title>__alloc_pages (1,559,530 samples, 0.01%)</title><rect x="1143.8" y="101" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="1146.78" y="111.5" ></text> </g> <g > <title>link_path_walk.part.0.constprop.0 (5,389,979 samples, 0.03%)</title><rect x="1142.1" y="277" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> <text x="1145.13" y="287.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (1,512,504 samples, 0.01%)</title><rect x="1138.1" y="341" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1141.05" y="351.5" ></text> </g> <g > <title>operator new (3,431,863 samples, 0.02%)</title><rect x="943.2" y="341" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> <text x="946.24" y="351.5" ></text> </g> <g > <title>__folio_alloc (3,430,412 samples, 0.02%)</title><rect x="941.6" y="373" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="944.59" y="383.5" ></text> </g> <g > <title>vm_unmapped_area (1,563,935 samples, 0.01%)</title><rect x="1133.1" y="309" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> <text x="1136.09" y="319.5" ></text> </g> <g > <title>do_syscall_64 (1,728,623 samples, 0.01%)</title><rect x="10.5" y="437" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="13.51" y="447.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (2,142,780 samples, 0.01%)</title><rect x="1131.1" y="245" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="1134.10" y="255.5" ></text> </g> <g > <title>qi_flush_piotlb (42,381,487 samples, 0.26%)</title><rect x="26.8" y="165" width="3.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="29.81" y="175.5" ></text> </g> <g > <title>get_unused_fd_flags (1,598,288 samples, 0.01%)</title><rect x="1142.6" y="309" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" /> <text x="1145.56" y="319.5" ></text> </g> <g > <title>start_thread (7,193,453,991 samples, 44.03%)</title><rect x="629.1" y="549" width="519.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> <text x="632.14" y="559.5" >start_thread</text> </g> <g > <title>__strcasestr (4,045,089 samples, 0.02%)</title><rect x="1143.1" y="437" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" /> <text x="1146.06" y="447.5" ></text> </g> <g > <title>__mod_zone_page_state (1,729,824 samples, 0.01%)</title><rect x="24.1" y="149" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="27.06" y="159.5" ></text> </g> <g > <title>alloc_empty_file (3,366,665 samples, 0.02%)</title><rect x="1141.7" y="277" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> <text x="1144.74" y="287.5" ></text> </g> <g > <title>__mod_lruvec_state (1,602,438 samples, 0.01%)</title><rect x="1011.6" y="325" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> <text x="1014.61" y="335.5" ></text> </g> <g > <title>try_charge_memcg (2,596,328 samples, 0.02%)</title><rect x="303.6" y="357" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="306.58" y="367.5" ></text> </g> <g > <title>__handle_mm_fault (1,830,044,679 samples, 11.20%)</title><rect x="303.2" y="421" width="132.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> <text x="306.21" y="431.5" >__handle_mm_fault</text> </g> <g > <title>dsacache::CacheData::~CacheData (262,080,827 samples, 1.60%)</title><rect x="12.0" y="373" width="18.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="15.00" y="383.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (259,486,254 samples, 1.59%)</title><rect x="12.1" y="325" width="18.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="15.06" y="335.5" ></text> </g> <g > <title>asm_exc_page_fault (2,285,719 samples, 0.01%)</title><rect x="10.0" y="533" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="13.01" y="543.5" ></text> </g> <g > <title>_raw_spin_lock (1,791,831 samples, 0.01%)</title><rect x="1137.6" y="229" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> <text x="1140.57" y="239.5" ></text> </g> <g > <title>perf_event_mmap (33,685,958 samples, 0.21%)</title><rect x="1134.0" y="325" width="2.5" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> <text x="1137.03" y="335.5" ></text> </g> <g > <title>free_compound_page (2,593,230 samples, 0.02%)</title><rect x="18.2" y="165" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="21.18" y="175.5" ></text> </g> <g > <title>CopyMethodPolicy (3,431,863 samples, 0.02%)</title><rect x="943.2" y="469" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" /> <text x="946.24" y="479.5" ></text> </g> <g > <title>dml::detail::ml::buffer<std::allocator<unsigned char>, dml::detail::descriptor, dml::detail::completion_record>::buffer (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="373" width="3.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="1146.53" y="383.5" ></text> </g> <g > <title>zap_huge_pmd (8,649,283 samples, 0.05%)</title><rect x="30.2" y="181" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="33.18" y="191.5" ></text> </g> <g > <title>dsacache::Cache::GetCacheNode (11,957,952 samples, 0.07%)</title><rect x="820.2" y="485" width="0.8" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" /> <text x="823.16" y="495.5" ></text> </g> <g > <title>check_preemption_disabled (3,692,528 samples, 0.02%)</title><rect x="948.8" y="309" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="951.81" y="319.5" ></text> </g> <g > <title>__memset (1,729,987 samples, 0.01%)</title><rect x="628.8" y="325" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> <text x="631.82" y="335.5" ></text> </g> <g > <title>perf_event_task_tick (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="181" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="1014.00" y="191.5" ></text> </g> <g > <title>do_syscall_64 (7,728,229 samples, 0.05%)</title><rect x="820.5" y="437" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="823.47" y="447.5" ></text> </g> <g > <title>intel_invalidate_range (26,909,047 samples, 0.16%)</title><rect x="1143.9" y="85" width="2.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="1146.95" y="95.5" ></text> </g> <g > <title>task_work_run (1,731,095 samples, 0.01%)</title><rect x="270.6" y="437" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> <text x="273.56" y="447.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (2,777,240 samples, 0.02%)</title><rect x="270.7" y="325" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="273.68" y="335.5" ></text> </g> <g > <title>free_unref_page_prepare (69,196,859 samples, 0.42%)</title><rect x="18.4" y="149" width="5.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="21.43" y="159.5" ></text> </g> <g > <title>vma_alloc_folio (1,694,345 samples, 0.01%)</title><rect x="31.1" y="277" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> <text x="34.05" y="287.5" ></text> </g> <g > <title>exc_page_fault (3,409,299 samples, 0.02%)</title><rect x="31.0" y="357" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> <text x="33.99" y="367.5" ></text> </g> <g > <title>hrtimer_interrupt (2,142,780 samples, 0.01%)</title><rect x="1131.1" y="229" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="1134.10" y="239.5" ></text> </g> <g > <title>get_page_from_freelist (1,559,530 samples, 0.01%)</title><rect x="1143.8" y="85" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="1146.78" y="95.5" ></text> </g> <g > <title>tick_sched_timer (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="245" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="1014.00" y="255.5" ></text> </g> <g > <title>lru_gen_del_folio.constprop.0 (1,728,698 samples, 0.01%)</title><rect x="18.1" y="149" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="21.06" y="159.5" ></text> </g> <g > <title>__alloc_pages (2,597,639 samples, 0.02%)</title><rect x="328.1" y="373" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="331.13" y="383.5" ></text> </g> <g > <title>tick_sched_timer (7,666,902 samples, 0.05%)</title><rect x="819.6" y="405" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="822.61" y="415.5" ></text> </g> <g > <title>__folio_alloc (1,638,884,491 samples, 10.03%)</title><rect x="1012.9" y="341" width="118.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="1015.89" y="351.5" >__folio_alloc</text> </g> <g > <title>clear_page_erms (2,583,148 samples, 0.02%)</title><rect x="941.4" y="373" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="944.41" y="383.5" ></text> </g> <g > <title>kernfs_unlink_open_file (2,652,940 samples, 0.02%)</title><rect x="1137.5" y="277" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> <text x="1140.51" y="287.5" ></text> </g> <g > <title>down_write (2,582,768 samples, 0.02%)</title><rect x="1136.9" y="293" width="0.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" /> <text x="1139.87" y="303.5" ></text> </g> <g > <title>add_group (1,490,139 samples, 0.01%)</title><rect x="10.3" y="485" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="13.31" y="495.5" ></text> </g> <g > <title>auto dml::detail::ml::make_mem_move_task<std::allocator<unsigned char> > (44,228,686 samples, 0.27%)</title><rect x="1143.5" y="405" width="3.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="1146.53" y="415.5" ></text> </g> <g > <title>fpregs_assert_state_consistent (1,569,121 samples, 0.01%)</title><rect x="820.9" y="389" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="823.91" y="399.5" ></text> </g> <g > <title>seq_read_iter (18,635,874 samples, 0.11%)</title><rect x="1140.0" y="309" width="1.4" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> <text x="1143.02" y="319.5" ></text> </g> <g > <title>dev_attr_show (14,183,508 samples, 0.09%)</title><rect x="1140.3" y="277" width="1.1" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="1143.34" y="287.5" ></text> </g> <g > <title>free_tail_page_prepare (55,358,225 samples, 0.34%)</title><rect x="19.4" y="133" width="4.0" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" /> <text x="22.43" y="143.5" ></text> </g> <g > <title>do_vmi_munmap (259,486,254 samples, 1.59%)</title><rect x="12.1" y="261" width="18.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="15.06" y="271.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (38,464,959 samples, 0.24%)</title><rect x="1143.9" y="197" width="2.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1146.95" y="207.5" ></text> </g> <g > <title>number (3,666,378 samples, 0.02%)</title><rect x="1141.1" y="197" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" /> <text x="1144.10" y="207.5" ></text> </g> <g > <title>change_protection (26,909,047 samples, 0.16%)</title><rect x="1143.9" y="117" width="2.0" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> <text x="1146.95" y="127.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (7,666,902 samples, 0.05%)</title><rect x="819.6" y="469" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="822.61" y="479.5" ></text> </g> <g > <title>update_process_times (6,579,035 samples, 0.04%)</title><rect x="819.7" y="373" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="822.68" y="383.5" ></text> </g> <g > <title>__mod_lruvec_page_state (2,463,026 samples, 0.02%)</title><rect x="1011.6" y="341" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="1014.61" y="351.5" ></text> </g> <g > <title>tick_sched_handle (6,579,035 samples, 0.04%)</title><rect x="819.7" y="389" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="822.68" y="399.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (8,685,354 samples, 0.05%)</title><rect x="941.9" y="485" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="944.88" y="495.5" ></text> </g> <g > <title>qi_submit_sync (16,071,349 samples, 0.10%)</title><rect x="1144.7" y="53" width="1.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="1147.73" y="63.5" ></text> </g> <g > <title>free_unref_page (13,824,412 samples, 0.08%)</title><rect x="10.8" y="325" width="1.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="13.81" y="335.5" ></text> </g> <g > <title>dml::core::dispatcher::hw_dispatcher::initialize_hw (12,186,558 samples, 0.07%)</title><rect x="1146.7" y="341" width="0.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="1149.73" y="351.5" ></text> </g> <g > <title>lru_gen_add_folio (1,423,052 samples, 0.01%)</title><rect x="1011.5" y="309" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> <text x="1014.45" y="319.5" ></text> </g> <g > <title>do_user_addr_fault (3,409,299 samples, 0.02%)</title><rect x="31.0" y="341" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="33.99" y="351.5" ></text> </g> <g > <title>handle_mm_fault (2,542,611 samples, 0.02%)</title><rect x="31.0" y="325" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="33.99" y="335.5" ></text> </g> <g > <title>task_work_run (5,918,508 samples, 0.04%)</title><rect x="1137.5" y="325" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> <text x="1140.51" y="335.5" ></text> </g> <g > <title>__count_memcg_events (2,820,695 samples, 0.02%)</title><rect x="948.5" y="309" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> <text x="951.52" y="319.5" ></text> </g> <g > <title>sysfs_emit_at (13,571,657 samples, 0.08%)</title><rect x="1140.4" y="245" width="1.0" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" /> <text x="1143.39" y="255.5" ></text> </g> <g > <title>qi_flush_piotlb (44,113,272 samples, 0.27%)</title><rect x="14.9" y="165" width="3.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="17.87" y="175.5" ></text> </g> <g > <title>perf_event_task_tick (2,777,240 samples, 0.02%)</title><rect x="270.7" y="341" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="273.68" y="351.5" ></text> </g> <g > <title>free_unref_page (70,061,865 samples, 0.43%)</title><rect x="18.4" y="165" width="5.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="21.37" y="175.5" ></text> </g> <g > <title>intel_invalidate_range (19,560,452 samples, 0.12%)</title><rect x="1138.3" y="165" width="1.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="1141.33" y="175.5" ></text> </g> <g > <title>exc_page_fault (6,013,560 samples, 0.04%)</title><rect x="941.4" y="469" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> <text x="944.41" y="479.5" ></text> </g> <g > <title>perf_event_mmap (6,351,246 samples, 0.04%)</title><rect x="1145.9" y="117" width="0.5" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> <text x="1148.89" y="127.5" ></text> </g> <g > <title>kernfs_dop_revalidate (1,551,814 samples, 0.01%)</title><rect x="1142.4" y="229" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" /> <text x="1145.41" y="239.5" ></text> </g> <g > <title>std::_Vector_base<int, std::allocator<int> >::_M_allocate (3,431,863 samples, 0.02%)</title><rect x="943.2" y="421" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="946.24" y="431.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (3,300,386 samples, 0.02%)</title><rect x="819.4" y="453" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="822.37" y="463.5" ></text> </g> <g > <title>qi_flush_dev_iotlb_pasid (32,864,156 samples, 0.20%)</title><rect x="12.5" y="165" width="2.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="15.50" y="175.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (9,653,225 samples, 0.06%)</title><rect x="1148.0" y="501" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1151.00" y="511.5" ></text> </g> <g > <title>charge_memcg (11,014,135 samples, 0.07%)</title><rect x="948.4" y="341" width="0.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="951.45" y="351.5" ></text> </g> <g > <title>handle_mm_fault (1,830,044,679 samples, 11.20%)</title><rect x="303.2" y="437" width="132.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="306.21" y="447.5" >handle_mm_fault</text> </g> <g > <title>std::pair<unsigned char* const, dsacache::CacheData>::~pair (262,080,827 samples, 1.60%)</title><rect x="12.0" y="389" width="18.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="15.00" y="399.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (7,666,902 samples, 0.05%)</title><rect x="819.6" y="453" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="822.61" y="463.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (6,690,044 samples, 0.04%)</title><rect x="1137.4" y="389" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1140.45" y="399.5" ></text> </g> <g > <title>std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> >::allocate (2,231,659 samples, 0.01%)</title><rect x="1147.8" y="389" width="0.1" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" /> <text x="1150.78" y="399.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="309" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1014.00" y="319.5" ></text> </g> <g > <title>unmap_vmas (91,685,764 samples, 0.56%)</title><rect x="24.2" y="213" width="6.6" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> <text x="27.18" y="223.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (2,565,568 samples, 0.02%)</title><rect x="1146.9" y="181" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1149.94" y="191.5" ></text> </g> <g > <title>__mem_cgroup_uncharge (2,593,230 samples, 0.02%)</title><rect x="18.2" y="149" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="21.18" y="159.5" ></text> </g> <g > <title>handle_mm_fault (1,722,903 samples, 0.01%)</title><rect x="1143.5" y="197" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="1146.53" y="207.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (7,666,902 samples, 0.05%)</title><rect x="819.6" y="485" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="822.61" y="495.5" ></text> </g> <g > <title>__mem_cgroup_charge (7,762,650 samples, 0.05%)</title><rect x="951.3" y="357" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="954.31" y="367.5" ></text> </g> <g > <title>__x64_sys_munmap (18,146,766 samples, 0.11%)</title><rect x="10.7" y="453" width="1.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> <text x="13.69" y="463.5" ></text> </g> <g > <title>unmap_region (18,146,766 samples, 0.11%)</title><rect x="10.7" y="389" width="1.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> <text x="13.69" y="399.5" ></text> </g> <g > <title>syscall (7,728,229 samples, 0.05%)</title><rect x="820.5" y="469" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="823.47" y="479.5" ></text> </g> <g > <title>do_syscall_64 (20,070,864 samples, 0.12%)</title><rect x="1139.9" y="357" width="1.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1142.92" y="367.5" ></text> </g> <g > <title>release_pages (14,688,744 samples, 0.09%)</title><rect x="10.8" y="341" width="1.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> <text x="13.81" y="351.5" ></text> </g> <g > <title>kernel_clone (23,342,525 samples, 0.14%)</title><rect x="627.5" y="501" width="1.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> <text x="630.45" y="511.5" ></text> </g> <g > <title>down_read_trylock (3,277,199 samples, 0.02%)</title><rect x="1131.6" y="389" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> <text x="1134.64" y="399.5" ></text> </g> <g > <title>mas_store_gfp (1,728,362 samples, 0.01%)</title><rect x="12.3" y="229" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> <text x="15.31" y="239.5" ></text> </g> <g > <title>qi_submit_sync (2,592,030 samples, 0.02%)</title><rect x="1148.5" y="373" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="1151.51" y="383.5" ></text> </g> <g > <title>__mod_lruvec_page_state (1,729,498 samples, 0.01%)</title><rect x="30.1" y="165" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="33.05" y="175.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (1,541,693 samples, 0.01%)</title><rect x="1011.0" y="325" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="1014.00" y="335.5" ></text> </g> <g > <title>tick_sched_handle (2,777,240 samples, 0.02%)</title><rect x="270.7" y="389" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="273.68" y="399.5" ></text> </g> <g > <title>seq_release (2,404,641 samples, 0.01%)</title><rect x="1137.8" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="1140.76" y="287.5" ></text> </g> <g > <title>scheduler_tick (1,460,612 samples, 0.01%)</title><rect x="1131.1" y="149" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="1134.10" y="159.5" ></text> </g> <g > <title>exit_to_user_mode_prepare (2,109,428 samples, 0.01%)</title><rect x="820.9" y="405" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="823.87" y="415.5" ></text> </g> <g > <title>dsacache::Cache::SubmitTask (2,831,153,568 samples, 17.33%)</title><rect x="943.2" y="485" width="204.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> <text x="946.24" y="495.5" >dsacache::Cache::SubmitTask</text> </g> <g > <title>grow_heap (39,224,955 samples, 0.24%)</title><rect x="1143.9" y="229" width="2.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> <text x="1146.89" y="239.5" ></text> </g> <g > <title>__mem_cgroup_charge (3,461,902 samples, 0.02%)</title><rect x="303.6" y="389" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="306.58" y="399.5" ></text> </g> <g > <title>do_vmi_align_munmap (1,728,623 samples, 0.01%)</title><rect x="10.5" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> <text x="13.51" y="383.5" ></text> </g> <g > <title>malloc_consolidate (1,469,475 samples, 0.01%)</title><rect x="1138.2" y="325" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="1141.16" y="335.5" ></text> </g> <g > <title>_mm512_stream_load_si512 (384,094,614 samples, 2.35%)</title><rect x="791.9" y="469" width="27.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="794.86" y="479.5" >_..</text> </g> <g > <title>std::vector<int, std::allocator<int> >::vector (3,431,863 samples, 0.02%)</title><rect x="943.2" y="453" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> <text x="946.24" y="463.5" ></text> </g> <g > <title>tlb_batch_pages_flush (14,688,744 samples, 0.09%)</title><rect x="10.8" y="357" width="1.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" /> <text x="13.81" y="367.5" ></text> </g> <g > <title>do_mprotect_pkey (20,421,763 samples, 0.12%)</title><rect x="1138.3" y="229" width="1.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="1141.33" y="239.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (50,596,001 samples, 0.31%)</title><rect x="1133.1" y="405" width="3.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1136.09" y="415.5" ></text> </g> <g > <title>asm_exc_page_fault (1,833,508,599 samples, 11.22%)</title><rect x="303.1" y="485" width="132.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="306.08" y="495.5" >asm_exc_page_fault</text> </g> <g > <title>Filter<unsigned long, LT, (1,678,013,429 samples, 10.27%)</title><rect x="821.3" y="501" width="121.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="824.31" y="511.5" >Filter<unsigned..</text> </g> <g > <title>qi_submit_sync (8,586,262 samples, 0.05%)</title><rect x="1138.3" y="133" width="0.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="1141.33" y="143.5" ></text> </g> <g > <title>clear_page_erms (1,694,345 samples, 0.01%)</title><rect x="31.1" y="213" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="34.05" y="223.5" ></text> </g> <g > <title>clear_page_erms (3,430,412 samples, 0.02%)</title><rect x="941.6" y="325" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="944.59" y="335.5" ></text> </g> <g > <title>accfg_wq_get_first (8,186,564 samples, 0.05%)</title><rect x="1146.9" y="309" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="1149.87" y="319.5" ></text> </g> <g > <title>__libc_openat64 (2,565,568 samples, 0.02%)</title><rect x="1146.9" y="197" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> <text x="1149.94" y="207.5" ></text> </g> <g > <title>__page_cache_release (1,728,698 samples, 0.01%)</title><rect x="18.1" y="165" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> <text x="21.06" y="175.5" ></text> </g> <g > <title>page_remove_rmap (3,459,855 samples, 0.02%)</title><rect x="30.6" y="165" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> <text x="33.55" y="175.5" ></text> </g> <g > <title>scheduler_tick (7,117,074 samples, 0.04%)</title><rect x="942.0" y="357" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="944.99" y="367.5" ></text> </g> <g > <title>vma_complete (1,732,102 samples, 0.01%)</title><rect x="12.1" y="213" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> <text x="15.12" y="223.5" ></text> </g> </g> </svg>
|