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

901 lines
37 KiB

  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  3. <svg version="1.1" width="1200" height="390" onload="init(evt)" viewBox="0 0 1200 390" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  4. <!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
  5. <!-- NOTES: -->
  6. <defs>
  7. <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
  8. <stop stop-color="#eeeeee" offset="5%" />
  9. <stop stop-color="#eeeeb0" offset="95%" />
  10. </linearGradient>
  11. </defs>
  12. <style type="text/css">
  13. text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
  14. #search, #ignorecase { opacity:0.1; cursor:pointer; }
  15. #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
  16. #subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
  17. #title { text-anchor:middle; font-size:17px}
  18. #unzoom { cursor:pointer; }
  19. #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
  20. .hide { display:none; }
  21. .parent { opacity:0.5; }
  22. </style>
  23. <script type="text/ecmascript">
  24. <![CDATA[
  25. "use strict";
  26. var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
  27. function init(evt) {
  28. details = document.getElementById("details").firstChild;
  29. searchbtn = document.getElementById("search");
  30. ignorecaseBtn = document.getElementById("ignorecase");
  31. unzoombtn = document.getElementById("unzoom");
  32. matchedtxt = document.getElementById("matched");
  33. svg = document.getElementsByTagName("svg")[0];
  34. searching = 0;
  35. currentSearchTerm = null;
  36. // use GET parameters to restore a flamegraphs state.
  37. var params = get_params();
  38. if (params.x && params.y)
  39. zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
  40. if (params.s) search(params.s);
  41. }
  42. // event listeners
  43. window.addEventListener("click", function(e) {
  44. var target = find_group(e.target);
  45. if (target) {
  46. if (target.nodeName == "a") {
  47. if (e.ctrlKey === false) return;
  48. e.preventDefault();
  49. }
  50. if (target.classList.contains("parent")) unzoom(true);
  51. zoom(target);
  52. if (!document.querySelector('.parent')) {
  53. // we have basically done a clearzoom so clear the url
  54. var params = get_params();
  55. if (params.x) delete params.x;
  56. if (params.y) delete params.y;
  57. history.replaceState(null, null, parse_params(params));
  58. unzoombtn.classList.add("hide");
  59. return;
  60. }
  61. // set parameters for zoom state
  62. var el = target.querySelector("rect");
  63. if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
  64. var params = get_params()
  65. params.x = el.attributes._orig_x.value;
  66. params.y = el.attributes.y.value;
  67. history.replaceState(null, null, parse_params(params));
  68. }
  69. }
  70. else if (e.target.id == "unzoom") clearzoom();
  71. else if (e.target.id == "search") search_prompt();
  72. else if (e.target.id == "ignorecase") toggle_ignorecase();
  73. }, false)
  74. // mouse-over for info
  75. // show
  76. window.addEventListener("mouseover", function(e) {
  77. var target = find_group(e.target);
  78. if (target) details.nodeValue = "Function: " + g_to_text(target);
  79. }, false)
  80. // clear
  81. window.addEventListener("mouseout", function(e) {
  82. var target = find_group(e.target);
  83. if (target) details.nodeValue = ' ';
  84. }, false)
  85. // ctrl-F for search
  86. // ctrl-I to toggle case-sensitive search
  87. window.addEventListener("keydown",function (e) {
  88. if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
  89. e.preventDefault();
  90. search_prompt();
  91. }
  92. else if (e.ctrlKey && e.keyCode === 73) {
  93. e.preventDefault();
  94. toggle_ignorecase();
  95. }
  96. }, false)
  97. // functions
  98. function get_params() {
  99. var params = {};
  100. var paramsarr = window.location.search.substr(1).split('&');
  101. for (var i = 0; i < paramsarr.length; ++i) {
  102. var tmp = paramsarr[i].split("=");
  103. if (!tmp[0] || !tmp[1]) continue;
  104. params[tmp[0]] = decodeURIComponent(tmp[1]);
  105. }
  106. return params;
  107. }
  108. function parse_params(params) {
  109. var uri = "?";
  110. for (var key in params) {
  111. uri += key + '=' + encodeURIComponent(params[key]) + '&';
  112. }
  113. if (uri.slice(-1) == "&")
  114. uri = uri.substring(0, uri.length - 1);
  115. if (uri == '?')
  116. uri = window.location.href.split('?')[0];
  117. return uri;
  118. }
  119. function find_child(node, selector) {
  120. var children = node.querySelectorAll(selector);
  121. if (children.length) return children[0];
  122. }
  123. function find_group(node) {
  124. var parent = node.parentElement;
  125. if (!parent) return;
  126. if (parent.id == "frames") return node;
  127. return find_group(parent);
  128. }
  129. function orig_save(e, attr, val) {
  130. if (e.attributes["_orig_" + attr] != undefined) return;
  131. if (e.attributes[attr] == undefined) return;
  132. if (val == undefined) val = e.attributes[attr].value;
  133. e.setAttribute("_orig_" + attr, val);
  134. }
  135. function orig_load(e, attr) {
  136. if (e.attributes["_orig_"+attr] == undefined) return;
  137. e.attributes[attr].value = e.attributes["_orig_" + attr].value;
  138. e.removeAttribute("_orig_"+attr);
  139. }
  140. function g_to_text(e) {
  141. var text = find_child(e, "title").firstChild.nodeValue;
  142. return (text)
  143. }
  144. function g_to_func(e) {
  145. var func = g_to_text(e);
  146. // if there's any manipulation we want to do to the function
  147. // name before it's searched, do it here before returning.
  148. return (func);
  149. }
  150. function update_text(e) {
  151. var r = find_child(e, "rect");
  152. var t = find_child(e, "text");
  153. var w = parseFloat(r.attributes.width.value) -3;
  154. var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
  155. t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
  156. // Smaller than this size won't fit anything
  157. if (w < 2 * 12 * 0.59) {
  158. t.textContent = "";
  159. return;
  160. }
  161. t.textContent = txt;
  162. var sl = t.getSubStringLength(0, txt.length);
  163. // check if only whitespace or if we can fit the entire string into width w
  164. if (/^ *$/.test(txt) || sl < w)
  165. return;
  166. // this isn't perfect, but gives a good starting point
  167. // and avoids calling getSubStringLength too often
  168. var start = Math.floor((w/sl) * txt.length);
  169. for (var x = start; x > 0; x = x-2) {
  170. if (t.getSubStringLength(0, x + 2) <= w) {
  171. t.textContent = txt.substring(0, x) + "..";
  172. return;
  173. }
  174. }
  175. t.textContent = "";
  176. }
  177. // zoom
  178. function zoom_reset(e) {
  179. if (e.attributes != undefined) {
  180. orig_load(e, "x");
  181. orig_load(e, "width");
  182. }
  183. if (e.childNodes == undefined) return;
  184. for (var i = 0, c = e.childNodes; i < c.length; i++) {
  185. zoom_reset(c[i]);
  186. }
  187. }
  188. function zoom_child(e, x, ratio) {
  189. if (e.attributes != undefined) {
  190. if (e.attributes.x != undefined) {
  191. orig_save(e, "x");
  192. e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
  193. if (e.tagName == "text")
  194. e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
  195. }
  196. if (e.attributes.width != undefined) {
  197. orig_save(e, "width");
  198. e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
  199. }
  200. }
  201. if (e.childNodes == undefined) return;
  202. for (var i = 0, c = e.childNodes; i < c.length; i++) {
  203. zoom_child(c[i], x - 10, ratio);
  204. }
  205. }
  206. function zoom_parent(e) {
  207. if (e.attributes) {
  208. if (e.attributes.x != undefined) {
  209. orig_save(e, "x");
  210. e.attributes.x.value = 10;
  211. }
  212. if (e.attributes.width != undefined) {
  213. orig_save(e, "width");
  214. e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
  215. }
  216. }
  217. if (e.childNodes == undefined) return;
  218. for (var i = 0, c = e.childNodes; i < c.length; i++) {
  219. zoom_parent(c[i]);
  220. }
  221. }
  222. function zoom(node) {
  223. var attr = find_child(node, "rect").attributes;
  224. var width = parseFloat(attr.width.value);
  225. var xmin = parseFloat(attr.x.value);
  226. var xmax = parseFloat(xmin + width);
  227. var ymin = parseFloat(attr.y.value);
  228. var ratio = (svg.width.baseVal.value - 2 * 10) / width;
  229. // XXX: Workaround for JavaScript float issues (fix me)
  230. var fudge = 0.0001;
  231. unzoombtn.classList.remove("hide");
  232. var el = document.getElementById("frames").children;
  233. for (var i = 0; i < el.length; i++) {
  234. var e = el[i];
  235. var a = find_child(e, "rect").attributes;
  236. var ex = parseFloat(a.x.value);
  237. var ew = parseFloat(a.width.value);
  238. var upstack;
  239. // Is it an ancestor
  240. if (0 == 0) {
  241. upstack = parseFloat(a.y.value) > ymin;
  242. } else {
  243. upstack = parseFloat(a.y.value) < ymin;
  244. }
  245. if (upstack) {
  246. // Direct ancestor
  247. if (ex <= xmin && (ex+ew+fudge) >= xmax) {
  248. e.classList.add("parent");
  249. zoom_parent(e);
  250. update_text(e);
  251. }
  252. // not in current path
  253. else
  254. e.classList.add("hide");
  255. }
  256. // Children maybe
  257. else {
  258. // no common path
  259. if (ex < xmin || ex + fudge >= xmax) {
  260. e.classList.add("hide");
  261. }
  262. else {
  263. zoom_child(e, xmin, ratio);
  264. update_text(e);
  265. }
  266. }
  267. }
  268. search();
  269. }
  270. function unzoom(dont_update_text) {
  271. unzoombtn.classList.add("hide");
  272. var el = document.getElementById("frames").children;
  273. for(var i = 0; i < el.length; i++) {
  274. el[i].classList.remove("parent");
  275. el[i].classList.remove("hide");
  276. zoom_reset(el[i]);
  277. if(!dont_update_text) update_text(el[i]);
  278. }
  279. search();
  280. }
  281. function clearzoom() {
  282. unzoom();
  283. // remove zoom state
  284. var params = get_params();
  285. if (params.x) delete params.x;
  286. if (params.y) delete params.y;
  287. history.replaceState(null, null, parse_params(params));
  288. }
  289. // search
  290. function toggle_ignorecase() {
  291. ignorecase = !ignorecase;
  292. if (ignorecase) {
  293. ignorecaseBtn.classList.add("show");
  294. } else {
  295. ignorecaseBtn.classList.remove("show");
  296. }
  297. reset_search();
  298. search();
  299. }
  300. function reset_search() {
  301. var el = document.querySelectorAll("#frames rect");
  302. for (var i = 0; i < el.length; i++) {
  303. orig_load(el[i], "fill")
  304. }
  305. var params = get_params();
  306. delete params.s;
  307. history.replaceState(null, null, parse_params(params));
  308. }
  309. function search_prompt() {
  310. if (!searching) {
  311. var term = prompt("Enter a search term (regexp " +
  312. "allowed, eg: ^ext4_)"
  313. + (ignorecase ? ", ignoring case" : "")
  314. + "\nPress Ctrl-i to toggle case sensitivity", "");
  315. if (term != null) search(term);
  316. } else {
  317. reset_search();
  318. searching = 0;
  319. currentSearchTerm = null;
  320. searchbtn.classList.remove("show");
  321. searchbtn.firstChild.nodeValue = "Search"
  322. matchedtxt.classList.add("hide");
  323. matchedtxt.firstChild.nodeValue = ""
  324. }
  325. }
  326. function search(term) {
  327. if (term) currentSearchTerm = term;
  328. var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
  329. var el = document.getElementById("frames").children;
  330. var matches = new Object();
  331. var maxwidth = 0;
  332. for (var i = 0; i < el.length; i++) {
  333. var e = el[i];
  334. var func = g_to_func(e);
  335. var rect = find_child(e, "rect");
  336. if (func == null || rect == null)
  337. continue;
  338. // Save max width. Only works as we have a root frame
  339. var w = parseFloat(rect.attributes.width.value);
  340. if (w > maxwidth)
  341. maxwidth = w;
  342. if (func.match(re)) {
  343. // highlight
  344. var x = parseFloat(rect.attributes.x.value);
  345. orig_save(rect, "fill");
  346. rect.attributes.fill.value = "rgb(230,0,230)";
  347. // remember matches
  348. if (matches[x] == undefined) {
  349. matches[x] = w;
  350. } else {
  351. if (w > matches[x]) {
  352. // overwrite with parent
  353. matches[x] = w;
  354. }
  355. }
  356. searching = 1;
  357. }
  358. }
  359. if (!searching)
  360. return;
  361. var params = get_params();
  362. params.s = currentSearchTerm;
  363. history.replaceState(null, null, parse_params(params));
  364. searchbtn.classList.add("show");
  365. searchbtn.firstChild.nodeValue = "Reset Search";
  366. // calculate percent matched, excluding vertical overlap
  367. var count = 0;
  368. var lastx = -1;
  369. var lastw = 0;
  370. var keys = Array();
  371. for (k in matches) {
  372. if (matches.hasOwnProperty(k))
  373. keys.push(k);
  374. }
  375. // sort the matched frames by their x location
  376. // ascending, then width descending
  377. keys.sort(function(a, b){
  378. return a - b;
  379. });
  380. // Step through frames saving only the biggest bottom-up frames
  381. // thanks to the sort order. This relies on the tree property
  382. // where children are always smaller than their parents.
  383. var fudge = 0.0001; // JavaScript floating point
  384. for (var k in keys) {
  385. var x = parseFloat(keys[k]);
  386. var w = matches[keys[k]];
  387. if (x >= lastx + lastw - fudge) {
  388. count += w;
  389. lastx = x;
  390. lastw = w;
  391. }
  392. }
  393. // display matched percent
  394. matchedtxt.classList.remove("hide");
  395. var pct = 100 * count / maxwidth;
  396. if (pct != 100) pct = pct.toFixed(1)
  397. matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
  398. }
  399. ]]>
  400. </script>
  401. <rect x="0.0" y="0" width="1200.0" height="390.0" fill="url(#background)" />
  402. <text id="title" x="600.00" y="24" >Flame Graph</text>
  403. <text id="details" x="10.00" y="373" > </text>
  404. <text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
  405. <text id="search" x="1090.00" y="24" >Search</text>
  406. <text id="ignorecase" x="1174.00" y="24" >ic</text>
  407. <text id="matched" x="1090.00" y="373" > </text>
  408. <g id="frames">
  409. <g >
  410. <title>[[kernel.kallsyms]] (164,773,295 samples, 0.02%)</title><rect x="291.2" y="117" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  411. <text x="294.21" y="127.5" ></text>
  412. </g>
  413. <g >
  414. <title>[[kernel.kallsyms]] (6,264,017,816 samples, 0.83%)</title><rect x="295.9" y="133" width="9.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  415. <text x="298.93" y="143.5" ></text>
  416. </g>
  417. <g >
  418. <title>std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;::_M_gen_rand (1,700,492,276 samples, 0.22%)</title><rect x="316.7" y="197" width="2.7" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
  419. <text x="319.74" y="207.5" ></text>
  420. </g>
  421. <g >
  422. <title>[[kernel.kallsyms]] (182,533,535 samples, 0.02%)</title><rect x="291.2" y="229" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  423. <text x="294.19" y="239.5" ></text>
  424. </g>
  425. <g >
  426. <title>__GI___mmap64 (116,704,759 samples, 0.02%)</title><rect x="290.8" y="309" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
  427. <text x="293.80" y="319.5" ></text>
  428. </g>
  429. <g >
  430. <title>[[kernel.kallsyms]] (98,455,521 samples, 0.01%)</title><rect x="1189.8" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  431. <text x="1192.79" y="271.5" ></text>
  432. </g>
  433. <g >
  434. <title>[[kernel.kallsyms]] (114,352,088 samples, 0.02%)</title><rect x="291.0" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  435. <text x="294.01" y="239.5" ></text>
  436. </g>
  437. <g >
  438. <title>dml_wait_busy_poll (552,915,159,655 samples, 72.96%)</title><rect x="323.3" y="213" width="860.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  439. <text x="326.28" y="223.5" >dml_wait_busy_poll</text>
  440. </g>
  441. <g >
  442. <title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (8,803,762,515 samples, 1.16%)</title><rect x="305.7" y="261" width="13.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
  443. <text x="308.68" y="271.5" ></text>
  444. </g>
  445. <g >
  446. <title>[[kernel.kallsyms]] (114,699,631 samples, 0.02%)</title><rect x="291.0" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  447. <text x="294.01" y="271.5" ></text>
  448. </g>
  449. <g >
  450. <title>syscall (100,069,976 samples, 0.01%)</title><rect x="1189.8" y="309" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
  451. <text x="1192.78" y="319.5" ></text>
  452. </g>
  453. <g >
  454. <title>[[kernel.kallsyms]] (7,633,978,792 samples, 1.01%)</title><rect x="293.8" y="181" width="11.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  455. <text x="296.79" y="191.5" ></text>
  456. </g>
  457. <g >
  458. <title>[[kernel.kallsyms]] (182,533,535 samples, 0.02%)</title><rect x="291.2" y="261" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  459. <text x="294.19" y="271.5" ></text>
  460. </g>
  461. <g >
  462. <title>[[kernel.kallsyms]] (182,533,535 samples, 0.02%)</title><rect x="291.2" y="245" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  463. <text x="294.19" y="255.5" ></text>
  464. </g>
  465. <g >
  466. <title>[[kernel.kallsyms]] (98,455,521 samples, 0.01%)</title><rect x="1189.8" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  467. <text x="1192.79" y="287.5" ></text>
  468. </g>
  469. <g >
  470. <title>scan_a (3,561,308,091 samples, 0.47%)</title><rect x="1184.2" y="277" width="5.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
  471. <text x="1187.23" y="287.5" ></text>
  472. </g>
  473. <g >
  474. <title>[[kernel.kallsyms]] (91,913,626 samples, 0.01%)</title><rect x="1189.8" y="213" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  475. <text x="1192.80" y="223.5" ></text>
  476. </g>
  477. <g >
  478. <title>[[kernel.kallsyms]] (7,640,030,208 samples, 1.01%)</title><rect x="293.8" y="213" width="11.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  479. <text x="296.78" y="223.5" ></text>
  480. </g>
  481. <g >
  482. <title>[[kernel.kallsyms]] (346,481,323 samples, 0.05%)</title><rect x="1189.2" y="197" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  483. <text x="1192.23" y="207.5" ></text>
  484. </g>
  485. <g >
  486. <title>__libc_start_call_main (17,898,607,643 samples, 2.36%)</title><rect x="291.5" y="309" width="27.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
  487. <text x="294.52" y="319.5" >_..</text>
  488. </g>
  489. <g >
  490. <title>[[kernel.kallsyms]] (69,787,492 samples, 0.01%)</title><rect x="290.9" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  491. <text x="293.88" y="191.5" ></text>
  492. </g>
  493. <g >
  494. <title>[[kernel.kallsyms]] (86,066,528 samples, 0.01%)</title><rect x="291.1" y="181" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  495. <text x="294.05" y="191.5" ></text>
  496. </g>
  497. <g >
  498. <title>[[kernel.kallsyms]] (166,112,140 samples, 0.02%)</title><rect x="1184.0" y="101" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  499. <text x="1186.97" y="111.5" ></text>
  500. </g>
  501. <g >
  502. <title>[[kernel.kallsyms]] (77,375,623 samples, 0.01%)</title><rect x="291.1" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  503. <text x="294.07" y="175.5" ></text>
  504. </g>
  505. <g >
  506. <title>[[kernel.kallsyms]] (343,998,424 samples, 0.05%)</title><rect x="1189.2" y="165" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  507. <text x="1192.24" y="175.5" ></text>
  508. </g>
  509. <g >
  510. <title>[libstdc++.so.6.0.32] (557,603,884,217 samples, 73.58%)</title><rect x="321.5" y="293" width="868.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
  511. <text x="324.54" y="303.5" >[libstdc++.so.6.0.32]</text>
  512. </g>
  513. <g >
  514. <title>Sum&lt;unsigned long&gt;::simd_agg (362,439,246 samples, 0.05%)</title><rect x="321.7" y="245" width="0.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
  515. <text x="324.74" y="255.5" ></text>
  516. </g>
  517. <g >
  518. <title>dml::handler&lt;dml::mem_copy_operation, std::allocator&lt;unsigned char&gt; &gt;::get (552,916,888,398 samples, 72.96%)</title><rect x="323.3" y="245" width="860.9" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
  519. <text x="326.28" y="255.5" >dml::handler&lt;dml::mem_copy_operation, std::allocator&lt;unsigned char&gt; &gt;::get</text>
  520. </g>
  521. <g >
  522. <title>_mm512_stream_load_si512 (615,603,507 samples, 0.08%)</title><rect x="322.3" y="229" width="1.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
  523. <text x="325.31" y="239.5" ></text>
  524. </g>
  525. <g >
  526. <title>[[kernel.kallsyms]] (99,241,564 samples, 0.01%)</title><rect x="1184.1" y="37" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  527. <text x="1187.07" y="47.5" ></text>
  528. </g>
  529. <g >
  530. <title>[[kernel.kallsyms]] (116,704,759 samples, 0.02%)</title><rect x="290.8" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  531. <text x="293.80" y="287.5" ></text>
  532. </g>
  533. <g >
  534. <title>[[kernel.kallsyms]] (191,939,483 samples, 0.03%)</title><rect x="1183.9" y="181" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  535. <text x="1186.93" y="191.5" ></text>
  536. </g>
  537. <g >
  538. <title>[[kernel.kallsyms]] (110,991,220 samples, 0.01%)</title><rect x="286.5" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  539. <text x="289.51" y="303.5" ></text>
  540. </g>
  541. <g >
  542. <title>[[kernel.kallsyms]] (129,110,077 samples, 0.02%)</title><rect x="286.5" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  543. <text x="289.49" y="319.5" ></text>
  544. </g>
  545. <g >
  546. <title>start_thread (557,605,749,020 samples, 73.58%)</title><rect x="321.5" y="309" width="868.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
  547. <text x="324.53" y="319.5" >start_thread</text>
  548. </g>
  549. <g >
  550. <title>__GI_mprotect (115,105,071 samples, 0.02%)</title><rect x="291.0" y="309" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
  551. <text x="294.01" y="319.5" ></text>
  552. </g>
  553. <g >
  554. <title>aggr_j (554,037,578,817 samples, 73.11%)</title><rect x="321.5" y="277" width="862.7" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
  555. <text x="324.54" y="287.5" >aggr_j</text>
  556. </g>
  557. <g >
  558. <title>[[kernel.kallsyms]] (347,561,693 samples, 0.05%)</title><rect x="1189.2" y="229" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  559. <text x="1192.23" y="239.5" ></text>
  560. </g>
  561. <g >
  562. <title>[[kernel.kallsyms]] (176,008,215 samples, 0.02%)</title><rect x="291.2" y="149" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  563. <text x="294.20" y="159.5" ></text>
  564. </g>
  565. <g >
  566. <title>dsacache::CacheData::WaitOnCompletion (552,916,888,398 samples, 72.96%)</title><rect x="323.3" y="229" width="860.9" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
  567. <text x="326.28" y="239.5" >dsacache::CacheData::WaitOnCompletion</text>
  568. </g>
  569. <g >
  570. <title>[[kernel.kallsyms]] (114,699,631 samples, 0.02%)</title><rect x="291.0" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  571. <text x="294.01" y="287.5" ></text>
  572. </g>
  573. <g >
  574. <title>[[kernel.kallsyms]] (7,543,227,017 samples, 1.00%)</title><rect x="293.9" y="149" width="11.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  575. <text x="296.93" y="159.5" ></text>
  576. </g>
  577. <g >
  578. <title>_mm512_mask_add_epi64 (362,439,246 samples, 0.05%)</title><rect x="321.7" y="229" width="0.6" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
  579. <text x="324.74" y="239.5" ></text>
  580. </g>
  581. <g >
  582. <title>QDPBench (757,788,785,986 samples, 100.00%)</title><rect x="10.0" y="325" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
  583. <text x="13.00" y="335.5" >QDPBench</text>
  584. </g>
  585. <g >
  586. <title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (7,725,758,978 samples, 1.02%)</title><rect x="307.4" y="245" width="12.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
  587. <text x="310.36" y="255.5" ></text>
  588. </g>
  589. <g >
  590. <title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (1,175,539,845 samples, 0.16%)</title><rect x="286.7" y="293" width="1.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
  591. <text x="289.69" y="303.5" ></text>
  592. </g>
  593. <g >
  594. <title>unsigned int std::uniform_int_distribution&lt;unsigned long&gt;::_S_nd&lt;unsigned long, std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;, unsigned int&gt; (5,226,322,414 samples, 0.69%)</title><rect x="311.3" y="229" width="8.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
  595. <text x="314.25" y="239.5" ></text>
  596. </g>
  597. <g >
  598. <title>[[kernel.kallsyms]] (115,105,071 samples, 0.02%)</title><rect x="291.0" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  599. <text x="294.01" y="303.5" ></text>
  600. </g>
  601. <g >
  602. <title>[[kernel.kallsyms]] (145,397,537 samples, 0.02%)</title><rect x="1184.0" y="69" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  603. <text x="1187.00" y="79.5" ></text>
  604. </g>
  605. <g >
  606. <title>[[kernel.kallsyms]] (253,156,329 samples, 0.03%)</title><rect x="1189.4" y="117" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  607. <text x="1192.38" y="127.5" ></text>
  608. </g>
  609. <g >
  610. <title>[[kernel.kallsyms]] (181,506,971 samples, 0.02%)</title><rect x="291.2" y="197" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  611. <text x="294.19" y="207.5" ></text>
  612. </g>
  613. <g >
  614. <title>dsacache::CacheData::WaitOnCompletion (552,919,479,804 samples, 72.96%)</title><rect x="323.3" y="261" width="860.9" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
  615. <text x="326.28" y="271.5" >dsacache::CacheData::WaitOnCompletion</text>
  616. </g>
  617. <g >
  618. <title>[[kernel.kallsyms]] (348,415,844 samples, 0.05%)</title><rect x="1189.2" y="245" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  619. <text x="1192.23" y="255.5" ></text>
  620. </g>
  621. <g >
  622. <title>[[kernel.kallsyms]] (344,498,559 samples, 0.05%)</title><rect x="1189.2" y="181" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  623. <text x="1192.24" y="191.5" ></text>
  624. </g>
  625. <g >
  626. <title>[[kernel.kallsyms]] (188,486,660 samples, 0.02%)</title><rect x="1183.9" y="165" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  627. <text x="1186.93" y="175.5" ></text>
  628. </g>
  629. <g >
  630. <title>[[kernel.kallsyms]] (170,827,651 samples, 0.02%)</title><rect x="291.2" y="133" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  631. <text x="294.20" y="143.5" ></text>
  632. </g>
  633. <g >
  634. <title>unsigned long std::uniform_int_distribution&lt;unsigned long&gt;::operator (1,249,330,771 samples, 0.16%)</title><rect x="288.8" y="293" width="1.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
  635. <text x="291.76" y="303.5" ></text>
  636. </g>
  637. <g >
  638. <title>[[kernel.kallsyms]] (343,489,960 samples, 0.05%)</title><rect x="1189.2" y="149" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  639. <text x="1192.24" y="159.5" ></text>
  640. </g>
  641. <g >
  642. <title>main (17,898,607,643 samples, 2.36%)</title><rect x="291.5" y="293" width="27.9" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
  643. <text x="294.52" y="303.5" >m..</text>
  644. </g>
  645. <g >
  646. <title>[[kernel.kallsyms]] (7,632,251,240 samples, 1.01%)</title><rect x="293.8" y="165" width="11.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  647. <text x="296.80" y="175.5" ></text>
  648. </g>
  649. <g >
  650. <title>[[kernel.kallsyms]] (180,634,037 samples, 0.02%)</title><rect x="291.2" y="181" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  651. <text x="294.19" y="191.5" ></text>
  652. </g>
  653. <g >
  654. <title>[[kernel.kallsyms]] (71,765,486 samples, 0.01%)</title><rect x="1189.8" y="197" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  655. <text x="1192.83" y="207.5" ></text>
  656. </g>
  657. <g >
  658. <title>[[kernel.kallsyms]] (230,646,684 samples, 0.03%)</title><rect x="1189.4" y="85" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  659. <text x="1192.41" y="95.5" ></text>
  660. </g>
  661. <g >
  662. <title>[[kernel.kallsyms]] (97,231,694 samples, 0.01%)</title><rect x="1189.8" y="229" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  663. <text x="1192.79" y="239.5" ></text>
  664. </g>
  665. <g >
  666. <title>[[kernel.kallsyms]] (7,642,626,030 samples, 1.01%)</title><rect x="293.8" y="261" width="11.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  667. <text x="296.78" y="271.5" ></text>
  668. </g>
  669. <g >
  670. <title>all (757,816,916,904 samples, 100%)</title><rect x="10.0" y="341" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  671. <text x="13.00" y="351.5" ></text>
  672. </g>
  673. <g >
  674. <title>[[kernel.kallsyms]] (115,836,601 samples, 0.02%)</title><rect x="290.8" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  675. <text x="293.80" y="271.5" ></text>
  676. </g>
  677. <g >
  678. <title>[[kernel.kallsyms]] (114,158,567 samples, 0.02%)</title><rect x="290.8" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  679. <text x="293.81" y="223.5" ></text>
  680. </g>
  681. <g >
  682. <title>Filter&lt;unsigned long, LT, (3,559,948,229 samples, 0.47%)</title><rect x="1184.2" y="261" width="5.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
  683. <text x="1187.23" y="271.5" ></text>
  684. </g>
  685. <g >
  686. <title>[[stack]] (1,180,363,823 samples, 0.16%)</title><rect x="286.7" y="309" width="1.8" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
  687. <text x="289.69" y="319.5" ></text>
  688. </g>
  689. <g >
  690. <title>[[kernel.kallsyms]] (185,073,337 samples, 0.02%)</title><rect x="1183.9" y="149" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  691. <text x="1186.94" y="159.5" ></text>
  692. </g>
  693. <g >
  694. <title>[[kernel.kallsyms]] (5,223,135,053 samples, 0.69%)</title><rect x="297.5" y="101" width="8.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  695. <text x="300.55" y="111.5" ></text>
  696. </g>
  697. <g >
  698. <title>[[kernel.kallsyms]] (346,513,089 samples, 0.05%)</title><rect x="1189.2" y="213" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  699. <text x="1192.23" y="223.5" ></text>
  700. </g>
  701. <g >
  702. <title>[[kernel.kallsyms]] (163,513,075 samples, 0.02%)</title><rect x="1184.0" y="85" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  703. <text x="1186.97" y="95.5" ></text>
  704. </g>
  705. <g >
  706. <title>[[kernel.kallsyms]] (114,537,443 samples, 0.02%)</title><rect x="290.8" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  707. <text x="293.81" y="239.5" ></text>
  708. </g>
  709. <g >
  710. <title>Vector_Loader&lt;unsigned long, (3,012,574,731 samples, 0.40%)</title><rect x="1184.5" y="245" width="4.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
  711. <text x="1187.54" y="255.5" ></text>
  712. </g>
  713. <g >
  714. <title>[[kernel.kallsyms]] (104,729,407 samples, 0.01%)</title><rect x="290.8" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  715. <text x="293.82" y="207.5" ></text>
  716. </g>
  717. <g >
  718. <title>[[kernel.kallsyms]] (98,831,700 samples, 0.01%)</title><rect x="1189.8" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  719. <text x="1192.79" y="303.5" ></text>
  720. </g>
  721. <g >
  722. <title>[[kernel.kallsyms]] (6,258,830,703 samples, 0.83%)</title><rect x="295.9" y="117" width="9.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  723. <text x="298.93" y="127.5" ></text>
  724. </g>
  725. <g >
  726. <title>[[kernel.kallsyms]] (114,699,631 samples, 0.02%)</title><rect x="291.0" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  727. <text x="294.01" y="255.5" ></text>
  728. </g>
  729. <g >
  730. <title>[[kernel.kallsyms]] (124,808,299 samples, 0.02%)</title><rect x="1184.0" y="53" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  731. <text x="1187.03" y="63.5" ></text>
  732. </g>
  733. <g >
  734. <title>[[kernel.kallsyms]] (108,026,851 samples, 0.01%)</title><rect x="286.5" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  735. <text x="289.52" y="271.5" ></text>
  736. </g>
  737. <g >
  738. <title>unsigned int std::uniform_int_distribution&lt;unsigned long&gt;::_S_nd&lt;unsigned long, std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;, unsigned int&gt; (949,996,590 samples, 0.13%)</title><rect x="287.0" y="277" width="1.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
  739. <text x="290.05" y="287.5" ></text>
  740. </g>
  741. <g >
  742. <title>main (1,309,211,173 samples, 0.17%)</title><rect x="319.5" y="309" width="2.0" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
  743. <text x="322.49" y="319.5" ></text>
  744. </g>
  745. <g >
  746. <title>void fill_mt&lt;unsigned long&gt; (17,898,607,643 samples, 2.36%)</title><rect x="291.5" y="277" width="27.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
  747. <text x="294.52" y="287.5" >v..</text>
  748. </g>
  749. <g >
  750. <title>[[kernel.kallsyms]] (179,769,803 samples, 0.02%)</title><rect x="291.2" y="165" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  751. <text x="294.19" y="175.5" ></text>
  752. </g>
  753. <g >
  754. <title>[[kernel.kallsyms]] (111,528,792 samples, 0.01%)</title><rect x="291.0" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  755. <text x="294.01" y="223.5" ></text>
  756. </g>
  757. <g >
  758. <title>[[kernel.kallsyms]] (100,647,350 samples, 0.01%)</title><rect x="286.5" y="229" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  759. <text x="289.53" y="239.5" ></text>
  760. </g>
  761. <g >
  762. <title>[[kernel.kallsyms]] (250,139,930 samples, 0.03%)</title><rect x="1189.4" y="101" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  763. <text x="1192.38" y="111.5" ></text>
  764. </g>
  765. <g >
  766. <title>[[kernel.kallsyms]] (7,638,302,454 samples, 1.01%)</title><rect x="293.8" y="197" width="11.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  767. <text x="296.79" y="207.5" ></text>
  768. </g>
  769. <g >
  770. <title>[[kernel.kallsyms]] (97,990,880 samples, 0.01%)</title><rect x="1189.8" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  771. <text x="1192.79" y="255.5" ></text>
  772. </g>
  773. <g >
  774. <title>Aggregation&lt;unsigned long, Sum, (1,111,031,257 samples, 0.15%)</title><rect x="321.5" y="261" width="1.8" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
  775. <text x="324.54" y="271.5" ></text>
  776. </g>
  777. <g >
  778. <title>sum_check (1,295,796,749 samples, 0.17%)</title><rect x="319.5" y="293" width="2.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
  779. <text x="322.50" y="303.5" ></text>
  780. </g>
  781. <g >
  782. <title>[[kernel.kallsyms]] (7,640,895,829 samples, 1.01%)</title><rect x="293.8" y="229" width="11.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  783. <text x="296.78" y="239.5" ></text>
  784. </g>
  785. <g >
  786. <title>__GI___mmap64 (116,704,759 samples, 0.02%)</title><rect x="290.8" y="293" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
  787. <text x="293.80" y="303.5" ></text>
  788. </g>
  789. <g >
  790. <title>[[kernel.kallsyms]] (339,109,648 samples, 0.04%)</title><rect x="1189.2" y="133" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  791. <text x="1192.25" y="143.5" ></text>
  792. </g>
  793. <g >
  794. <title>[[kernel.kallsyms]] (70,085,427 samples, 0.01%)</title><rect x="291.1" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  795. <text x="294.08" y="159.5" ></text>
  796. </g>
  797. <g >
  798. <title>[[kernel.kallsyms]] (192,731,474 samples, 0.03%)</title><rect x="1183.9" y="197" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  799. <text x="1186.92" y="207.5" ></text>
  800. </g>
  801. <g >
  802. <title>[[kernel.kallsyms]] (88,390,565 samples, 0.01%)</title><rect x="286.5" y="181" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  803. <text x="289.55" y="191.5" ></text>
  804. </g>
  805. <g >
  806. <title>__GI_munmap (182,533,535 samples, 0.02%)</title><rect x="291.2" y="309" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
  807. <text x="294.19" y="319.5" ></text>
  808. </g>
  809. <g >
  810. <title>[[kernel.kallsyms]] (176,361,920 samples, 0.02%)</title><rect x="1184.0" y="117" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  811. <text x="1186.95" y="127.5" ></text>
  812. </g>
  813. <g >
  814. <title>[[kernel.kallsyms]] (182,533,535 samples, 0.02%)</title><rect x="291.2" y="277" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  815. <text x="294.19" y="287.5" ></text>
  816. </g>
  817. <g >
  818. <title>Vector_Loader&lt;unsigned long, (615,603,507 samples, 0.08%)</title><rect x="322.3" y="245" width="1.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
  819. <text x="325.31" y="255.5" ></text>
  820. </g>
  821. <g >
  822. <title>std::mersenne_twister_engine&lt;unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul&gt;::operator (4,108,353,659 samples, 0.54%)</title><rect x="313.0" y="213" width="6.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
  823. <text x="315.99" y="223.5" ></text>
  824. </g>
  825. <g >
  826. <title>[[kernel.kallsyms]] (97,991,797 samples, 0.01%)</title><rect x="286.5" y="213" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  827. <text x="289.53" y="223.5" ></text>
  828. </g>
  829. <g >
  830. <title>[[kernel.kallsyms]] (71,178,655 samples, 0.01%)</title><rect x="286.6" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  831. <text x="289.58" y="175.5" ></text>
  832. </g>
  833. <g >
  834. <title>_mm512_stream_load_si512 (3,012,574,731 samples, 0.40%)</title><rect x="1184.5" y="229" width="4.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
  835. <text x="1187.54" y="239.5" ></text>
  836. </g>
  837. <g >
  838. <title>[[kernel.kallsyms]] (181,571,536 samples, 0.02%)</title><rect x="1183.9" y="133" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  839. <text x="1186.94" y="143.5" ></text>
  840. </g>
  841. <g >
  842. <title>[[kernel.kallsyms]] (105,272,333 samples, 0.01%)</title><rect x="286.5" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  843. <text x="289.52" y="255.5" ></text>
  844. </g>
  845. <g >
  846. <title>[unknown] (1,358,752,193 samples, 0.18%)</title><rect x="288.6" y="309" width="2.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
  847. <text x="291.59" y="319.5" ></text>
  848. </g>
  849. <g >
  850. <title>[[kernel.kallsyms]] (115,401,998 samples, 0.02%)</title><rect x="290.8" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  851. <text x="293.80" y="255.5" ></text>
  852. </g>
  853. <g >
  854. <title>[[kernel.kallsyms]] (110,122,437 samples, 0.01%)</title><rect x="286.5" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  855. <text x="289.52" y="287.5" ></text>
  856. </g>
  857. <g >
  858. <title>[[kernel.kallsyms]] (182,533,535 samples, 0.02%)</title><rect x="291.2" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  859. <text x="294.19" y="223.5" ></text>
  860. </g>
  861. <g >
  862. <title>[[kernel.kallsyms]] (182,533,535 samples, 0.02%)</title><rect x="291.2" y="293" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  863. <text x="294.19" y="303.5" ></text>
  864. </g>
  865. <g >
  866. <title>[[kernel.kallsyms]] (105,922,725 samples, 0.01%)</title><rect x="291.0" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  867. <text x="294.02" y="207.5" ></text>
  868. </g>
  869. <g >
  870. <title>[[kernel.kallsyms]] (92,658,484 samples, 0.01%)</title><rect x="286.5" y="197" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  871. <text x="289.54" y="207.5" ></text>
  872. </g>
  873. <g >
  874. <title>[[kernel.kallsyms]] (7,642,626,030 samples, 1.01%)</title><rect x="293.8" y="245" width="11.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
  875. <text x="296.78" y="255.5" ></text>
  876. </g>
  877. </g>
  878. </svg>