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.
3325 lines
164 KiB
3325 lines
164 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]] (3,384,849 samples, 0.01%)</title><rect x="940.8" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="943.82" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_fclose (3,343,282 samples, 0.01%)</title><rect x="1180.4" y="453" width="0.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
|
|
<text x="1183.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (15,353,184 samples, 0.05%)</title><rect x="866.4" y="373" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.36" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::pair<unsigned char* const, dsacache::CacheData>::~pair (44,773,918 samples, 0.15%)</title><rect x="111.8" y="405" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.76" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,743,611 samples, 0.03%)</title><rect x="1180.9" y="229" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.88" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,684,763 samples, 0.03%)</title><rect x="1181.3" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.32" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,472,549 samples, 0.01%)</title><rect x="1187.1" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.08" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> >::allocate (3,304,446 samples, 0.01%)</title><rect x="941.0" y="437" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
|
|
<text x="943.97" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (48,607,741 samples, 0.16%)</title><rect x="1177.0" y="405" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1180.04" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,364,338 samples, 0.02%)</title><rect x="933.3" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.29" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (48,159,760 samples, 0.16%)</title><rect x="1177.1" y="357" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1180.05" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___fstatat64 (3,052,559 samples, 0.01%)</title><rect x="1180.6" y="373" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
|
|
<text x="1183.60" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> > >::destroy<std::pair<unsigned char* const, dsacache::CacheData> > (44,773,918 samples, 0.15%)</title><rect x="111.8" y="437" width="1.7" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
|
|
<text x="114.76" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (28,777,470 samples, 0.10%)</title><rect x="1175.9" y="133" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.91" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,875,827 samples, 0.01%)</title><rect x="1175.1" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.06" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__fopen_internal (8,519,108 samples, 0.03%)</title><rect x="1181.3" y="453" width="0.3" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
|
|
<text x="1184.32" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::buffer<std::allocator<unsigned char>, dml::detail::descriptor, dml::detail::completion_record>::buffer (76,042,767 samples, 0.25%)</title><rect x="934.0" y="389" width="3.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
|
|
<text x="937.02" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::handler<dml::mem_copy_operation, dml::execution_interface<dml::hardware, std::allocator<unsigned char> >::allocator_type> dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (147,238,622 samples, 0.49%)</title><rect x="1181.8" y="469" width="5.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
|
|
<text x="1184.76" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,384,849 samples, 0.01%)</title><rect x="940.8" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="943.82" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,837,971 samples, 0.01%)</title><rect x="867.0" y="533" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.96" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (17,068,240 samples, 0.06%)</title><rect x="866.3" y="389" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.29" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (102,946,189 samples, 0.34%)</title><rect x="1182.0" y="149" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.99" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (26,010,449 samples, 0.09%)</title><rect x="1187.8" y="517" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.76" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>allocate_stack (22,944,895 samples, 0.08%)</title><rect x="113.6" y="421" width="0.9" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
|
|
<text x="116.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (52,594,123 samples, 0.17%)</title><rect x="1175.0" y="389" width="2.0" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
|
|
<text x="1177.98" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,052,559 samples, 0.01%)</title><rect x="1180.6" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.60" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (11,976,927 samples, 0.04%)</title><rect x="1174.3" y="421" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.29" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_file_fopen (10,442,407 samples, 0.03%)</title><rect x="933.5" y="437" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
|
|
<text x="936.54" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,327,938 samples, 0.01%)</title><rect x="1187.3" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.29" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (19,296,338 samples, 0.06%)</title><rect x="1173.2" y="293" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1176.17" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="405" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
|
|
<text x="1177.00" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,940,101 samples, 0.02%)</title><rect x="1174.6" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.57" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>open (3,327,938 samples, 0.01%)</title><rect x="1187.3" y="277" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
|
|
<text x="1190.29" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,531,108 samples, 0.12%)</title><rect x="865.5" y="533" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.49" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (26,010,449 samples, 0.09%)</title><rect x="1187.8" y="485" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.76" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (22,007,083 samples, 0.07%)</title><rect x="931.0" y="325" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="934.03" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___mmap64 (48,607,741 samples, 0.16%)</title><rect x="1177.0" y="453" width="1.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
|
|
<text x="1180.04" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clone3 (8,257,939,125 samples, 27.40%)</title><rect x="865.5" y="581" width="323.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
|
|
<text x="868.49" y="591.5" >clone3</text>
|
|
</g>
|
|
<g >
|
|
<title>device_parse (24,925,539 samples, 0.08%)</title><rect x="1186.1" y="293" width="1.0" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
|
|
<text x="1189.08" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,834,968 samples, 0.03%)</title><rect x="1180.8" y="373" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.80" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (15,934,374 samples, 0.05%)</title><rect x="926.5" y="469" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.48" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Vector_base<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul>, std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> > >::_M_allocate (3,304,446 samples, 0.01%)</title><rect x="941.0" y="469" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
|
|
<text x="943.97" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>all (30,140,784,765 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>__GI_mprotect (67,580,074 samples, 0.22%)</title><rect x="927.4" y="293" width="2.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
|
|
<text x="930.36" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (72,180,314 samples, 0.24%)</title><rect x="1183.2" y="101" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1186.20" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unsigned int std::uniform_int_distribution<unsigned long>::_S_nd<unsigned long, std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>, unsigned int> (5,085,079,286 samples, 16.87%)</title><rect x="666.3" y="469" width="199.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
|
|
<text x="669.33" y="479.5" >unsigned int std::uniform_..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,079,005 samples, 0.02%)</title><rect x="926.1" y="437" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.11" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::operator (46,560,862 samples, 0.15%)</title><rect x="58.6" y="565" width="1.8" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
|
|
<text x="61.61" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (33,156,033 samples, 0.11%)</title><rect x="1175.7" y="165" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.74" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::handler<dml::mem_copy_operation, dml::execution_interface<dml::hardware, std::allocator<unsigned char> >::allocator_type> dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (76,042,767 samples, 0.25%)</title><rect x="934.0" y="469" width="3.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
|
|
<text x="937.02" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,898,824 samples, 0.02%)</title><rect x="10.4" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="13.39" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::CacheData::WaitOnCompletion (43,912,672 samples, 0.15%)</title><rect x="111.8" y="373" width="1.7" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
|
|
<text x="114.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,325,081 samples, 0.01%)</title><rect x="1186.5" y="53" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1189.53" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>arena_get2 (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="325" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
|
|
<text x="1177.00" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,327,938 samples, 0.01%)</title><rect x="1187.3" y="229" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.29" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,202,515,929 samples, 20.58%)</title><rect x="277.9" y="373" width="242.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="280.93" y="383.5" >[[kernel.kallsyms]]</text>
|
|
</g>
|
|
<g >
|
|
<title>accfg_get_param_long (14,952,271 samples, 0.05%)</title><rect x="1186.1" y="245" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="1189.14" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,548,151,192 samples, 25.04%)</title><rect x="225.2" y="469" width="295.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="228.25" y="479.5" >[[kernel.kallsyms]]</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,300,659 samples, 0.03%)</title><rect x="933.6" y="293" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.60" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (76,042,767 samples, 0.25%)</title><rect x="934.0" y="437" width="3.0" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
|
|
<text x="937.02" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,963,362 samples, 0.01%)</title><rect x="1180.4" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.44" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,595,937 samples, 0.01%)</title><rect x="1174.0" y="133" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.03" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,474 samples, 0.03%)</title><rect x="865.0" y="405" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.05" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,208,454 samples, 0.01%)</title><rect x="1181.8" y="133" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.83" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__detail::__waiter_pool::_M_do_wait (3,384,849 samples, 0.01%)</title><rect x="940.8" y="437" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
|
|
<text x="943.82" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_memalign (72,172,962 samples, 0.24%)</title><rect x="927.2" y="357" width="2.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
|
|
<text x="930.18" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_file_open (8,519,108 samples, 0.03%)</title><rect x="1181.3" y="421" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
|
|
<text x="1184.32" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,465,849 samples, 0.02%)</title><rect x="926.1" y="469" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.09" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (25,526,558 samples, 0.08%)</title><rect x="931.9" y="405" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="934.92" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,150,250,561 samples, 17.09%)</title><rect x="319.1" y="341" width="201.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="322.13" y="351.5" >[[kernel.kallsyms]]</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,638,434 samples, 0.01%)</title><rect x="1187.1" y="133" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.12" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (14,840,164 samples, 0.05%)</title><rect x="520.2" y="165" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="523.17" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,679,421 samples, 0.01%)</title><rect x="867.0" y="485" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.96" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,433,031 samples, 0.12%)</title><rect x="865.5" y="453" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.49" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>LT<unsigned long>::simd_filter (25,725,457 samples, 0.09%)</title><rect x="946.8" y="501" width="1.0" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
|
|
<text x="949.77" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,949,602 samples, 0.01%)</title><rect x="1174.6" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.61" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,834,968 samples, 0.03%)</title><rect x="1180.8" y="325" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.80" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (102,481,437 samples, 0.34%)</title><rect x="1182.0" y="117" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1185.01" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::vector<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul>, std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> > >::_M_default_append (3,304,446 samples, 0.01%)</title><rect x="941.0" y="501" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
|
|
<text x="943.97" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (10,229,240 samples, 0.03%)</title><rect x="866.6" y="341" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.56" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,689,460 samples, 0.19%)</title><rect x="109.5" y="469" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.51" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (25,526,558 samples, 0.08%)</title><rect x="931.9" y="389" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="934.92" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,834,968 samples, 0.03%)</title><rect x="1180.8" y="341" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.80" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dash] (4,123,565 samples, 0.01%)</title><rect x="1189.1" y="501" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="1192.09" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (3,304,446 samples, 0.01%)</title><rect x="941.0" y="405" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
|
|
<text x="943.97" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,340,786 samples, 0.02%)</title><rect x="709.1" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="712.12" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,031,880 samples, 0.02%)</title><rect x="940.5" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="943.47" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,854 samples, 0.03%)</title><rect x="666.0" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="668.97" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dash] (4,123,565 samples, 0.01%)</title><rect x="1189.1" y="533" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="1192.09" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unsigned long std::uniform_int_distribution<unsigned long>::operator (8,803,451,547 samples, 29.21%)</title><rect x="520.8" y="501" width="344.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
|
|
<text x="523.76" y="511.5" >unsigned long std::uniform_int_distribution<un..</text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::task<std::allocator<unsigned char> >::task (52,594,123 samples, 0.17%)</title><rect x="1175.0" y="469" width="2.0" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
|
|
<text x="1177.98" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,733,096 samples, 0.01%)</title><rect x="926.2" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,848,234 samples, 0.02%)</title><rect x="1181.3" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.35" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_munmap (43,912,672 samples, 0.15%)</title><rect x="111.8" y="357" width="1.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="114.76" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,963,362 samples, 0.01%)</title><rect x="1180.4" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.44" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,663,627 samples, 0.01%)</title><rect x="1176.9" y="117" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1179.89" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,684,763 samples, 0.03%)</title><rect x="1181.3" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.32" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,546,338 samples, 0.02%)</title><rect x="1175.0" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.00" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,684,763 samples, 0.03%)</title><rect x="1181.3" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.32" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,771,525 samples, 0.03%)</title><rect x="1174.4" y="389" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.42" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (89,429,025 samples, 0.30%)</title><rect x="937.2" y="453" width="3.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="940.17" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,546,338 samples, 0.02%)</title><rect x="1175.0" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.00" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[anon] (49,577,154 samples, 0.16%)</title><rect x="58.5" y="581" width="1.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
|
|
<text x="61.49" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (10,797,481 samples, 0.04%)</title><rect x="1186.2" y="101" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1189.24" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::AllocOnNode (102,664,219 samples, 0.34%)</title><rect x="930.0" y="485" width="4.0" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
|
|
<text x="933.00" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,226,865 samples, 0.01%)</title><rect x="933.8" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.76" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (1,984,884,174 samples, 6.59%)</title><rect x="1096.2" y="453" width="77.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1099.22" y="463.5" >[[kernel..</text>
|
|
</g>
|
|
<g >
|
|
<title>unsigned long std::uniform_int_distribution<unsigned long>::operator (7,674,953,624 samples, 25.46%)</title><rect x="564.9" y="485" width="300.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
|
|
<text x="567.94" y="495.5" >unsigned long std::uniform_int_distribut..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (1,987,085,492 samples, 6.59%)</title><rect x="1096.1" y="469" width="77.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1099.13" y="479.5" >[[kernel..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (10,627,702 samples, 0.04%)</title><rect x="114.6" y="341" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.57" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,963,362 samples, 0.01%)</title><rect x="1180.4" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.44" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_munmap (89,429,025 samples, 0.30%)</title><rect x="937.2" y="501" width="3.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="940.17" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (12,818,755 samples, 0.04%)</title><rect x="1174.3" y="437" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.26" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,968,198 samples, 0.03%)</title><rect x="1186.3" y="85" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1189.27" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (68,850,041 samples, 0.23%)</title><rect x="934.3" y="197" width="2.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.30" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,689,460 samples, 0.19%)</title><rect x="109.5" y="341" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.51" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,465,849 samples, 0.02%)</title><rect x="926.1" y="501" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.09" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (89,429,025 samples, 0.30%)</title><rect x="937.2" y="405" width="3.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="940.17" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___close_nocancel (3,343,282 samples, 0.01%)</title><rect x="1180.4" y="421" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
|
|
<text x="1183.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,087,959 samples, 0.01%)</title><rect x="933.4" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.38" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,472,549 samples, 0.01%)</title><rect x="1187.1" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.08" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,869,793 samples, 0.02%)</title><rect x="111.5" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.46" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_read (8,234,982 samples, 0.03%)</title><rect x="933.2" y="405" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
|
|
<text x="936.22" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (29,618,190 samples, 0.10%)</title><rect x="1175.9" y="149" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.88" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,734,580 samples, 0.02%)</title><rect x="1178.7" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1181.68" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_mm512_mask_add_epi64 (381,802,722 samples, 1.27%)</title><rect x="872.9" y="485" width="14.9" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
|
|
<text x="875.89" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_start (19,312,485,925 samples, 64.07%)</title><rect x="109.4" y="581" width="756.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
|
|
<text x="112.41" y="591.5" >_start</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,052,559 samples, 0.01%)</title><rect x="1180.6" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.60" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,319,544 samples, 0.01%)</title><rect x="1174.0" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.01" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,359,112 samples, 0.02%)</title><rect x="10.3" y="565" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="13.33" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,340,786 samples, 0.02%)</title><rect x="709.1" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="712.12" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Vector_base<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul>, std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> > >::_M_allocate (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="485" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
|
|
<text x="1177.00" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (26,010,449 samples, 0.09%)</title><rect x="1187.8" y="501" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,628,447 samples, 0.01%)</title><rect x="1181.5" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.48" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Sum<unsigned long>::simd_agg (381,802,722 samples, 1.27%)</title><rect x="872.9" y="501" width="14.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
|
|
<text x="875.89" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__nptl_free_stacks (10,627,702 samples, 0.04%)</title><rect x="114.6" y="453" width="0.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
|
|
<text x="117.57" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,885,828 samples, 0.02%)</title><rect x="1174.5" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.49" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (10,627,702 samples, 0.04%)</title><rect x="114.6" y="373" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.57" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Vector_Loader<unsigned long, (3,787,754,318 samples, 12.57%)</title><rect x="947.8" y="501" width="148.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
|
|
<text x="950.78" y="511.5" >Vector_Loader<unsi..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (46,495,539 samples, 0.15%)</title><rect x="938.9" y="341" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="941.85" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,909,339 samples, 0.01%)</title><rect x="1180.3" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.31" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,688,156 samples, 0.03%)</title><rect x="114.6" y="293" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.61" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_start_main_impl (19,310,456,147 samples, 64.07%)</title><rect x="109.4" y="565" width="756.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="112.41" y="575.5" >__libc_start_main_impl</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (47,100,891 samples, 0.16%)</title><rect x="928.2" y="133" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="931.16" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (43,051,965 samples, 0.14%)</title><rect x="111.8" y="197" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.80" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (67,580,074 samples, 0.22%)</title><rect x="927.4" y="261" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.36" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,053,438 samples, 0.03%)</title><rect x="114.6" y="261" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.63" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,834,968 samples, 0.03%)</title><rect x="1180.8" y="277" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.80" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,679,421 samples, 0.01%)</title><rect x="867.0" y="469" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.96" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (22,969,731 samples, 0.08%)</title><rect x="932.0" y="325" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="935.02" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>decltype (22,944,895 samples, 0.08%)</title><rect x="113.6" y="485" width="0.9" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
|
|
<text x="116.58" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,926,878 samples, 0.01%)</title><rect x="1185.9" y="37" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1188.91" y="47.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (11,628,987 samples, 0.04%)</title><rect x="1186.2" y="165" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1189.21" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (24,127,088 samples, 0.08%)</title><rect x="519.8" y="261" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="522.81" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,894,226 samples, 0.03%)</title><rect x="933.5" y="373" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.54" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,154,517 samples, 0.01%)</title><rect x="1186.5" y="69" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1189.50" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::vector<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul>, std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> > >::resize (3,304,446 samples, 0.01%)</title><rect x="941.0" y="517" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="943.97" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__new_allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (52,594,123 samples, 0.17%)</title><rect x="1175.0" y="405" width="2.0" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
|
|
<text x="1177.98" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (52,594,123 samples, 0.17%)</title><rect x="1175.0" y="341" width="2.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
|
|
<text x="1177.98" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (10,627,702 samples, 0.04%)</title><rect x="114.6" y="421" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.57" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (13,631,459 samples, 0.05%)</title><rect x="866.4" y="357" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.42" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dash] (3,194,438 samples, 0.01%)</title><rect x="1189.1" y="421" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="1192.09" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (74,537,669 samples, 0.25%)</title><rect x="934.1" y="277" width="2.9" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
|
|
<text x="937.08" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,340,786 samples, 0.02%)</title><rect x="709.1" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="712.12" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,340,786 samples, 0.02%)</title><rect x="709.1" y="437" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="712.12" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,327,938 samples, 0.01%)</title><rect x="1187.3" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.29" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,854 samples, 0.03%)</title><rect x="666.0" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="668.97" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (11,628,987 samples, 0.04%)</title><rect x="1186.2" y="133" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1189.21" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__fopen_internal (10,442,407 samples, 0.03%)</title><rect x="933.5" y="453" width="0.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
|
|
<text x="936.54" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (40,468,083 samples, 0.13%)</title><rect x="111.9" y="181" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.90" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,895,709 samples, 0.02%)</title><rect x="934.1" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.09" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (18,749,682 samples, 0.06%)</title><rect x="113.6" y="293" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.65" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,895,940 samples, 0.01%)</title><rect x="867.0" y="549" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.96" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (12,953,538 samples, 0.04%)</title><rect x="1173.4" y="213" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1176.42" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::dispatcher::hw_dispatcher::initialize_hw (36,068,035 samples, 0.12%)</title><rect x="1186.1" y="357" width="1.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
|
|
<text x="1189.08" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>advise_stack_range (26,010,449 samples, 0.09%)</title><rect x="1187.8" y="549" width="1.0" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
|
|
<text x="1190.76" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator_traits<std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> > >::allocate (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="453" width="0.2" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
|
|
<text x="1177.00" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,515,049 samples, 0.02%)</title><rect x="10.4" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="13.36" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>idxd_cdev_open (3,638,434 samples, 0.01%)</title><rect x="1187.1" y="165" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
|
|
<text x="1190.12" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (46,730,723 samples, 0.16%)</title><rect x="1175.2" y="261" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.21" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,851,113 samples, 0.01%)</title><rect x="1174.6" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.61" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::vector<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul>, std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> > >::resize (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="517" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1177.00" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (36,809,180 samples, 0.12%)</title><rect x="939.2" y="309" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="942.23" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcache_init (3,304,446 samples, 0.01%)</title><rect x="941.0" y="373" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
|
|
<text x="943.97" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,327,938 samples, 0.01%)</title><rect x="1187.3" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.29" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (102,946,189 samples, 0.34%)</title><rect x="1182.0" y="181" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.99" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::task<std::allocator<unsigned char> >::task (72,172,962 samples, 0.24%)</title><rect x="927.2" y="469" width="2.8" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
|
|
<text x="930.18" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___mmap64 (3,319,544 samples, 0.01%)</title><rect x="1174.0" y="277" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
|
|
<text x="1177.01" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,340,786 samples, 0.02%)</title><rect x="709.1" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="712.12" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (43,912,672 samples, 0.15%)</title><rect x="111.8" y="277" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.76" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>add_wq (24,094,741 samples, 0.08%)</title><rect x="1186.1" y="261" width="1.0" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
|
|
<text x="1189.11" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (43,912,672 samples, 0.15%)</title><rect x="111.8" y="245" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.76" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (26,286,797 samples, 0.09%)</title><rect x="931.9" y="421" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="934.89" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (15,934,374 samples, 0.05%)</title><rect x="926.5" y="453" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.48" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_new_arena (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="309" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
|
|
<text x="1177.00" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,196,217,361 samples, 20.56%)</title><rect x="278.2" y="357" width="242.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="281.18" y="367.5" >[[kernel.kallsyms]]</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,689,460 samples, 0.19%)</title><rect x="109.5" y="389" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.51" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,854 samples, 0.03%)</title><rect x="666.0" y="437" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="668.97" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,490,795 samples, 0.02%)</title><rect x="931.7" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="934.68" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sysmalloc (52,594,123 samples, 0.17%)</title><rect x="1175.0" y="325" width="2.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
|
|
<text x="1177.98" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (31,245,532 samples, 0.10%)</title><rect x="1179.2" y="325" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1182.20" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (48,607,741 samples, 0.16%)</title><rect x="1177.0" y="421" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1180.04" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,433,031 samples, 0.12%)</title><rect x="865.5" y="469" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.49" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,739,506 samples, 0.01%)</title><rect x="1189.5" y="421" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1192.51" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unsigned int std::uniform_int_distribution<unsigned long>::_S_nd<unsigned long, std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>, unsigned int> (999,184,562 samples, 3.32%)</title><rect x="19.3" y="549" width="39.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
|
|
<text x="22.34" y="559.5" >uns..</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___mmap64 (48,281,164 samples, 0.16%)</title><rect x="930.0" y="453" width="1.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
|
|
<text x="933.00" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_file_underflow (15,317,698 samples, 0.05%)</title><rect x="1180.6" y="437" width="0.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
|
|
<text x="1183.58" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grow_heap (67,580,074 samples, 0.22%)</title><rect x="927.4" y="309" width="2.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
|
|
<text x="930.36" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,689,460 samples, 0.19%)</title><rect x="109.5" y="405" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.51" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (24,127,088 samples, 0.08%)</title><rect x="519.8" y="213" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="522.81" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,980,686 samples, 0.01%)</title><rect x="927.0" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.99" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,886,956 samples, 0.02%)</title><rect x="1180.2" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.19" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sum_check (1,364,784,253 samples, 4.53%)</title><rect x="115.0" y="517" width="53.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
|
|
<text x="117.99" y="527.5" >sum_c..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,340,786 samples, 0.02%)</title><rect x="709.1" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="712.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::SubmitTask (38,292,326 samples, 0.13%)</title><rect x="1186.0" y="437" width="1.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
|
|
<text x="1189.02" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,208,454 samples, 0.01%)</title><rect x="1181.8" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.83" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (1,980,065,646 samples, 6.57%)</title><rect x="1096.4" y="437" width="77.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1099.41" y="447.5" >[[kernel..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,507,469 samples, 0.03%)</title><rect x="926.8" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.78" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dash] (3,496,415 samples, 0.01%)</title><rect x="1189.1" y="453" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="1192.09" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (12,818,755 samples, 0.04%)</title><rect x="1174.3" y="453" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.26" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (47,628,726 samples, 0.16%)</title><rect x="930.0" y="373" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="933.03" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::buffer<std::allocator<unsigned char>, dml::detail::descriptor, dml::detail::completion_record>::buffer (108,946,296 samples, 0.36%)</title><rect x="1181.8" y="389" width="4.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
|
|
<text x="1184.76" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[stack]] (1,222,902,290 samples, 4.06%)</title><rect x="10.6" y="581" width="47.9" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
|
|
<text x="13.58" y="591.5" >[[st..</text>
|
|
</g>
|
|
<g >
|
|
<title>tcache_init (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="357" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
|
|
<text x="1177.00" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (11,628,987 samples, 0.04%)</title><rect x="1186.2" y="149" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1189.21" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,414,650 samples, 0.02%)</title><rect x="865.1" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::ExecuteCopy (76,042,767 samples, 0.25%)</title><rect x="934.0" y="485" width="3.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
|
|
<text x="937.02" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (26,010,449 samples, 0.09%)</title><rect x="1187.8" y="469" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.76" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (102,946,189 samples, 0.34%)</title><rect x="1182.0" y="197" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.99" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,895,709 samples, 0.02%)</title><rect x="934.1" y="149" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.09" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::hardware_device::submit (38,292,326 samples, 0.13%)</title><rect x="1186.0" y="405" width="1.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
|
|
<text x="1189.02" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (46,452,777 samples, 0.15%)</title><rect x="935.2" y="85" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="938.18" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dash] (4,123,565 samples, 0.01%)</title><rect x="1189.1" y="581" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="1192.09" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (108,543,048 samples, 0.36%)</title><rect x="1181.8" y="277" width="4.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
|
|
<text x="1184.77" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sysmalloc (74,355,039 samples, 0.25%)</title><rect x="934.1" y="261" width="2.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
|
|
<text x="937.09" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grow_heap (69,459,330 samples, 0.23%)</title><rect x="934.3" y="245" width="2.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
|
|
<text x="937.28" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__tree_barrier<NopStruct>::wait (4,934,427 samples, 0.02%)</title><rect x="940.8" y="485" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
|
|
<text x="943.76" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scan_b (345,594,606 samples, 1.15%)</title><rect x="1174.2" y="533" width="13.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
|
|
<text x="1177.19" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,234,982 samples, 0.03%)</title><rect x="933.2" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.22" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,393,787 samples, 0.01%)</title><rect x="1189.5" y="453" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1192.48" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,087,033 samples, 0.01%)</title><rect x="1174.0" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.02" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall (3,384,849 samples, 0.01%)</title><rect x="940.8" y="405" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="943.82" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (19,296,338 samples, 0.06%)</title><rect x="1173.2" y="277" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1176.17" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,437,055 samples, 0.03%)</title><rect x="801.6" y="405" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="804.62" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,899,192 samples, 0.01%)</title><rect x="1189.5" y="517" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1192.46" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,707,016 samples, 0.02%)</title><rect x="1173.7" y="165" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1176.71" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,549,011,630 samples, 25.05%)</title><rect x="225.2" y="501" width="295.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="228.21" y="511.5" >[[kernel.kallsyms]]</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (20,389,388 samples, 0.07%)</title><rect x="113.6" y="325" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.58" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (43,912,672 samples, 0.15%)</title><rect x="111.8" y="325" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.76" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::buffer<std::allocator<unsigned char>, dml::detail::descriptor, dml::detail::completion_record>::buffer (72,172,962 samples, 0.24%)</title><rect x="927.2" y="453" width="2.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
|
|
<text x="930.18" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (18,726,527 samples, 0.06%)</title><rect x="866.2" y="405" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.22" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,205,810 samples, 0.02%)</title><rect x="1173.7" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1176.69" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,278,132 samples, 0.03%)</title><rect x="865.1" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.08" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (89,429,025 samples, 0.30%)</title><rect x="937.2" y="485" width="3.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="940.17" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,035,802 samples, 0.01%)</title><rect x="940.8" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="943.84" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (20,513,121 samples, 0.07%)</title><rect x="520.0" y="197" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="522.95" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall (15,934,374 samples, 0.05%)</title><rect x="926.5" y="485" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="929.48" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,330,637 samples, 0.01%)</title><rect x="927.2" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.19" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::handler<dml::mem_copy_operation, std::allocator<unsigned char> >::handler (52,594,123 samples, 0.17%)</title><rect x="1175.0" y="485" width="2.0" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
|
|
<text x="1177.98" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (43,912,672 samples, 0.15%)</title><rect x="111.8" y="341" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.76" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (52,345,705 samples, 0.17%)</title><rect x="938.6" y="357" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="941.62" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::CacheData::~CacheData (44,773,918 samples, 0.15%)</title><rect x="111.8" y="389" width="1.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
|
|
<text x="114.76" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unsigned long std::uniform_int_distribution<unsigned long>::operator (1,222,040,291 samples, 4.05%)</title><rect x="10.6" y="565" width="47.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
|
|
<text x="13.61" y="575.5" >unsi..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,028,875 samples, 0.02%)</title><rect x="1174.6" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.56" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,834,968 samples, 0.03%)</title><rect x="1180.8" y="293" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.80" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (76,042,767 samples, 0.25%)</title><rect x="934.0" y="325" width="3.0" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
|
|
<text x="937.02" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (45,902,157 samples, 0.15%)</title><rect x="1177.1" y="341" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1180.14" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::GetCacheNode (18,425,267 samples, 0.06%)</title><rect x="926.4" y="501" width="0.7" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
|
|
<text x="929.39" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,278,132 samples, 0.03%)</title><rect x="865.1" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,847,267 samples, 0.02%)</title><rect x="801.7" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="804.72" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (11,918,533 samples, 0.04%)</title><rect x="113.9" y="277" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.91" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (67,094,839 samples, 0.22%)</title><rect x="934.4" y="133" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.37" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,472,549 samples, 0.01%)</title><rect x="1187.1" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.08" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>auto dml::detail::submit<dml::hardware, dml::mem_copy_operation, dml::execution_interface<dml::hardware, std::allocator<unsigned char> >, dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (76,042,767 samples, 0.25%)</title><rect x="934.0" y="453" width="3.0" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
|
|
<text x="937.02" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,688,156 samples, 0.03%)</title><rect x="114.6" y="277" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.61" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (10,259,033 samples, 0.03%)</title><rect x="114.6" y="309" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.59" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,472,549 samples, 0.01%)</title><rect x="1187.1" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.08" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,633,248 samples, 0.03%)</title><rect x="1174.4" y="405" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.38" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_mm512_stream_load_si512 (976,514,077 samples, 3.24%)</title><rect x="887.9" y="485" width="38.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
|
|
<text x="890.86" y="495.5" >_mm..</text>
|
|
</g>
|
|
<g >
|
|
<title>main (19,307,949,140 samples, 64.06%)</title><rect x="109.5" y="533" width="755.9" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
|
|
<text x="112.51" y="543.5" >main</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,724,961 samples, 0.01%)</title><rect x="1174.0" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.03" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,653,708 samples, 0.02%)</title><rect x="936.7" y="53" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="939.74" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (45,523,836 samples, 0.15%)</title><rect x="935.2" y="69" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="938.22" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (15,934,374 samples, 0.05%)</title><rect x="926.5" y="437" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.48" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcache_init (3,304,446 samples, 0.01%)</title><rect x="941.0" y="357" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
|
|
<text x="943.97" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_read (9,834,968 samples, 0.03%)</title><rect x="1180.8" y="405" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
|
|
<text x="1183.80" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (24,127,088 samples, 0.08%)</title><rect x="519.8" y="277" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="522.81" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (24,201,250 samples, 0.08%)</title><rect x="932.0" y="341" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="934.97" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (43,290,481 samples, 0.14%)</title><rect x="1175.3" y="181" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.34" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___mmap64 (3,319,544 samples, 0.01%)</title><rect x="1174.0" y="261" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
|
|
<text x="1177.01" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_mid_memalign (108,946,296 samples, 0.36%)</title><rect x="1181.8" y="309" width="4.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
|
|
<text x="1184.76" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,854 samples, 0.03%)</title><rect x="666.0" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="668.97" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (65,884,039 samples, 0.22%)</title><rect x="927.4" y="181" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.42" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dash] (4,123,565 samples, 0.01%)</title><rect x="1189.1" y="517" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="1192.09" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>queue_stack (10,627,702 samples, 0.04%)</title><rect x="114.6" y="469" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
|
|
<text x="117.57" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,465,849 samples, 0.02%)</title><rect x="926.1" y="453" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.09" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (20,389,388 samples, 0.07%)</title><rect x="113.6" y="389" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.58" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___close_nocancel (2,810,815 samples, 0.01%)</title><rect x="933.0" y="421" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
|
|
<text x="935.95" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (23,008,980 samples, 0.08%)</title><rect x="1187.9" y="405" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.88" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,234,982 samples, 0.03%)</title><rect x="933.2" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.22" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>QDPBench (30,111,044,709 samples, 99.90%)</title><rect x="10.0" y="597" width="1178.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
|
|
<text x="13.00" y="607.5" >QDPBench</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,965,387 samples, 0.01%)</title><rect x="1178.8" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1181.82" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (16,782,290 samples, 0.06%)</title><rect x="1173.3" y="261" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1176.27" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,909,339 samples, 0.01%)</title><rect x="1180.3" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.31" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,714,704 samples, 0.01%)</title><rect x="1175.0" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.03" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_read (8,234,982 samples, 0.03%)</title><rect x="933.2" y="421" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
|
|
<text x="936.22" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>void std::__detail::__platform_wait<int> (3,384,849 samples, 0.01%)</title><rect x="940.8" y="421" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="943.82" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,895,709 samples, 0.02%)</title><rect x="934.1" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.09" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>numa_node_size64 (27,653,358 samples, 0.09%)</title><rect x="932.9" y="469" width="1.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
|
|
<text x="935.94" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_file_close_it (3,343,282 samples, 0.01%)</title><rect x="1180.4" y="437" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
|
|
<text x="1183.42" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,895,709 samples, 0.02%)</title><rect x="934.1" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.09" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (25,526,558 samples, 0.08%)</title><rect x="931.9" y="357" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="934.92" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,548,151,192 samples, 25.04%)</title><rect x="225.2" y="453" width="295.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="228.25" y="463.5" >[[kernel.kallsyms]]</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,678,190 samples, 0.02%)</title><rect x="10.4" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="13.40" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (20,389,388 samples, 0.07%)</title><rect x="113.6" y="341" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.58" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>void std::destroy_at<std::pair<unsigned char* const, dsacache::CacheData> > (44,773,918 samples, 0.15%)</title><rect x="111.8" y="421" width="1.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
|
|
<text x="114.76" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::dispatcher::hw_queue::initialize_new_queue (11,142,496 samples, 0.04%)</title><rect x="1187.1" y="325" width="0.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
|
|
<text x="1190.05" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,638,434 samples, 0.01%)</title><rect x="1187.1" y="149" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.12" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>auto dml::detail::ml::make_mem_move_task<std::allocator<unsigned char> > (76,042,767 samples, 0.25%)</title><rect x="934.0" y="421" width="3.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
|
|
<text x="937.02" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,311,014 samples, 0.01%)</title><rect x="936.9" y="37" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="939.87" y="47.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (43,912,672 samples, 0.15%)</title><rect x="111.8" y="229" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.76" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::handler<dml::mem_copy_operation, std::allocator<unsigned char> >::handler (72,843,903 samples, 0.24%)</title><rect x="927.2" y="485" width="2.8" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
|
|
<text x="930.15" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_file_close_it (2,810,815 samples, 0.01%)</title><rect x="933.0" y="437" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
|
|
<text x="935.95" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (67,580,074 samples, 0.22%)</title><rect x="927.4" y="229" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.36" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,689,460 samples, 0.19%)</title><rect x="109.5" y="421" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.51" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,340,786 samples, 0.02%)</title><rect x="709.1" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="712.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,330,637 samples, 0.01%)</title><rect x="927.2" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.19" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (20,165,201 samples, 0.07%)</title><rect x="1173.1" y="309" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1176.14" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,052,559 samples, 0.01%)</title><rect x="1180.6" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.60" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,278,378 samples, 0.03%)</title><rect x="666.0" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="669.00" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (11,628,987 samples, 0.04%)</title><rect x="1186.2" y="197" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1189.21" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,052,559 samples, 0.01%)</title><rect x="1180.6" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.60" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_file_fopen (8,519,108 samples, 0.03%)</title><rect x="1181.3" y="437" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
|
|
<text x="1184.32" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (22,241,544 samples, 0.07%)</title><rect x="1178.1" y="325" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1181.07" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,542,907,663 samples, 25.03%)</title><rect x="225.5" y="421" width="295.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="228.45" y="431.5" >[[kernel.kallsyms]]</text>
|
|
</g>
|
|
<g >
|
|
<title>aggr_j (1,889,465,270 samples, 6.27%)</title><rect x="867.1" y="533" width="74.0" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
|
|
<text x="870.13" y="543.5" >aggr_j</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,327,938 samples, 0.01%)</title><rect x="1187.3" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.29" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,396,004 samples, 0.03%)</title><rect x="114.7" y="245" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.66" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,437,055 samples, 0.03%)</title><rect x="801.6" y="357" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="804.62" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_madvise (26,010,449 samples, 0.09%)</title><rect x="1187.8" y="533" width="1.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="1190.76" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (15,929,571 samples, 0.05%)</title><rect x="1173.3" y="245" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1176.30" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,538,487 samples, 0.03%)</title><rect x="933.2" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.25" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (53,257,964 samples, 0.18%)</title><rect x="109.6" y="325" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.64" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,885,828 samples, 0.02%)</title><rect x="1174.5" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.49" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>accfg_get_param_str (6,647,561 samples, 0.02%)</title><rect x="1186.7" y="245" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
|
|
<text x="1189.73" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>openat (11,628,987 samples, 0.04%)</title><rect x="1186.2" y="229" width="0.5" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
|
|
<text x="1189.21" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unsigned long std::uniform_int_distribution<unsigned long>::operator (1,247,495,041 samples, 4.14%)</title><rect x="60.5" y="565" width="48.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
|
|
<text x="63.53" y="575.5" >unsi..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,318,867 samples, 0.01%)</title><rect x="10.4" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="13.45" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,208,454 samples, 0.01%)</title><rect x="1181.8" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.83" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_open64 (10,442,407 samples, 0.03%)</title><rect x="933.5" y="405" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
|
|
<text x="936.54" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (47,812,091 samples, 0.16%)</title><rect x="928.1" y="149" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="931.13" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,531,108 samples, 0.12%)</title><rect x="865.5" y="565" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.49" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (89,429,025 samples, 0.30%)</title><rect x="937.2" y="469" width="3.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="940.17" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (33,160,854 samples, 0.11%)</title><rect x="865.7" y="437" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.66" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,699,146 samples, 0.01%)</title><rect x="1181.8" y="85" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.85" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator_traits<std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> > >::allocate (108,946,296 samples, 0.36%)</title><rect x="1181.8" y="373" width="4.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="1184.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,963,362 samples, 0.01%)</title><rect x="1180.4" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.44" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (25,526,558 samples, 0.08%)</title><rect x="931.9" y="373" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="934.92" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,791,218 samples, 0.02%)</title><rect x="1180.2" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.15" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_mprotect (47,572,366 samples, 0.16%)</title><rect x="1175.2" y="293" width="1.8" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
|
|
<text x="1178.17" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (46,730,723 samples, 0.16%)</title><rect x="1175.2" y="245" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.21" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_read (9,834,968 samples, 0.03%)</title><rect x="1180.8" y="421" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
|
|
<text x="1183.80" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___getdelim (12,180,826 samples, 0.04%)</title><rect x="933.1" y="453" width="0.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
|
|
<text x="936.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,437,055 samples, 0.03%)</title><rect x="801.6" y="389" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="804.62" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (68,850,041 samples, 0.23%)</title><rect x="934.3" y="181" width="2.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.30" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,691,293 samples, 0.02%)</title><rect x="1188.6" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1191.56" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,208,454 samples, 0.01%)</title><rect x="1181.8" y="149" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.83" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dash] (4,123,565 samples, 0.01%)</title><rect x="1189.1" y="469" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="1192.09" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::barrier<NopStruct>::arrive_and_wait (4,934,427 samples, 0.02%)</title><rect x="940.8" y="517" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="943.76" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,343,282 samples, 0.01%)</title><rect x="1180.4" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.42" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (66,115,525 samples, 0.22%)</title><rect x="1183.4" y="85" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1186.43" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::_M_gen_rand (1,619,966,571 samples, 5.37%)</title><rect x="802.0" y="437" width="63.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
|
|
<text x="804.99" y="447.5" >std::m..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (10,627,702 samples, 0.04%)</title><rect x="114.6" y="325" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.57" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3,304,446 samples, 0.01%)</title><rect x="941.0" y="389" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
|
|
<text x="943.97" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,689,460 samples, 0.19%)</title><rect x="109.5" y="373" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.51" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (52,594,123 samples, 0.17%)</title><rect x="1175.0" y="421" width="2.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
|
|
<text x="1177.98" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_openat64 (11,628,987 samples, 0.04%)</title><rect x="1186.2" y="213" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
|
|
<text x="1189.21" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,320,393 samples, 0.01%)</title><rect x="940.8" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="943.83" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>void std::allocator_traits<std::allocator<std::thread> >::construct<std::thread, void (22,944,895 samples, 0.08%)</title><rect x="113.6" y="501" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.58" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (24,127,088 samples, 0.08%)</title><rect x="519.8" y="229" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="522.81" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (45,889,320 samples, 0.15%)</title><rect x="1175.2" y="197" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.24" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,465,849 samples, 0.02%)</title><rect x="926.1" y="485" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.09" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (11,628,987 samples, 0.04%)</title><rect x="1186.2" y="181" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1189.21" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,205,810 samples, 0.02%)</title><rect x="1173.7" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1176.69" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,894,226 samples, 0.03%)</title><rect x="933.5" y="341" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.54" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__new_allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> >::allocate (3,304,446 samples, 0.01%)</title><rect x="941.0" y="421" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
|
|
<text x="943.97" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_memalign (75,333,655 samples, 0.25%)</title><rect x="934.0" y="293" width="3.0" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
|
|
<text x="937.05" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (108,946,296 samples, 0.36%)</title><rect x="1181.8" y="325" width="4.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
|
|
<text x="1184.76" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>arena_get2 (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="341" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
|
|
<text x="1177.00" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (68,850,041 samples, 0.23%)</title><rect x="934.3" y="213" width="2.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.30" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,340,786 samples, 0.02%)</title><rect x="709.1" y="293" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="712.12" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,208,454 samples, 0.01%)</title><rect x="1181.8" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.83" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,850,046 samples, 0.03%)</title><rect x="933.6" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.62" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___mmap64 (48,281,164 samples, 0.16%)</title><rect x="930.0" y="437" width="1.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
|
|
<text x="933.00" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (25,322,052 samples, 0.08%)</title><rect x="1187.8" y="437" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.79" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sysfs_read_attr (4,992,336 samples, 0.02%)</title><rect x="1187.3" y="293" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
|
|
<text x="1190.26" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,689,460 samples, 0.19%)</title><rect x="109.5" y="453" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.51" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dash] (4,123,565 samples, 0.01%)</title><rect x="1189.1" y="485" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="1192.09" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,899,192 samples, 0.01%)</title><rect x="1189.5" y="549" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1192.46" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,895,709 samples, 0.02%)</title><rect x="934.1" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.09" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> > >::_M_deallocate_node (44,773,918 samples, 0.15%)</title><rect x="111.8" y="453" width="1.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
|
|
<text x="114.76" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,414,650 samples, 0.02%)</title><rect x="865.1" y="293" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.12" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,463,632 samples, 0.12%)</title><rect x="1179.0" y="389" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1181.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (89,429,025 samples, 0.30%)</title><rect x="937.2" y="437" width="3.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="940.17" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (20,389,388 samples, 0.07%)</title><rect x="113.6" y="373" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.58" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mbind (37,463,632 samples, 0.12%)</title><rect x="1179.0" y="453" width="1.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
|
|
<text x="1181.95" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (22,098,821 samples, 0.07%)</title><rect x="866.1" y="421" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.09" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,961,023 samples, 0.02%)</title><rect x="933.7" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.66" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (1,066,528,744 samples, 3.54%)</title><rect x="1132.2" y="341" width="41.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1135.17" y="351.5" >[[k..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,414,650 samples, 0.02%)</title><rect x="865.1" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.12" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libstdc++.so.6.0.32] (8,189,417,539 samples, 27.17%)</title><rect x="867.1" y="549" width="320.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
|
|
<text x="870.11" y="559.5" >[libstdc++.so.6.0.32]</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_doallocbuf (5,482,730 samples, 0.02%)</title><rect x="1180.6" y="405" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
|
|
<text x="1183.58" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (44,996,270 samples, 0.15%)</title><rect x="930.1" y="341" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="933.13" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,854 samples, 0.03%)</title><rect x="666.0" y="421" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="668.97" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sh (6,316,890 samples, 0.02%)</title><rect x="1189.1" y="597" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
|
|
<text x="1192.05" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>arch_fork (3,899,192 samples, 0.01%)</title><rect x="1189.5" y="565" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
|
|
<text x="1192.46" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,689,460 samples, 0.19%)</title><rect x="109.5" y="357" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.51" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grow_heap (47,572,366 samples, 0.16%)</title><rect x="1175.2" y="309" width="1.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
|
|
<text x="1178.17" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::vector<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul>, std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> > >::_M_default_append (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="501" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
|
|
<text x="1177.00" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (43,912,672 samples, 0.15%)</title><rect x="111.8" y="293" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.76" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__new_allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> >::allocate (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="421" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
|
|
<text x="1177.00" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>date (2,801,126 samples, 0.01%)</title><rect x="1188.8" y="597" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
|
|
<text x="1191.84" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,014,446 samples, 0.03%)</title><rect x="933.6" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.58" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (24,185,381 samples, 0.08%)</title><rect x="1173.0" y="325" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1175.98" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,552,570 samples, 0.02%)</title><rect x="934.1" y="117" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.10" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,837,971 samples, 0.01%)</title><rect x="867.0" y="517" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.96" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_memalign (52,594,123 samples, 0.17%)</title><rect x="1175.0" y="357" width="2.0" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
|
|
<text x="1177.98" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sysmalloc (72,172,962 samples, 0.24%)</title><rect x="927.2" y="325" width="2.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
|
|
<text x="930.18" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>auto dml::detail::submit<dml::hardware, dml::mem_copy_operation, dml::execution_interface<dml::hardware, std::allocator<unsigned char> >, dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (147,238,622 samples, 0.49%)</title><rect x="1181.8" y="453" width="5.7" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
|
|
<text x="1184.76" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Vector_Loader<unsigned long, (976,514,077 samples, 3.24%)</title><rect x="887.9" y="501" width="38.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
|
|
<text x="890.86" y="511.5" >Vec..</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_munmap (10,627,702 samples, 0.04%)</title><rect x="114.6" y="437" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="117.57" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (20,389,388 samples, 0.07%)</title><rect x="113.6" y="357" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.58" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[unknown] (1,249,321,349 samples, 4.14%)</title><rect x="60.5" y="581" width="48.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
|
|
<text x="63.46" y="591.5" >[unk..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (47,572,366 samples, 0.16%)</title><rect x="1175.2" y="277" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.17" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,237,862 samples, 0.03%)</title><rect x="926.7" y="373" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.75" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (14,437,602 samples, 0.05%)</title><rect x="926.5" y="405" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.54" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,894,226 samples, 0.03%)</title><rect x="933.5" y="325" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.54" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,457,397,998 samples, 24.74%)</title><rect x="228.8" y="389" width="292.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="231.80" y="399.5" >[[kernel.kallsyms]]</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,318,867 samples, 0.01%)</title><rect x="10.4" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="13.45" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,899,192 samples, 0.01%)</title><rect x="1189.5" y="533" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1192.46" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grow_heap (102,946,189 samples, 0.34%)</title><rect x="1182.0" y="245" width="4.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
|
|
<text x="1184.99" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,433,031 samples, 0.12%)</title><rect x="865.5" y="485" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.49" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,433,031 samples, 0.12%)</title><rect x="865.5" y="501" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.49" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,894,226 samples, 0.03%)</title><rect x="933.5" y="389" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.54" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sysmalloc (107,684,660 samples, 0.36%)</title><rect x="1181.8" y="261" width="4.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
|
|
<text x="1184.81" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::impl::hardware::submit (38,292,326 samples, 0.13%)</title><rect x="1186.0" y="421" width="1.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="1189.02" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::dispatcher::hw_device::initialize_new_device (36,068,035 samples, 0.12%)</title><rect x="1186.1" y="341" width="1.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
|
|
<text x="1189.08" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator_traits<std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> > >::allocate (76,042,767 samples, 0.25%)</title><rect x="934.0" y="373" width="3.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="937.02" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Hashtable<unsigned char*, std::pair<unsigned char* const, dsacache::CacheData>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> >, std::__detail::_Select1st, std::equal_to<unsigned char*>, std::hash<unsigned char*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::clear (45,636,194 samples, 0.15%)</title><rect x="111.7" y="485" width="1.8" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
|
|
<text x="114.73" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,546,338 samples, 0.02%)</title><rect x="1175.0" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.00" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_doallocbuf (5,482,730 samples, 0.02%)</title><rect x="1180.6" y="421" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
|
|
<text x="1183.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dash] (3,496,415 samples, 0.01%)</title><rect x="1189.1" y="437" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="1192.09" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,899,192 samples, 0.01%)</title><rect x="1189.5" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1192.46" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,340,786 samples, 0.02%)</title><rect x="709.1" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="712.12" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>void std::__detail::__waiter<std::integral_constant<bool, true> >::_M_do_wait<std::__tree_barrier<NopStruct>::wait (4,199,137 samples, 0.01%)</title><rect x="940.8" y="453" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
|
|
<text x="943.79" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,035,802 samples, 0.01%)</title><rect x="940.8" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="943.84" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,884,301 samples, 0.01%)</title><rect x="1189.5" y="469" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1192.46" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (34,361,612 samples, 0.11%)</title><rect x="110.4" y="309" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="113.38" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,234,982 samples, 0.03%)</title><rect x="933.2" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.22" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (51,193,258 samples, 0.17%)</title><rect x="928.0" y="165" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="931.00" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (108,946,296 samples, 0.36%)</title><rect x="1181.8" y="437" width="4.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
|
|
<text x="1184.76" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,330,637 samples, 0.01%)</title><rect x="927.2" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.19" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (28,944,481 samples, 0.10%)</title><rect x="519.6" y="325" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="522.62" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_mprotect (102,946,189 samples, 0.34%)</title><rect x="1182.0" y="229" width="4.0" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
|
|
<text x="1184.99" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (67,580,074 samples, 0.22%)</title><rect x="927.4" y="245" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.36" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Vector_base<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul>, std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> > >::_M_allocate (3,304,446 samples, 0.01%)</title><rect x="941.0" y="485" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
|
|
<text x="943.97" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_munmap (56,689,460 samples, 0.19%)</title><rect x="109.5" y="517" width="2.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="112.51" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,743,611 samples, 0.03%)</title><rect x="1180.9" y="245" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.88" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcache_init (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="373" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
|
|
<text x="1177.00" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_open64 (8,519,108 samples, 0.03%)</title><rect x="1181.3" y="405" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
|
|
<text x="1184.32" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_mid_memalign (52,594,123 samples, 0.17%)</title><rect x="1175.0" y="373" width="2.0" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
|
|
<text x="1177.98" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::task<std::allocator<unsigned char> >::task (76,042,767 samples, 0.25%)</title><rect x="934.0" y="405" width="3.0" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
|
|
<text x="937.02" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (20,389,388 samples, 0.07%)</title><rect x="113.6" y="405" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.58" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,384,849 samples, 0.01%)</title><rect x="940.8" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="943.82" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (25,862,590 samples, 0.09%)</title><rect x="519.7" y="309" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="522.74" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (24,757,757 samples, 0.08%)</title><rect x="1187.8" y="421" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.81" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (72,172,962 samples, 0.24%)</title><rect x="927.2" y="341" width="2.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
|
|
<text x="930.18" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__new_allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (76,042,767 samples, 0.25%)</title><rect x="934.0" y="341" width="3.0" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
|
|
<text x="937.02" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,546,338 samples, 0.02%)</title><rect x="1175.0" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.00" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,834,968 samples, 0.03%)</title><rect x="1180.8" y="357" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.80" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (1,953,796,617 samples, 6.48%)</title><rect x="1097.4" y="389" width="76.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1100.44" y="399.5" >[[kernel..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,684,763 samples, 0.03%)</title><rect x="1181.3" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.32" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,520,112 samples, 0.01%)</title><rect x="926.2" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.21" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::Access (275,442,985 samples, 0.91%)</title><rect x="926.4" y="517" width="10.8" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
|
|
<text x="929.39" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,463,632 samples, 0.12%)</title><rect x="1179.0" y="421" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1181.95" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (43,912,672 samples, 0.15%)</title><rect x="111.8" y="261" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.76" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___mmap64 (48,607,741 samples, 0.16%)</title><rect x="1177.0" y="437" width="1.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
|
|
<text x="1180.04" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (48,607,741 samples, 0.16%)</title><rect x="1177.0" y="373" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1180.04" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,472,549 samples, 0.01%)</title><rect x="1187.1" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.08" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_memalign (108,543,048 samples, 0.36%)</title><rect x="1181.8" y="293" width="4.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
|
|
<text x="1184.77" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (46,730,723 samples, 0.16%)</title><rect x="1175.2" y="229" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.21" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_file_open (10,442,407 samples, 0.03%)</title><rect x="933.5" y="421" width="0.5" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
|
|
<text x="936.54" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (72,172,962 samples, 0.24%)</title><rect x="927.2" y="389" width="2.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
|
|
<text x="930.18" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (1,114,937,523 samples, 3.70%)</title><rect x="1130.3" y="357" width="43.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1133.28" y="367.5" >[[ke..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,895,709 samples, 0.02%)</title><rect x="934.1" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.09" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,733,096 samples, 0.01%)</title><rect x="926.2" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.24" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::Clear (45,636,194 samples, 0.15%)</title><rect x="111.7" y="517" width="1.8" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
|
|
<text x="114.73" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_fclose (2,810,815 samples, 0.01%)</title><rect x="933.0" y="453" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
|
|
<text x="935.95" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Hashtable<unsigned char*, std::pair<unsigned char* const, dsacache::CacheData>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> >, std::__detail::_Select1st, std::equal_to<unsigned char*>, std::hash<unsigned char*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find (2,594,606 samples, 0.01%)</title><rect x="1174.9" y="469" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
|
|
<text x="1177.88" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,847,267 samples, 0.02%)</title><rect x="801.7" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="804.72" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (47,619,043 samples, 0.16%)</title><rect x="935.1" y="101" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="938.13" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,544,275,261 samples, 25.03%)</title><rect x="225.4" y="437" width="295.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="228.40" y="447.5" >[[kernel.kallsyms]]</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,414,650 samples, 0.02%)</title><rect x="865.1" y="261" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.12" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall (12,818,755 samples, 0.04%)</title><rect x="1174.3" y="485" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="1177.26" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,472,549 samples, 0.01%)</title><rect x="1187.1" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.08" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (19,152,020 samples, 0.06%)</title><rect x="520.0" y="181" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="523.01" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,437,055 samples, 0.03%)</title><rect x="801.6" y="421" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="804.62" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (22,481,351 samples, 0.07%)</title><rect x="1187.9" y="389" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.90" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_open64 (3,327,938 samples, 0.01%)</title><rect x="1187.3" y="261" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
|
|
<text x="1190.29" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>auto dml::detail::ml::make_mem_move_task<std::allocator<unsigned char> > (108,946,296 samples, 0.36%)</title><rect x="1181.8" y="421" width="4.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
|
|
<text x="1184.76" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::operator (3,985,773,817 samples, 13.22%)</title><rect x="709.4" y="453" width="156.0" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
|
|
<text x="712.37" y="463.5" >std::mersenne_twiste..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (66,900,060 samples, 0.22%)</title><rect x="927.4" y="197" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.38" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,913,068 samples, 0.01%)</title><rect x="1174.0" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.02" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,330,637 samples, 0.01%)</title><rect x="927.2" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.19" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,463,632 samples, 0.12%)</title><rect x="1179.0" y="405" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1181.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,463,632 samples, 0.12%)</title><rect x="1179.0" y="373" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1181.95" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,899,192 samples, 0.01%)</title><rect x="1189.5" y="485" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1192.46" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,340,786 samples, 0.02%)</title><rect x="709.1" y="421" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="712.12" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (102,946,189 samples, 0.34%)</title><rect x="1182.0" y="213" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.99" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,079,005 samples, 0.02%)</title><rect x="926.1" y="421" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.11" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,208,454 samples, 0.01%)</title><rect x="1181.8" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.83" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,739,506 samples, 0.01%)</title><rect x="1189.5" y="437" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1192.51" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (46,383,137 samples, 0.15%)</title><rect x="930.1" y="357" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="933.08" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (8,220,408,017 samples, 27.27%)</title><rect x="867.0" y="565" width="321.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
|
|
<text x="869.96" y="575.5" >start_thread</text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::dispatcher::hw_dispatcher::hw_dispatcher (36,068,035 samples, 0.12%)</title><rect x="1186.1" y="373" width="1.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
|
|
<text x="1189.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__new_allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (108,946,296 samples, 0.36%)</title><rect x="1181.8" y="341" width="4.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
|
|
<text x="1184.76" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,733,096 samples, 0.01%)</title><rect x="926.2" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.24" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (1,972,678,394 samples, 6.54%)</title><rect x="1096.7" y="405" width="77.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1099.70" y="415.5" >[[kernel..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,854 samples, 0.03%)</title><rect x="666.0" y="453" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="668.97" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,477,240 samples, 0.12%)</title><rect x="865.5" y="517" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.49" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::thread& std::vector<std::thread, std::allocator<std::thread> >::emplace_back<void (24,662,729 samples, 0.08%)</title><rect x="113.6" y="517" width="0.9" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
|
|
<text x="116.58" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,854 samples, 0.03%)</title><rect x="666.0" y="469" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="668.97" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,848,234 samples, 0.02%)</title><rect x="1181.3" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.35" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,485,010 samples, 0.03%)</title><rect x="926.8" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.78" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (72,172,962 samples, 0.24%)</title><rect x="927.2" y="421" width="2.8" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
|
|
<text x="930.18" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,621,394 samples, 0.01%)</title><rect x="1180.3" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.32" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,125,463 samples, 0.19%)</title><rect x="938.5" y="373" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="941.47" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_start_main_impl (4,123,565 samples, 0.01%)</title><rect x="1189.1" y="565" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1192.09" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,474 samples, 0.03%)</title><rect x="865.0" y="421" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.05" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___getdelim (16,992,392 samples, 0.06%)</title><rect x="1180.6" y="453" width="0.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
|
|
<text x="1183.55" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sudo (17,914,694 samples, 0.06%)</title><rect x="1189.3" y="597" width="0.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="1192.30" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,847,851 samples, 0.01%)</title><rect x="927.2" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.21" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (39,469,767 samples, 0.13%)</title><rect x="939.1" y="325" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="942.13" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (10,627,702 samples, 0.04%)</title><rect x="114.6" y="389" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.57" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (67,574,391 samples, 0.22%)</title><rect x="934.4" y="149" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.35" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sysfs_device_parse (24,925,539 samples, 0.08%)</title><rect x="1186.1" y="277" width="1.0" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
|
|
<text x="1189.08" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,234,982 samples, 0.03%)</title><rect x="933.2" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.22" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (36,849,356 samples, 0.12%)</title><rect x="1179.0" y="341" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1181.98" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,414,650 samples, 0.02%)</title><rect x="865.1" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,847,267 samples, 0.02%)</title><rect x="801.7" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="804.72" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,384,849 samples, 0.01%)</title><rect x="940.8" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="943.82" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,854 samples, 0.03%)</title><rect x="666.0" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="668.97" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,028,875 samples, 0.02%)</title><rect x="1174.6" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.56" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__pthread_clockjoin_ex (11,424,709 samples, 0.04%)</title><rect x="114.5" y="501" width="0.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
|
|
<text x="117.55" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Vector_base<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul>, std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> > >::_M_allocate (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="469" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
|
|
<text x="1177.00" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,472,549 samples, 0.01%)</title><rect x="1187.1" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.08" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_mm512_stream_load_si512 (3,787,754,318 samples, 12.57%)</title><rect x="947.8" y="485" width="148.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
|
|
<text x="950.78" y="495.5" >_mm512_stream_load..</text>
|
|
</g>
|
|
<g >
|
|
<title>std::thread::thread<void (22,944,895 samples, 0.08%)</title><rect x="113.6" y="469" width="0.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
|
|
<text x="116.58" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (62,792,726 samples, 0.21%)</title><rect x="1183.6" y="69" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1186.56" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>alloc_new_heap (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="293" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
|
|
<text x="1177.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_mprotect (69,459,330 samples, 0.23%)</title><rect x="934.3" y="229" width="2.7" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
|
|
<text x="937.28" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator_traits<std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> > >::allocate (52,594,123 samples, 0.17%)</title><rect x="1175.0" y="437" width="2.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="1177.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,401,293 samples, 0.01%)</title><rect x="931.7" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="934.72" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (102,946,189 samples, 0.34%)</title><rect x="1182.0" y="165" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.99" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,437,055 samples, 0.03%)</title><rect x="801.6" y="373" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="804.62" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,837,971 samples, 0.01%)</title><rect x="867.0" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.96" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,631,112 samples, 0.03%)</title><rect x="926.8" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.81" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::unordered_map<unsigned char*, dsacache::CacheData, std::hash<unsigned char*>, std::equal_to<unsigned char*>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> > >::find (2,594,606 samples, 0.01%)</title><rect x="1174.9" y="485" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
|
|
<text x="1177.88" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,538,962,676 samples, 25.01%)</title><rect x="225.6" y="405" width="295.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="228.61" y="415.5" >[[kernel.kallsyms]]</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (47,628,726 samples, 0.16%)</title><rect x="930.0" y="389" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="933.03" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (20,424,864 samples, 0.07%)</title><rect x="931.1" y="309" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="934.09" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,079,005 samples, 0.02%)</title><rect x="926.1" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.11" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="389" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
|
|
<text x="1177.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>alloc_new_heap (3,304,446 samples, 0.01%)</title><rect x="941.0" y="293" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
|
|
<text x="943.97" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,834,968 samples, 0.03%)</title><rect x="1180.8" y="389" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.80" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (47,628,726 samples, 0.16%)</title><rect x="930.0" y="405" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="933.03" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,472,549 samples, 0.01%)</title><rect x="1187.1" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.08" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,384,849 samples, 0.01%)</title><rect x="940.8" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="943.82" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (65,452,356 samples, 0.22%)</title><rect x="934.4" y="117" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.44" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,699,146 samples, 0.01%)</title><rect x="1181.8" y="101" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.85" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,894,226 samples, 0.03%)</title><rect x="933.5" y="357" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.54" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__new_allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (72,172,962 samples, 0.24%)</title><rect x="927.2" y="405" width="2.8" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
|
|
<text x="930.18" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,546,338 samples, 0.02%)</title><rect x="1175.0" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.00" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,755,668 samples, 0.02%)</title><rect x="10.4" y="533" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="13.35" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mbind (26,286,797 samples, 0.09%)</title><rect x="931.9" y="453" width="1.0" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
|
|
<text x="934.89" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>arena_get2 (3,304,446 samples, 0.01%)</title><rect x="941.0" y="341" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
|
|
<text x="943.97" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (20,389,388 samples, 0.07%)</title><rect x="113.6" y="309" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.58" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>numa_node_size64 (34,113,977 samples, 0.11%)</title><rect x="1180.4" y="469" width="1.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
|
|
<text x="1183.42" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,683,955 samples, 0.02%)</title><rect x="1188.5" y="373" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1191.52" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,052,559 samples, 0.01%)</title><rect x="1180.6" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.60" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::GetCacheNode (14,523,628 samples, 0.05%)</title><rect x="1174.2" y="501" width="0.6" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
|
|
<text x="1177.19" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::Access (344,524,710 samples, 1.14%)</title><rect x="1174.2" y="517" width="13.5" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
|
|
<text x="1177.19" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall (37,463,632 samples, 0.12%)</title><rect x="1179.0" y="437" width="1.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="1181.95" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (13,797,838 samples, 0.05%)</title><rect x="1173.4" y="229" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1176.39" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,851,807 samples, 0.01%)</title><rect x="927.0" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.96" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::GetFromCache (5,544,863 samples, 0.02%)</title><rect x="1174.8" y="501" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
|
|
<text x="1177.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,699,146 samples, 0.01%)</title><rect x="1181.8" y="117" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.85" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> > >::_M_deallocate_nodes (45,636,194 samples, 0.15%)</title><rect x="111.7" y="469" width="1.8" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
|
|
<text x="114.73" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::SubmitTask (320,402,788 samples, 1.06%)</title><rect x="1175.0" y="501" width="12.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
|
|
<text x="1177.98" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,714,704 samples, 0.01%)</title><rect x="1175.0" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.03" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (11,628,987 samples, 0.04%)</title><rect x="1186.2" y="117" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1189.21" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (43,912,672 samples, 0.15%)</title><rect x="111.8" y="213" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.76" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::dispatcher::hw_dispatcher::get_instance (36,899,252 samples, 0.12%)</title><rect x="1186.1" y="389" width="1.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
|
|
<text x="1189.08" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scan_a (5,953,797,536 samples, 19.75%)</title><rect x="941.1" y="533" width="233.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
|
|
<text x="944.10" y="543.5" >scan_a</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,847,267 samples, 0.02%)</title><rect x="801.7" y="293" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="804.72" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,895,709 samples, 0.02%)</title><rect x="934.1" y="165" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.09" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,854 samples, 0.03%)</title><rect x="666.0" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="668.97" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator_traits<std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> > >::allocate (72,172,962 samples, 0.24%)</title><rect x="927.2" y="437" width="2.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="930.18" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (12,818,755 samples, 0.04%)</title><rect x="1174.3" y="469" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.26" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>void std::__atomic_wait_address<std::__barrier_phase_t, std::__tree_barrier<NopStruct>::wait (4,854,984 samples, 0.02%)</title><rect x="940.8" y="469" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
|
|
<text x="943.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,710,845 samples, 0.03%)</title><rect x="801.7" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="804.68" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (1,977,950,190 samples, 6.56%)</title><rect x="1096.5" y="421" width="77.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1099.49" y="431.5" >[[kernel..</text>
|
|
</g>
|
|
<g >
|
|
<title>void fill_mt<unsigned long> (17,803,043,695 samples, 59.07%)</title><rect x="168.4" y="517" width="697.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
|
|
<text x="171.43" y="527.5" >void fill_mt<unsigned long></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (11,918,533 samples, 0.04%)</title><rect x="113.9" y="261" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.91" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,358,946 samples, 0.03%)</title><rect x="1180.9" y="261" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.86" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_mm512_cmplt_epi64_mask (25,725,457 samples, 0.09%)</title><rect x="946.8" y="485" width="1.0" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
|
|
<text x="949.77" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (68,850,041 samples, 0.23%)</title><rect x="934.3" y="165" width="2.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.30" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (15,207,374 samples, 0.05%)</title><rect x="926.5" y="421" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.51" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (13,082,986 samples, 0.04%)</title><rect x="926.6" y="389" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.60" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_mid_memalign (72,172,962 samples, 0.24%)</title><rect x="927.2" y="373" width="2.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
|
|
<text x="930.18" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,006,642 samples, 0.01%)</title><rect x="10.4" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="13.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (1,988,864,167 samples, 6.60%)</title><rect x="1096.1" y="501" width="77.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1099.07" y="511.5" >[[kernel..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,208,454 samples, 0.01%)</title><rect x="1181.8" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.83" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,319,544 samples, 0.01%)</title><rect x="1174.0" y="229" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.01" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> >::allocate (4,987,319 samples, 0.02%)</title><rect x="1174.0" y="437" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
|
|
<text x="1177.00" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (20,060,419 samples, 0.07%)</title><rect x="1178.2" y="309" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1181.15" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,918,739 samples, 0.01%)</title><rect x="940.8" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="943.84" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::task<std::allocator<unsigned char> >::task (108,946,296 samples, 0.36%)</title><rect x="1181.8" y="405" width="4.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
|
|
<text x="1184.76" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,590,776 samples, 0.02%)</title><rect x="1180.9" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.93" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (24,127,088 samples, 0.08%)</title><rect x="519.8" y="245" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="522.81" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,726,175 samples, 0.02%)</title><rect x="934.1" y="133" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.09" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,689,460 samples, 0.19%)</title><rect x="109.5" y="485" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.51" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,592,888 samples, 0.02%)</title><rect x="927.2" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.18" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,600,889 samples, 0.01%)</title><rect x="927.3" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.25" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,538,487 samples, 0.03%)</title><rect x="933.2" y="261" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.25" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (48,281,164 samples, 0.16%)</title><rect x="930.0" y="421" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="933.00" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wqs_init (24,925,539 samples, 0.08%)</title><rect x="1186.1" y="309" width="1.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
|
|
<text x="1189.08" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,359,112 samples, 0.02%)</title><rect x="10.3" y="549" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="13.33" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (10,627,702 samples, 0.04%)</title><rect x="114.6" y="357" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.57" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___nptl_deallocate_stack (10,627,702 samples, 0.04%)</title><rect x="114.6" y="485" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
|
|
<text x="117.57" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,933,926 samples, 0.01%)</title><rect x="932.8" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="935.81" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>accfg_wq_get_state (4,992,336 samples, 0.02%)</title><rect x="1187.3" y="309" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
|
|
<text x="1190.26" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::ExecuteCopy (147,238,622 samples, 0.49%)</title><rect x="1181.8" y="485" width="5.7" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
|
|
<text x="1184.76" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,234,982 samples, 0.03%)</title><rect x="933.2" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.22" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::unordered_map<unsigned char*, dsacache::CacheData, std::hash<unsigned char*>, std::equal_to<unsigned char*>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> > >::clear (45,636,194 samples, 0.15%)</title><rect x="111.7" y="501" width="1.8" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
|
|
<text x="114.73" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,592,888 samples, 0.02%)</title><rect x="927.2" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.18" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (108,946,296 samples, 0.36%)</title><rect x="1181.8" y="357" width="4.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
|
|
<text x="1184.76" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,437,055 samples, 0.03%)</title><rect x="801.6" y="437" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="804.62" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,319,544 samples, 0.01%)</title><rect x="1174.0" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.01" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_open64 (4,472,549 samples, 0.01%)</title><rect x="1187.1" y="309" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
|
|
<text x="1190.08" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,549,011,630 samples, 25.05%)</title><rect x="225.2" y="485" width="295.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="228.21" y="495.5" >[[kernel.kallsyms]]</text>
|
|
</g>
|
|
<g >
|
|
<title>numa_alloc_onnode (86,456,066 samples, 0.29%)</title><rect x="1177.0" y="469" width="3.4" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
|
|
<text x="1180.04" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,546,338 samples, 0.02%)</title><rect x="1175.0" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.00" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::buffer<std::allocator<unsigned char>, dml::detail::descriptor, dml::detail::completion_record>::buffer (52,594,123 samples, 0.17%)</title><rect x="1175.0" y="453" width="2.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
|
|
<text x="1177.98" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,802,028 samples, 0.02%)</title><rect x="1178.8" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1181.75" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_start_call_main (19,310,456,147 samples, 64.07%)</title><rect x="109.4" y="549" width="756.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
|
|
<text x="112.41" y="559.5" >__libc_start_call_main</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (43,912,672 samples, 0.15%)</title><rect x="111.8" y="309" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.76" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__Fork (3,899,192 samples, 0.01%)</title><rect x="1189.5" y="581" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
|
|
<text x="1192.46" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall (26,286,797 samples, 0.09%)</title><rect x="931.9" y="437" width="1.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="934.89" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,848,234 samples, 0.02%)</title><rect x="1181.3" y="293" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.35" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,963,362 samples, 0.01%)</title><rect x="1180.4" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.44" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,810,815 samples, 0.01%)</title><rect x="933.0" y="405" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="935.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__pthread_create_2_1 (22,944,895 samples, 0.08%)</title><rect x="113.6" y="437" width="0.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
|
|
<text x="116.58" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,330,637 samples, 0.01%)</title><rect x="927.2" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.19" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (10,627,702 samples, 0.04%)</title><rect x="114.6" y="405" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="117.57" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,689,460 samples, 0.19%)</title><rect x="109.5" y="501" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,834,968 samples, 0.03%)</title><rect x="1180.8" y="309" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1183.80" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>numa_alloc_onnode (75,010,861 samples, 0.25%)</title><rect x="930.0" y="469" width="2.9" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
|
|
<text x="933.00" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (89,429,025 samples, 0.30%)</title><rect x="937.2" y="421" width="3.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="940.17" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_mid_memalign (76,042,767 samples, 0.25%)</title><rect x="934.0" y="309" width="3.0" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
|
|
<text x="937.02" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::thread::join (11,424,709 samples, 0.04%)</title><rect x="114.5" y="517" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
|
|
<text x="117.55" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,278,132 samples, 0.03%)</title><rect x="865.1" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.08" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,319,544 samples, 0.01%)</title><rect x="1174.0" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1177.01" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (1,988,023,274 samples, 6.60%)</title><rect x="1096.1" y="485" width="77.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1099.10" y="495.5" >[[kernel..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (14,680,016 samples, 0.05%)</title><rect x="10.0" y="581" width="0.6" 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]] (8,234,982 samples, 0.03%)</title><rect x="933.2" y="309" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.22" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (76,042,767 samples, 0.25%)</title><rect x="934.0" y="357" width="3.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
|
|
<text x="937.02" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (25,500,960 samples, 0.08%)</title><rect x="1187.8" y="453" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.78" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,546,338 samples, 0.02%)</title><rect x="1175.0" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,327,938 samples, 0.01%)</title><rect x="1187.3" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1190.29" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (102,946,189 samples, 0.34%)</title><rect x="1182.0" y="133" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.99" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (9,141,854 samples, 0.03%)</title><rect x="666.0" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="668.97" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator_traits<std::allocator<std::array<std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >, 3ul> > >::allocate (3,304,446 samples, 0.01%)</title><rect x="941.0" y="453" width="0.1" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
|
|
<text x="943.97" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,376,046 samples, 0.02%)</title><rect x="933.3" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.33" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>accfg_wq_get_first (24,925,539 samples, 0.08%)</title><rect x="1186.1" y="325" width="1.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
|
|
<text x="1189.08" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Filter<unsigned long, LT, (5,946,231,867 samples, 19.73%)</title><rect x="941.1" y="517" width="232.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="944.14" y="527.5" >Filter<unsigned long, LT, </text>
|
|
</g>
|
|
<g >
|
|
<title>numactl (2,657,805 samples, 0.01%)</title><rect x="1188.9" y="597" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
|
|
<text x="1191.95" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (1,138,323,806 samples, 3.78%)</title><rect x="1129.4" y="373" width="44.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1132.36" y="383.5" >[[ke..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,538,487 samples, 0.03%)</title><rect x="933.2" y="293" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="936.25" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (45,889,320 samples, 0.15%)</title><rect x="1175.2" y="213" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1178.24" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>arena_get2 (3,304,446 samples, 0.01%)</title><rect x="941.0" y="325" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
|
|
<text x="943.97" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (67,580,074 samples, 0.22%)</title><rect x="927.4" y="213" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.36" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Aggregation<unsigned long, Sum, (1,512,909,229 samples, 5.02%)</title><rect x="867.2" y="517" width="59.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="870.16" y="527.5" >Aggreg..</text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,531,108 samples, 0.12%)</title><rect x="865.5" y="549" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.49" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,326,133 samples, 0.03%)</title><rect x="926.8" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.78" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,560,385 samples, 0.02%)</title><rect x="926.9" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="929.89" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,171,798 samples, 0.02%)</title><rect x="1181.4" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.41" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (6,340,786 samples, 0.02%)</title><rect x="709.1" y="453" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="712.12" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::CacheData::WaitOnCompletion (91,425,402 samples, 0.30%)</title><rect x="937.2" y="517" width="3.5" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
|
|
<text x="940.17" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (67,580,074 samples, 0.22%)</title><rect x="927.4" y="277" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.36" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::thread::_M_start_thread (22,944,895 samples, 0.08%)</title><rect x="113.6" y="453" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
|
|
<text x="116.58" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_new_arena (3,304,446 samples, 0.01%)</title><rect x="941.0" y="309" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
|
|
<text x="943.97" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (10,199,949 samples, 0.03%)</title><rect x="114.0" y="245" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="116.98" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (2,600,889 samples, 0.01%)</title><rect x="927.3" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="930.25" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (24,142,755 samples, 0.08%)</title><rect x="519.8" y="293" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="522.81" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (85,062,631 samples, 0.28%)</title><rect x="937.3" y="389" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="940.34" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_file_underflow (10,331,560 samples, 0.03%)</title><rect x="933.1" y="437" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
|
|
<text x="936.14" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,107,024 samples, 0.02%)</title><rect x="10.4" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="13.38" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_file_doallocate (5,482,730 samples, 0.02%)</title><rect x="1180.6" y="389" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
|
|
<text x="1183.58" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_start_call_main (4,123,565 samples, 0.01%)</title><rect x="1189.1" y="549" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
|
|
<text x="1192.09" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::SubmitTask (251,550,889 samples, 0.83%)</title><rect x="927.2" y="501" width="9.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
|
|
<text x="930.15" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (8,278,132 samples, 0.03%)</title><rect x="865.1" y="341" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="868.08" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::AllocOnNode (120,570,043 samples, 0.40%)</title><rect x="1177.0" y="485" width="4.8" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
|
|
<text x="1180.04" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (3,750,747 samples, 0.01%)</title><rect x="934.1" y="101" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="937.13" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (38,745,731 samples, 0.13%)</title><rect x="112.0" y="165" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="114.96" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (48,607,741 samples, 0.16%)</title><rect x="1177.0" y="389" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1180.04" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,684,763 samples, 0.03%)</title><rect x="1181.3" y="357" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.32" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (56,689,460 samples, 0.19%)</title><rect x="109.5" y="437" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="112.51" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (37,374,812 samples, 0.12%)</title><rect x="1179.0" y="357" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1181.96" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::barrier<NopStruct>::wait (4,934,427 samples, 0.02%)</title><rect x="940.8" y="501" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
|
|
<text x="943.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (4,208,454 samples, 0.01%)</title><rect x="1181.8" y="165" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1184.83" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (5,794,169 samples, 0.02%)</title><rect x="1185.8" y="53" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="1188.79" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[[kernel.kallsyms]] (7,693,404 samples, 0.03%)</title><rect x="866.7" y="325" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="869.65" y="335.5" ></text>
|
|
</g>
|
|
</g>
|
|
</svg>
|