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

2385 lines
111 KiB

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="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>release_pages (52,708,279 samples, 0.10%)</title><rect x="567.8" y="357" width="1.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="570.78" y="367.5" ></text>
</g>
<g >
<title>aggr_j (6,104,856,818 samples, 11.92%)</title><rect x="867.1" y="517" width="140.7" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="870.12" y="527.5" >aggr_j</text>
</g>
<g >
<title>dml::core::dispatcher::hw_device::initialize_new_device (10,597,924 samples, 0.02%)</title><rect x="1133.3" y="325" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1136.31" y="335.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (260,795,386 samples, 0.51%)</title><rect x="458.3" y="325" width="6.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="461.34" y="335.5" ></text>
</g>
<g >
<title>free_unref_page_prepare (11,193,897 samples, 0.02%)</title><rect x="15.6" y="309" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="18.64" y="319.5" ></text>
</g>
<g >
<title>error_entry (19,445,388 samples, 0.04%)</title><rect x="147.1" y="485" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="150.07" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_openat (4,893,850 samples, 0.01%)</title><rect x="1133.3" y="149" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="1136.32" y="159.5" ></text>
</g>
<g >
<title>memcg_check_events (2,082,895,253 samples, 4.07%)</title><rect x="476.5" y="357" width="48.0" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="479.54" y="367.5" >memc..</text>
</g>
<g >
<title>__get_vma_policy (6,052,375 samples, 0.01%)</title><rect x="593.3" y="373" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="596.27" y="383.5" ></text>
</g>
<g >
<title>policy_node (11,237,982 samples, 0.02%)</title><rect x="593.4" y="373" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="596.41" y="383.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,740,573,708 samples, 3.40%)</title><rect x="92.5" y="421" width="40.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="95.48" y="431.5" >__h..</text>
</g>
<g >
<title>up_read (54,454,946 samples, 0.11%)</title><rect x="602.8" y="437" width="1.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="605.77" y="447.5" ></text>
</g>
<g >
<title>mmap_region (12,738,596 samples, 0.02%)</title><rect x="147.6" y="389" width="0.3" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="150.59" y="399.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (18,251,466 samples, 0.04%)</title><rect x="119.8" y="357" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="122.84" y="367.5" ></text>
</g>
<g >
<title>kthread_blkcg (5,187,501 samples, 0.01%)</title><rect x="422.5" y="357" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="425.46" y="367.5" ></text>
</g>
<g >
<title>__pte_alloc (4,825,833 samples, 0.01%)</title><rect x="109.5" y="389" width="0.1" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="112.49" y="399.5" ></text>
</g>
<g >
<title>__mem_cgroup_uncharge_list (24,144,483 samples, 0.05%)</title><rect x="31.3" y="309" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="34.28" y="319.5" ></text>
</g>
<g >
<title>folio_add_lru (612,805,660 samples, 1.20%)</title><rect x="555.2" y="389" width="14.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="558.15" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (8,778,490 samples, 0.02%)</title><rect x="128.3" y="325" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="131.33" y="335.5" ></text>
</g>
<g >
<title>do_user_addr_fault (38,214,263 samples, 0.07%)</title><rect x="1126.6" y="453" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1129.59" y="463.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (7,679,459 samples, 0.02%)</title><rect x="320.8" y="469" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="323.83" y="479.5" ></text>
</g>
<g >
<title>__rcu_read_lock (24,197,159 samples, 0.05%)</title><rect x="552.5" y="357" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="555.52" y="367.5" ></text>
</g>
<g >
<title>check_preemption_disabled (6,898,806 samples, 0.01%)</title><rect x="18.0" y="277" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="20.99" y="287.5" ></text>
</g>
<g >
<title>qi_submit_sync (42,245,564 samples, 0.08%)</title><rect x="19.5" y="309" width="0.9" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="22.46" y="319.5" ></text>
</g>
<g >
<title>check_preemption_disabled (19,006,854 samples, 0.04%)</title><rect x="557.5" y="373" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="560.52" y="383.5" ></text>
</g>
<g >
<title>check_preemption_disabled (156,498,969 samples, 0.31%)</title><rect x="103.0" y="341" width="3.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="105.97" y="351.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (115,813,924 samples, 0.23%)</title><rect x="550.7" y="373" width="2.6" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="553.67" y="383.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (40,627,227 samples, 0.08%)</title><rect x="579.4" y="341" width="0.9" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="582.41" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (374,402,804 samples, 0.73%)</title><rect x="122.1" y="357" width="8.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="125.10" y="367.5" ></text>
</g>
<g >
<title>dsacache::Cache::GetCacheNode (6,787,704 samples, 0.01%)</title><rect x="1128.1" y="485" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="1131.12" y="495.5" ></text>
</g>
<g >
<title>dsacache::Cache::GetCacheNode (19,011,999 samples, 0.04%)</title><rect x="1007.3" y="485" width="0.4" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="1010.25" y="495.5" ></text>
</g>
<g >
<title>change_protection (201,181,727 samples, 0.39%)</title><rect x="1128.4" y="117" width="4.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1131.43" y="127.5" ></text>
</g>
<g >
<title>check_preemption_disabled (11,365,460 samples, 0.02%)</title><rect x="116.6" y="309" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="119.55" y="319.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (6,897,820 samples, 0.01%)</title><rect x="41.6" y="277" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="44.60" y="287.5" ></text>
</g>
<g >
<title>__folio_throttle_swaprate (38,895,583 samples, 0.08%)</title><rect x="421.7" y="389" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="424.68" y="399.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (12,203,410 samples, 0.02%)</title><rect x="102.7" y="341" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="105.69" y="351.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (7,917,062 samples, 0.02%)</title><rect x="147.7" y="341" width="0.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="150.68" y="351.5" ></text>
</g>
<g >
<title>vm_normal_page (16,383,619 samples, 0.03%)</title><rect x="43.2" y="341" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="46.23" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,184,268 samples, 0.01%)</title><rect x="428.2" y="357" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="431.19" y="367.5" ></text>
</g>
<g >
<title>vma_alloc_folio (737,893,285 samples, 1.44%)</title><rect x="577.4" y="389" width="17.0" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="580.42" y="399.5" ></text>
</g>
<g >
<title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (5,186,627 samples, 0.01%)</title><rect x="1133.9" y="517" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1136.89" y="527.5" ></text>
</g>
<g >
<title>check_preemption_disabled (12,072,500 samples, 0.02%)</title><rect x="41.1" y="261" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="44.06" y="271.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (16,533,531 samples, 0.03%)</title><rect x="1127.7" y="421" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1130.68" y="431.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (6,896,516 samples, 0.01%)</title><rect x="32.2" y="293" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="35.22" y="303.5" ></text>
</g>
<g >
<title>__GI___mmap64 (14,975,543 samples, 0.03%)</title><rect x="147.6" y="485" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="150.58" y="495.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (28,519,367 samples, 0.06%)</title><rect x="565.5" y="325" width="0.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="568.49" y="335.5" ></text>
</g>
<g >
<title>charge_memcg (5,532,425,220 samples, 10.81%)</title><rect x="423.2" y="373" width="127.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="426.15" y="383.5" >charge_memcg</text>
</g>
<g >
<title>syscall (10,248,023 samples, 0.02%)</title><rect x="1007.5" y="469" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1010.45" y="479.5" ></text>
</g>
<g >
<title>Aggregation&lt;unsigned long, Sum, (6,079,728,229 samples, 11.88%)</title><rect x="867.1" y="501" width="140.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="870.12" y="511.5" >Aggregation&lt;unsig..</text>
</g>
<g >
<title>check_preemption_disabled (24,263,995 samples, 0.05%)</title><rect x="133.5" y="389" width="0.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="136.53" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4,003,098,524 samples, 7.82%)</title><rect x="54.8" y="485" width="92.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="57.81" y="495.5" >asm_exc_pag..</text>
</g>
<g >
<title>__folio_throttle_swaprate (22,634,579 samples, 0.04%)</title><rect x="94.8" y="389" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="97.79" y="399.5" ></text>
</g>
<g >
<title>p4d_offset (12,965,965 samples, 0.03%)</title><rect x="594.4" y="405" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="597.42" y="415.5" ></text>
</g>
<g >
<title>grow_heap (209,389,327 samples, 0.41%)</title><rect x="1128.4" y="229" width="4.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1131.43" y="239.5" ></text>
</g>
<g >
<title>blk_cgroup_congested (20,052,243 samples, 0.04%)</title><rect x="94.8" y="373" width="0.5" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="97.85" y="383.5" ></text>
</g>
<g >
<title>do_filp_open (4,455,340 samples, 0.01%)</title><rect x="1133.3" y="117" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1136.32" y="127.5" ></text>
</g>
<g >
<title>numa_bitmask_alloc (4,453,868 samples, 0.01%)</title><rect x="1007.3" y="453" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="1010.27" y="463.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (257,002,243 samples, 0.50%)</title><rect x="37.3" y="309" width="5.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="40.30" y="319.5" ></text>
</g>
<g >
<title>free_unref_page_list (232,831,460 samples, 0.45%)</title><rect x="31.9" y="309" width="5.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="34.94" y="319.5" ></text>
</g>
<g >
<title>qi_flush_dev_iotlb_pasid (27,600,815 samples, 0.05%)</title><rect x="10.6" y="325" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="13.55" y="335.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (5,174,961 samples, 0.01%)</title><rect x="15.0" y="261" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="17.97" y="271.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (9,488,485 samples, 0.02%)</title><rect x="40.8" y="261" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="43.84" y="271.5" ></text>
</g>
<g >
<title>mprotect_fixup (208,874,517 samples, 0.41%)</title><rect x="1128.4" y="133" width="4.8" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1131.43" y="143.5" ></text>
</g>
<g >
<title>QDPBench (51,196,000,579 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>inc_mm_counter (85,556,117 samples, 0.17%)</title><rect x="574.7" y="389" width="2.0" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="577.73" y="399.5" ></text>
</g>
<g >
<title>check_preemption_disabled (347,960,254 samples, 0.68%)</title><rect x="464.4" y="325" width="8.0" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="467.36" y="335.5" ></text>
</g>
<g >
<title>std::__new_allocator&lt;dml::detail::ml::utils::structure_from&lt;dml::detail::descriptor, dml::detail::completion_record&gt; &gt;::allocate (214,949,728 samples, 0.42%)</title><rect x="1128.3" y="325" width="5.0" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1131.30" y="335.5" ></text>
</g>
<g >
<title>dml::core::dispatcher::hw_dispatcher::initialize_hw (11,868,621 samples, 0.02%)</title><rect x="1133.3" y="341" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1136.28" y="351.5" ></text>
</g>
<g >
<title>advise_stack_range (5,811,133 samples, 0.01%)</title><rect x="1133.7" y="533" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1136.69" y="543.5" ></text>
</g>
<g >
<title>check_preemption_disabled (6,193,135 samples, 0.01%)</title><rect x="120.1" y="341" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="123.08" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (8,328,027,484 samples, 16.27%)</title><rect x="412.2" y="469" width="192.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="415.22" y="479.5" >exc_page_fault</text>
</g>
<g >
<title>_mm512_mask_add_epi64 (1,637,756,210 samples, 3.20%)</title><rect x="952.3" y="469" width="37.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="955.28" y="479.5" >_mm..</text>
</g>
<g >
<title>__handle_mm_fault (7,789,560,264 samples, 15.22%)</title><rect x="415.9" y="421" width="179.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="418.90" y="431.5" >__handle_mm_fault</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,439,475 samples, 0.01%)</title><rect x="1128.2" y="453" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1131.18" y="463.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (84,694,281 samples, 0.17%)</title><rect x="604.4" y="453" width="2.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="607.41" y="463.5" ></text>
</g>
<g >
<title>charge_memcg (565,367,043 samples, 1.10%)</title><rect x="95.6" y="373" width="13.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="98.64" y="383.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (6,027,347 samples, 0.01%)</title><rect x="115.6" y="293" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="118.65" y="303.5" ></text>
</g>
<g >
<title>__x64_sys_get_mempolicy (7,453,000 samples, 0.01%)</title><rect x="1007.5" y="421" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="1010.47" y="431.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (10,348,548 samples, 0.02%)</title><rect x="28.1" y="293" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="31.12" y="303.5" ></text>
</g>
<g >
<title>__do_sys_clone3 (12,937,992 samples, 0.03%)</title><rect x="866.8" y="517" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="869.82" y="527.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (41,316,055 samples, 0.08%)</title><rect x="137.5" y="469" width="1.0" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="140.55" y="479.5" ></text>
</g>
<g >
<title>free_swap_cache (12,071,475 samples, 0.02%)</title><rect x="29.3" y="309" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="32.27" y="319.5" ></text>
</g>
<g >
<title>tick_sched_handle (7,679,459 samples, 0.02%)</title><rect x="320.8" y="389" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="323.83" y="399.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (6,916,629 samples, 0.01%)</title><rect x="596.9" y="389" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="599.88" y="399.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_statistics (213,849,573 samples, 0.42%)</title><rect x="96.2" y="357" width="5.0" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="99.24" y="367.5" ></text>
</g>
<g >
<title>dml::submit&lt;dml::hardware, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt; &gt; (214,949,728 samples, 0.42%)</title><rect x="1128.3" y="421" width="5.0" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1131.30" y="431.5" ></text>
</g>
<g >
<title>handle_mm_fault (29,947,547 samples, 0.06%)</title><rect x="1126.6" y="437" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1129.59" y="447.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (52,719,383 samples, 0.10%)</title><rect x="573.3" y="357" width="1.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="576.33" y="367.5" ></text>
</g>
<g >
<title>__irqentry_text_end (7,779,280 samples, 0.02%)</title><rect x="378.3" y="485" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="381.32" y="495.5" ></text>
</g>
<g >
<title>__mod_zone_page_state (31,978,239 samples, 0.06%)</title><rect x="567.0" y="325" width="0.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="570.04" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (53,586,323 samples, 0.10%)</title><rect x="587.5" y="325" width="1.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="590.54" y="335.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (35,627,896 samples, 0.07%)</title><rect x="108.7" y="373" width="0.8" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="111.67" y="383.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (237,708,968 samples, 0.46%)</title><rect x="562.3" y="341" width="5.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="565.30" y="351.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (17,644,723 samples, 0.03%)</title><rect x="1127.7" y="485" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1130.66" y="495.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (13,548,659 samples, 0.03%)</title><rect x="1127.7" y="325" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1130.70" y="335.5" ></text>
</g>
<g >
<title>Sum&lt;unsigned long&gt;::simd_agg (1,637,756,210 samples, 3.20%)</title><rect x="952.3" y="485" width="37.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="955.28" y="495.5" >Sum..</text>
</g>
<g >
<title>device_parse (8,667,141 samples, 0.02%)</title><rect x="1133.3" y="277" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1136.31" y="287.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (6,054,769 samples, 0.01%)</title><rect x="413.5" y="437" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="416.47" y="447.5" ></text>
</g>
<g >
<title>count_memcg_events.constprop.0 (59,357,552 samples, 0.12%)</title><rect x="132.7" y="421" width="1.4" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="135.72" y="431.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (9,488,492 samples, 0.02%)</title><rect x="41.8" y="277" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="44.76" y="287.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (5,173,381 samples, 0.01%)</title><rect x="867.0" y="405" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="869.96" y="415.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (8,769,197 samples, 0.02%)</title><rect x="109.3" y="357" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="112.29" y="367.5" ></text>
</g>
<g >
<title>pte_alloc_one (10,374,798 samples, 0.02%)</title><rect x="553.3" y="373" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="556.34" y="383.5" ></text>
</g>
<g >
<title>main (37,159,085,518 samples, 72.58%)</title><rect x="10.4" y="517" width="856.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="13.35" y="527.5" >main</text>
</g>
<g >
<title>do_anonymous_page (28,572,888 samples, 0.06%)</title><rect x="1126.6" y="405" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1129.60" y="415.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (7,679,459 samples, 0.02%)</title><rect x="320.8" y="421" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="323.83" y="431.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (129,647,384 samples, 0.25%)</title><rect x="491.5" y="341" width="3.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="494.52" y="351.5" ></text>
</g>
<g >
<title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (5,186,627 samples, 0.01%)</title><rect x="1133.9" y="533" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1136.89" y="543.5" ></text>
</g>
<g >
<title>check_preemption_disabled (10,346,755 samples, 0.02%)</title><rect x="18.3" y="293" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="21.32" y="303.5" ></text>
</g>
<g >
<title>policy_nodemask (51,791,473 samples, 0.10%)</title><rect x="131.0" y="373" width="1.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="133.96" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (9,312,892 samples, 0.02%)</title><rect x="428.3" y="357" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="431.31" y="367.5" ></text>
</g>
<g >
<title>mod_lruvec_page_state.constprop.0 (5,186,872 samples, 0.01%)</title><rect x="553.5" y="357" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="556.46" y="367.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (16,355,591 samples, 0.03%)</title><rect x="98.3" y="325" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="101.28" y="335.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (120,552,539 samples, 0.24%)</title><rect x="117.6" y="389" width="2.8" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="120.58" y="399.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (24,080,793 samples, 0.05%)</title><rect x="115.3" y="325" width="0.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="118.34" y="335.5" ></text>
</g>
<g >
<title>qi_flush_dev_iotlb_pasid (27,592,601 samples, 0.05%)</title><rect x="18.8" y="325" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="21.82" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,439,475 samples, 0.01%)</title><rect x="1128.2" y="437" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1131.18" y="447.5" ></text>
</g>
<g >
<title>intel_invalidate_range (5,811,133 samples, 0.01%)</title><rect x="1133.7" y="405" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1136.69" y="415.5" ></text>
</g>
<g >
<title>__tlb_remove_page_size (7,761,283 samples, 0.02%)</title><rect x="23.4" y="341" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="26.41" y="351.5" ></text>
</g>
<g >
<title>pud_val (12,969,218 samples, 0.03%)</title><rect x="595.1" y="405" width="0.3" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="598.14" y="415.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (12,071,475 samples, 0.02%)</title><rect x="29.3" y="325" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="32.27" y="335.5" ></text>
</g>
<g >
<title>release_pages (24,481,735 samples, 0.05%)</title><rect x="116.8" y="357" width="0.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="119.81" y="367.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (82,866,016 samples, 0.16%)</title><rect x="118.4" y="373" width="1.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="121.41" y="383.5" ></text>
</g>
<g >
<title>debug_smp_processor_id (76,082,188 samples, 0.15%)</title><rect x="472.4" y="325" width="1.7" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="475.38" y="335.5" ></text>
</g>
<g >
<title>qi_submit_sync (27,592,601 samples, 0.05%)</title><rect x="18.8" y="309" width="0.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="21.82" y="319.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (21,009,124 samples, 0.04%)</title><rect x="138.0" y="437" width="0.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="141.01" y="447.5" ></text>
</g>
<g >
<title>check_preemption_disabled (19,865,367 samples, 0.04%)</title><rect x="574.1" y="341" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="577.09" y="351.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (59,712,839 samples, 0.12%)</title><rect x="122.8" y="341" width="1.4" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="125.82" y="351.5" ></text>
</g>
<g >
<title>sum_check (7,506,033,272 samples, 14.66%)</title><rect x="148.0" y="501" width="173.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="151.01" y="511.5" >sum_check</text>
</g>
<g >
<title>sync_regs (716,147,497 samples, 1.40%)</title><rect x="606.4" y="469" width="16.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="609.36" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,446,084,556 samples, 2.82%)</title><rect x="10.4" y="485" width="33.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="13.35" y="495.5" >en..</text>
</g>
<g >
<title>debug_smp_processor_id (6,049,220 samples, 0.01%)</title><rect x="558.0" y="373" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="560.96" y="383.5" ></text>
</g>
<g >
<title>__handle_mm_fault (29,086,417 samples, 0.06%)</title><rect x="1126.6" y="421" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1129.59" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,893,850 samples, 0.01%)</title><rect x="1133.3" y="165" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1136.32" y="175.5" ></text>
</g>
<g >
<title>in_lock_functions (7,782,211 samples, 0.02%)</title><rect x="554.9" y="357" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="557.87" y="367.5" ></text>
</g>
<g >
<title>perf_iterate_sb.constprop.0 (7,917,062 samples, 0.02%)</title><rect x="147.7" y="357" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="150.68" y="367.5" ></text>
</g>
<g >
<title>qi_submit_sync (13,797,540 samples, 0.03%)</title><rect x="23.1" y="293" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="26.09" y="303.5" ></text>
</g>
<g >
<title>mtree_range_walk (36,506,379 samples, 0.07%)</title><rect x="135.8" y="405" width="0.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="138.80" y="415.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (170,232,441 samples, 0.33%)</title><rect x="583.6" y="325" width="3.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="586.61" y="335.5" ></text>
</g>
<g >
<title>Vector_Loader&lt;unsigned long, (744,562,723 samples, 1.45%)</title><rect x="990.0" y="485" width="17.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="993.03" y="495.5" ></text>
</g>
<g >
<title>pmd_page_vaddr (7,779,371 samples, 0.02%)</title><rect x="576.8" y="389" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="579.84" y="399.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (134,523,882 samples, 0.26%)</title><rect x="26.1" y="325" width="3.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="29.05" y="335.5" ></text>
</g>
<g >
<title>memcg_check_events (234,546,968 samples, 0.46%)</title><rect x="101.2" y="357" width="5.4" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="104.17" y="367.5" ></text>
</g>
<g >
<title>charge_memcg (7,480,344 samples, 0.01%)</title><rect x="1126.6" y="373" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1129.60" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12,937,992 samples, 0.03%)</title><rect x="866.8" y="549" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="869.82" y="559.5" ></text>
</g>
<g >
<title>__GI___mmap64 (14,975,543 samples, 0.03%)</title><rect x="147.6" y="469" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="150.58" y="479.5" ></text>
</g>
<g >
<title>do_mmap (13,252,429 samples, 0.03%)</title><rect x="147.6" y="405" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="150.58" y="415.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (4,807,293 samples, 0.01%)</title><rect x="100.7" y="341" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="103.73" y="351.5" ></text>
</g>
<g >
<title>__slab_alloc.isra.0 (5,173,381 samples, 0.01%)</title><rect x="867.0" y="389" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="869.96" y="399.5" ></text>
</g>
<g >
<title>check_preemption_disabled (13,828,299 samples, 0.03%)</title><rect x="573.0" y="325" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="576.02" y="335.5" ></text>
</g>
<g >
<title>__mmu_notifier_invalidate_range_end (201,181,727 samples, 0.39%)</title><rect x="1128.4" y="101" width="4.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1131.43" y="111.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6,913,047 samples, 0.01%)</title><rect x="422.8" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="425.83" y="383.5" ></text>
</g>
<g >
<title>perf_event_mmap (5,036,520 samples, 0.01%)</title><rect x="1133.1" y="117" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1136.07" y="127.5" ></text>
</g>
<g >
<title>intel_invalidate_range (69,838,165 samples, 0.14%)</title><rect x="18.8" y="341" width="1.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="21.82" y="351.5" ></text>
</g>
<g >
<title>dml::detail::ml::impl::hardware::submit (12,752,896 samples, 0.02%)</title><rect x="1133.3" y="405" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1136.26" y="415.5" ></text>
</g>
<g >
<title>__list_add_valid (20,737,220 samples, 0.04%)</title><rect x="586.4" y="309" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="589.36" y="319.5" ></text>
</g>
<g >
<title>__mmu_notifier_invalidate_range (18,972,896 samples, 0.04%)</title><rect x="23.0" y="341" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="25.97" y="351.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,893,850 samples, 0.01%)</title><rect x="1133.3" y="181" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1136.32" y="191.5" ></text>
</g>
<g >
<title>qi_flush_dev_iotlb_pasid (90,923,354 samples, 0.18%)</title><rect x="1128.4" y="69" width="2.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1131.43" y="79.5" ></text>
</g>
<g >
<title>__alloc_pages (652,324,426 samples, 1.27%)</title><rect x="578.2" y="357" width="15.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="581.23" y="367.5" ></text>
</g>
<g >
<title>__free_one_page (58,629,895 samples, 0.11%)</title><rect x="13.9" y="293" width="1.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="16.89" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (5,186,301 samples, 0.01%)</title><rect x="562.0" y="341" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="565.00" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (13,824,435 samples, 0.03%)</title><rect x="588.8" y="325" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="591.77" y="335.5" ></text>
</g>
<g >
<title>dml::detail::ml::buffer&lt;std::allocator&lt;unsigned char&gt;, dml::detail::descriptor, dml::detail::completion_record&gt;::buffer (214,949,728 samples, 0.42%)</title><rect x="1128.3" y="373" width="5.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1131.30" y="383.5" ></text>
</g>
<g >
<title>check_preemption_disabled (14,661,066 samples, 0.03%)</title><rect x="35.2" y="245" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="38.24" y="255.5" ></text>
</g>
<g >
<title>unsigned int std::uniform_int_distribution&lt;unsigned long&gt;::_S_nd&lt;unsigned long, std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;, unsigned int&gt; (7,039,361,847 samples, 13.75%)</title><rect x="704.6" y="453" width="162.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="707.57" y="463.5" >unsigned int std::un..</text>
</g>
<g >
<title>perf_event_task_tick (13,548,659 samples, 0.03%)</title><rect x="1127.7" y="341" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1130.70" y="351.5" ></text>
</g>
<g >
<title>__list_add_valid (6,899,733 samples, 0.01%)</title><rect x="14.6" y="277" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="17.59" y="287.5" ></text>
</g>
<g >
<title>pmd_pfn (8,640,684 samples, 0.02%)</title><rect x="577.0" y="389" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="580.02" y="399.5" ></text>
</g>
<g >
<title>intel_invalidate_range (55,187,637 samples, 0.11%)</title><rect x="10.6" y="341" width="1.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="13.55" y="351.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (16,533,531 samples, 0.03%)</title><rect x="1127.7" y="453" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1130.68" y="463.5" ></text>
</g>
<g >
<title>free_unref_page_commit (26,737,180 samples, 0.05%)</title><rect x="35.9" y="293" width="0.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="38.87" y="303.5" ></text>
</g>
<g >
<title>update_process_times (7,679,459 samples, 0.02%)</title><rect x="320.8" y="373" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="323.83" y="383.5" ></text>
</g>
<g >
<title>sync_regs (372,014,368 samples, 0.73%)</title><rect x="138.5" y="469" width="8.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="141.50" y="479.5" ></text>
</g>
<g >
<title>check_preemption_disabled (35,439,582 samples, 0.07%)</title><rect x="605.4" y="421" width="0.8" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="608.36" y="431.5" ></text>
</g>
<g >
<title>debug_smp_processor_id (7,778,582 samples, 0.02%)</title><rect x="606.2" y="421" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="609.18" y="431.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (5,682,124 samples, 0.01%)</title><rect x="1127.3" y="437" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1130.28" y="447.5" ></text>
</g>
<g >
<title>unmap_page_range (1,005,492,248 samples, 1.96%)</title><rect x="20.4" y="357" width="23.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="23.43" y="367.5" >u..</text>
</g>
<g >
<title>auto dml::detail::submit&lt;dml::hardware, dml::mem_copy_operation, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt;, dml::submit&lt;dml::hardware, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt; &gt; (228,473,295 samples, 0.45%)</title><rect x="1128.3" y="437" width="5.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1131.30" y="447.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (11,236,347 samples, 0.02%)</title><rect x="553.1" y="357" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="556.08" y="367.5" ></text>
</g>
<g >
<title>dsacache::Cache::ExecuteCopy (228,473,295 samples, 0.45%)</title><rect x="1128.3" y="469" width="5.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1131.30" y="479.5" ></text>
</g>
<g >
<title>intel_invalidate_range (201,181,727 samples, 0.39%)</title><rect x="1128.4" y="85" width="4.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1131.43" y="95.5" ></text>
</g>
<g >
<title>qi_submit_sync (90,923,354 samples, 0.18%)</title><rect x="1128.4" y="53" width="2.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1131.43" y="63.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (5,333,942 samples, 0.01%)</title><rect x="133.3" y="389" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="136.30" y="399.5" ></text>
</g>
<g >
<title>__free_one_page (122,450,173 samples, 0.24%)</title><rect x="32.8" y="277" width="2.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="35.75" y="287.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (233,995,661 samples, 0.46%)</title><rect x="569.3" y="389" width="5.4" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="572.33" y="399.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (209,389,327 samples, 0.41%)</title><rect x="1128.4" y="149" width="4.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1131.43" y="159.5" ></text>
</g>
<g >
<title>policy_nodemask (32,844,665 samples, 0.06%)</title><rect x="593.7" y="373" width="0.7" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="596.67" y="383.5" ></text>
</g>
<g >
<title>preempt_count_add (6,537,320 samples, 0.01%)</title><rect x="110.4" y="373" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="113.42" y="383.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (7,679,459 samples, 0.02%)</title><rect x="320.8" y="325" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="323.83" y="335.5" ></text>
</g>
<g >
<title>preempt_count_add (14,697,153 samples, 0.03%)</title><rect x="554.7" y="373" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="557.71" y="383.5" ></text>
</g>
<g >
<title>all (51,196,000,582 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>__list_add_valid (5,175,618 samples, 0.01%)</title><rect x="31.2" y="309" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="34.16" y="319.5" ></text>
</g>
<g >
<title>dml::core::dispatcher::hw_dispatcher::hw_dispatcher (11,868,621 samples, 0.02%)</title><rect x="1133.3" y="357" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1136.28" y="367.5" ></text>
</g>
<g >
<title>__irqentry_text_end (8,281,604 samples, 0.02%)</title><rect x="10.1" y="565" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="13.11" y="575.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (128,213,280 samples, 0.25%)</title><rect x="113.9" y="341" width="2.9" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="116.86" y="351.5" ></text>
</g>
<g >
<title>inc_mm_counter (54,606,929 samples, 0.11%)</title><rect x="120.4" y="389" width="1.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="123.36" y="399.5" ></text>
</g>
<g >
<title>mtree_range_walk (63,113,187 samples, 0.12%)</title><rect x="601.3" y="405" width="1.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="604.32" y="415.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (149,181,975 samples, 0.29%)</title><rect x="32.4" y="293" width="3.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="35.43" y="303.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (5,811,133 samples, 0.01%)</title><rect x="1133.7" y="469" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1136.69" y="479.5" ></text>
</g>
<g >
<title>clear_page_erms (81,251,197 samples, 0.16%)</title><rect x="128.6" y="325" width="1.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="131.61" y="335.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (90,739,272 samples, 0.18%)</title><rect x="604.3" y="469" width="2.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="607.27" y="479.5" ></text>
</g>
<g >
<title>folio_add_lru (7,982,057 samples, 0.02%)</title><rect x="1126.8" y="389" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1129.84" y="399.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (65,677,627 samples, 0.13%)</title><rect x="571.8" y="357" width="1.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="574.82" y="367.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (12,474,939 samples, 0.02%)</title><rect x="127.3" y="309" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="130.33" y="319.5" ></text>
</g>
<g >
<title>auto dml::detail::ml::make_mem_move_task&lt;std::allocator&lt;unsigned char&gt; &gt; (214,949,728 samples, 0.42%)</title><rect x="1128.3" y="405" width="5.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1131.30" y="415.5" ></text>
</g>
<g >
<title>__count_memcg_events (49,199,350 samples, 0.10%)</title><rect x="133.0" y="405" width="1.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="135.95" y="415.5" ></text>
</g>
<g >
<title>release_pages (300,901,400 samples, 0.59%)</title><rect x="11.9" y="341" width="6.9" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="14.89" y="351.5" ></text>
</g>
<g >
<title>Filter&lt;unsigned long, LT, (5,218,225,108 samples, 10.19%)</title><rect x="1007.8" y="501" width="120.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1010.85" y="511.5" >Filter&lt;unsigne..</text>
</g>
<g >
<title>check_preemption_disabled (1,303,282,835 samples, 2.55%)</title><rect x="494.5" y="341" width="30.0" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="497.51" y="351.5" >ch..</text>
</g>
<g >
<title>wqs_init (8,667,141 samples, 0.02%)</title><rect x="1133.3" y="293" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1136.31" y="303.5" ></text>
</g>
<g >
<title>numa_alloc_onnode (18,422,041 samples, 0.04%)</title><rect x="147.6" y="501" width="0.4" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="150.58" y="511.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6,542,321 samples, 0.01%)</title><rect x="109.1" y="357" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="112.13" y="367.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (11,209,459 samples, 0.02%)</title><rect x="42.6" y="277" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="45.57" y="287.5" ></text>
</g>
<g >
<title>perf_event_mmap (7,917,062 samples, 0.02%)</title><rect x="147.7" y="373" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="150.68" y="383.5" ></text>
</g>
<g >
<title>uncharge_folio (10,349,848 samples, 0.02%)</title><rect x="13.1" y="309" width="0.2" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="16.06" y="319.5" ></text>
</g>
<g >
<title>folio_mapping (8,263,496 samples, 0.02%)</title><rect x="113.7" y="341" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="116.67" y="351.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (77,773,726 samples, 0.15%)</title><rect x="574.9" y="373" width="1.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="577.91" y="383.5" ></text>
</g>
<g >
<title>preempt_count_sub (7,777,329 samples, 0.02%)</title><rect x="588.9" y="309" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="591.91" y="319.5" ></text>
</g>
<g >
<title>set_pte (6,053,127 samples, 0.01%)</title><rect x="577.3" y="389" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="580.28" y="399.5" ></text>
</g>
<g >
<title>__folio_alloc (377,498,024 samples, 0.74%)</title><rect x="122.0" y="373" width="8.7" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="125.03" y="383.5" ></text>
</g>
<g >
<title>__irqentry_text_end (7,399,701 samples, 0.01%)</title><rect x="54.6" y="485" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="57.64" y="495.5" ></text>
</g>
<g >
<title>void fill_mt&lt;unsigned long&gt; (23,680,863,101 samples, 46.26%)</title><rect x="321.0" y="501" width="545.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="324.01" y="511.5" >void fill_mt&lt;unsigned long&gt;</text>
</g>
<g >
<title>__bitmap_intersects (12,103,165 samples, 0.02%)</title><rect x="594.1" y="341" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="597.15" y="351.5" ></text>
</g>
<g >
<title>std::allocator&lt;dml::detail::ml::utils::structure_from&lt;dml::detail::descriptor, dml::detail::completion_record&gt; &gt;::allocate (214,949,728 samples, 0.42%)</title><rect x="1128.3" y="341" width="5.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1131.30" y="351.5" ></text>
</g>
<g >
<title>__bitmap_intersects (30,281,058 samples, 0.06%)</title><rect x="131.2" y="357" width="0.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="134.16" y="367.5" ></text>
</g>
<g >
<title>check_preemption_disabled (14,451,746 samples, 0.03%)</title><rect x="100.8" y="341" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="103.84" y="351.5" ></text>
</g>
<g >
<title>path_openat (4,455,340 samples, 0.01%)</title><rect x="1133.3" y="101" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1136.32" y="111.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (126,721,284 samples, 0.25%)</title><rect x="15.9" y="325" width="2.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="18.90" y="335.5" ></text>
</g>
<g >
<title>__mem_cgroup_uncharge_list (12,937,530 samples, 0.03%)</title><rect x="13.0" y="325" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="16.00" y="335.5" ></text>
</g>
<g >
<title>_start (37,160,744,652 samples, 72.59%)</title><rect x="10.3" y="565" width="856.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="13.32" y="575.5" >_start</text>
</g>
<g >
<title>unmap_region (1,436,595,546 samples, 2.81%)</title><rect x="10.5" y="389" width="33.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="13.49" y="399.5" >un..</text>
</g>
<g >
<title>exc_page_fault (2,032,313,547 samples, 3.97%)</title><rect x="90.6" y="469" width="46.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="93.63" y="479.5" >exc_..</text>
</g>
<g >
<title>__mem_cgroup_charge (9,713,896 samples, 0.02%)</title><rect x="1126.6" y="389" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1129.60" y="399.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (43,218,164 samples, 0.08%)</title><rect x="605.4" y="437" width="1.0" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="608.36" y="447.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (60,366,886 samples, 0.12%)</title><rect x="26.4" y="309" width="1.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="29.35" y="319.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (24,208,250 samples, 0.05%)</title><rect x="586.8" y="309" width="0.6" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="589.84" y="319.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (5,176,133 samples, 0.01%)</title><rect x="35.1" y="245" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="38.12" y="255.5" ></text>
</g>
<g >
<title>do_anonymous_page (7,558,781,189 samples, 14.76%)</title><rect x="420.2" y="405" width="174.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="423.21" y="415.5" >do_anonymous_page</text>
</g>
<g >
<title>__mod_node_page_state (31,910,261 samples, 0.06%)</title><rect x="40.6" y="277" width="0.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="43.60" y="287.5" ></text>
</g>
<g >
<title>preempt_count_add (7,776,035 samples, 0.02%)</title><rect x="569.0" y="373" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="572.00" y="383.5" ></text>
</g>
<g >
<title>__bitmap_intersects (7,404,254 samples, 0.01%)</title><rect x="132.0" y="341" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="134.98" y="351.5" ></text>
</g>
<g >
<title>check_preemption_disabled (65,685,265 samples, 0.13%)</title><rect x="475.0" y="341" width="1.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="478.03" y="351.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (59,169,480 samples, 0.12%)</title><rect x="1126.3" y="485" width="1.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1129.29" y="495.5" ></text>
</g>
<g >
<title>debug_smp_processor_id (764,412,561 samples, 1.49%)</title><rect x="531.1" y="341" width="17.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="534.10" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,446,084,556 samples, 2.82%)</title><rect x="10.4" y="469" width="33.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="13.35" y="479.5" >do..</text>
</g>
<g >
<title>folio_batch_move_lru (472,791,106 samples, 0.92%)</title><rect x="558.1" y="373" width="10.9" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="561.10" y="383.5" ></text>
</g>
<g >
<title>tick_sched_timer (16,533,531 samples, 0.03%)</title><rect x="1127.7" y="405" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1130.68" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (29,145,045 samples, 0.06%)</title><rect x="127.7" y="325" width="0.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="130.66" y="335.5" ></text>
</g>
<g >
<title>folio_add_lru (297,426,407 samples, 0.58%)</title><rect x="110.6" y="389" width="6.9" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="113.63" y="399.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (87,339,301 samples, 0.17%)</title><rect x="125.6" y="325" width="2.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="128.65" y="335.5" ></text>
</g>
<g >
<title>__folio_alloc (658,377,440 samples, 1.29%)</title><rect x="578.1" y="373" width="15.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="581.09" y="383.5" ></text>
</g>
<g >
<title>vma_alloc_folio (445,208,498 samples, 0.87%)</title><rect x="121.9" y="389" width="10.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="124.89" y="399.5" ></text>
</g>
<g >
<title>std::allocator_traits&lt;std::allocator&lt;dml::detail::ml::utils::structure_from&lt;dml::detail::descriptor, dml::detail::completion_record&gt; &gt; &gt;::allocate (214,949,728 samples, 0.42%)</title><rect x="1128.3" y="357" width="5.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1131.30" y="367.5" ></text>
</g>
<g >
<title>scan_b (240,991,297 samples, 0.47%)</title><rect x="1128.1" y="517" width="5.6" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="1131.12" y="527.5" ></text>
</g>
<g >
<title>cpuset_nodemask_valid_mems_allowed (12,736,238 samples, 0.02%)</title><rect x="131.9" y="357" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="134.86" y="367.5" ></text>
</g>
<g >
<title>__split_vma (5,175,874 samples, 0.01%)</title><rect x="10.4" y="389" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="13.35" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (12,937,992 samples, 0.03%)</title><rect x="866.8" y="533" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="869.82" y="543.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (177,202,272 samples, 0.35%)</title><rect x="598.7" y="437" width="4.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="601.69" y="447.5" ></text>
</g>
<g >
<title>check_preemption_disabled (4,796,679 samples, 0.01%)</title><rect x="115.8" y="293" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="118.79" y="303.5" ></text>
</g>
<g >
<title>dsacache::Cache::SubmitTask (229,070,210 samples, 0.45%)</title><rect x="1128.3" y="485" width="5.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1131.29" y="495.5" ></text>
</g>
<g >
<title>__mod_node_page_state (25,394,846 samples, 0.05%)</title><rect x="119.3" y="341" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="122.25" y="351.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14,975,543 samples, 0.03%)</title><rect x="147.6" y="453" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="150.58" y="463.5" ></text>
</g>
<g >
<title>debug_smp_processor_id (8,622,811 samples, 0.02%)</title><rect x="28.9" y="293" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="31.90" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,853,092,701 samples, 3.62%)</title><rect x="91.4" y="437" width="42.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="94.41" y="447.5" >hand..</text>
</g>
<g >
<title>do_syscall_64 (209,389,327 samples, 0.41%)</title><rect x="1128.4" y="181" width="4.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1131.43" y="191.5" ></text>
</g>
<g >
<title>count_memcg_events.constprop.0 (132,239,867 samples, 0.26%)</title><rect x="595.6" y="421" width="3.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="598.62" y="431.5" ></text>
</g>
<g >
<title>std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;::_M_gen_rand (1,754,123,569 samples, 3.43%)</title><rect x="826.4" y="421" width="40.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="829.39" y="431.5" >std..</text>
</g>
<g >
<title>down_read_trylock (69,146,736 samples, 0.14%)</title><rect x="599.4" y="421" width="1.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="602.39" y="431.5" ></text>
</g>
<g >
<title>scan_a (5,219,196,992 samples, 10.19%)</title><rect x="1007.8" y="517" width="120.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1010.83" y="527.5" >scan_a</text>
</g>
<g >
<title>__mem_cgroup_charge (615,102,235 samples, 1.20%)</title><rect x="95.3" y="389" width="14.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="98.31" y="399.5" ></text>
</g>
<g >
<title>check_preemption_disabled (19,022,724 samples, 0.04%)</title><rect x="566.5" y="309" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="569.55" y="319.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (6,050,212 samples, 0.01%)</title><rect x="574.6" y="373" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="577.59" y="383.5" ></text>
</g>
<g >
<title>__mod_zone_page_state (23,194,936 samples, 0.05%)</title><rect x="116.3" y="325" width="0.5" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="119.28" y="335.5" ></text>
</g>
<g >
<title>preempt_count_add (8,645,056 samples, 0.02%)</title><rect x="603.7" y="421" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="606.73" y="431.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (7,782,352 samples, 0.02%)</title><rect x="573.9" y="341" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="576.91" y="351.5" ></text>
</g>
<g >
<title>intel_invalidate_range (18,972,896 samples, 0.04%)</title><rect x="23.0" y="325" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="25.97" y="335.5" ></text>
</g>
<g >
<title>preempt_count_add (7,910,132 samples, 0.02%)</title><rect x="137.1" y="421" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="140.09" y="431.5" ></text>
</g>
<g >
<title>vma_alloc_folio (5,817,196 samples, 0.01%)</title><rect x="1127.1" y="389" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1130.12" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_munmap (1,442,633,722 samples, 2.82%)</title><rect x="10.4" y="453" width="33.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="13.35" y="463.5" >__..</text>
</g>
<g >
<title>try_charge_memcg (1,133,283,682 samples, 2.21%)</title><rect x="524.5" y="357" width="26.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="527.55" y="367.5" >t..</text>
</g>
<g >
<title>exit_to_user_mode_prepare (40,455,338 samples, 0.08%)</title><rect x="137.6" y="453" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="140.57" y="463.5" ></text>
</g>
<g >
<title>__mod_node_page_state (51,742,237 samples, 0.10%)</title><rect x="26.6" y="293" width="1.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="29.55" y="303.5" ></text>
</g>
<g >
<title>perf_event_init_task (9,487,420 samples, 0.02%)</title><rect x="866.9" y="469" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="869.88" y="479.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (109,438,099 samples, 0.21%)</title><rect x="134.1" y="437" width="2.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="137.12" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_lock (63,953,100 samples, 0.12%)</title><rect x="553.6" y="389" width="1.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="556.58" y="399.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (16,491,655 samples, 0.03%)</title><rect x="115.9" y="325" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="118.90" y="335.5" ></text>
</g>
<g >
<title>check_preemption_disabled (6,896,706 samples, 0.01%)</title><rect x="15.1" y="261" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="18.09" y="271.5" ></text>
</g>
<g >
<title>__alloc_pages (5,187,926 samples, 0.01%)</title><rect x="553.3" y="357" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="556.34" y="367.5" ></text>
</g>
<g >
<title>do_madvise (5,811,133 samples, 0.01%)</title><rect x="1133.7" y="453" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1136.69" y="463.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (80,379,073 samples, 0.16%)</title><rect x="456.5" y="325" width="1.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="459.49" y="335.5" ></text>
</g>
<g >
<title>page_remove_rmap (244,036,722 samples, 0.48%)</title><rect x="23.6" y="341" width="5.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="26.65" y="351.5" ></text>
</g>
<g >
<title>perf_iterate_sb.constprop.0 (5,036,520 samples, 0.01%)</title><rect x="1133.1" y="101" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1136.07" y="111.5" ></text>
</g>
<g >
<title>main (5,186,627 samples, 0.01%)</title><rect x="1133.9" y="565" width="0.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="1136.89" y="575.5" ></text>
</g>
<g >
<title>pte_alloc_one (4,825,833 samples, 0.01%)</title><rect x="109.5" y="373" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="112.49" y="383.5" ></text>
</g>
<g >
<title>check_preemption_disabled (6,479,558 samples, 0.01%)</title><rect x="119.7" y="325" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="122.69" y="335.5" ></text>
</g>
<g >
<title>release_pages (593,315,450 samples, 1.16%)</title><rect x="29.6" y="325" width="13.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="32.55" y="335.5" ></text>
</g>
<g >
<title>tick_sched_timer (7,679,459 samples, 0.02%)</title><rect x="320.8" y="405" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="323.83" y="415.5" ></text>
</g>
<g >
<title>check_preemption_disabled (70,871,080 samples, 0.14%)</title><rect x="597.0" y="389" width="1.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="600.03" y="399.5" ></text>
</g>
<g >
<title>add_wq (8,667,141 samples, 0.02%)</title><rect x="1133.3" y="245" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1136.31" y="255.5" ></text>
</g>
<g >
<title>try_charge_memcg (90,530,113 samples, 0.18%)</title><rect x="106.6" y="357" width="2.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="109.58" y="367.5" ></text>
</g>
<g >
<title>sysmalloc (211,429,950 samples, 0.41%)</title><rect x="1128.4" y="245" width="4.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1131.39" y="255.5" ></text>
</g>
<g >
<title>operator new (214,949,728 samples, 0.42%)</title><rect x="1128.3" y="309" width="5.0" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1131.30" y="319.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (18,971,182 samples, 0.04%)</title><rect x="18.1" y="309" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="21.14" y="319.5" ></text>
</g>
<g >
<title>do_vmi_align_munmap (1,442,633,722 samples, 2.82%)</title><rect x="10.4" y="405" width="33.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="13.35" y="415.5" >do..</text>
</g>
<g >
<title>check_preemption_disabled (7,779,084 samples, 0.02%)</title><rect x="576.5" y="357" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="579.52" y="367.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (14,975,543 samples, 0.03%)</title><rect x="147.6" y="421" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="150.58" y="431.5" ></text>
</g>
<g >
<title>__libc_openat64 (4,893,850 samples, 0.01%)</title><rect x="1133.3" y="197" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1136.32" y="207.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (157,290,019 samples, 0.31%)</title><rect x="571.0" y="373" width="3.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="573.96" y="383.5" ></text>
</g>
<g >
<title>check_preemption_disabled (61,772,249 samples, 0.12%)</title><rect x="99.3" y="325" width="1.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="102.27" y="335.5" ></text>
</g>
<g >
<title>folio_lruvec_lock_irqsave (6,047,890 samples, 0.01%)</title><rect x="559.4" y="357" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="562.41" y="367.5" ></text>
</g>
<g >
<title>dml::core::hardware_device::submit (12,752,896 samples, 0.02%)</title><rect x="1133.3" y="389" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1136.26" y="399.5" ></text>
</g>
<g >
<title>qi_flush_dev_iotlb_pasid (5,175,356 samples, 0.01%)</title><rect x="23.0" y="309" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="25.97" y="319.5" ></text>
</g>
<g >
<title>qi_flush_piotlb (13,797,540 samples, 0.03%)</title><rect x="23.1" y="309" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="26.09" y="319.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (10,374,314 samples, 0.02%)</title><rect x="573.7" y="341" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="576.67" y="351.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (5,188,830 samples, 0.01%)</title><rect x="566.4" y="309" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="569.43" y="319.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (9,482,915 samples, 0.02%)</title><rect x="27.1" y="277" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="30.07" y="287.5" ></text>
</g>
<g >
<title>__mod_node_page_state (24,198,689 samples, 0.05%)</title><rect x="565.6" y="309" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="568.59" y="319.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (50,024,604 samples, 0.10%)</title><rect x="41.3" y="293" width="1.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="44.34" y="303.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (303,488,983 samples, 0.59%)</title><rect x="11.8" y="357" width="7.0" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="14.83" y="367.5" ></text>
</g>
<g >
<title>debug_smp_processor_id (6,022,653 samples, 0.01%)</title><rect x="108.2" y="341" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="111.19" y="351.5" ></text>
</g>
<g >
<title>__pte_alloc (10,374,798 samples, 0.02%)</title><rect x="553.3" y="389" width="0.3" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="556.34" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (8,017,729,013 samples, 15.66%)</title><rect x="413.9" y="437" width="184.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="416.89" y="447.5" >handle_mm_fault</text>
</g>
<g >
<title>accfg_wq_get_first (8,667,141 samples, 0.02%)</title><rect x="1133.3" y="309" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1136.31" y="319.5" ></text>
</g>
<g >
<title>check_preemption_disabled (9,503,613 samples, 0.02%)</title><rect x="565.9" y="293" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="568.93" y="303.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (7,679,459 samples, 0.02%)</title><rect x="320.8" y="453" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="323.83" y="463.5" ></text>
</g>
<g >
<title>page_counter_try_charge (82,117,644 samples, 0.16%)</title><rect x="548.7" y="341" width="1.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="551.72" y="351.5" ></text>
</g>
<g >
<title>__mod_node_page_state (19,093,740 samples, 0.04%)</title><rect x="115.5" y="309" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="118.46" y="319.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (16,533,531 samples, 0.03%)</title><rect x="1127.7" y="437" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1130.68" y="447.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (5,169,643 samples, 0.01%)</title><rect x="116.4" y="309" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="119.43" y="319.5" ></text>
</g>
<g >
<title>irqentry_enter (6,046,216 samples, 0.01%)</title><rect x="604.0" y="453" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="607.03" y="463.5" ></text>
</g>
<g >
<title>preempt_count_add (15,552,403 samples, 0.03%)</title><rect x="588.4" y="309" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="591.41" y="319.5" ></text>
</g>
<g >
<title>zap_page_range_single (5,811,133 samples, 0.01%)</title><rect x="1133.7" y="437" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="1136.69" y="447.5" ></text>
</g>
<g >
<title>do_sys_openat2 (4,893,850 samples, 0.01%)</title><rect x="1133.3" y="133" width="0.1" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="1136.32" y="143.5" ></text>
</g>
<g >
<title>preempt_count_add (12,102,048 samples, 0.02%)</title><rect x="592.9" y="325" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="595.87" y="335.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (43,985,238 samples, 0.09%)</title><rect x="40.3" y="293" width="1.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="43.33" y="303.5" ></text>
</g>
<g >
<title>copy_process (12,076,968 samples, 0.02%)</title><rect x="866.8" y="485" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="869.82" y="495.5" ></text>
</g>
<g >
<title>lru_add_fn (178,139,222 samples, 0.35%)</title><rect x="112.7" y="357" width="4.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="115.71" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,248,023 samples, 0.02%)</title><rect x="1007.5" y="453" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1010.45" y="463.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (6,052,056 samples, 0.01%)</title><rect x="572.9" y="325" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="575.88" y="335.5" ></text>
</g>
<g >
<title>do_user_addr_fault (8,304,698,141 samples, 16.22%)</title><rect x="412.6" y="453" width="191.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="415.62" y="463.5" >do_user_addr_fault</text>
</g>
<g >
<title>__mod_node_page_state (55,310,667 samples, 0.11%)</title><rect x="572.1" y="341" width="1.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="575.06" y="351.5" ></text>
</g>
<g >
<title>inherit_event.isra.0 (9,487,420 samples, 0.02%)</title><rect x="866.9" y="437" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="869.88" y="447.5" ></text>
</g>
<g >
<title>update_process_times (15,726,866 samples, 0.03%)</title><rect x="1127.7" y="373" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1130.70" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_lock (42,338,862 samples, 0.08%)</title><rect x="109.6" y="389" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="112.60" y="399.5" ></text>
</g>
<g >
<title>lru_add_fn (356,992,904 samples, 0.70%)</title><rect x="559.6" y="357" width="8.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="562.55" y="367.5" ></text>
</g>
<g >
<title>qi_flush_piotlb (27,586,822 samples, 0.05%)</title><rect x="11.2" y="325" width="0.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="14.19" y="335.5" ></text>
</g>
<g >
<title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (10,546,449,255 samples, 20.60%)</title><rect x="623.7" y="485" width="243.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="626.74" y="495.5" >unsigned long std::uniform_int_d..</text>
</g>
<g >
<title>_mm512_stream_load_si512 (744,562,723 samples, 1.45%)</title><rect x="990.0" y="469" width="17.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="993.03" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,811,133 samples, 0.01%)</title><rect x="1133.7" y="501" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1136.69" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (209,389,327 samples, 0.41%)</title><rect x="1128.4" y="197" width="4.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1131.43" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (7,679,459 samples, 0.02%)</title><rect x="320.8" y="485" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="323.83" y="495.5" ></text>
</g>
<g >
<title>_mid_memalign (214,949,728 samples, 0.42%)</title><rect x="1128.3" y="293" width="5.0" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1131.30" y="303.5" ></text>
</g>
<g >
<title>preempt_count_add (15,311,608 samples, 0.03%)</title><rect x="135.2" y="405" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="138.19" y="415.5" ></text>
</g>
<g >
<title>__count_memcg_events (106,303,142 samples, 0.21%)</title><rect x="596.2" y="405" width="2.5" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="599.22" y="415.5" ></text>
</g>
<g >
<title>preempt_count_add (7,049,342 samples, 0.01%)</title><rect x="130.5" y="325" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="133.50" y="335.5" ></text>
</g>
<g >
<title>preempt_count_add (6,543,516 samples, 0.01%)</title><rect x="128.2" y="309" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="131.18" y="319.5" ></text>
</g>
<g >
<title>__mod_zone_page_state (5,186,354 samples, 0.01%)</title><rect x="587.4" y="309" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="590.40" y="319.5" ></text>
</g>
<g >
<title>qi_submit_sync (27,600,815 samples, 0.05%)</title><rect x="10.6" y="309" width="0.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="13.55" y="319.5" ></text>
</g>
<g >
<title>dml::detail::ml::task&lt;std::allocator&lt;unsigned char&gt; &gt;::task (214,949,728 samples, 0.42%)</title><rect x="1128.3" y="389" width="5.0" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1131.30" y="399.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (7,679,459 samples, 0.02%)</title><rect x="320.8" y="437" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="323.83" y="447.5" ></text>
</g>
<g >
<title>check_preemption_disabled (23,283,575 samples, 0.05%)</title><rect x="28.4" y="293" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="31.36" y="303.5" ></text>
</g>
<g >
<title>accfg_get_param_long (6,285,189 samples, 0.01%)</title><rect x="1133.3" y="229" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1136.31" y="239.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (38,903,410 samples, 0.08%)</title><rect x="474.1" y="341" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="477.13" y="351.5" ></text>
</g>
<g >
<title>pmd_val (6,047,707 samples, 0.01%)</title><rect x="595.0" y="405" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="598.00" y="415.5" ></text>
</g>
<g >
<title>preempt_count_add (13,829,087 samples, 0.03%)</title><rect x="600.6" y="405" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="603.60" y="415.5" ></text>
</g>
<g >
<title>tick_sched_handle (15,726,866 samples, 0.03%)</title><rect x="1127.7" y="389" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1130.70" y="399.5" ></text>
</g>
<g >
<title>uncharge_folio (18,971,713 samples, 0.04%)</title><rect x="31.4" y="293" width="0.4" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="34.40" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,248,023 samples, 0.02%)</title><rect x="1007.5" y="437" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1010.45" y="447.5" ></text>
</g>
<g >
<title>__list_add_valid (11,210,452 samples, 0.02%)</title><rect x="34.5" y="261" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="37.52" y="271.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (12,069,913 samples, 0.02%)</title><rect x="35.6" y="277" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="38.57" y="287.5" ></text>
</g>
<g >
<title>__GI_munmap (1,446,084,556 samples, 2.82%)</title><rect x="10.4" y="501" width="33.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="13.35" y="511.5" >__..</text>
</g>
<g >
<title>std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;::operator (2,429,077,277 samples, 4.74%)</title><rect x="1134.0" y="533" width="56.0" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1137.01" y="543.5" >std::..</text>
</g>
<g >
<title>check_preemption_disabled (19,287,090 samples, 0.04%)</title><rect x="138.0" y="421" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="141.03" y="431.5" ></text>
</g>
<g >
<title>__mmu_notifier_invalidate_range_end (69,838,165 samples, 0.14%)</title><rect x="18.8" y="357" width="1.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="21.82" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,022,843,060 samples, 3.95%)</title><rect x="90.7" y="453" width="46.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="93.72" y="463.5" >do_u..</text>
</g>
<g >
<title>__mod_lruvec_state (22,422,367 samples, 0.04%)</title><rect x="17.6" y="309" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="20.63" y="319.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (6,045,661 samples, 0.01%)</title><rect x="599.2" y="421" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="602.25" y="431.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (7,758,378 samples, 0.02%)</title><rect x="34.8" y="261" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="37.78" y="271.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (38,908,400 samples, 0.08%)</title><rect x="566.1" y="325" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="569.15" y="335.5" ></text>
</g>
<g >
<title>do_vmi_munmap (1,442,633,722 samples, 2.82%)</title><rect x="10.4" y="421" width="33.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="13.35" y="431.5" >do..</text>
</g>
<g >
<title>__mod_zone_page_state (16,384,138 samples, 0.03%)</title><rect x="14.9" y="277" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="17.87" y="287.5" ></text>
</g>
<g >
<title>folio_mapping (7,779,902 samples, 0.02%)</title><rect x="562.1" y="341" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="565.12" y="351.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (30,559,640 samples, 0.06%)</title><rect x="119.1" y="357" width="0.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="122.13" y="367.5" ></text>
</g>
<g >
<title>perf_event_task_tick (7,679,459 samples, 0.02%)</title><rect x="320.8" y="341" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="323.83" y="351.5" ></text>
</g>
<g >
<title>mas_walk (43,382,631 samples, 0.08%)</title><rect x="135.6" y="421" width="1.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="138.64" y="431.5" ></text>
</g>
<g >
<title>numa_node_of_cpu (7,901,696 samples, 0.02%)</title><rect x="1007.3" y="469" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1010.27" y="479.5" ></text>
</g>
<g >
<title>__mod_node_page_state (15,523,973 samples, 0.03%)</title><rect x="17.8" y="293" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="20.79" y="303.5" ></text>
</g>
<g >
<title>free_unref_page_list (110,356,941 samples, 0.22%)</title><rect x="13.4" y="325" width="2.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="16.36" y="335.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (605,386,925 samples, 1.18%)</title><rect x="29.3" y="341" width="13.9" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="32.27" y="351.5" ></text>
</g>
<g >
<title>openat (4,893,850 samples, 0.01%)</title><rect x="1133.3" y="213" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1136.32" y="223.5" ></text>
</g>
<g >
<title>__mmu_notifier_invalidate_range (55,187,637 samples, 0.11%)</title><rect x="10.6" y="357" width="1.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="13.55" y="367.5" ></text>
</g>
<g >
<title>error_entry (10,160,085 samples, 0.02%)</title><rect x="90.4" y="469" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="93.39" y="479.5" ></text>
</g>
<g >
<title>down_read_trylock (50,243,965 samples, 0.10%)</title><rect x="134.5" y="421" width="1.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="137.48" y="431.5" ></text>
</g>
<g >
<title>access_error (11,239,905 samples, 0.02%)</title><rect x="413.6" y="437" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="416.61" y="447.5" ></text>
</g>
<g >
<title>dsacache::Cache::Access (21,598,768 samples, 0.04%)</title><rect x="1007.3" y="501" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="1010.25" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (214,949,728 samples, 0.42%)</title><rect x="1128.3" y="261" width="5.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1131.30" y="271.5" ></text>
</g>
<g >
<title>dsacache::Cache::Access (240,484,366 samples, 0.47%)</title><rect x="1128.1" y="501" width="5.6" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="1131.12" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_lock (7,702,324 samples, 0.02%)</title><rect x="1132.9" y="37" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1135.87" y="47.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (209,389,327 samples, 0.41%)</title><rect x="1128.4" y="165" width="4.9" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1131.43" y="175.5" ></text>
</g>
<g >
<title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (10,504,101,100 samples, 20.52%)</title><rect x="624.7" y="469" width="242.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="627.72" y="479.5" >unsigned long std::uniform_int_d..</text>
</g>
<g >
<title>scheduler_tick (7,679,459 samples, 0.02%)</title><rect x="320.8" y="357" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="323.83" y="367.5" ></text>
</g>
<g >
<title>qi_submit_sync (5,175,356 samples, 0.01%)</title><rect x="23.0" y="293" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="25.97" y="303.5" ></text>
</g>
<g >
<title>__GI_mprotect (209,389,327 samples, 0.41%)</title><rect x="1128.4" y="213" width="4.9" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1131.43" y="223.5" ></text>
</g>
<g >
<title>start_thread (11,571,705,609 samples, 22.60%)</title><rect x="867.1" y="549" width="266.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="870.12" y="559.5" >start_thread</text>
</g>
<g >
<title>check_preemption_disabled (8,062,472 samples, 0.02%)</title><rect x="116.1" y="309" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="119.07" y="319.5" ></text>
</g>
<g >
<title>check_preemption_disabled (12,102,815 samples, 0.02%)</title><rect x="567.5" y="309" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="570.50" y="319.5" ></text>
</g>
<g >
<title>__GI_madvise (5,811,133 samples, 0.01%)</title><rect x="1133.7" y="517" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1136.69" y="527.5" ></text>
</g>
<g >
<title>kernel_get_mempolicy (7,453,000 samples, 0.01%)</title><rect x="1007.5" y="405" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1010.47" y="415.5" ></text>
</g>
<g >
<title>kernel_clone (12,937,992 samples, 0.03%)</title><rect x="866.8" y="501" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="869.82" y="511.5" ></text>
</g>
<g >
<title>dml::handler&lt;dml::mem_copy_operation, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt;::allocator_type&gt; dml::submit&lt;dml::hardware, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt; &gt; (228,473,295 samples, 0.45%)</title><rect x="1128.3" y="453" width="5.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1131.30" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,811,133 samples, 0.01%)</title><rect x="1133.7" y="485" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1136.69" y="495.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.32] (11,565,045,107 samples, 22.59%)</title><rect x="867.1" y="533" width="266.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="870.12" y="543.5" >[libstdc++.so.6.0.32]</text>
</g>
<g >
<title>free_pcppages_bulk (71,564,161 samples, 0.14%)</title><rect x="13.7" y="309" width="1.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="16.69" y="319.5" ></text>
</g>
<g >
<title>void fill_mt&lt;unsigned long&gt; (5,186,627 samples, 0.01%)</title><rect x="1133.9" y="549" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1136.89" y="559.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (50,994,413 samples, 0.10%)</title><rect x="120.4" y="373" width="1.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="123.44" y="383.5" ></text>
</g>
<g >
<title>free_unref_page_prepare (33,631,349 samples, 0.07%)</title><rect x="36.5" y="293" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="39.49" y="303.5" ></text>
</g>
<g >
<title>inherit_task_group.isra.0 (9,487,420 samples, 0.02%)</title><rect x="866.9" y="453" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="869.88" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (558,968,342 samples, 1.09%)</title><rect x="580.3" y="341" width="12.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="583.35" y="351.5" ></text>
</g>
<g >
<title>__mod_zone_page_state (26,737,013 samples, 0.05%)</title><rect x="35.0" y="261" width="0.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="37.96" y="271.5" ></text>
</g>
<g >
<title>access_error (5,680,591 samples, 0.01%)</title><rect x="91.3" y="437" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="94.28" y="447.5" ></text>
</g>
<g >
<title>pfn_pte (6,051,666 samples, 0.01%)</title><rect x="576.7" y="389" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="579.70" y="399.5" ></text>
</g>
<g >
<title>dml::core::dispatcher::hw_dispatcher::get_instance (11,868,621 samples, 0.02%)</title><rect x="1133.3" y="373" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1136.28" y="383.5" ></text>
</g>
<g >
<title>std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;::operator (3,983,113,625 samples, 7.78%)</title><rect x="775.0" y="437" width="91.8" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="778.02" y="447.5" >std::merse..</text>
</g>
<g >
<title>_int_memalign (214,949,728 samples, 0.42%)</title><rect x="1128.3" y="277" width="5.0" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1131.30" y="287.5" ></text>
</g>
<g >
<title>unmap_vmas (1,075,330,413 samples, 2.10%)</title><rect x="18.8" y="373" width="24.8" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="21.82" y="383.5" >u..</text>
</g>
<g >
<title>perf_iterate_ctx (5,036,520 samples, 0.01%)</title><rect x="1133.1" y="85" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="1136.07" y="95.5" ></text>
</g>
<g >
<title>page_counter_try_charge (13,089,432 samples, 0.03%)</title><rect x="108.3" y="341" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="111.33" y="351.5" ></text>
</g>
<g >
<title>check_preemption_disabled (220,193,615 samples, 0.43%)</title><rect x="526.0" y="341" width="5.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="529.02" y="351.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (26,962,924 samples, 0.05%)</title><rect x="98.7" y="325" width="0.6" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="101.65" y="335.5" ></text>
</g>
<g >
<title>pgd_none (7,778,092 samples, 0.02%)</title><rect x="594.7" y="405" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="597.72" y="415.5" ></text>
</g>
<g >
<title>qi_submit_sync (110,258,373 samples, 0.22%)</title><rect x="1130.5" y="53" width="2.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1133.53" y="63.5" ></text>
</g>
<g >
<title>cpuset_nodemask_valid_mems_allowed (16,423,197 samples, 0.03%)</title><rect x="594.0" y="357" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="597.05" y="367.5" ></text>
</g>
<g >
<title>qi_flush_piotlb (42,245,564 samples, 0.08%)</title><rect x="19.5" y="325" width="0.9" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="22.46" y="335.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (358,676,620 samples, 0.70%)</title><rect x="10.6" y="373" width="8.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.55" y="383.5" ></text>
</g>
<g >
<title>__vm_munmap (1,442,633,722 samples, 2.82%)</title><rect x="10.4" y="437" width="33.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="13.35" y="447.5" >__..</text>
</g>
<g >
<title>__rcu_read_unlock (6,913,905 samples, 0.01%)</title><rect x="423.0" y="373" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="425.99" y="383.5" ></text>
</g>
<g >
<title>__count_memcg_events (1,916,291,637 samples, 3.74%)</title><rect x="430.0" y="341" width="44.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="432.96" y="351.5" >__co..</text>
</g>
<g >
<title>__mod_zone_page_state (10,350,661 samples, 0.02%)</title><rect x="18.6" y="309" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="21.58" y="319.5" ></text>
</g>
<g >
<title>pgd_none (4,826,207 samples, 0.01%)</title><rect x="132.2" y="405" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="135.15" y="415.5" ></text>
</g>
<g >
<title>mas_walk (77,801,377 samples, 0.15%)</title><rect x="601.0" y="421" width="1.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="603.98" y="431.5" ></text>
</g>
<g >
<title>qi_flush_piotlb (110,258,373 samples, 0.22%)</title><rect x="1130.5" y="69" width="2.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="1133.53" y="79.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (58,635,941 samples, 0.11%)</title><rect x="27.7" y="309" width="1.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="30.74" y="319.5" ></text>
</g>
<g >
<title>clone3 (11,584,643,601 samples, 22.63%)</title><rect x="866.8" y="565" width="267.0" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="869.82" y="575.5" >clone3</text>
</g>
<g >
<title>__this_cpu_preempt_check (8,635,064 samples, 0.02%)</title><rect x="567.3" y="309" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="570.30" y="319.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (5,673,300,607 samples, 11.08%)</title><rect x="422.6" y="389" width="130.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="425.58" y="399.5" >__mem_cgroup_cha..</text>
</g>
<g >
<title>__sysfs_device_parse (8,667,141 samples, 0.02%)</title><rect x="1133.3" y="261" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1136.31" y="271.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (6,034,767 samples, 0.01%)</title><rect x="40.2" y="293" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="43.19" y="303.5" ></text>
</g>
<g >
<title>policy_node (7,657,304 samples, 0.01%)</title><rect x="130.8" y="373" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="133.78" y="383.5" ></text>
</g>
<g >
<title>syscall (4,439,475 samples, 0.01%)</title><rect x="1128.2" y="469" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1131.18" y="479.5" ></text>
</g>
<g >
<title>__libc_start_call_main (37,160,744,652 samples, 72.59%)</title><rect x="10.3" y="533" width="856.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="13.32" y="543.5" >__libc_start_call_main</text>
</g>
<g >
<title>exc_page_fault (38,214,263 samples, 0.07%)</title><rect x="1126.6" y="469" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1129.59" y="479.5" ></text>
</g>
<g >
<title>dsacache::Cache::SubmitTask (12,752,896 samples, 0.02%)</title><rect x="1133.3" y="421" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1136.26" y="431.5" ></text>
</g>
<g >
<title>check_preemption_disabled (19,837,844 samples, 0.04%)</title><rect x="42.0" y="277" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="44.98" y="287.5" ></text>
</g>
<g >
<title>__libc_start_main_impl (37,160,744,652 samples, 72.59%)</title><rect x="10.3" y="549" width="856.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="13.32" y="559.5" >__libc_start_main_impl</text>
</g>
<g >
<title>check_preemption_disabled (17,246,084 samples, 0.03%)</title><rect x="42.8" y="277" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="45.83" y="287.5" ></text>
</g>
<g >
<title>unsigned int std::uniform_int_distribution&lt;unsigned long&gt;::_S_nd&lt;unsigned long, std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;, unsigned int&gt; (2,429,077,277 samples, 4.74%)</title><rect x="1134.0" y="549" width="56.0" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1137.01" y="559.5" >unsig..</text>
</g>
<g >
<title>__mod_zone_page_state (31,906,268 samples, 0.06%)</title><rect x="42.5" y="293" width="0.7" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="45.49" y="303.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (16,782,425 samples, 0.03%)</title><rect x="1127.7" y="469" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1130.68" y="479.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (8,636,695 samples, 0.02%)</title><rect x="596.7" y="389" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="599.68" y="399.5" ></text>
</g>
<g >
<title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (2,429,077,277 samples, 4.74%)</title><rect x="1134.0" y="565" width="56.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1137.01" y="575.5" >unsig..</text>
</g>
<g >
<title>check_preemption_disabled (19,834,031 samples, 0.04%)</title><rect x="27.3" y="277" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="30.29" y="287.5" ></text>
</g>
<g >
<title>___slab_alloc (5,173,381 samples, 0.01%)</title><rect x="867.0" y="373" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="869.96" y="383.5" ></text>
</g>
<g >
<title>check_preemption_disabled (44,059,020 samples, 0.09%)</title><rect x="107.2" y="341" width="1.0" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="110.18" y="351.5" ></text>
</g>
<g >
<title>get_page_from_freelist (282,901,670 samples, 0.55%)</title><rect x="124.2" y="341" width="6.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="127.19" y="351.5" ></text>
</g>
<g >
<title>check_preemption_disabled (8,782,853 samples, 0.02%)</title><rect x="111.6" y="373" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="114.63" y="383.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (5,174,842 samples, 0.01%)</title><rect x="14.7" y="277" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="17.75" y="287.5" ></text>
</g>
<g >
<title>scheduler_tick (14,864,641 samples, 0.03%)</title><rect x="1127.7" y="357" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1130.70" y="367.5" ></text>
</g>
<g >
<title>pud_val (6,882,155 samples, 0.01%)</title><rect x="132.4" y="405" width="0.2" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="135.44" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (10,602,062,007 samples, 20.71%)</title><rect x="378.5" y="485" width="244.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="381.50" y="495.5" >asm_exc_page_fault</text>
</g>
<g >
<title>do_syscall_64 (14,975,543 samples, 0.03%)</title><rect x="147.6" y="437" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="150.58" y="447.5" ></text>
</g>
<g >
<title>free_unref_page_commit (12,938,068 samples, 0.03%)</title><rect x="15.3" y="309" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="18.34" y="319.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_statistics (2,082,259,880 samples, 4.07%)</title><rect x="428.5" y="357" width="48.0" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="431.55" y="367.5" >mem_..</text>
</g>
<g >
<title>__mmu_notifier_invalidate_range_end (5,811,133 samples, 0.01%)</title><rect x="1133.7" y="421" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1136.69" y="431.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,641,693,315 samples, 3.21%)</title><rect x="94.3" y="405" width="37.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="97.32" y="415.5" >do_..</text>
</g>
<g >
<title>__memset_avx512_unaligned_erms (4,505,100,311 samples, 8.80%)</title><rect x="43.7" y="501" width="103.8" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="46.68" y="511.5" >__memset_avx..</text>
</g>
<g >
<title>folio_batch_move_lru (237,550,002 samples, 0.46%)</title><rect x="111.9" y="373" width="5.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="114.90" y="383.5" ></text>
</g>
<g >
<title>qi_submit_sync (27,586,822 samples, 0.05%)</title><rect x="11.2" y="309" width="0.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="14.19" y="319.5" ></text>
</g>
<g >
<title>sync_regs (7,409,456 samples, 0.01%)</title><rect x="1127.5" y="469" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1130.49" y="479.5" ></text>
</g>
<g >
<title>__list_add_valid (8,625,309 samples, 0.02%)</title><rect x="36.3" y="277" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="39.29" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (156,238,867 samples, 0.31%)</title><rect x="589.2" y="325" width="3.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="592.17" y="335.5" ></text>
</g>
<g >
<title>__count_memcg_events (180,985,616 samples, 0.35%)</title><rect x="96.6" y="341" width="4.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="99.56" y="351.5" ></text>
</g>
<g >
<title>error_entry (38,027,670 samples, 0.07%)</title><rect x="622.9" y="485" width="0.8" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="625.86" y="495.5" ></text>
</g>
<g >
<title>blk_cgroup_congested (31,984,146 samples, 0.06%)</title><rect x="421.8" y="373" width="0.8" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="424.84" y="383.5" ></text>
</g>
<g >
<title>error_entry (28,522,680 samples, 0.06%)</title><rect x="411.6" y="469" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="414.56" y="479.5" ></text>
</g>
<g >
<title>irqentry_enter (5,165,357 samples, 0.01%)</title><rect x="137.3" y="453" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="140.35" y="463.5" ></text>
</g>
<g >
<title>perf_event_alloc (9,487,420 samples, 0.02%)</title><rect x="866.9" y="421" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="869.88" y="431.5" ></text>
</g>
<g >
<title>up_read (30,706,665 samples, 0.06%)</title><rect x="136.6" y="437" width="0.7" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="139.64" y="447.5" ></text>
</g>
</g>
</svg>