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.
 
 
 
 
 
 

2541 lines
123 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="662" onload="init(evt)" viewBox="0 0 1200 662" 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="662.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="645" > </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="645" > </text>
<g id="frames">
<g >
<title>[[kernel.kallsyms]] (13,838,204 samples, 0.02%)</title><rect x="966.1" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="969.05" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (52,582,122 samples, 0.09%)</title><rect x="63.3" y="325" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.26" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,581,259 samples, 0.06%)</title><rect x="1104.2" y="213" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.16" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,650,216 samples, 0.02%)</title><rect x="942.4" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="945.45" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,074,171 samples, 0.03%)</title><rect x="1108.7" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.71" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,457,723 samples, 0.02%)</title><rect x="1051.0" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1054.05" y="335.5" ></text>
</g>
<g >
<title>__GI_mprotect (9,972,283 samples, 0.02%)</title><rect x="1185.6" y="293" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1188.60" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,111,847 samples, 0.08%)</title><rect x="1109.3" y="165" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1112.25" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,997,398 samples, 0.01%)</title><rect x="652.1" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.12" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,647,063 samples, 0.02%)</title><rect x="1016.4" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.39" y="351.5" ></text>
</g>
<g >
<title>syscall (19,162,146 samples, 0.03%)</title><rect x="1103.7" y="485" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1106.67" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,992,482 samples, 0.12%)</title><rect x="1110.6" y="357" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.62" y="367.5" ></text>
</g>
<g >
<title>__libc_start_main_impl (47,034,233,602 samples, 83.69%)</title><rect x="63.1" y="565" width="987.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="66.12" y="575.5" >__libc_start_main_impl</text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,540,584 samples, 0.01%)</title><rect x="652.1" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.10" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,324,068,091 samples, 13.03%)</title><rect x="712.6" y="469" width="153.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="715.57" y="479.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (14,696,092 samples, 0.03%)</title><rect x="66.0" y="149" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="69.02" y="159.5" ></text>
</g>
<g >
<title>dsacache::CacheData::~CacheData (27,978,244,770 samples, 49.78%)</title><rect x="64.4" y="389" width="587.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="67.36" y="399.5" >dsacache::CacheData::~CacheData</text>
</g>
<g >
<title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (1,224,461,441 samples, 2.18%)</title><rect x="10.3" y="565" width="25.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="13.35" y="575.5" >u..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,939,586 samples, 0.04%)</title><rect x="1109.8" y="85" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1112.76" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,676,124 samples, 0.14%)</title><rect x="64.7" y="165" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.67" y="175.5" ></text>
</g>
<g >
<title>auto dml::detail::ml::make_mem_move_task&lt;std::allocator&lt;unsigned char&gt; &gt; (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="421" width="1.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1190.44" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (58,263,661 samples, 0.10%)</title><rect x="1110.8" y="325" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.76" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,614,253 samples, 0.02%)</title><rect x="1103.4" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.39" y="415.5" ></text>
</g>
<g >
<title>dml_wait_busy_poll (27,883,144,753 samples, 49.61%)</title><rect x="66.3" y="325" width="585.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="69.34" y="335.5" >dml_wait_busy_poll</text>
</g>
<g >
<title>[[kernel.kallsyms]] (56,894,061 samples, 0.10%)</title><rect x="63.2" y="357" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.17" y="367.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 (10,813,731 samples, 0.02%)</title><rect x="1185.6" y="405" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1188.58" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,469,680 samples, 0.01%)</title><rect x="1187.2" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.17" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,778,485 samples, 0.02%)</title><rect x="1189.1" y="469" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.15" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (92,507,760 samples, 0.16%)</title><rect x="64.4" y="325" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.38" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,647,063 samples, 0.02%)</title><rect x="1016.4" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.39" y="335.5" ></text>
</g>
<g >
<title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (8,778,281,021 samples, 15.62%)</title><rect x="866.3" y="501" width="184.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="869.34" y="511.5" >unsigned long std::unifo..</text>
</g>
<g >
<title>device_parse (16,212,211 samples, 0.03%)</title><rect x="1188.6" y="293" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1191.62" y="303.5" ></text>
</g>
<g >
<title>__GI_mprotect (50,154,117 samples, 0.09%)</title><rect x="1187.5" y="229" width="1.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1190.50" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,005,283,229 samples, 10.69%)</title><rect x="740.3" y="373" width="126.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="743.26" y="383.5" >[[kernel.kallsy..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,835,870 samples, 0.01%)</title><rect x="1188.7" y="133" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.69" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,143,140 samples, 0.01%)</title><rect x="1108.9" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.88" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,778,485 samples, 0.02%)</title><rect x="1189.1" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.15" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,484,485 samples, 0.05%)</title><rect x="1050.7" y="517" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.69" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,297,644 samples, 0.05%)</title><rect x="1186.5" y="341" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.51" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (259,363,157 samples, 0.46%)</title><rect x="1179.4" y="469" width="5.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1182.39" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (10,813,731 samples, 0.02%)</title><rect x="1185.6" y="341" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1188.58" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,113,218 samples, 0.02%)</title><rect x="1186.9" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.87" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,052,541 samples, 0.01%)</title><rect x="1050.5" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.53" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (80,579,994 samples, 0.14%)</title><rect x="1110.3" y="469" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.29" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,344,388 samples, 0.01%)</title><rect x="1108.0" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1110.98" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,004,974 samples, 0.01%)</title><rect x="1186.9" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.90" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,280,664 samples, 0.04%)</title><rect x="1185.1" y="341" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.10" y="351.5" ></text>
</g>
<g >
<title>dml::core::dispatcher::hw_dispatcher::initialize_hw (23,965,836 samples, 0.04%)</title><rect x="1188.6" y="357" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1191.57" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,484,485 samples, 0.05%)</title><rect x="1050.7" y="565" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.69" y="575.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 (50,149,163 samples, 0.09%)</title><rect x="36.1" y="565" width="1.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="39.13" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,052,541 samples, 0.01%)</title><rect x="1050.5" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.53" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (256,851,116 samples, 0.46%)</title><rect x="1179.4" y="421" width="5.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1182.44" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,604,051 samples, 0.01%)</title><rect x="1106.7" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1109.68" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,047,863 samples, 0.06%)</title><rect x="1104.2" y="229" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.15" y="239.5" ></text>
</g>
<g >
<title>__GI__IO_file_open (17,566,875 samples, 0.03%)</title><rect x="1108.7" y="421" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1111.66" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,967,068 samples, 0.17%)</title><rect x="1104.9" y="421" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.87" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (14,391,559 samples, 0.03%)</title><rect x="1050.9" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.92" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (56,894,061 samples, 0.10%)</title><rect x="63.2" y="389" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.17" y="399.5" ></text>
</g>
<g >
<title>dml::core::dispatcher::hw_queue::initialize_new_queue (4,914,889 samples, 0.01%)</title><rect x="1189.0" y="325" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1191.96" y="335.5" ></text>
</g>
<g >
<title>grow_heap (9,972,283 samples, 0.02%)</title><rect x="1185.6" y="309" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1188.60" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,783,041 samples, 0.05%)</title><rect x="865.8" y="277" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.78" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,785,866 samples, 0.01%)</title><rect x="942.5" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="945.47" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,344,388 samples, 0.01%)</title><rect x="1108.0" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1110.98" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,650,216 samples, 0.02%)</title><rect x="942.4" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="945.45" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,034,607 samples, 0.03%)</title><rect x="1185.1" y="293" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.15" y="303.5" ></text>
</g>
<g >
<title>dsacache::CacheData::WaitOnCompletion (27,884,008,166 samples, 49.61%)</title><rect x="66.3" y="373" width="585.5" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="69.32" y="383.5" >dsacache::CacheData::WaitOnCompletion</text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,912,912 samples, 0.03%)</title><rect x="1050.9" y="421" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.87" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,740,414 samples, 0.01%)</title><rect x="1187.2" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.16" y="367.5" ></text>
</g>
<g >
<title>_int_memalign (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="293" width="1.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1190.44" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (56,894,061 samples, 0.10%)</title><rect x="63.2" y="453" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.17" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,154,117 samples, 0.09%)</title><rect x="1187.5" y="165" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.50" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,316,287,736 samples, 13.02%)</title><rect x="712.7" y="421" width="153.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="715.73" y="431.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>scan_b (201,442,301 samples, 0.36%)</title><rect x="1184.9" y="533" width="4.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="1187.92" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,052,541 samples, 0.01%)</title><rect x="1050.5" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.53" y="303.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 (46,717,102 samples, 0.08%)</title><rect x="1109.2" y="341" width="1.0" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1112.20" y="351.5" ></text>
</g>
<g >
<title>dml::submit&lt;dml::hardware, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt; &gt; (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="437" width="1.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1190.44" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,636,857 samples, 0.04%)</title><rect x="1186.5" y="325" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.55" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,197,845 samples, 0.01%)</title><rect x="651.7" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.67" y="191.5" ></text>
</g>
<g >
<title>_int_malloc (35,828,488 samples, 0.06%)</title><rect x="1104.1" y="341" width="0.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1107.11" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,785,866 samples, 0.01%)</title><rect x="942.5" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="945.47" y="319.5" ></text>
</g>
<g >
<title>sysmalloc (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="261" width="1.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1190.44" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,484,485 samples, 0.05%)</title><rect x="1050.7" y="485" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.69" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,162,146 samples, 0.03%)</title><rect x="1103.7" y="453" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.67" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,047,863 samples, 0.06%)</title><rect x="1104.2" y="261" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.15" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,918,503 samples, 0.05%)</title><rect x="865.8" y="229" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.80" y="239.5" ></text>
</g>
<g >
<title>main (47,031,727,484 samples, 83.69%)</title><rect x="63.2" y="533" width="987.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="66.17" y="543.5" >main</text>
</g>
<g >
<title>Filter&lt;unsigned long, LT, (3,458,098,462 samples, 6.15%)</title><rect x="1112.2" y="517" width="72.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1115.23" y="527.5" >Filter&lt;u..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,835,870 samples, 0.01%)</title><rect x="1188.7" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.69" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (14,838,521 samples, 0.03%)</title><rect x="1104.6" y="149" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.55" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,356,058 samples, 0.01%)</title><rect x="1185.6" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.63" y="191.5" ></text>
</g>
<g >
<title>accfg_wq_get_first (16,212,211 samples, 0.03%)</title><rect x="1188.6" y="325" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1191.62" y="335.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 (46,717,102 samples, 0.08%)</title><rect x="1109.2" y="357" width="1.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1112.20" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (90,779,509 samples, 0.16%)</title><rect x="64.4" y="261" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.42" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,513,431 samples, 0.02%)</title><rect x="966.1" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="969.14" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,074,171 samples, 0.03%)</title><rect x="1108.7" y="293" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.71" y="303.5" ></text>
</g>
<g >
<title>__GI___nptl_deallocate_stack (6,540,584 samples, 0.01%)</title><rect x="652.1" y="485" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="655.10" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,623,013 samples, 0.03%)</title><rect x="1108.3" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.29" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,817,500 samples, 0.02%)</title><rect x="1103.4" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.40" y="399.5" ></text>
</g>
<g >
<title>dsacache::Cache::ExecuteCopy (78,330,121 samples, 0.14%)</title><rect x="1187.4" y="485" width="1.7" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1190.44" y="495.5" ></text>
</g>
<g >
<title>sysmalloc (35,828,488 samples, 0.06%)</title><rect x="1104.1" y="325" width="0.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1107.11" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,229,598 samples, 0.01%)</title><rect x="1103.4" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.44" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,370,691 samples, 0.01%)</title><rect x="1188.7" y="101" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.70" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (179,023,692 samples, 0.32%)</title><rect x="1181.1" y="357" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1184.08" y="367.5" ></text>
</g>
<g >
<title>dsacache::Cache::Clear (27,978,244,770 samples, 49.78%)</title><rect x="64.4" y="517" width="587.4" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="67.36" y="527.5" >dsacache::Cache::Clear</text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,870,294 samples, 0.02%)</title><rect x="651.8" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.82" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,333,273 samples, 0.04%)</title><rect x="1185.1" y="373" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.06" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,822,016 samples, 0.03%)</title><rect x="1185.2" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.17" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,378,720 samples, 0.02%)</title><rect x="966.1" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="969.12" y="319.5" ></text>
</g>
<g >
<title>allocate_stack (12,724,581 samples, 0.02%)</title><rect x="651.8" y="421" width="0.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="654.82" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (12,973,510 samples, 0.02%)</title><rect x="966.1" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="969.07" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,870,294 samples, 0.02%)</title><rect x="651.8" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.82" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,804,268 samples, 0.06%)</title><rect x="1185.8" y="405" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.81" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (12,330,911 samples, 0.02%)</title><rect x="1108.4" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.36" y="287.5" ></text>
</g>
<g >
<title>aggr_j (2,905,466,537 samples, 5.17%)</title><rect x="1051.2" y="533" width="61.0" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="1054.22" y="543.5" >aggr_j</text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,315,610 samples, 0.05%)</title><rect x="1185.0" y="453" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.99" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,804,268 samples, 0.06%)</title><rect x="1185.8" y="421" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.81" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,785,866 samples, 0.01%)</title><rect x="942.5" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="945.47" y="399.5" ></text>
</g>
<g >
<title>numa_alloc_onnode (146,910,655 samples, 0.26%)</title><rect x="1104.9" y="469" width="3.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="1107.87" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,152,354 samples, 0.04%)</title><rect x="1185.1" y="357" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.08" y="367.5" ></text>
</g>
<g >
<title>dml::detail::ml::task&lt;std::allocator&lt;unsigned char&gt; &gt;::task (10,813,731 samples, 0.02%)</title><rect x="1185.6" y="469" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1188.58" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (56,894,061 samples, 0.10%)</title><rect x="63.2" y="341" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.17" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,659,261 samples, 0.08%)</title><rect x="1107.0" y="325" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1109.98" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,066,302 samples, 0.01%)</title><rect x="651.7" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.65" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,104,752 samples, 0.01%)</title><rect x="1185.7" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.66" y="175.5" ></text>
</g>
<g >
<title>_int_memalign (35,828,488 samples, 0.06%)</title><rect x="1104.1" y="357" width="0.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1107.11" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,169,816 samples, 0.01%)</title><rect x="1186.9" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.91" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (48,567,551 samples, 0.09%)</title><rect x="1106.9" y="341" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1109.92" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (52,197,849 samples, 0.09%)</title><rect x="1106.8" y="389" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1109.84" y="399.5" ></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; (78,330,121 samples, 0.14%)</title><rect x="1187.4" y="453" width="1.7" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1190.44" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,052,541 samples, 0.01%)</title><rect x="1050.5" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.53" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (60,893,681 samples, 0.11%)</title><rect x="1110.7" y="341" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.70" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (80,579,994 samples, 0.14%)</title><rect x="1110.3" y="421" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.29" y="431.5" ></text>
</g>
<g >
<title>__nptl_free_stacks (6,540,584 samples, 0.01%)</title><rect x="652.1" y="453" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="655.10" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (259,363,157 samples, 0.46%)</title><rect x="1179.4" y="485" width="5.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1182.39" y="495.5" ></text>
</g>
<g >
<title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false&gt; &gt; &gt;::_M_deallocate_nodes (27,978,244,770 samples, 49.78%)</title><rect x="64.4" y="469" width="587.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="67.36" y="479.5" >std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::pa..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,154,117 samples, 0.09%)</title><rect x="1187.5" y="213" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.50" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_read (6,155,254 samples, 0.01%)</title><rect x="1187.2" y="421" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1190.16" y="431.5" ></text>
</g>
<g >
<title>__GI___mmap64 (93,967,068 samples, 0.17%)</title><rect x="1104.9" y="453" width="1.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1107.87" y="463.5" ></text>
</g>
<g >
<title>mbind (26,878,702 samples, 0.05%)</title><rect x="1186.5" y="453" width="0.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1189.50" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (12,902,294 samples, 0.02%)</title><rect x="1106.6" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1109.57" y="303.5" ></text>
</g>
<g >
<title>void std::allocator_traits&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false&gt; &gt; &gt;::destroy&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt; (27,978,244,770 samples, 49.78%)</title><rect x="64.4" y="437" width="587.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="67.36" y="447.5" >void std::allocator_traits&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::pair&lt;un..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (56,894,061 samples, 0.10%)</title><rect x="63.2" y="469" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.17" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,838,204 samples, 0.02%)</title><rect x="966.1" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="969.05" y="463.5" ></text>
</g>
<g >
<title>Aggregation&lt;unsigned long, Sum, (2,493,804,416 samples, 4.44%)</title><rect x="1051.2" y="517" width="52.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="1054.23" y="527.5" >Aggre..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (49,739,189 samples, 0.09%)</title><rect x="1187.5" y="133" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.51" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,854,853 samples, 0.10%)</title><rect x="1110.8" y="309" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.83" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,111,847 samples, 0.08%)</title><rect x="1109.3" y="181" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1112.25" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,636,433 samples, 0.08%)</title><rect x="1109.3" y="149" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1112.26" y="159.5" ></text>
</g>
<g >
<title>numa_node_size64 (59,279,404 samples, 0.11%)</title><rect x="1108.0" y="469" width="1.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1110.95" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,833,477 samples, 0.14%)</title><rect x="1110.4" y="389" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.37" y="399.5" ></text>
</g>
<g >
<title>_mm512_stream_load_si512 (1,931,677,068 samples, 3.44%)</title><rect x="1062.8" y="485" width="40.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1065.80" y="495.5" >_mm..</text>
</g>
<g >
<title>[[stack]] (1,230,514,799 samples, 2.19%)</title><rect x="10.2" y="581" width="25.9" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="13.22" y="591.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,494,303 samples, 0.02%)</title><rect x="10.0" y="581" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,785,866 samples, 0.01%)</title><rect x="942.5" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="945.47" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,778,485 samples, 0.02%)</title><rect x="1189.1" y="485" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.15" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,405,965 samples, 0.04%)</title><rect x="1109.7" y="101" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1112.66" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,540,584 samples, 0.01%)</title><rect x="652.1" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.10" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,512,265 samples, 0.02%)</title><rect x="1016.4" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.37" y="399.5" ></text>
</g>
<g >
<title>dsacache::Cache::Access (319,122,983 samples, 0.57%)</title><rect x="1103.6" y="517" width="6.7" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="1106.59" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,052,541 samples, 0.01%)</title><rect x="1050.5" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.53" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,740,414 samples, 0.01%)</title><rect x="1187.2" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.16" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,924,962 samples, 0.14%)</title><rect x="1110.3" y="405" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.32" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,967,068 samples, 0.17%)</title><rect x="1104.9" y="405" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.87" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,459,290 samples, 0.04%)</title><rect x="865.9" y="197" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.87" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,804,268 samples, 0.06%)</title><rect x="1185.8" y="389" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.81" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (56,894,061 samples, 0.10%)</title><rect x="63.2" y="373" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.17" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (12,108,425 samples, 0.02%)</title><rect x="966.1" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="969.09" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (256,323,849 samples, 0.46%)</title><rect x="1179.5" y="389" width="5.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1182.45" y="399.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 (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="357" width="1.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1190.44" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_read (6,155,254 samples, 0.01%)</title><rect x="1187.2" y="405" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1190.16" y="415.5" ></text>
</g>
<g >
<title>operator new (46,717,102 samples, 0.08%)</title><rect x="1109.2" y="325" width="1.0" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1112.20" y="335.5" ></text>
</g>
<g >
<title>dml::core::hardware_device::submit (25,560,478 samples, 0.05%)</title><rect x="1188.6" y="405" width="0.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1191.55" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (45,810,524 samples, 0.08%)</title><rect x="1109.2" y="277" width="1.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1112.21" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (14,391,559 samples, 0.03%)</title><rect x="1050.9" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.92" y="399.5" ></text>
</g>
<g >
<title>std::unordered_map&lt;unsigned char*, dsacache::CacheData, std::hash&lt;unsigned char*&gt;, std::equal_to&lt;unsigned char*&gt;, std::allocator&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt; &gt;::clear (27,978,244,770 samples, 49.78%)</title><rect x="64.4" y="501" width="587.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="67.36" y="511.5" >std::unordered_map&lt;unsigned char*, dsacache::CacheData, std::hash&lt;unsigned char*..</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; (49,871,202 samples, 0.09%)</title><rect x="1109.2" y="469" width="1.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1112.20" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,197,845 samples, 0.01%)</title><rect x="651.7" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.67" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,189,233 samples, 0.03%)</title><rect x="1108.3" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.30" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,540,584 samples, 0.01%)</title><rect x="652.1" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.10" y="319.5" ></text>
</g>
<g >
<title>__GI_munmap (56,894,061 samples, 0.10%)</title><rect x="63.2" y="517" width="1.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="66.17" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,011,844 samples, 0.02%)</title><rect x="1186.2" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.23" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,512,265 samples, 0.02%)</title><rect x="1016.4" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.37" y="415.5" ></text>
</g>
<g >
<title>operator new (35,828,488 samples, 0.06%)</title><rect x="1104.1" y="389" width="0.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1107.11" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (91,643,182 samples, 0.16%)</title><rect x="64.4" y="277" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.40" y="287.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 (35,828,488 samples, 0.06%)</title><rect x="1104.1" y="437" width="0.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1107.11" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (67,470,988 samples, 0.12%)</title><rect x="1110.6" y="373" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.56" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,929,584 samples, 0.01%)</title><rect x="1186.3" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.33" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,835,870 samples, 0.01%)</title><rect x="1188.7" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.69" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,344,388 samples, 0.01%)</title><rect x="1108.0" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1110.98" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,785,217 samples, 0.01%)</title><rect x="1186.9" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.92" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,650,216 samples, 0.02%)</title><rect x="942.4" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="945.45" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,344,388 samples, 0.01%)</title><rect x="1108.0" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1110.98" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,030,285 samples, 0.01%)</title><rect x="1111.8" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1114.83" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,450,133 samples, 0.01%)</title><rect x="1188.4" y="53" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.39" y="63.5" ></text>
</g>
<g >
<title>accfg_get_param_long (9,811,793 samples, 0.02%)</title><rect x="1188.6" y="245" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1191.63" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,377,009 samples, 0.05%)</title><rect x="865.7" y="309" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.73" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,162,146 samples, 0.03%)</title><rect x="1103.7" y="437" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.67" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,066,302 samples, 0.01%)</title><rect x="651.7" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.65" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,362,923 samples, 0.02%)</title><rect x="1189.2" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.16" y="399.5" ></text>
</g>
<g >
<title>_IO_new_file_underflow (6,564,990 samples, 0.01%)</title><rect x="1187.2" y="437" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1190.15" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,154,117 samples, 0.09%)</title><rect x="1187.5" y="197" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.50" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,774,676 samples, 0.01%)</title><rect x="651.9" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.93" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,778,485 samples, 0.02%)</title><rect x="1189.1" y="453" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.15" y="463.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 (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="389" width="1.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1190.44" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,315,610 samples, 0.05%)</title><rect x="1185.0" y="437" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.99" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,357,006 samples, 0.01%)</title><rect x="1186.9" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.93" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,010,002 samples, 0.03%)</title><rect x="1103.7" y="389" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.74" y="399.5" ></text>
</g>
<g >
<title>__libc_start_call_main (47,034,233,602 samples, 83.69%)</title><rect x="63.1" y="549" width="987.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="66.12" y="559.5" >__libc_start_call_main</text>
</g>
<g >
<title>dsacache::Cache::GetCacheNode (28,516,368 samples, 0.05%)</title><rect x="1184.9" y="501" width="0.6" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="1187.93" y="511.5" ></text>
</g>
<g >
<title>void fill_mt&lt;unsigned long&gt; (17,603,955,046 samples, 31.32%)</title><rect x="681.0" y="517" width="369.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="684.04" y="527.5" >void fill_mt&lt;unsigned long&gt;</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; (49,871,202 samples, 0.09%)</title><rect x="1109.2" y="453" width="1.0" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1112.20" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,838,204 samples, 0.02%)</title><rect x="966.1" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="969.05" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_read (15,623,013 samples, 0.03%)</title><rect x="1108.3" y="405" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1111.29" y="415.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 (46,717,102 samples, 0.08%)</title><rect x="1109.2" y="389" width="1.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1112.20" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,878,702 samples, 0.05%)</title><rect x="1186.5" y="373" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.50" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,878,702 samples, 0.05%)</title><rect x="1186.5" y="389" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.50" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,540,584 samples, 0.01%)</title><rect x="652.1" y="421" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.10" y="431.5" ></text>
</g>
<g >
<title>_IO_new_fclose (8,909,079 samples, 0.02%)</title><rect x="1108.0" y="453" width="0.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="1110.97" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,647,063 samples, 0.02%)</title><rect x="1016.4" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.39" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,484,485 samples, 0.05%)</title><rect x="1050.7" y="501" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.69" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (80,579,994 samples, 0.14%)</title><rect x="1110.3" y="485" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.29" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (155,318,192 samples, 0.28%)</title><rect x="1181.6" y="341" width="3.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1184.57" y="351.5" ></text>
</g>
<g >
<title>add_wq (15,236,807 samples, 0.03%)</title><rect x="1188.6" y="261" width="0.4" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1191.63" y="271.5" ></text>
</g>
<g >
<title>openat (6,835,870 samples, 0.01%)</title><rect x="1188.7" y="229" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1191.69" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,785,866 samples, 0.01%)</title><rect x="942.5" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="945.47" y="367.5" ></text>
</g>
<g >
<title>std::thread::_M_start_thread (12,724,581 samples, 0.02%)</title><rect x="651.8" y="453" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="654.82" y="463.5" ></text>
</g>
<g >
<title>sysmalloc (45,810,524 samples, 0.08%)</title><rect x="1109.2" y="261" width="1.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1112.21" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,101,327 samples, 0.07%)</title><rect x="1109.3" y="117" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1112.29" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,553,168 samples, 0.01%)</title><rect x="1186.9" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.95" y="223.5" ></text>
</g>
<g >
<title>advise_stack_range (11,778,485 samples, 0.02%)</title><rect x="1189.1" y="549" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1192.15" y="559.5" ></text>
</g>
<g >
<title>_int_memalign (46,717,102 samples, 0.08%)</title><rect x="1109.2" y="293" width="1.0" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1112.20" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (88,186,671 samples, 0.16%)</title><rect x="64.5" y="197" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.47" y="207.5" ></text>
</g>
<g >
<title>dsacache::Cache::AllocOnNode (206,190,059 samples, 0.37%)</title><rect x="1104.9" y="485" width="4.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="1107.87" y="495.5" ></text>
</g>
<g >
<title>syscall (52,197,849 samples, 0.09%)</title><rect x="1106.8" y="437" width="1.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1109.84" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,047,863 samples, 0.06%)</title><rect x="1104.2" y="245" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.15" y="255.5" ></text>
</g>
<g >
<title>_mm512_cmplt_epi64_mask (26,906,506 samples, 0.05%)</title><rect x="1116.0" y="485" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1118.98" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,066,302 samples, 0.01%)</title><rect x="651.7" y="229" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.65" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,647,063 samples, 0.02%)</title><rect x="1016.4" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.39" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,869,681 samples, 0.01%)</title><rect x="1188.7" y="85" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.71" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,323,204,071 samples, 13.03%)</title><rect x="712.6" y="453" width="153.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="715.58" y="463.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,650,216 samples, 0.02%)</title><rect x="942.4" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="945.45" y="431.5" ></text>
</g>
<g >
<title>start_thread (6,580,772,960 samples, 11.71%)</title><rect x="1051.2" y="565" width="138.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1054.22" y="575.5" >start_thread</text>
</g>
<g >
<title>dml::detail::ml::task&lt;std::allocator&lt;unsigned char&gt; &gt;::task (46,717,102 samples, 0.08%)</title><rect x="1109.2" y="405" width="1.0" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1112.20" y="415.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,623,195,042 samples, 2.89%)</title><rect x="1016.6" y="437" width="34.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1019.57" y="447.5" >st..</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 (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="341" width="1.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1190.44" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,154,117 samples, 0.09%)</title><rect x="1187.5" y="149" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.50" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,480,213 samples, 0.03%)</title><rect x="1104.5" y="165" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.52" y="175.5" ></text>
</g>
<g >
<title>mbind (52,197,849 samples, 0.09%)</title><rect x="1106.8" y="453" width="1.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1109.84" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,757,457 samples, 0.02%)</title><rect x="1103.4" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.36" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,997,398 samples, 0.01%)</title><rect x="652.1" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.12" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,817,500 samples, 0.02%)</title><rect x="1103.4" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.40" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,346,934 samples, 0.03%)</title><rect x="1103.7" y="405" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.69" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,918,503 samples, 0.05%)</title><rect x="865.8" y="245" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.80" y="255.5" ></text>
</g>
<g >
<title>Sum&lt;unsigned long&gt;::simd_agg (414,838,602 samples, 0.74%)</title><rect x="1054.1" y="501" width="8.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1057.09" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,047,863 samples, 0.06%)</title><rect x="1104.2" y="277" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.15" y="287.5" ></text>
</g>
<g >
<title>__GI_munmap (80,579,994 samples, 0.14%)</title><rect x="1110.3" y="501" width="1.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1113.29" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (92,507,760 samples, 0.16%)</title><rect x="64.4" y="293" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.38" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,540,584 samples, 0.01%)</title><rect x="652.1" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.10" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,002,702,867 samples, 8.90%)</title><rect x="761.3" y="341" width="105.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="764.31" y="351.5" >[[kernel.kal..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,408,072 samples, 0.06%)</title><rect x="1185.8" y="373" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.82" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,123,981 samples, 0.02%)</title><rect x="1103.9" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.88" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,052,541 samples, 0.01%)</title><rect x="1050.5" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.53" y="383.5" ></text>
</g>
<g >
<title>__GI_munmap (6,540,584 samples, 0.01%)</title><rect x="652.1" y="437" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="655.10" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="277" width="1.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1190.44" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,111,847 samples, 0.08%)</title><rect x="1109.3" y="197" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1112.25" y="207.5" ></text>
</g>
<g >
<title>__GI___mmap64 (32,804,268 samples, 0.06%)</title><rect x="1185.8" y="453" width="0.7" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1188.81" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (85,434,447 samples, 0.15%)</title><rect x="1105.0" y="341" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1108.05" y="351.5" ></text>
</g>
<g >
<title>Vector_Loader&lt;unsigned long, (2,993,062,044 samples, 5.33%)</title><rect x="1116.5" y="501" width="62.9" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1119.55" y="511.5" >Vector..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,785,866 samples, 0.01%)</title><rect x="942.5" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="945.47" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,052,541 samples, 0.01%)</title><rect x="1050.5" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.53" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,778,485 samples, 0.02%)</title><rect x="1189.1" y="517" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.15" y="527.5" ></text>
</g>
<g >
<title>grow_heap (44,111,847 samples, 0.08%)</title><rect x="1109.3" y="245" width="0.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1112.25" y="255.5" ></text>
</g>
<g >
<title>_mid_memalign (35,828,488 samples, 0.06%)</title><rect x="1104.1" y="373" width="0.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1107.11" y="383.5" ></text>
</g>
<g >
<title>_start (47,036,380,628 samples, 83.69%)</title><rect x="63.1" y="581" width="987.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="66.11" y="591.5" >_start</text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,918,503 samples, 0.05%)</title><rect x="865.8" y="213" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.80" y="223.5" ></text>
</g>
<g >
<title>dsacache::CacheData::Deallocate (92,507,760 samples, 0.16%)</title><rect x="64.4" y="373" width="1.9" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="67.38" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,162,146 samples, 0.03%)</title><rect x="1103.7" y="421" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.67" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,551,434 samples, 0.02%)</title><rect x="1103.9" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.89" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,543,739 samples, 0.01%)</title><rect x="1185.7" y="133" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.69" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,896,933 samples, 0.03%)</title><rect x="1108.7" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.69" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,052,541 samples, 0.01%)</title><rect x="1050.5" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.53" y="415.5" ></text>
</g>
<g >
<title>_IO_new_file_fopen (17,566,875 samples, 0.03%)</title><rect x="1108.7" y="437" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1111.66" y="447.5" ></text>
</g>
<g >
<title>__fopen_internal (17,566,875 samples, 0.03%)</title><rect x="1108.7" y="453" width="0.3" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1111.66" y="463.5" ></text>
</g>
<g >
<title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (1,226,127,583 samples, 2.18%)</title><rect x="37.4" y="565" width="25.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="40.35" y="575.5" >u..</text>
</g>
<g >
<title>grow_heap (34,047,863 samples, 0.06%)</title><rect x="1104.2" y="309" width="0.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1107.15" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,376,330 samples, 0.02%)</title><rect x="1016.4" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.35" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (35,593,800 samples, 0.06%)</title><rect x="1187.8" y="101" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.80" y="111.5" ></text>
</g>
<g >
<title>std::thread::thread&lt;void (12,724,581 samples, 0.02%)</title><rect x="651.8" y="469" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="654.82" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,592,934 samples, 0.07%)</title><rect x="1106.0" y="309" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1108.97" y="319.5" ></text>
</g>
<g >
<title>dsacache::Cache::Access (199,605,584 samples, 0.36%)</title><rect x="1184.9" y="517" width="4.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="1187.93" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,630,962 samples, 0.02%)</title><rect x="1103.9" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.89" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,315,610 samples, 0.05%)</title><rect x="1185.0" y="469" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.99" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,778,485 samples, 0.02%)</title><rect x="1189.1" y="437" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.15" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,757,457 samples, 0.02%)</title><rect x="1103.4" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.36" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,972,283 samples, 0.02%)</title><rect x="1185.6" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.60" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,540,584 samples, 0.01%)</title><rect x="652.1" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.10" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,740,414 samples, 0.01%)</title><rect x="1187.2" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.16" y="399.5" ></text>
</g>
<g >
<title>_mid_memalign (10,813,731 samples, 0.02%)</title><rect x="1185.6" y="373" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1188.58" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,647,063 samples, 0.02%)</title><rect x="1016.4" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.39" y="303.5" ></text>
</g>
<g >
<title>dsacache::CacheData::WaitOnCompletion (27,883,144,753 samples, 49.61%)</title><rect x="66.3" y="341" width="585.5" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="69.34" y="351.5" >dsacache::CacheData::WaitOnCompletion</text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,109,987 samples, 0.01%)</title><rect x="1187.2" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.17" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,265,048 samples, 0.03%)</title><rect x="866.0" y="165" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.98" y="175.5" ></text>
</g>
<g >
<title>dml::detail::ml::task&lt;std::allocator&lt;unsigned char&gt; &gt;::task (35,828,488 samples, 0.06%)</title><rect x="1104.1" y="469" width="0.8" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1107.11" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,484,485 samples, 0.05%)</title><rect x="1050.7" y="549" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.69" y="559.5" ></text>
</g>
<g >
<title>__GI_munmap (92,507,760 samples, 0.16%)</title><rect x="64.4" y="357" width="1.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="67.38" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,967,068 samples, 0.17%)</title><rect x="1104.9" y="389" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.87" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,870,294 samples, 0.02%)</title><rect x="651.8" y="293" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.82" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,919,156 samples, 0.02%)</title><rect x="1103.4" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.38" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,315,610 samples, 0.05%)</title><rect x="1185.0" y="405" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.99" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,997,398 samples, 0.01%)</title><rect x="652.1" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.12" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,020,276 samples, 0.01%)</title><rect x="1103.4" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.42" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,757,457 samples, 0.02%)</title><rect x="1103.4" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.36" y="511.5" ></text>
</g>
<g >
<title>__GI___close_nocancel (7,344,388 samples, 0.01%)</title><rect x="1108.0" y="421" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1110.98" y="431.5" ></text>
</g>
<g >
<title>QDPBench (56,173,802,251 samples, 99.95%)</title><rect x="10.0" y="597" width="1179.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.00" y="607.5" >QDPBench</text>
</g>
<g >
<title>dml::core::dispatcher::hw_device::initialize_new_device (21,127,100 samples, 0.04%)</title><rect x="1188.6" y="341" width="0.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1191.62" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,740,414 samples, 0.01%)</title><rect x="1187.2" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.16" y="335.5" ></text>
</g>
<g >
<title>operator new (10,813,731 samples, 0.02%)</title><rect x="1185.6" y="389" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1188.58" y="399.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; (5,144,892,302 samples, 9.15%)</title><rect x="942.6" y="469" width="108.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="945.63" y="479.5" >unsigned int ..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,540,584 samples, 0.01%)</title><rect x="652.1" y="389" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.10" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,400,747 samples, 0.01%)</title><rect x="1108.8" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.85" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,740,414 samples, 0.01%)</title><rect x="1187.2" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.16" y="351.5" ></text>
</g>
<g >
<title>[unknown] (1,234,157,360 samples, 2.20%)</title><rect x="37.2" y="581" width="25.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="40.19" y="591.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,357,006 samples, 0.01%)</title><rect x="1186.9" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.93" y="239.5" ></text>
</g>
<g >
<title>dml::detail::ml::impl::hardware::submit (25,560,478 samples, 0.05%)</title><rect x="1188.6" y="421" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1191.55" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,324,068,091 samples, 13.03%)</title><rect x="712.6" y="501" width="153.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="715.57" y="511.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>_IO_new_file_close_it (7,344,388 samples, 0.01%)</title><rect x="1108.0" y="437" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1110.98" y="447.5" ></text>
</g>
<g >
<title>LT&lt;unsigned long&gt;::simd_filter (26,906,506 samples, 0.05%)</title><rect x="1116.0" y="501" width="0.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1118.98" y="511.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; (1,015,021,080 samples, 1.81%)</title><rect x="14.7" y="549" width="21.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="17.75" y="559.5" >u..</text>
</g>
<g >
<title>__GI___mmap64 (93,967,068 samples, 0.17%)</title><rect x="1104.9" y="437" width="1.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1107.87" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,650,216 samples, 0.02%)</title><rect x="942.4" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="945.45" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (258,139,562 samples, 0.46%)</title><rect x="1179.4" y="453" width="5.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1182.42" y="463.5" ></text>
</g>
<g >
<title>__libc_openat64 (6,835,870 samples, 0.01%)</title><rect x="1188.7" y="213" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1191.69" y="223.5" ></text>
</g>
<g >
<title>queue_stack (6,540,584 samples, 0.01%)</title><rect x="652.1" y="469" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="655.10" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,040,629 samples, 0.02%)</title><rect x="1051.0" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.99" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (183,101,380 samples, 0.33%)</title><rect x="1181.0" y="373" width="3.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1183.99" y="383.5" ></text>
</g>
<g >
<title>__libc_open64 (17,566,875 samples, 0.03%)</title><rect x="1108.7" y="405" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="1111.66" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,878,702 samples, 0.05%)</title><rect x="1186.5" y="357" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.50" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,302,335 samples, 0.01%)</title><rect x="652.1" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.13" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,866,122 samples, 0.02%)</title><rect x="1051.0" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.98" y="367.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 (46,717,102 samples, 0.08%)</title><rect x="1109.2" y="373" width="1.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1112.20" y="383.5" ></text>
</g>
<g >
<title>_mm512_mask_add_epi64 (414,838,602 samples, 0.74%)</title><rect x="1054.1" y="485" width="8.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1057.09" y="495.5" ></text>
</g>
<g >
<title>std::pair&lt;unsigned char* const, dsacache::CacheData&gt;::~pair (27,978,244,770 samples, 49.78%)</title><rect x="64.4" y="405" width="587.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.36" y="415.5" >std::pair&lt;unsigned char* const, dsacache::CacheData&gt;::~pair</text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,581,259 samples, 0.06%)</title><rect x="1104.2" y="197" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.16" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,360,812 samples, 0.01%)</title><rect x="1104.0" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.96" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,112,996 samples, 0.06%)</title><rect x="1187.9" y="85" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.88" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,791,097 samples, 0.03%)</title><rect x="1108.7" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.67" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,799,118 samples, 0.01%)</title><rect x="1107.8" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1110.79" y="319.5" ></text>
</g>
<g >
<title>sudo (16,406,659 samples, 0.03%)</title><rect x="1189.7" y="597" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="1192.66" y="607.5" ></text>
</g>
<g >
<title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, false&gt; &gt; &gt;::_M_deallocate_node (27,978,244,770 samples, 49.78%)</title><rect x="64.4" y="453" width="587.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="67.36" y="463.5" >std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::pa..</text>
</g>
<g >
<title>wqs_init (16,212,211 samples, 0.03%)</title><rect x="1188.6" y="309" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1191.62" y="319.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 (35,828,488 samples, 0.06%)</title><rect x="1104.1" y="453" width="0.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1107.11" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,918,503 samples, 0.05%)</title><rect x="865.8" y="261" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.80" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (38,027,005 samples, 0.07%)</title><rect x="865.5" y="325" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.54" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,066,302 samples, 0.01%)</title><rect x="651.7" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.65" y="303.5" ></text>
</g>
<g >
<title>_mid_memalign (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="309" width="1.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1190.44" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,791,097 samples, 0.03%)</title><rect x="1108.7" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.67" y="399.5" ></text>
</g>
<g >
<title>operator new (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="325" width="1.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1190.44" y="335.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;unsigned char*, std::pair&lt;unsigned char* const, dsacache::CacheData&gt;, std::allocator&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;unsigned char*&gt;, std::hash&lt;unsigned char*&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::clear (27,978,244,770 samples, 49.78%)</title><rect x="64.4" y="485" width="587.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="67.36" y="495.5" >std::_Hashtable&lt;unsigned char*, std::pair&lt;unsigned char* const, dsacache::CacheD..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,870,294 samples, 0.02%)</title><rect x="651.8" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.82" y="383.5" ></text>
</g>
<g >
<title>dsacache::CacheData::WaitOnCompletion (84,126,226 samples, 0.15%)</title><rect x="1110.3" y="517" width="1.8" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1113.29" y="527.5" ></text>
</g>
<g >
<title>dsacache::Cache::GetCacheNode (23,082,624 samples, 0.04%)</title><rect x="1103.6" y="501" width="0.5" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="1106.59" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,216,145 samples, 0.17%)</title><rect x="1104.9" y="357" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.88" y="367.5" ></text>
</g>
<g >
<title>dsacache::Cache::SubmitTask (25,560,478 samples, 0.05%)</title><rect x="1188.6" y="437" width="0.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1191.55" y="447.5" ></text>
</g>
<g >
<title>void std::destroy_at&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt; (27,978,244,770 samples, 49.78%)</title><rect x="64.4" y="421" width="587.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="67.36" y="431.5" >void std::destroy_at&lt;std::pair&lt;unsigned char* const, dsacache::CacheData&gt; &gt;</text>
</g>
<g >
<title>__GI___libc_read (15,623,013 samples, 0.03%)</title><rect x="1108.3" y="421" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1111.29" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (89,913,865 samples, 0.16%)</title><rect x="64.4" y="213" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.44" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,066,302 samples, 0.01%)</title><rect x="651.7" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.65" y="255.5" ></text>
</g>
<g >
<title>Vector_Loader&lt;unsigned long, (1,931,677,068 samples, 3.44%)</title><rect x="1062.8" y="501" width="40.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1065.80" y="511.5" >Vec..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,089,814 samples, 0.02%)</title><rect x="1108.4" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.39" y="271.5" ></text>
</g>
<g >
<title>__GI_madvise (11,778,485 samples, 0.02%)</title><rect x="1189.1" y="533" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1192.15" y="543.5" ></text>
</g>
<g >
<title>syscall (26,878,702 samples, 0.05%)</title><rect x="1186.5" y="437" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1189.50" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,071,115 samples, 0.03%)</title><rect x="1185.2" y="261" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.19" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,961,046 samples, 0.04%)</title><rect x="1185.1" y="325" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.10" y="335.5" ></text>
</g>
<g >
<title>_mid_memalign (46,717,102 samples, 0.08%)</title><rect x="1109.2" y="309" width="1.0" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1112.20" y="319.5" ></text>
</g>
<g >
<title>syscall (25,315,610 samples, 0.05%)</title><rect x="1185.0" y="485" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1187.99" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,972,283 samples, 0.02%)</title><rect x="1185.6" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.60" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,107,386 samples, 0.03%)</title><rect x="1109.8" y="69" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1112.78" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,838,204 samples, 0.02%)</title><rect x="966.1" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="969.05" y="415.5" ></text>
</g>
<g >
<title>decltype (12,724,581 samples, 0.02%)</title><rect x="651.8" y="485" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="654.82" y="495.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 (10,813,731 samples, 0.02%)</title><rect x="1185.6" y="421" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1188.58" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,514,538 samples, 0.02%)</title><rect x="1108.3" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.34" y="319.5" ></text>
</g>
<g >
<title>sum_check (1,371,232,114 samples, 2.44%)</title><rect x="652.2" y="517" width="28.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="655.25" y="527.5" >su..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,972,283 samples, 0.02%)</title><rect x="1185.6" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.60" y="287.5" ></text>
</g>
<g >
<title>__GI___getdelim (22,226,508 samples, 0.04%)</title><rect x="1108.2" y="453" width="0.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1111.17" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,197,845 samples, 0.01%)</title><rect x="651.7" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.67" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,648,058 samples, 0.05%)</title><rect x="865.8" y="293" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.76" y="303.5" ></text>
</g>
<g >
<title>sysmalloc (10,813,731 samples, 0.02%)</title><rect x="1185.6" y="325" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1188.58" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (52,197,849 samples, 0.09%)</title><rect x="1106.8" y="405" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1109.84" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,740,414 samples, 0.01%)</title><rect x="1187.2" y="373" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.16" y="383.5" ></text>
</g>
<g >
<title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (7,679,240,842 samples, 13.66%)</title><rect x="889.4" y="485" width="161.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="892.42" y="495.5" >unsigned long std::u..</text>
</g>
<g >
<title>dml::detail::ml::buffer&lt;std::allocator&lt;unsigned char&gt;, dml::detail::descriptor, dml::detail::completion_record&gt;::buffer (10,813,731 samples, 0.02%)</title><rect x="1185.6" y="453" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1188.58" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,430,139 samples, 0.05%)</title><rect x="1050.7" y="469" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.69" y="479.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 (10,813,731 samples, 0.02%)</title><rect x="1185.6" y="437" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1188.58" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,347,448 samples, 0.01%)</title><rect x="1185.7" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.67" y="159.5" ></text>
</g>
<g >
<title>clone3 (6,606,257,445 samples, 11.75%)</title><rect x="1050.7" y="581" width="138.7" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="1053.69" y="591.5" >clone3</text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,878,702 samples, 0.05%)</title><rect x="1186.5" y="421" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.50" y="431.5" ></text>
</g>
<g >
<title>__pthread_create_2_1 (12,724,581 samples, 0.02%)</title><rect x="651.8" y="437" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="654.82" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,727,544 samples, 0.04%)</title><rect x="865.9" y="181" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.91" y="191.5" ></text>
</g>
<g >
<title>dml::handler&lt;dml::mem_copy_operation, std::allocator&lt;unsigned char&gt; &gt;::handler (35,828,488 samples, 0.06%)</title><rect x="1104.1" y="485" width="0.8" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="1107.11" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,153,610 samples, 0.05%)</title><rect x="1185.9" y="341" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.87" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (56,894,061 samples, 0.10%)</title><rect x="63.2" y="405" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.17" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,967,068 samples, 0.17%)</title><rect x="1104.9" y="373" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.87" y="383.5" ></text>
</g>
<g >
<title>auto dml::detail::ml::make_mem_move_task&lt;std::allocator&lt;unsigned char&gt; &gt; (46,717,102 samples, 0.08%)</title><rect x="1109.2" y="421" width="1.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1112.20" y="431.5" ></text>
</g>
<g >
<title>dml::core::dispatcher::hw_dispatcher::get_instance (25,315,981 samples, 0.05%)</title><rect x="1188.6" y="389" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1191.56" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,344,388 samples, 0.01%)</title><rect x="1108.0" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1110.98" y="415.5" ></text>
</g>
<g >
<title>__GI_mprotect (34,047,863 samples, 0.06%)</title><rect x="1104.2" y="293" width="0.7" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1107.15" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,972,283 samples, 0.02%)</title><rect x="1185.6" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.60" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,870,294 samples, 0.02%)</title><rect x="651.8" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.82" y="367.5" ></text>
</g>
<g >
<title>__GI_mprotect (44,111,847 samples, 0.08%)</title><rect x="1109.3" y="229" width="0.9" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1112.25" y="239.5" ></text>
</g>
<g >
<title>numa_node_size64 (17,944,285 samples, 0.03%)</title><rect x="1187.1" y="469" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1190.07" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,835,870 samples, 0.01%)</title><rect x="1188.7" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.69" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,757,457 samples, 0.02%)</title><rect x="1103.4" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.36" y="463.5" ></text>
</g>
<g >
<title>scan_a (3,462,002,037 samples, 6.16%)</title><rect x="1112.2" y="533" width="72.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1115.23" y="543.5" >scan_a</text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,778,485 samples, 0.02%)</title><rect x="1189.1" y="421" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.15" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (47,784,777 samples, 0.09%)</title><rect x="1187.5" y="117" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.55" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,243,448 samples, 0.02%)</title><rect x="966.1" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="969.11" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,647,063 samples, 0.02%)</title><rect x="1016.4" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.39" y="367.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 (35,828,488 samples, 0.06%)</title><rect x="1104.1" y="405" width="0.8" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1107.11" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,861,578 samples, 0.02%)</title><rect x="1108.4" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.41" y="239.5" ></text>
</g>
<g >
<title>dsacache::Cache::ExecuteCopy (49,871,202 samples, 0.09%)</title><rect x="1109.2" y="485" width="1.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1112.20" y="495.5" ></text>
</g>
<g >
<title>grow_heap (50,154,117 samples, 0.09%)</title><rect x="1187.5" y="245" width="1.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1190.50" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,140,143 samples, 0.04%)</title><rect x="1185.0" y="389" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.02" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,647,063 samples, 0.02%)</title><rect x="1016.4" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.39" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,318,881,921 samples, 13.02%)</title><rect x="712.7" y="437" width="153.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="715.67" y="447.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,540,584 samples, 0.01%)</title><rect x="652.1" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="655.10" y="415.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 (4,015,533,329 samples, 7.14%)</title><rect x="966.3" y="453" width="84.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="969.34" y="463.5" >std::mers..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,376,330 samples, 0.02%)</title><rect x="1016.4" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.35" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (56,894,061 samples, 0.10%)</title><rect x="63.2" y="485" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.17" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,861,578 samples, 0.02%)</title><rect x="1108.4" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.41" y="255.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.32] (6,568,910,875 samples, 11.69%)</title><rect x="1051.2" y="549" width="137.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1054.22" y="559.5" >[libstdc++.so.6.0..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,197,845 samples, 0.01%)</title><rect x="651.7" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.67" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (80,579,994 samples, 0.14%)</title><rect x="1110.3" y="437" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.29" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,778,485 samples, 0.02%)</title><rect x="1189.1" y="501" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.15" y="511.5" ></text>
</g>
<g >
<title>numa_alloc_onnode (59,682,970 samples, 0.11%)</title><rect x="1185.8" y="469" width="1.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="1188.81" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,789,329 samples, 0.08%)</title><rect x="1105.9" y="325" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1108.88" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,154,117 samples, 0.09%)</title><rect x="1187.5" y="181" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.50" y="191.5" ></text>
</g>
<g >
<title>dml::core::dispatcher::hw_dispatcher::hw_dispatcher (23,965,836 samples, 0.04%)</title><rect x="1188.6" y="373" width="0.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1191.57" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (52,197,849 samples, 0.09%)</title><rect x="1106.8" y="421" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1109.84" y="431.5" ></text>
</g>
<g >
<title>_int_memalign (10,813,731 samples, 0.02%)</title><rect x="1185.6" y="357" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1188.58" y="367.5" ></text>
</g>
<g >
<title>__sysfs_device_parse (16,212,211 samples, 0.03%)</title><rect x="1188.6" y="277" width="0.4" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1191.62" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (92,507,760 samples, 0.16%)</title><rect x="64.4" y="309" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.38" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (258,083,965 samples, 0.46%)</title><rect x="1179.4" y="437" width="5.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1182.42" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,333,154 samples, 0.01%)</title><rect x="1108.0" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.03" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,542,336 samples, 0.01%)</title><rect x="1188.4" y="37" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.43" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,052,541 samples, 0.01%)</title><rect x="1050.5" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.53" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,240,609,876 samples, 12.88%)</title><rect x="714.3" y="389" width="152.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="717.32" y="399.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,066,302 samples, 0.01%)</title><rect x="651.7" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.65" y="319.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; (78,330,121 samples, 0.14%)</title><rect x="1187.4" y="469" width="1.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1190.44" y="479.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 (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="373" width="1.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1190.44" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,870,294 samples, 0.02%)</title><rect x="651.8" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.82" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (80,579,994 samples, 0.14%)</title><rect x="1110.3" y="453" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1113.29" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,726,772 samples, 0.02%)</title><rect x="1108.7" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.74" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,860,205 samples, 0.01%)</title><rect x="1108.0" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.04" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,774,676 samples, 0.01%)</title><rect x="651.9" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.93" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,198,896 samples, 0.06%)</title><rect x="1104.2" y="181" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.17" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,757,457 samples, 0.02%)</title><rect x="1103.4" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.36" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,728,822 samples, 0.06%)</title><rect x="1185.8" y="357" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.83" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,623,013 samples, 0.03%)</title><rect x="1108.3" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.29" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (82,999,130 samples, 0.15%)</title><rect x="64.6" y="181" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.58" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,972,283 samples, 0.02%)</title><rect x="1185.6" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.60" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,837,589 samples, 0.01%)</title><rect x="1107.8" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1110.83" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,870,294 samples, 0.02%)</title><rect x="651.8" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.82" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,484,485 samples, 0.05%)</title><rect x="1050.7" y="533" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.69" y="543.5" ></text>
</g>
<g >
<title>dml::handler&lt;dml::mem_copy_operation, std::allocator&lt;unsigned char&gt; &gt;::handler (10,813,731 samples, 0.02%)</title><rect x="1185.6" y="485" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="1188.58" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (52,197,849 samples, 0.09%)</title><rect x="1106.8" y="357" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1109.84" y="367.5" ></text>
</g>
<g >
<title>__GI___getdelim (7,608,450 samples, 0.01%)</title><rect x="1187.1" y="453" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1190.14" y="463.5" ></text>
</g>
<g >
<title>dsacache::Cache::AllocOnNode (77,976,052 samples, 0.14%)</title><rect x="1185.8" y="485" width="1.6" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="1188.80" y="495.5" ></text>
</g>
<g >
<title>dml::handler&lt;dml::mem_copy_operation, std::allocator&lt;unsigned char&gt; &gt;::get (27,883,144,753 samples, 49.61%)</title><rect x="66.3" y="357" width="585.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="69.34" y="367.5" >dml::handler&lt;dml::mem_copy_operation, std::allocator&lt;unsigned char&gt; &gt;::get</text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,547,223 samples, 0.02%)</title><rect x="1050.9" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.94" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (256,851,116 samples, 0.46%)</title><rect x="1179.4" y="405" width="5.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1182.44" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (89,913,865 samples, 0.16%)</title><rect x="64.4" y="229" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.44" y="239.5" ></text>
</g>
<g >
<title>void std::allocator_traits&lt;std::allocator&lt;std::thread&gt; &gt;::construct&lt;std::thread, void (12,724,581 samples, 0.02%)</title><rect x="651.8" y="501" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.82" y="511.5" ></text>
</g>
<g >
<title>std::thread::join (6,839,397 samples, 0.01%)</title><rect x="652.1" y="517" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="655.10" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,162,146 samples, 0.03%)</title><rect x="1103.7" y="469" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.67" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,623,013 samples, 0.03%)</title><rect x="1108.3" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.29" y="351.5" ></text>
</g>
<g >
<title>__pthread_clockjoin_ex (6,839,397 samples, 0.01%)</title><rect x="652.1" y="501" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="655.10" y="511.5" ></text>
</g>
<g >
<title>_mm512_stream_load_si512 (2,993,062,044 samples, 5.33%)</title><rect x="1116.5" y="485" width="62.9" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1119.55" y="495.5" >_mm512..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (12,973,510 samples, 0.02%)</title><rect x="966.1" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="969.07" y="367.5" ></text>
</g>
<g >
<title>dml::detail::ml::task&lt;std::allocator&lt;unsigned char&gt; &gt;::task (52,769,643 samples, 0.09%)</title><rect x="1187.4" y="405" width="1.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1190.44" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (90,779,509 samples, 0.16%)</title><rect x="64.4" y="245" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.42" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (14,066,357 samples, 0.03%)</title><rect x="1104.6" y="133" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.57" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,623,013 samples, 0.03%)</title><rect x="1108.3" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.29" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,315,610 samples, 0.05%)</title><rect x="1185.0" y="421" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.99" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,870,294 samples, 0.02%)</title><rect x="651.8" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.82" y="319.5" ></text>
</g>
<g >
<title>sh (5,618,491 samples, 0.01%)</title><rect x="1189.5" y="597" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1192.54" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,000,961,265 samples, 10.68%)</title><rect x="740.3" y="357" width="126.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="743.35" y="367.5" >[[kernel.kallsy..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,835,870 samples, 0.01%)</title><rect x="1188.7" y="117" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.69" y="127.5" ></text>
</g>
<g >
<title>_IO_new_file_underflow (19,746,317 samples, 0.04%)</title><rect x="1108.2" y="437" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1111.20" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,896,933 samples, 0.03%)</title><rect x="1108.7" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.69" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,636,433 samples, 0.08%)</title><rect x="1109.3" y="133" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1112.26" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (56,894,061 samples, 0.10%)</title><rect x="63.2" y="437" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.17" y="447.5" ></text>
</g>
<g >
<title>dml::submit&lt;dml::hardware, dml::execution_interface&lt;dml::hardware, std::allocator&lt;unsigned char&gt; &gt; &gt; (46,717,102 samples, 0.08%)</title><rect x="1109.2" y="437" width="1.0" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1112.20" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (52,197,849 samples, 0.09%)</title><rect x="1106.8" y="373" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1109.84" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,722,633 samples, 0.04%)</title><rect x="1050.7" y="453" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.73" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,649,622 samples, 0.02%)</title><rect x="1103.9" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1106.89" y="367.5" ></text>
</g>
<g >
<title>all (56,200,887,845 samples, 100%)</title><rect x="10.0" y="613" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="623.5" ></text>
</g>
<g >
<title>devices_init (6,615,510 samples, 0.01%)</title><rect x="37.2" y="565" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="40.21" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,052,541 samples, 0.01%)</title><rect x="1050.5" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.53" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,835,870 samples, 0.01%)</title><rect x="1188.7" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.69" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,111,847 samples, 0.08%)</title><rect x="1109.3" y="213" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1112.25" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (56,894,061 samples, 0.10%)</title><rect x="63.2" y="421" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.17" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,692,824 samples, 0.06%)</title><rect x="1187.9" y="69" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.88" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,169,708 samples, 0.02%)</title><rect x="1186.3" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.27" y="319.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 (35,828,488 samples, 0.06%)</title><rect x="1104.1" y="421" width="0.8" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1107.11" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,066,302 samples, 0.01%)</title><rect x="651.7" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.65" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,721,684 samples, 0.01%)</title><rect x="1186.4" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.38" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,311,966,115 samples, 13.01%)</title><rect x="712.8" y="405" width="153.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="715.82" y="415.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (92,507,760 samples, 0.16%)</title><rect x="64.4" y="341" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.38" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (36,196,373 samples, 0.06%)</title><rect x="63.6" y="309" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.60" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,896,933 samples, 0.03%)</title><rect x="1108.7" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.69" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (56,894,061 samples, 0.10%)</title><rect x="63.2" y="501" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.17" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (259,363,157 samples, 0.46%)</title><rect x="1179.4" y="501" width="5.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1182.39" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,185,252 samples, 0.03%)</title><rect x="1185.1" y="309" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.12" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (9,972,283 samples, 0.02%)</title><rect x="1185.6" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.60" y="255.5" ></text>
</g>
<g >
<title>dsacache::Cache::SubmitTask (167,119,904 samples, 0.30%)</title><rect x="1185.6" y="501" width="3.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1188.58" y="511.5" ></text>
</g>
<g >
<title>dsacache::Cache::SubmitTask (291,889,749 samples, 0.52%)</title><rect x="1104.1" y="501" width="6.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1107.11" y="511.5" ></text>
</g>
<g >
<title>[anon] (52,831,798 samples, 0.09%)</title><rect x="36.1" y="581" width="1.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="39.08" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,774,676 samples, 0.01%)</title><rect x="651.9" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="654.93" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,878,702 samples, 0.05%)</title><rect x="1186.5" y="405" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.50" y="415.5" ></text>
</g>
<g >
<title>__GI___mmap64 (32,804,268 samples, 0.06%)</title><rect x="1185.8" y="437" width="0.7" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1188.81" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,424,524 samples, 0.01%)</title><rect x="1108.4" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.44" y="223.5" ></text>
</g>
<g >
<title>std::thread&amp; std::vector&lt;std::thread, std::allocator&lt;std::thread&gt; &gt;::emplace_back&lt;void (13,581,055 samples, 0.02%)</title><rect x="651.8" y="517" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="654.82" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,324,068,091 samples, 13.03%)</title><rect x="712.6" y="485" width="153.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="715.57" y="495.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,838,204 samples, 0.02%)</title><rect x="966.1" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="969.05" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,188,239 samples, 0.01%)</title><rect x="1050.5" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.54" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,025,872 samples, 0.02%)</title><rect x="1108.3" y="293" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1111.35" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,884,622 samples, 0.04%)</title><rect x="1050.7" y="437" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1053.74" y="447.5" ></text>
</g>
</g>
</svg>