Skip to content

Instantly share code, notes, and snippets.

@MateuszKubuszok
Created August 31, 2020 13:26
Show Gist options
  • Save MateuszKubuszok/eafaee69915092d818958f6b7594f37d to your computer and use it in GitHub Desktop.
Save MateuszKubuszok/eafaee69915092d818958f6b7594f37d to your computer and use it in GitHub Desktop.
Flame graphs for FizzBuzzBenchmark - Things that you need to know about JVM (that matter in Scala)
Display the source blob
Display the rendered blob
Raw
<?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="614" onload="init(evt)" viewBox="0 0 1200 614" 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;
}
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();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
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
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
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;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
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() {
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]);
update_text(el[i]);
}
search();
}
// 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")
}
}
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) {
currentSearchTerm = term;
search();
}
} 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 (currentSearchTerm === null) return;
var term = currentSearchTerm;
var re = new RegExp(term, 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;
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="614.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="597" > </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="597" > </text>
<g id="frames">
<g >
<title>example/FizzBuzz.run (217 samples, 0.43%)</title><rect x="963.8" y="485" width="5.0" height="15.0" fill="rgb(239,70,40)" rx="2" ry="2" />
<text x="966.77" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (624 samples, 1.24%)</title><rect x="358.3" y="389" width="14.6" height="15.0" fill="rgb(222,7,4)" rx="2" ry="2" />
<text x="361.29" y="399.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$StreamBuilder.&lt;init&gt; (282 samples, 0.56%)</title><rect x="1158.8" y="485" width="6.6" height="15.0" fill="rgb(216,43,39)" rx="2" ry="2" />
<text x="1161.84" y="495.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder (261 samples, 0.52%)</title><rect x="1181.7" y="485" width="6.1" height="15.0" fill="rgb(244,86,44)" rx="2" ry="2" />
<text x="1184.66" y="495.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (217 samples, 0.43%)</title><rect x="963.8" y="453" width="5.0" height="15.0" fill="rgb(220,213,41)" rx="2" ry="2" />
<text x="966.77" y="463.5" ></text>
</g>
<g >
<title>start_thread (672 samples, 1.33%)</title><rect x="17.2" y="485" width="15.8" height="15.0" fill="rgb(214,99,19)" rx="2" ry="2" />
<text x="20.24" y="495.5" ></text>
</g>
<g >
<title>scala/collection/mutable/LazyBuilder.&lt;init&gt; (669 samples, 1.33%)</title><rect x="1143.2" y="517" width="15.6" height="15.0" fill="rgb(253,191,12)" rx="2" ry="2" />
<text x="1146.17" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (329 samples, 0.65%)</title><rect x="300.3" y="341" width="7.7" height="15.0" fill="rgb(228,16,51)" rx="2" ry="2" />
<text x="303.29" y="351.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (669 samples, 1.33%)</title><rect x="1143.2" y="213" width="15.6" height="15.0" fill="rgb(233,4,39)" rx="2" ry="2" />
<text x="1146.17" y="223.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (5,797 samples, 11.50%)</title><rect x="816.3" y="517" width="135.7" height="15.0" fill="rgb(223,47,25)" rx="2" ry="2" />
<text x="819.26" y="527.5" >scala/collection/..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tailDefined (720 samples, 1.43%)</title><rect x="952.0" y="549" width="16.8" height="15.0" fill="rgb(224,190,29)" rx="2" ry="2" />
<text x="954.99" y="559.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (2,278 samples, 4.52%)</title><rect x="153.7" y="165" width="53.4" height="15.0" fill="rgb(207,13,33)" rx="2" ry="2" />
<text x="156.74" y="175.5" >java/..</text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="55.6" y="469" width="0.2" height="15.0" fill="rgb(226,157,43)" rx="2" ry="2" />
<text x="58.63" y="479.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (261 samples, 0.52%)</title><rect x="1181.7" y="373" width="6.1" height="15.0" fill="rgb(246,146,18)" rx="2" ry="2" />
<text x="1184.66" y="383.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (295 samples, 0.59%)</title><rect x="351.4" y="389" width="6.9" height="15.0" fill="rgb(233,91,22)" rx="2" ry="2" />
<text x="354.38" y="399.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (740 samples, 1.47%)</title><rect x="387.8" y="325" width="17.3" height="15.0" fill="rgb(233,68,50)" rx="2" ry="2" />
<text x="390.79" y="335.5" ></text>
</g>
<g >
<title>java/lang/Integer.toString (312 samples, 0.62%)</title><rect x="143.3" y="533" width="7.3" height="15.0" fill="rgb(210,168,27)" rx="2" ry="2" />
<text x="146.30" y="543.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (110 samples, 0.22%)</title><rect x="405.1" y="197" width="2.6" height="15.0" fill="rgb(235,140,50)" rx="2" ry="2" />
<text x="408.12" y="207.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (636 samples, 1.26%)</title><rect x="372.9" y="245" width="14.9" height="15.0" fill="rgb(212,112,20)" rx="2" ry="2" />
<text x="375.90" y="255.5" ></text>
</g>
<g >
<title>do_futex (6 samples, 0.01%)</title><rect x="55.6" y="501" width="0.2" height="15.0" fill="rgb(216,10,23)" rx="2" ry="2" />
<text x="58.63" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$take$2 (241 samples, 0.48%)</title><rect x="958.1" y="501" width="5.7" height="15.0" fill="rgb(231,47,42)" rx="2" ry="2" />
<text x="961.13" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (740 samples, 1.47%)</title><rect x="387.8" y="501" width="17.3" height="15.0" fill="rgb(236,173,6)" rx="2" ry="2" />
<text x="390.79" y="511.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder$ (669 samples, 1.33%)</title><rect x="1143.2" y="453" width="15.6" height="15.0" fill="rgb(218,92,45)" rx="2" ry="2" />
<text x="1146.17" y="463.5" ></text>
</g>
<g >
<title>java/lang/Integer.intValue (109 samples, 0.22%)</title><rect x="140.7" y="549" width="2.6" height="15.0" fill="rgb(230,152,54)" rx="2" ry="2" />
<text x="143.75" y="559.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (134 samples, 0.27%)</title><rect x="150.6" y="197" width="3.1" height="15.0" fill="rgb(218,91,1)" rx="2" ry="2" />
<text x="153.60" y="207.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (60 samples, 0.12%)</title><rect x="139.3" y="277" width="1.4" height="15.0" fill="rgb(207,123,27)" rx="2" ry="2" />
<text x="142.34" y="287.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (600 samples, 1.19%)</title><rect x="325.3" y="533" width="14.1" height="15.0" fill="rgb(247,14,34)" rx="2" ry="2" />
<text x="328.32" y="543.5" ></text>
</g>
<g >
<title>scala/collection/mutable/ListBuffer.&lt;init&gt; (230 samples, 0.46%)</title><rect x="1167.9" y="533" width="5.4" height="15.0" fill="rgb(214,189,44)" rx="2" ry="2" />
<text x="1170.92" y="543.5" ></text>
</g>
<g >
<title>itable stub (1,154 samples, 2.29%)</title><rect x="55.9" y="549" width="27.0" height="15.0" fill="rgb(205,84,24)" rx="2" ry="2" />
<text x="58.87" y="559.5" >i..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (533 samples, 1.06%)</title><rect x="70.4" y="325" width="12.5" height="15.0" fill="rgb(253,189,8)" rx="2" ry="2" />
<text x="73.41" y="335.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (124 samples, 0.25%)</title><rect x="297.4" y="309" width="2.9" height="15.0" fill="rgb(245,192,9)" rx="2" ry="2" />
<text x="300.39" y="319.5" ></text>
</g>
<g >
<title>scala/collection/AbstractTraversable.genericBuilder (261 samples, 0.52%)</title><rect x="1181.7" y="453" width="6.1" height="15.0" fill="rgb(207,2,38)" rx="2" ry="2" />
<text x="1184.66" y="463.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (636 samples, 1.26%)</title><rect x="372.9" y="357" width="14.9" height="15.0" fill="rgb(254,2,3)" rx="2" ry="2" />
<text x="375.90" y="367.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.$anonfun$from$1 (110 samples, 0.22%)</title><rect x="405.1" y="549" width="2.6" height="15.0" fill="rgb(212,104,41)" rx="2" ry="2" />
<text x="408.12" y="559.5" ></text>
</g>
<g >
<title>syscall_trace_enter (5 samples, 0.01%)</title><rect x="34.4" y="533" width="0.1" height="15.0" fill="rgb(245,58,44)" rx="2" ry="2" />
<text x="37.37" y="543.5" ></text>
</g>
<g >
<title>example/FizzBuzz$$Lambda$11/459636526.apply (134 samples, 0.27%)</title><rect x="150.6" y="501" width="3.1" height="15.0" fill="rgb(224,46,49)" rx="2" ry="2" />
<text x="153.60" y="511.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (1,746 samples, 3.46%)</title><rect x="1081.6" y="341" width="40.9" height="15.0" fill="rgb(243,180,2)" rx="2" ry="2" />
<text x="1084.64" y="351.5" >jav..</text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (329 samples, 0.65%)</title><rect x="300.3" y="149" width="7.7" height="15.0" fill="rgb(210,138,40)" rx="2" ry="2" />
<text x="303.29" y="159.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (636 samples, 1.26%)</title><rect x="372.9" y="405" width="14.9" height="15.0" fill="rgb(219,84,1)" rx="2" ry="2" />
<text x="375.90" y="415.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (115 samples, 0.23%)</title><rect x="574.2" y="245" width="2.6" height="15.0" fill="rgb(232,215,46)" rx="2" ry="2" />
<text x="577.15" y="255.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (10,225 samples, 20.29%)</title><rect x="576.8" y="261" width="239.5" height="15.0" fill="rgb(221,195,29)" rx="2" ry="2" />
<text x="579.84" y="271.5" >java/lang/reflect/Method.invoke</text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$take$2 (882 samples, 1.75%)</title><rect x="1122.5" y="533" width="20.7" height="15.0" fill="rgb(232,165,54)" rx="2" ry="2" />
<text x="1125.52" y="543.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (60 samples, 0.12%)</title><rect x="139.3" y="485" width="1.4" height="15.0" fill="rgb(207,101,30)" rx="2" ry="2" />
<text x="142.34" y="495.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (217 samples, 0.43%)</title><rect x="963.8" y="277" width="5.0" height="15.0" fill="rgb(215,83,34)" rx="2" ry="2" />
<text x="966.77" y="287.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (227 samples, 0.45%)</title><rect x="1076.3" y="261" width="5.3" height="15.0" fill="rgb(217,88,8)" rx="2" ry="2" />
<text x="1079.32" y="271.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1$adapted (2,410 samples, 4.78%)</title><rect x="82.9" y="485" width="56.4" height="15.0" fill="rgb(243,31,23)" rx="2" ry="2" />
<text x="85.91" y="495.5" >examp..</text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (360 samples, 0.71%)</title><rect x="316.8" y="117" width="8.5" height="15.0" fill="rgb(252,130,28)" rx="2" ry="2" />
<text x="319.85" y="127.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (740 samples, 1.47%)</title><rect x="387.8" y="293" width="17.3" height="15.0" fill="rgb(241,93,11)" rx="2" ry="2" />
<text x="390.79" y="303.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (3,525 samples, 6.99%)</title><rect x="214.1" y="341" width="82.5" height="15.0" fill="rgb(218,208,33)" rx="2" ry="2" />
<text x="217.08" y="351.5" >scala/col..</text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (8 samples, 0.02%)</title><rect x="36.0" y="469" width="0.2" height="15.0" fill="rgb(229,73,38)" rx="2" ry="2" />
<text x="39.01" y="479.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (329 samples, 0.65%)</title><rect x="300.3" y="85" width="7.7" height="15.0" fill="rgb(250,189,39)" rx="2" ry="2" />
<text x="303.29" y="95.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (241 samples, 0.48%)</title><rect x="958.1" y="357" width="5.7" height="15.0" fill="rgb(231,105,43)" rx="2" ry="2" />
<text x="961.13" y="367.5" ></text>
</g>
<g >
<title>java/lang/Integer.stringSize (312 samples, 0.62%)</title><rect x="143.3" y="549" width="7.3" height="15.0" fill="rgb(229,179,47)" rx="2" ry="2" />
<text x="146.30" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$$Lambda$9/428362883.apply (110 samples, 0.22%)</title><rect x="405.1" y="533" width="2.6" height="15.0" fill="rgb(206,113,28)" rx="2" ry="2" />
<text x="408.12" y="543.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1$adapted (109 samples, 0.22%)</title><rect x="140.7" y="517" width="2.6" height="15.0" fill="rgb(245,81,37)" rx="2" ry="2" />
<text x="143.75" y="527.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (1,746 samples, 3.46%)</title><rect x="1081.6" y="453" width="40.9" height="15.0" fill="rgb(206,163,13)" rx="2" ry="2" />
<text x="1084.64" y="463.5" >sun..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (2,410 samples, 4.78%)</title><rect x="82.9" y="405" width="56.4" height="15.0" fill="rgb(233,26,26)" rx="2" ry="2" />
<text x="85.91" y="415.5" >scala..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (669 samples, 1.33%)</title><rect x="1143.2" y="85" width="15.6" height="15.0" fill="rgb(210,79,39)" rx="2" ry="2" />
<text x="1146.17" y="95.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (115 samples, 0.23%)</title><rect x="574.2" y="229" width="2.6" height="15.0" fill="rgb(246,6,51)" rx="2" ry="2" />
<text x="577.15" y="239.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (60 samples, 0.12%)</title><rect x="139.3" y="421" width="1.4" height="15.0" fill="rgb(253,65,46)" rx="2" ry="2" />
<text x="142.34" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (227 samples, 0.45%)</title><rect x="1076.3" y="453" width="5.3" height="15.0" fill="rgb(247,1,44)" rx="2" ry="2" />
<text x="1079.32" y="463.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.newBuilder (378 samples, 0.75%)</title><rect x="308.0" y="469" width="8.8" height="15.0" fill="rgb(216,22,43)" rx="2" ry="2" />
<text x="311.00" y="479.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (109 samples, 0.22%)</title><rect x="140.7" y="373" width="2.6" height="15.0" fill="rgb(215,46,22)" rx="2" ry="2" />
<text x="143.75" y="383.5" ></text>
</g>
<g >
<title>scala/collection/AbstractTraversable.genericBuilder (106 samples, 0.21%)</title><rect x="1165.4" y="421" width="2.5" height="15.0" fill="rgb(208,179,47)" rx="2" ry="2" />
<text x="1168.44" y="431.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (2,410 samples, 4.78%)</title><rect x="82.9" y="373" width="56.4" height="15.0" fill="rgb(228,197,8)" rx="2" ry="2" />
<text x="85.91" y="383.5" >examp..</text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (357 samples, 0.71%)</title><rect x="1173.3" y="197" width="8.4" height="15.0" fill="rgb(213,16,19)" rx="2" ry="2" />
<text x="1176.31" y="207.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (114 samples, 0.23%)</title><rect x="422.8" y="293" width="2.7" height="15.0" fill="rgb(237,180,27)" rx="2" ry="2" />
<text x="425.85" y="303.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (513 samples, 1.02%)</title><rect x="339.4" y="181" width="12.0" height="15.0" fill="rgb(211,131,53)" rx="2" ry="2" />
<text x="342.37" y="191.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (110 samples, 0.22%)</title><rect x="405.1" y="149" width="2.6" height="15.0" fill="rgb(213,96,3)" rx="2" ry="2" />
<text x="408.12" y="159.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (600 samples, 1.19%)</title><rect x="325.3" y="389" width="14.1" height="15.0" fill="rgb(232,61,25)" rx="2" ry="2" />
<text x="328.32" y="399.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (10,225 samples, 20.29%)</title><rect x="576.8" y="421" width="239.5" height="15.0" fill="rgb(236,199,44)" rx="2" ry="2" />
<text x="579.84" y="431.5" >scala/collection/immutable/Stre..</text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (3,525 samples, 6.99%)</title><rect x="214.1" y="277" width="82.5" height="15.0" fill="rgb(217,89,11)" rx="2" ry="2" />
<text x="217.08" y="287.5" >example/F..</text>
</g>
<g >
<title>java/lang/Integer.getChars (2,470 samples, 4.90%)</title><rect x="82.9" y="549" width="57.8" height="15.0" fill="rgb(253,37,27)" rx="2" ry="2" />
<text x="85.91" y="559.5" >java/l..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (695 samples, 1.38%)</title><rect x="38.8" y="373" width="16.3" height="15.0" fill="rgb(213,30,8)" rx="2" ry="2" />
<text x="41.82" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (227 samples, 0.45%)</title><rect x="1076.3" y="517" width="5.3" height="15.0" fill="rgb(229,50,32)" rx="2" ry="2" />
<text x="1079.32" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (647 samples, 1.28%)</title><rect x="407.7" y="501" width="15.1" height="15.0" fill="rgb(214,159,10)" rx="2" ry="2" />
<text x="410.70" y="511.5" ></text>
</g>
<g >
<title>scala/collection/mutable/LazyBuilder.&lt;init&gt; (357 samples, 0.71%)</title><rect x="1173.3" y="501" width="8.4" height="15.0" fill="rgb(210,162,51)" rx="2" ry="2" />
<text x="1176.31" y="511.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (106 samples, 0.21%)</title><rect x="1165.4" y="197" width="2.5" height="15.0" fill="rgb(232,28,27)" rx="2" ry="2" />
<text x="1168.44" y="207.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (312 samples, 0.62%)</title><rect x="143.3" y="341" width="7.3" height="15.0" fill="rgb(244,63,42)" rx="2" ry="2" />
<text x="146.30" y="351.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (110 samples, 0.22%)</title><rect x="405.1" y="165" width="2.6" height="15.0" fill="rgb(240,110,14)" rx="2" ry="2" />
<text x="408.12" y="175.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (110 samples, 0.22%)</title><rect x="405.1" y="357" width="2.6" height="15.0" fill="rgb(249,73,28)" rx="2" ry="2" />
<text x="408.12" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (64 samples, 0.13%)</title><rect x="36.8" y="437" width="1.5" height="15.0" fill="rgb(232,154,29)" rx="2" ry="2" />
<text x="39.76" y="447.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (282 samples, 0.56%)</title><rect x="1158.8" y="133" width="6.6" height="15.0" fill="rgb(242,106,20)" rx="2" ry="2" />
<text x="1161.84" y="143.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (624 samples, 1.24%)</title><rect x="358.3" y="229" width="14.6" height="15.0" fill="rgb(227,44,29)" rx="2" ry="2" />
<text x="361.29" y="239.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (294 samples, 0.58%)</title><rect x="207.1" y="229" width="6.9" height="15.0" fill="rgb(206,130,20)" rx="2" ry="2" />
<text x="210.10" y="239.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (115 samples, 0.23%)</title><rect x="574.2" y="213" width="2.6" height="15.0" fill="rgb(251,52,33)" rx="2" ry="2" />
<text x="577.15" y="223.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (3,525 samples, 6.99%)</title><rect x="214.1" y="373" width="82.5" height="15.0" fill="rgb(246,19,51)" rx="2" ry="2" />
<text x="217.08" y="383.5" >scala/col..</text>
</g>
<g >
<title>java/lang/Thread.run (110 samples, 0.22%)</title><rect x="405.1" y="101" width="2.6" height="15.0" fill="rgb(242,33,49)" rx="2" ry="2" />
<text x="408.12" y="111.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (262 samples, 0.52%)</title><rect x="952.0" y="389" width="6.1" height="15.0" fill="rgb(226,20,45)" rx="2" ry="2" />
<text x="954.99" y="399.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (115 samples, 0.23%)</title><rect x="574.2" y="293" width="2.6" height="15.0" fill="rgb(237,45,17)" rx="2" ry="2" />
<text x="577.15" y="303.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (600 samples, 1.19%)</title><rect x="325.3" y="293" width="14.1" height="15.0" fill="rgb(228,59,4)" rx="2" ry="2" />
<text x="328.32" y="303.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (624 samples, 1.24%)</title><rect x="358.3" y="165" width="14.6" height="15.0" fill="rgb(211,94,32)" rx="2" ry="2" />
<text x="361.29" y="175.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (360 samples, 0.71%)</title><rect x="316.8" y="229" width="8.5" height="15.0" fill="rgb(251,11,42)" rx="2" ry="2" />
<text x="319.85" y="239.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (533 samples, 1.06%)</title><rect x="70.4" y="421" width="12.5" height="15.0" fill="rgb(253,67,31)" rx="2" ry="2" />
<text x="73.41" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (295 samples, 0.59%)</title><rect x="351.4" y="501" width="6.9" height="15.0" fill="rgb(235,111,44)" rx="2" ry="2" />
<text x="354.38" y="511.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (600 samples, 1.19%)</title><rect x="325.3" y="261" width="14.1" height="15.0" fill="rgb(207,27,17)" rx="2" ry="2" />
<text x="328.32" y="271.5" ></text>
</g>
<g >
<title>futex_wait (6 samples, 0.01%)</title><rect x="55.6" y="517" width="0.2" height="15.0" fill="rgb(250,61,54)" rx="2" ry="2" />
<text x="58.63" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (110 samples, 0.22%)</title><rect x="405.1" y="453" width="2.6" height="15.0" fill="rgb(239,85,19)" rx="2" ry="2" />
<text x="408.12" y="463.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (4,590 samples, 9.11%)</title><rect x="968.8" y="485" width="107.5" height="15.0" fill="rgb(244,86,39)" rx="2" ry="2" />
<text x="971.85" y="495.5" >scala/collect..</text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (378 samples, 0.75%)</title><rect x="308.0" y="149" width="8.8" height="15.0" fill="rgb(225,0,51)" rx="2" ry="2" />
<text x="311.00" y="159.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (5,797 samples, 11.50%)</title><rect x="816.3" y="325" width="135.7" height="15.0" fill="rgb(250,180,49)" rx="2" ry="2" />
<text x="819.26" y="335.5" >java/util/concurr..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (77 samples, 0.15%)</title><rect x="1187.8" y="357" width="1.8" height="15.0" fill="rgb(235,101,11)" rx="2" ry="2" />
<text x="1190.80" y="367.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (10,225 samples, 20.29%)</title><rect x="576.8" y="389" width="239.5" height="15.0" fill="rgb(232,117,12)" rx="2" ry="2" />
<text x="579.84" y="399.5" >scala/collection/immutable/Stre..</text>
</g>
<g >
<title>scala/collection/AbstractTraversable.genericBuilder (282 samples, 0.56%)</title><rect x="1158.8" y="421" width="6.6" height="15.0" fill="rgb(248,161,43)" rx="2" ry="2" />
<text x="1161.84" y="431.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (357 samples, 0.71%)</title><rect x="1173.3" y="133" width="8.4" height="15.0" fill="rgb(208,95,19)" rx="2" ry="2" />
<text x="1176.31" y="143.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (109 samples, 0.22%)</title><rect x="140.7" y="277" width="2.6" height="15.0" fill="rgb(208,18,18)" rx="2" ry="2" />
<text x="143.75" y="287.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (6 samples, 0.01%)</title><rect x="1189.6" y="229" width="0.2" height="15.0" fill="rgb(205,97,45)" rx="2" ry="2" />
<text x="1192.65" y="239.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (115 samples, 0.23%)</title><rect x="574.2" y="437" width="2.6" height="15.0" fill="rgb(216,105,7)" rx="2" ry="2" />
<text x="577.15" y="447.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (241 samples, 0.48%)</title><rect x="958.1" y="261" width="5.7" height="15.0" fill="rgb(246,43,17)" rx="2" ry="2" />
<text x="961.13" y="271.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (360 samples, 0.71%)</title><rect x="316.8" y="133" width="8.5" height="15.0" fill="rgb(206,198,27)" rx="2" ry="2" />
<text x="319.85" y="143.5" ></text>
</g>
<g >
<title>all (50,396 samples, 100%)</title><rect x="10.0" y="565" width="1180.0" height="15.0" fill="rgb(238,24,7)" rx="2" ry="2" />
<text x="13.00" y="575.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (217 samples, 0.43%)</title><rect x="963.8" y="421" width="5.0" height="15.0" fill="rgb(216,0,21)" rx="2" ry="2" />
<text x="966.77" y="431.5" ></text>
</g>
<g >
<title>scala/collection/mutable/AbstractBuffer.&lt;init&gt; (106 samples, 0.21%)</title><rect x="1165.4" y="533" width="2.5" height="15.0" fill="rgb(212,126,44)" rx="2" ry="2" />
<text x="1168.44" y="543.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (3,525 samples, 6.99%)</title><rect x="214.1" y="453" width="82.5" height="15.0" fill="rgb(222,181,25)" rx="2" ry="2" />
<text x="217.08" y="463.5" >scala/col..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (378 samples, 0.75%)</title><rect x="308.0" y="101" width="8.8" height="15.0" fill="rgb(205,199,41)" rx="2" ry="2" />
<text x="311.00" y="111.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder$ (230 samples, 0.46%)</title><rect x="1167.9" y="453" width="5.4" height="15.0" fill="rgb(211,18,11)" rx="2" ry="2" />
<text x="1170.92" y="463.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (6 samples, 0.01%)</title><rect x="1189.6" y="293" width="0.2" height="15.0" fill="rgb(213,61,40)" rx="2" ry="2" />
<text x="1192.65" y="303.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (115 samples, 0.23%)</title><rect x="574.2" y="357" width="2.6" height="15.0" fill="rgb(219,220,3)" rx="2" ry="2" />
<text x="577.15" y="367.5" ></text>
</g>
<g >
<title>java/lang/Integer.toString (2,410 samples, 4.78%)</title><rect x="82.9" y="517" width="56.4" height="15.0" fill="rgb(229,217,4)" rx="2" ry="2" />
<text x="85.91" y="527.5" >java/..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (2,278 samples, 4.52%)</title><rect x="153.7" y="181" width="53.4" height="15.0" fill="rgb(250,17,21)" rx="2" ry="2" />
<text x="156.74" y="191.5" >java/..</text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (3,525 samples, 6.99%)</title><rect x="214.1" y="117" width="82.5" height="15.0" fill="rgb(234,225,52)" rx="2" ry="2" />
<text x="217.08" y="127.5" >java/util..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (295 samples, 0.59%)</title><rect x="351.4" y="213" width="6.9" height="15.0" fill="rgb(244,93,33)" rx="2" ry="2" />
<text x="354.38" y="223.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (110 samples, 0.22%)</title><rect x="405.1" y="229" width="2.6" height="15.0" fill="rgb(228,158,11)" rx="2" ry="2" />
<text x="408.12" y="239.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (5,797 samples, 11.50%)</title><rect x="816.3" y="293" width="135.7" height="15.0" fill="rgb(238,195,16)" rx="2" ry="2" />
<text x="819.26" y="303.5" >java/util/concurr..</text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (357 samples, 0.71%)</title><rect x="1173.3" y="405" width="8.4" height="15.0" fill="rgb(248,9,52)" rx="2" ry="2" />
<text x="1176.31" y="415.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (378 samples, 0.75%)</title><rect x="308.0" y="69" width="8.8" height="15.0" fill="rgb(222,115,13)" rx="2" ry="2" />
<text x="311.00" y="79.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (360 samples, 0.71%)</title><rect x="316.8" y="53" width="8.5" height="15.0" fill="rgb(228,170,21)" rx="2" ry="2" />
<text x="319.85" y="63.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder$ (261 samples, 0.52%)</title><rect x="1181.7" y="469" width="6.1" height="15.0" fill="rgb(213,84,3)" rx="2" ry="2" />
<text x="1184.66" y="479.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (262 samples, 0.52%)</title><rect x="952.0" y="485" width="6.1" height="15.0" fill="rgb(242,5,34)" rx="2" ry="2" />
<text x="954.99" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (636 samples, 1.26%)</title><rect x="372.9" y="549" width="14.9" height="15.0" fill="rgb(239,211,51)" rx="2" ry="2" />
<text x="375.90" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.newBuilder (261 samples, 0.52%)</title><rect x="1181.7" y="501" width="6.1" height="15.0" fill="rgb(236,74,32)" rx="2" ry="2" />
<text x="1184.66" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (882 samples, 1.75%)</title><rect x="1122.5" y="485" width="20.7" height="15.0" fill="rgb(220,147,1)" rx="2" ry="2" />
<text x="1125.52" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (357 samples, 0.71%)</title><rect x="1173.3" y="325" width="8.4" height="15.0" fill="rgb(216,134,7)" rx="2" ry="2" />
<text x="1176.31" y="335.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (740 samples, 1.47%)</title><rect x="387.8" y="181" width="17.3" height="15.0" fill="rgb(235,15,52)" rx="2" ry="2" />
<text x="390.79" y="191.5" ></text>
</g>
<g >
<title>scala/collection/mutable/AbstractBuffer.&lt;init&gt; (282 samples, 0.56%)</title><rect x="1158.8" y="533" width="6.6" height="15.0" fill="rgb(235,144,34)" rx="2" ry="2" />
<text x="1161.84" y="543.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (115 samples, 0.23%)</title><rect x="574.2" y="421" width="2.6" height="15.0" fill="rgb(252,5,26)" rx="2" ry="2" />
<text x="577.15" y="431.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (624 samples, 1.24%)</title><rect x="358.3" y="101" width="14.6" height="15.0" fill="rgb(224,23,8)" rx="2" ry="2" />
<text x="361.29" y="111.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (669 samples, 1.33%)</title><rect x="1143.2" y="341" width="15.6" height="15.0" fill="rgb(247,59,29)" rx="2" ry="2" />
<text x="1146.17" y="351.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (624 samples, 1.24%)</title><rect x="358.3" y="373" width="14.6" height="15.0" fill="rgb(208,227,25)" rx="2" ry="2" />
<text x="361.29" y="383.5" ></text>
</g>
<g >
<title>scala/collection/mutable/LazyBuilder.&lt;init&gt; (282 samples, 0.56%)</title><rect x="1158.8" y="501" width="6.6" height="15.0" fill="rgb(223,203,17)" rx="2" ry="2" />
<text x="1161.84" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (10,225 samples, 20.29%)</title><rect x="576.8" y="453" width="239.5" height="15.0" fill="rgb(232,116,27)" rx="2" ry="2" />
<text x="579.84" y="463.5" >scala/collection/immutable/Stre..</text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (294 samples, 0.58%)</title><rect x="207.1" y="261" width="6.9" height="15.0" fill="rgb(252,74,10)" rx="2" ry="2" />
<text x="210.10" y="271.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (294 samples, 0.58%)</title><rect x="207.1" y="309" width="6.9" height="15.0" fill="rgb(227,186,53)" rx="2" ry="2" />
<text x="210.10" y="319.5" ></text>
</g>
<g >
<title>start_thread (5 samples, 0.01%)</title><rect x="33.8" y="517" width="0.1" height="15.0" fill="rgb(243,70,12)" rx="2" ry="2" />
<text x="36.81" y="527.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (621 samples, 1.23%)</title><rect x="55.9" y="181" width="14.5" height="15.0" fill="rgb(242,155,31)" rx="2" ry="2" />
<text x="58.87" y="191.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (624 samples, 1.24%)</title><rect x="358.3" y="197" width="14.6" height="15.0" fill="rgb(214,52,27)" rx="2" ry="2" />
<text x="361.29" y="207.5" ></text>
</g>
<g >
<title>futex_wake (6 samples, 0.01%)</title><rect x="55.4" y="549" width="0.2" height="15.0" fill="rgb(241,182,6)" rx="2" ry="2" />
<text x="58.42" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (695 samples, 1.38%)</title><rect x="38.8" y="501" width="16.3" height="15.0" fill="rgb(228,122,44)" rx="2" ry="2" />
<text x="41.82" y="511.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (533 samples, 1.06%)</title><rect x="70.4" y="245" width="12.5" height="15.0" fill="rgb(250,13,40)" rx="2" ry="2" />
<text x="73.41" y="255.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (882 samples, 1.75%)</title><rect x="1122.5" y="165" width="20.7" height="15.0" fill="rgb(252,181,41)" rx="2" ry="2" />
<text x="1125.52" y="175.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (695 samples, 1.38%)</title><rect x="38.8" y="485" width="16.3" height="15.0" fill="rgb(217,108,18)" rx="2" ry="2" />
<text x="41.82" y="495.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (295 samples, 0.59%)</title><rect x="351.4" y="405" width="6.9" height="15.0" fill="rgb(229,39,32)" rx="2" ry="2" />
<text x="354.38" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (2,410 samples, 4.78%)</title><rect x="82.9" y="309" width="56.4" height="15.0" fill="rgb(213,174,4)" rx="2" ry="2" />
<text x="85.91" y="319.5" >sun/r..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (6 samples, 0.01%)</title><rect x="1189.6" y="485" width="0.2" height="15.0" fill="rgb(227,147,52)" rx="2" ry="2" />
<text x="1192.65" y="495.5" ></text>
</g>
<g >
<title>java/lang/Integer.toString (2,279 samples, 4.52%)</title><rect x="153.7" y="533" width="53.4" height="15.0" fill="rgb(241,85,37)" rx="2" ry="2" />
<text x="156.74" y="543.5" >java/..</text>
</g>
<g >
<title>scala/collection/immutable/Stream.take (882 samples, 1.75%)</title><rect x="1122.5" y="549" width="20.7" height="15.0" fill="rgb(213,116,19)" rx="2" ry="2" />
<text x="1125.52" y="559.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (360 samples, 0.71%)</title><rect x="316.8" y="277" width="8.5" height="15.0" fill="rgb(233,86,3)" rx="2" ry="2" />
<text x="319.85" y="287.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (60 samples, 0.12%)</title><rect x="139.3" y="229" width="1.4" height="15.0" fill="rgb(249,60,4)" rx="2" ry="2" />
<text x="142.34" y="239.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (695 samples, 1.38%)</title><rect x="38.8" y="181" width="16.3" height="15.0" fill="rgb(209,97,13)" rx="2" ry="2" />
<text x="41.82" y="191.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (329 samples, 0.65%)</title><rect x="300.3" y="165" width="7.7" height="15.0" fill="rgb(245,84,53)" rx="2" ry="2" />
<text x="303.29" y="175.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (10,225 samples, 20.29%)</title><rect x="576.8" y="149" width="239.5" height="15.0" fill="rgb(216,25,29)" rx="2" ry="2" />
<text x="579.84" y="159.5" >java/util/concurrent/ThreadPool..</text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (6,345 samples, 12.59%)</title><rect x="425.6" y="341" width="148.6" height="15.0" fill="rgb(205,86,42)" rx="2" ry="2" />
<text x="428.58" y="351.5" >sun/reflect/Delega..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (600 samples, 1.19%)</title><rect x="325.3" y="309" width="14.1" height="15.0" fill="rgb(244,202,17)" rx="2" ry="2" />
<text x="328.32" y="319.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (230 samples, 0.46%)</title><rect x="1167.9" y="293" width="5.4" height="15.0" fill="rgb(253,37,12)" rx="2" ry="2" />
<text x="1170.92" y="303.5" ></text>
</g>
<g >
<title>scala/collection/mutable/ListBuffer.&lt;init&gt; (669 samples, 1.33%)</title><rect x="1143.2" y="533" width="15.6" height="15.0" fill="rgb(207,33,38)" rx="2" ry="2" />
<text x="1146.17" y="543.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (600 samples, 1.19%)</title><rect x="325.3" y="197" width="14.1" height="15.0" fill="rgb(245,50,40)" rx="2" ry="2" />
<text x="328.32" y="207.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.01%)</title><rect x="34.4" y="501" width="0.1" height="15.0" fill="rgb(227,185,47)" rx="2" ry="2" />
<text x="37.37" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (114 samples, 0.23%)</title><rect x="422.8" y="485" width="2.7" height="15.0" fill="rgb(224,219,0)" rx="2" ry="2" />
<text x="425.85" y="495.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (533 samples, 1.06%)</title><rect x="70.4" y="277" width="12.5" height="15.0" fill="rgb(220,195,13)" rx="2" ry="2" />
<text x="73.41" y="287.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (114 samples, 0.23%)</title><rect x="422.8" y="309" width="2.7" height="15.0" fill="rgb(252,144,54)" rx="2" ry="2" />
<text x="425.85" y="319.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (647 samples, 1.28%)</title><rect x="407.7" y="277" width="15.1" height="15.0" fill="rgb(234,163,34)" rx="2" ry="2" />
<text x="410.70" y="287.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder$ (357 samples, 0.71%)</title><rect x="1173.3" y="437" width="8.4" height="15.0" fill="rgb(219,112,34)" rx="2" ry="2" />
<text x="1176.31" y="447.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1$adapted (134 samples, 0.27%)</title><rect x="150.6" y="517" width="3.1" height="15.0" fill="rgb(226,177,4)" rx="2" ry="2" />
<text x="153.60" y="527.5" ></text>
</g>
<g >
<title>scala/collection/generic/Subtractable.$init$ (360 samples, 0.71%)</title><rect x="316.8" y="549" width="8.5" height="15.0" fill="rgb(211,76,25)" rx="2" ry="2" />
<text x="319.85" y="559.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (261 samples, 0.52%)</title><rect x="1181.7" y="245" width="6.1" height="15.0" fill="rgb(226,126,26)" rx="2" ry="2" />
<text x="1184.66" y="255.5" ></text>
</g>
<g >
<title>do_syscall_64 (64 samples, 0.13%)</title><rect x="36.8" y="453" width="1.5" height="15.0" fill="rgb(231,45,1)" rx="2" ry="2" />
<text x="39.76" y="463.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (329 samples, 0.65%)</title><rect x="300.3" y="101" width="7.7" height="15.0" fill="rgb(254,39,51)" rx="2" ry="2" />
<text x="303.29" y="111.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (600 samples, 1.19%)</title><rect x="325.3" y="165" width="14.1" height="15.0" fill="rgb(238,59,50)" rx="2" ry="2" />
<text x="328.32" y="175.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (124 samples, 0.25%)</title><rect x="297.4" y="341" width="2.9" height="15.0" fill="rgb(248,35,5)" rx="2" ry="2" />
<text x="300.39" y="351.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (109 samples, 0.22%)</title><rect x="140.7" y="181" width="2.6" height="15.0" fill="rgb(223,151,47)" rx="2" ry="2" />
<text x="143.75" y="191.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (2,278 samples, 4.52%)</title><rect x="153.7" y="325" width="53.4" height="15.0" fill="rgb(236,56,48)" rx="2" ry="2" />
<text x="156.74" y="335.5" >sun/r..</text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (600 samples, 1.19%)</title><rect x="325.3" y="373" width="14.1" height="15.0" fill="rgb(231,110,12)" rx="2" ry="2" />
<text x="328.32" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (647 samples, 1.28%)</title><rect x="407.7" y="373" width="15.1" height="15.0" fill="rgb(206,4,34)" rx="2" ry="2" />
<text x="410.70" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (114 samples, 0.23%)</title><rect x="422.8" y="405" width="2.7" height="15.0" fill="rgb(227,199,43)" rx="2" ry="2" />
<text x="425.85" y="415.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (8 samples, 0.02%)</title><rect x="38.5" y="453" width="0.2" height="15.0" fill="rgb(226,195,47)" rx="2" ry="2" />
<text x="41.50" y="463.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (600 samples, 1.19%)</title><rect x="325.3" y="181" width="14.1" height="15.0" fill="rgb(250,13,42)" rx="2" ry="2" />
<text x="328.32" y="191.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (10,340 samples, 20.52%)</title><rect x="574.2" y="501" width="242.1" height="15.0" fill="rgb(205,163,33)" rx="2" ry="2" />
<text x="577.15" y="511.5" >scala/collection/immutable/Strea..</text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (378 samples, 0.75%)</title><rect x="308.0" y="181" width="8.8" height="15.0" fill="rgb(206,96,27)" rx="2" ry="2" />
<text x="311.00" y="191.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (227 samples, 0.45%)</title><rect x="1076.3" y="485" width="5.3" height="15.0" fill="rgb(250,63,3)" rx="2" ry="2" />
<text x="1079.32" y="495.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.01%)</title><rect x="55.6" y="421" width="0.2" height="15.0" fill="rgb(222,178,45)" rx="2" ry="2" />
<text x="58.63" y="431.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (282 samples, 0.56%)</title><rect x="1158.8" y="293" width="6.6" height="15.0" fill="rgb(246,146,2)" rx="2" ry="2" />
<text x="1161.84" y="303.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (124 samples, 0.25%)</title><rect x="297.4" y="469" width="2.9" height="15.0" fill="rgb(221,194,49)" rx="2" ry="2" />
<text x="300.39" y="479.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (647 samples, 1.28%)</title><rect x="407.7" y="197" width="15.1" height="15.0" fill="rgb(251,124,43)" rx="2" ry="2" />
<text x="410.70" y="207.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (695 samples, 1.38%)</title><rect x="38.8" y="469" width="16.3" height="15.0" fill="rgb(246,87,40)" rx="2" ry="2" />
<text x="41.82" y="479.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (109 samples, 0.22%)</title><rect x="140.7" y="437" width="2.6" height="15.0" fill="rgb(237,137,35)" rx="2" ry="2" />
<text x="143.75" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$take$2 (110 samples, 0.22%)</title><rect x="405.1" y="485" width="2.6" height="15.0" fill="rgb(244,117,45)" rx="2" ry="2" />
<text x="408.12" y="495.5" ></text>
</g>
<g >
<title>__vfprintf_internal (6 samples, 0.01%)</title><rect x="36.4" y="549" width="0.1" height="15.0" fill="rgb(241,163,12)" rx="2" ry="2" />
<text x="39.39" y="559.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (227 samples, 0.45%)</title><rect x="1076.3" y="373" width="5.3" height="15.0" fill="rgb(212,80,28)" rx="2" ry="2" />
<text x="1079.32" y="383.5" ></text>
</g>
<g >
<title>start_thread (103 samples, 0.20%)</title><rect x="14.8" y="469" width="2.4" height="15.0" fill="rgb(206,223,54)" rx="2" ry="2" />
<text x="17.80" y="479.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (329 samples, 0.65%)</title><rect x="300.3" y="309" width="7.7" height="15.0" fill="rgb(207,165,39)" rx="2" ry="2" />
<text x="303.29" y="319.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (230 samples, 0.46%)</title><rect x="1167.9" y="405" width="5.4" height="15.0" fill="rgb(241,101,12)" rx="2" ry="2" />
<text x="1170.92" y="415.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (5,797 samples, 11.50%)</title><rect x="816.3" y="453" width="135.7" height="15.0" fill="rgb(225,201,22)" rx="2" ry="2" />
<text x="819.26" y="463.5" >example/generated..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (600 samples, 1.19%)</title><rect x="325.3" y="325" width="14.1" height="15.0" fill="rgb(244,96,35)" rx="2" ry="2" />
<text x="328.32" y="335.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (262 samples, 0.52%)</title><rect x="952.0" y="373" width="6.1" height="15.0" fill="rgb(229,178,22)" rx="2" ry="2" />
<text x="954.99" y="383.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (14 samples, 0.03%)</title><rect x="10.0" y="373" width="0.3" height="15.0" fill="rgb(210,19,19)" rx="2" ry="2" />
<text x="13.00" y="383.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (295 samples, 0.59%)</title><rect x="351.4" y="325" width="6.9" height="15.0" fill="rgb(213,52,38)" rx="2" ry="2" />
<text x="354.38" y="335.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.newBuilder (360 samples, 0.71%)</title><rect x="316.8" y="469" width="8.5" height="15.0" fill="rgb(229,10,45)" rx="2" ry="2" />
<text x="319.85" y="479.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (60 samples, 0.12%)</title><rect x="139.3" y="245" width="1.4" height="15.0" fill="rgb(210,102,13)" rx="2" ry="2" />
<text x="142.34" y="255.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (241 samples, 0.48%)</title><rect x="958.1" y="133" width="5.7" height="15.0" fill="rgb(206,130,9)" rx="2" ry="2" />
<text x="961.13" y="143.5" ></text>
</g>
<g >
<title>__x64_sys_futex (64 samples, 0.13%)</title><rect x="36.8" y="469" width="1.5" height="15.0" fill="rgb(226,171,7)" rx="2" ry="2" />
<text x="39.76" y="479.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (227 samples, 0.45%)</title><rect x="1076.3" y="405" width="5.3" height="15.0" fill="rgb(205,162,45)" rx="2" ry="2" />
<text x="1079.32" y="415.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (6 samples, 0.01%)</title><rect x="1189.6" y="277" width="0.2" height="15.0" fill="rgb(232,225,30)" rx="2" ry="2" />
<text x="1192.65" y="287.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (695 samples, 1.38%)</title><rect x="38.8" y="213" width="16.3" height="15.0" fill="rgb(250,16,8)" rx="2" ry="2" />
<text x="41.82" y="223.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (3,525 samples, 6.99%)</title><rect x="214.1" y="101" width="82.5" height="15.0" fill="rgb(216,185,48)" rx="2" ry="2" />
<text x="217.08" y="111.5" >java/util..</text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (262 samples, 0.52%)</title><rect x="952.0" y="293" width="6.1" height="15.0" fill="rgb(217,41,34)" rx="2" ry="2" />
<text x="954.99" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.01%)</title><rect x="34.4" y="517" width="0.1" height="15.0" fill="rgb(239,187,28)" rx="2" ry="2" />
<text x="37.37" y="527.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (241 samples, 0.48%)</title><rect x="958.1" y="229" width="5.7" height="15.0" fill="rgb(252,202,39)" rx="2" ry="2" />
<text x="961.13" y="239.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$$Lambda$9/428362883.apply (647 samples, 1.28%)</title><rect x="407.7" y="517" width="15.1" height="15.0" fill="rgb(254,108,53)" rx="2" ry="2" />
<text x="410.70" y="527.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (6 samples, 0.01%)</title><rect x="1189.6" y="389" width="0.2" height="15.0" fill="rgb(247,100,13)" rx="2" ry="2" />
<text x="1192.65" y="399.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (600 samples, 1.19%)</title><rect x="325.3" y="133" width="14.1" height="15.0" fill="rgb(247,142,5)" rx="2" ry="2" />
<text x="328.32" y="143.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="55.4" y="485" width="0.2" height="15.0" fill="rgb(238,191,41)" rx="2" ry="2" />
<text x="58.42" y="495.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (261 samples, 0.52%)</title><rect x="1181.7" y="117" width="6.1" height="15.0" fill="rgb(235,75,21)" rx="2" ry="2" />
<text x="1184.66" y="127.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (115 samples, 0.23%)</title><rect x="574.2" y="261" width="2.6" height="15.0" fill="rgb(253,10,50)" rx="2" ry="2" />
<text x="577.15" y="271.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (647 samples, 1.28%)</title><rect x="407.7" y="261" width="15.1" height="15.0" fill="rgb(249,102,31)" rx="2" ry="2" />
<text x="410.70" y="271.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (295 samples, 0.59%)</title><rect x="351.4" y="293" width="6.9" height="15.0" fill="rgb(250,162,16)" rx="2" ry="2" />
<text x="354.38" y="303.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (1,746 samples, 3.46%)</title><rect x="1081.6" y="517" width="40.9" height="15.0" fill="rgb(247,186,41)" rx="2" ry="2" />
<text x="1084.64" y="527.5" >exa..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (3,525 samples, 6.99%)</title><rect x="214.1" y="69" width="82.5" height="15.0" fill="rgb(252,62,7)" rx="2" ry="2" />
<text x="217.08" y="79.5" >java/util..</text>
</g>
<g >
<title>scala/collection/mutable/ListBuffer.&lt;init&gt; (261 samples, 0.52%)</title><rect x="1181.7" y="549" width="6.1" height="15.0" fill="rgb(223,225,3)" rx="2" ry="2" />
<text x="1184.66" y="559.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (695 samples, 1.38%)</title><rect x="38.8" y="261" width="16.3" height="15.0" fill="rgb(246,153,26)" rx="2" ry="2" />
<text x="41.82" y="271.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (294 samples, 0.58%)</title><rect x="207.1" y="357" width="6.9" height="15.0" fill="rgb(222,28,43)" rx="2" ry="2" />
<text x="210.10" y="367.5" ></text>
</g>
<g >
<title>[unknown] (34 samples, 0.07%)</title><rect x="34.9" y="533" width="0.8" height="15.0" fill="rgb(219,2,47)" rx="2" ry="2" />
<text x="37.89" y="543.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (241 samples, 0.48%)</title><rect x="958.1" y="149" width="5.7" height="15.0" fill="rgb(245,72,24)" rx="2" ry="2" />
<text x="961.13" y="159.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (647 samples, 1.28%)</title><rect x="407.7" y="389" width="15.1" height="15.0" fill="rgb(219,45,31)" rx="2" ry="2" />
<text x="410.70" y="399.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (2,278 samples, 4.52%)</title><rect x="153.7" y="341" width="53.4" height="15.0" fill="rgb(240,147,25)" rx="2" ry="2" />
<text x="156.74" y="351.5" >examp..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (110 samples, 0.22%)</title><rect x="405.1" y="293" width="2.6" height="15.0" fill="rgb(207,135,3)" rx="2" ry="2" />
<text x="408.12" y="303.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (624 samples, 1.24%)</title><rect x="358.3" y="133" width="14.6" height="15.0" fill="rgb(218,143,26)" rx="2" ry="2" />
<text x="361.29" y="143.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (695 samples, 1.38%)</title><rect x="38.8" y="309" width="16.3" height="15.0" fill="rgb(208,216,40)" rx="2" ry="2" />
<text x="41.82" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (77 samples, 0.15%)</title><rect x="1187.8" y="421" width="1.8" height="15.0" fill="rgb(209,100,43)" rx="2" ry="2" />
<text x="1190.80" y="431.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (295 samples, 0.59%)</title><rect x="351.4" y="197" width="6.9" height="15.0" fill="rgb(234,29,53)" rx="2" ry="2" />
<text x="354.38" y="207.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (261 samples, 0.52%)</title><rect x="1181.7" y="389" width="6.1" height="15.0" fill="rgb(210,158,43)" rx="2" ry="2" />
<text x="1184.66" y="399.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (294 samples, 0.58%)</title><rect x="207.1" y="341" width="6.9" height="15.0" fill="rgb(226,71,34)" rx="2" ry="2" />
<text x="210.10" y="351.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (647 samples, 1.28%)</title><rect x="407.7" y="357" width="15.1" height="15.0" fill="rgb(219,37,33)" rx="2" ry="2" />
<text x="410.70" y="367.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (1,746 samples, 3.46%)</title><rect x="1081.6" y="309" width="40.9" height="15.0" fill="rgb(242,16,21)" rx="2" ry="2" />
<text x="1084.64" y="319.5" >jav..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (4,590 samples, 9.11%)</title><rect x="968.8" y="261" width="107.5" height="15.0" fill="rgb(239,62,32)" rx="2" ry="2" />
<text x="971.85" y="271.5" >java/util/con..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (3,525 samples, 6.99%)</title><rect x="214.1" y="405" width="82.5" height="15.0" fill="rgb(217,55,15)" rx="2" ry="2" />
<text x="217.08" y="415.5" >scala/col..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (6 samples, 0.01%)</title><rect x="1189.6" y="453" width="0.2" height="15.0" fill="rgb(247,47,50)" rx="2" ry="2" />
<text x="1192.65" y="463.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (357 samples, 0.71%)</title><rect x="1173.3" y="293" width="8.4" height="15.0" fill="rgb(210,112,1)" rx="2" ry="2" />
<text x="1176.31" y="303.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (106 samples, 0.21%)</title><rect x="1165.4" y="293" width="2.5" height="15.0" fill="rgb(244,32,52)" rx="2" ry="2" />
<text x="1168.44" y="303.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (106 samples, 0.21%)</title><rect x="1165.4" y="149" width="2.5" height="15.0" fill="rgb(229,123,8)" rx="2" ry="2" />
<text x="1168.44" y="159.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (513 samples, 1.02%)</title><rect x="339.4" y="85" width="12.0" height="15.0" fill="rgb(213,0,12)" rx="2" ry="2" />
<text x="342.37" y="95.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (1,746 samples, 3.46%)</title><rect x="1081.6" y="485" width="40.9" height="15.0" fill="rgb(214,168,52)" rx="2" ry="2" />
<text x="1084.64" y="495.5" >exa..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (230 samples, 0.46%)</title><rect x="1167.9" y="85" width="5.4" height="15.0" fill="rgb(233,110,54)" rx="2" ry="2" />
<text x="1170.92" y="95.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (882 samples, 1.75%)</title><rect x="1122.5" y="181" width="20.7" height="15.0" fill="rgb(225,140,32)" rx="2" ry="2" />
<text x="1125.52" y="191.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (217 samples, 0.43%)</title><rect x="963.8" y="261" width="5.0" height="15.0" fill="rgb(214,91,54)" rx="2" ry="2" />
<text x="966.77" y="271.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (282 samples, 0.56%)</title><rect x="1158.8" y="325" width="6.6" height="15.0" fill="rgb(243,217,47)" rx="2" ry="2" />
<text x="1161.84" y="335.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (109 samples, 0.22%)</title><rect x="140.7" y="325" width="2.6" height="15.0" fill="rgb(220,202,54)" rx="2" ry="2" />
<text x="143.75" y="335.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (8 samples, 0.02%)</title><rect x="38.5" y="501" width="0.2" height="15.0" fill="rgb(228,150,52)" rx="2" ry="2" />
<text x="41.50" y="511.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (230 samples, 0.46%)</title><rect x="1167.9" y="213" width="5.4" height="15.0" fill="rgb(249,215,36)" rx="2" ry="2" />
<text x="1170.92" y="223.5" ></text>
</g>
<g >
<title>scala/collection/generic/Shrinkable.$init$ (378 samples, 0.75%)</title><rect x="308.0" y="549" width="8.8" height="15.0" fill="rgb(205,207,2)" rx="2" ry="2" />
<text x="311.00" y="559.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (241 samples, 0.48%)</title><rect x="958.1" y="293" width="5.7" height="15.0" fill="rgb(216,34,5)" rx="2" ry="2" />
<text x="961.13" y="303.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (110 samples, 0.22%)</title><rect x="405.1" y="341" width="2.6" height="15.0" fill="rgb(239,45,46)" rx="2" ry="2" />
<text x="408.12" y="351.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (124 samples, 0.25%)</title><rect x="297.4" y="245" width="2.9" height="15.0" fill="rgb(213,68,26)" rx="2" ry="2" />
<text x="300.39" y="255.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (77 samples, 0.15%)</title><rect x="1187.8" y="469" width="1.8" height="15.0" fill="rgb(254,93,39)" rx="2" ry="2" />
<text x="1190.80" y="479.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (329 samples, 0.65%)</title><rect x="300.3" y="69" width="7.7" height="15.0" fill="rgb(250,53,29)" rx="2" ry="2" />
<text x="303.29" y="79.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (262 samples, 0.52%)</title><rect x="952.0" y="405" width="6.1" height="15.0" fill="rgb(254,39,25)" rx="2" ry="2" />
<text x="954.99" y="415.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (882 samples, 1.75%)</title><rect x="1122.5" y="421" width="20.7" height="15.0" fill="rgb(230,227,46)" rx="2" ry="2" />
<text x="1125.52" y="431.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (621 samples, 1.23%)</title><rect x="55.9" y="405" width="14.5" height="15.0" fill="rgb(212,209,5)" rx="2" ry="2" />
<text x="58.87" y="415.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (513 samples, 1.02%)</title><rect x="339.4" y="69" width="12.0" height="15.0" fill="rgb(219,217,30)" rx="2" ry="2" />
<text x="342.37" y="79.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (2,410 samples, 4.78%)</title><rect x="82.9" y="341" width="56.4" height="15.0" fill="rgb(243,202,1)" rx="2" ry="2" />
<text x="85.91" y="351.5" >examp..</text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (669 samples, 1.33%)</title><rect x="1143.2" y="325" width="15.6" height="15.0" fill="rgb(208,110,10)" rx="2" ry="2" />
<text x="1146.17" y="335.5" ></text>
</g>
<g >
<title>start_thread (126 samples, 0.25%)</title><rect x="10.3" y="373" width="3.0" height="15.0" fill="rgb(217,37,15)" rx="2" ry="2" />
<text x="13.33" y="383.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (217 samples, 0.43%)</title><rect x="963.8" y="293" width="5.0" height="15.0" fill="rgb(228,67,25)" rx="2" ry="2" />
<text x="966.77" y="303.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (740 samples, 1.47%)</title><rect x="387.8" y="229" width="17.3" height="15.0" fill="rgb(213,91,15)" rx="2" ry="2" />
<text x="390.79" y="239.5" ></text>
</g>
<g >
<title>__vsnprintf_internal (6 samples, 0.01%)</title><rect x="36.4" y="533" width="0.1" height="15.0" fill="rgb(226,53,16)" rx="2" ry="2" />
<text x="39.39" y="543.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (378 samples, 0.75%)</title><rect x="308.0" y="85" width="8.8" height="15.0" fill="rgb(235,143,44)" rx="2" ry="2" />
<text x="311.00" y="95.5" ></text>
</g>
<g >
<title>scala/collection/mutable/ListBuffer.&lt;init&gt; (378 samples, 0.75%)</title><rect x="308.0" y="517" width="8.8" height="15.0" fill="rgb(222,224,12)" rx="2" ry="2" />
<text x="311.00" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (282 samples, 0.56%)</title><rect x="1158.8" y="357" width="6.6" height="15.0" fill="rgb(222,129,9)" rx="2" ry="2" />
<text x="1161.84" y="367.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (513 samples, 1.02%)</title><rect x="339.4" y="213" width="12.0" height="15.0" fill="rgb(229,64,1)" rx="2" ry="2" />
<text x="342.37" y="223.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (513 samples, 1.02%)</title><rect x="339.4" y="165" width="12.0" height="15.0" fill="rgb(239,198,50)" rx="2" ry="2" />
<text x="342.37" y="175.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (241 samples, 0.48%)</title><rect x="958.1" y="117" width="5.7" height="15.0" fill="rgb(223,227,34)" rx="2" ry="2" />
<text x="961.13" y="127.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$take$2 (647 samples, 1.28%)</title><rect x="407.7" y="469" width="15.1" height="15.0" fill="rgb(232,8,13)" rx="2" ry="2" />
<text x="410.70" y="479.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (624 samples, 1.24%)</title><rect x="358.3" y="453" width="14.6" height="15.0" fill="rgb(253,172,44)" rx="2" ry="2" />
<text x="361.29" y="463.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (5,797 samples, 11.50%)</title><rect x="816.3" y="277" width="135.7" height="15.0" fill="rgb(213,27,25)" rx="2" ry="2" />
<text x="819.26" y="287.5" >java/util/concurr..</text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (230 samples, 0.46%)</title><rect x="1167.9" y="197" width="5.4" height="15.0" fill="rgb(238,2,13)" rx="2" ry="2" />
<text x="1170.92" y="207.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (329 samples, 0.65%)</title><rect x="300.3" y="277" width="7.7" height="15.0" fill="rgb(230,61,41)" rx="2" ry="2" />
<text x="303.29" y="287.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (2,278 samples, 4.52%)</title><rect x="153.7" y="197" width="53.4" height="15.0" fill="rgb(250,219,8)" rx="2" ry="2" />
<text x="156.74" y="207.5" >java/..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (378 samples, 0.75%)</title><rect x="308.0" y="229" width="8.8" height="15.0" fill="rgb(214,216,40)" rx="2" ry="2" />
<text x="311.00" y="239.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (2,278 samples, 4.52%)</title><rect x="153.7" y="245" width="53.4" height="15.0" fill="rgb(211,184,48)" rx="2" ry="2" />
<text x="156.74" y="255.5" >org/o..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (282 samples, 0.56%)</title><rect x="1158.8" y="245" width="6.6" height="15.0" fill="rgb(212,211,49)" rx="2" ry="2" />
<text x="1161.84" y="255.5" ></text>
</g>
<g >
<title>do_syscall_64 (16 samples, 0.03%)</title><rect x="38.4" y="549" width="0.4" height="15.0" fill="rgb(210,212,10)" rx="2" ry="2" />
<text x="41.43" y="559.5" ></text>
</g>
<g >
<title>scala/collection/AbstractTraversable.genericBuilder (124 samples, 0.25%)</title><rect x="297.4" y="517" width="2.9" height="15.0" fill="rgb(209,73,49)" rx="2" ry="2" />
<text x="300.39" y="527.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (4,590 samples, 9.11%)</title><rect x="968.8" y="373" width="107.5" height="15.0" fill="rgb(217,42,45)" rx="2" ry="2" />
<text x="971.85" y="383.5" >sun/reflect/D..</text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (647 samples, 1.28%)</title><rect x="407.7" y="309" width="15.1" height="15.0" fill="rgb(215,194,5)" rx="2" ry="2" />
<text x="410.70" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (114 samples, 0.23%)</title><rect x="422.8" y="469" width="2.7" height="15.0" fill="rgb(252,40,29)" rx="2" ry="2" />
<text x="425.85" y="479.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (124 samples, 0.25%)</title><rect x="297.4" y="293" width="2.9" height="15.0" fill="rgb(251,91,18)" rx="2" ry="2" />
<text x="300.39" y="303.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (106 samples, 0.21%)</title><rect x="1165.4" y="101" width="2.5" height="15.0" fill="rgb(206,46,42)" rx="2" ry="2" />
<text x="1168.44" y="111.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (329 samples, 0.65%)</title><rect x="300.3" y="229" width="7.7" height="15.0" fill="rgb(217,179,52)" rx="2" ry="2" />
<text x="303.29" y="239.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (621 samples, 1.23%)</title><rect x="55.9" y="245" width="14.5" height="15.0" fill="rgb(214,142,30)" rx="2" ry="2" />
<text x="58.87" y="255.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (882 samples, 1.75%)</title><rect x="1122.5" y="309" width="20.7" height="15.0" fill="rgb(239,74,42)" rx="2" ry="2" />
<text x="1125.52" y="319.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (636 samples, 1.26%)</title><rect x="372.9" y="325" width="14.9" height="15.0" fill="rgb(244,2,19)" rx="2" ry="2" />
<text x="375.90" y="335.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (282 samples, 0.56%)</title><rect x="1158.8" y="165" width="6.6" height="15.0" fill="rgb(235,227,2)" rx="2" ry="2" />
<text x="1161.84" y="175.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (1,154 samples, 2.29%)</title><rect x="55.9" y="517" width="27.0" height="15.0" fill="rgb(219,214,36)" rx="2" ry="2" />
<text x="58.87" y="527.5" >s..</text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (6,345 samples, 12.59%)</title><rect x="425.6" y="421" width="148.6" height="15.0" fill="rgb(224,208,53)" rx="2" ry="2" />
<text x="428.58" y="431.5" >example/FizzBuzzBe..</text>
</g>
<g >
<title>java/lang/Integer.toString (2,413 samples, 4.79%)</title><rect x="150.6" y="549" width="56.5" height="15.0" fill="rgb(242,127,8)" rx="2" ry="2" />
<text x="153.60" y="559.5" >java/..</text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (378 samples, 0.75%)</title><rect x="308.0" y="277" width="8.8" height="15.0" fill="rgb(231,50,7)" rx="2" ry="2" />
<text x="311.00" y="287.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1 (77 samples, 0.15%)</title><rect x="1187.8" y="533" width="1.8" height="15.0" fill="rgb(216,163,7)" rx="2" ry="2" />
<text x="1190.80" y="543.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (10,225 samples, 20.29%)</title><rect x="576.8" y="325" width="239.5" height="15.0" fill="rgb(241,146,20)" rx="2" ry="2" />
<text x="579.84" y="335.5" >example/generated/FizzBuzzBench..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (312 samples, 0.62%)</title><rect x="143.3" y="293" width="7.3" height="15.0" fill="rgb(207,166,45)" rx="2" ry="2" />
<text x="146.30" y="303.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (262 samples, 0.52%)</title><rect x="952.0" y="277" width="6.1" height="15.0" fill="rgb(217,75,54)" rx="2" ry="2" />
<text x="954.99" y="287.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (109 samples, 0.22%)</title><rect x="140.7" y="341" width="2.6" height="15.0" fill="rgb(224,134,40)" rx="2" ry="2" />
<text x="143.75" y="351.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (6 samples, 0.01%)</title><rect x="1189.6" y="357" width="0.2" height="15.0" fill="rgb(227,79,11)" rx="2" ry="2" />
<text x="1192.65" y="367.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (6,345 samples, 12.59%)</title><rect x="425.6" y="309" width="148.6" height="15.0" fill="rgb(211,193,25)" rx="2" ry="2" />
<text x="428.58" y="319.5" >org/openjdk/jmh/ru..</text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (77 samples, 0.15%)</title><rect x="1187.8" y="389" width="1.8" height="15.0" fill="rgb(231,167,9)" rx="2" ry="2" />
<text x="1190.80" y="399.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (114 samples, 0.23%)</title><rect x="422.8" y="101" width="2.7" height="15.0" fill="rgb(223,216,14)" rx="2" ry="2" />
<text x="425.85" y="111.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (357 samples, 0.71%)</title><rect x="1173.3" y="85" width="8.4" height="15.0" fill="rgb(244,119,22)" rx="2" ry="2" />
<text x="1176.31" y="95.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (109 samples, 0.22%)</title><rect x="140.7" y="197" width="2.6" height="15.0" fill="rgb(248,142,27)" rx="2" ry="2" />
<text x="143.75" y="207.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (282 samples, 0.56%)</title><rect x="1158.8" y="149" width="6.6" height="15.0" fill="rgb(215,175,32)" rx="2" ry="2" />
<text x="1161.84" y="159.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (360 samples, 0.71%)</title><rect x="316.8" y="165" width="8.5" height="15.0" fill="rgb(208,102,54)" rx="2" ry="2" />
<text x="319.85" y="175.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (647 samples, 1.28%)</title><rect x="407.7" y="229" width="15.1" height="15.0" fill="rgb(248,184,36)" rx="2" ry="2" />
<text x="410.70" y="239.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (621 samples, 1.23%)</title><rect x="55.9" y="357" width="14.5" height="15.0" fill="rgb(230,185,25)" rx="2" ry="2" />
<text x="58.87" y="367.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (230 samples, 0.46%)</title><rect x="1167.9" y="373" width="5.4" height="15.0" fill="rgb(234,66,25)" rx="2" ry="2" />
<text x="1170.92" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (647 samples, 1.28%)</title><rect x="407.7" y="405" width="15.1" height="15.0" fill="rgb(235,58,41)" rx="2" ry="2" />
<text x="410.70" y="415.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (312 samples, 0.62%)</title><rect x="143.3" y="245" width="7.3" height="15.0" fill="rgb(224,195,50)" rx="2" ry="2" />
<text x="146.30" y="255.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (147 samples, 0.29%)</title><rect x="10.0" y="405" width="3.4" height="15.0" fill="rgb(251,216,13)" rx="2" ry="2" />
<text x="13.00" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (60 samples, 0.12%)</title><rect x="139.3" y="389" width="1.4" height="15.0" fill="rgb(220,123,16)" rx="2" ry="2" />
<text x="142.34" y="399.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (621 samples, 1.23%)</title><rect x="55.9" y="229" width="14.5" height="15.0" fill="rgb(219,33,43)" rx="2" ry="2" />
<text x="58.87" y="239.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (882 samples, 1.75%)</title><rect x="1122.5" y="213" width="20.7" height="15.0" fill="rgb(228,32,26)" rx="2" ry="2" />
<text x="1125.52" y="223.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (110 samples, 0.22%)</title><rect x="405.1" y="373" width="2.6" height="15.0" fill="rgb(228,106,32)" rx="2" ry="2" />
<text x="408.12" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$$Lambda$9/428362883.apply (600 samples, 1.19%)</title><rect x="325.3" y="549" width="14.1" height="15.0" fill="rgb(225,53,27)" rx="2" ry="2" />
<text x="328.32" y="559.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (740 samples, 1.47%)</title><rect x="387.8" y="421" width="17.3" height="15.0" fill="rgb(222,86,51)" rx="2" ry="2" />
<text x="390.79" y="431.5" ></text>
</g>
<g >
<title>start_thread (14 samples, 0.03%)</title><rect x="33.3" y="501" width="0.3" height="15.0" fill="rgb(239,229,23)" rx="2" ry="2" />
<text x="36.25" y="511.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (230 samples, 0.46%)</title><rect x="1167.9" y="277" width="5.4" height="15.0" fill="rgb(220,11,54)" rx="2" ry="2" />
<text x="1170.92" y="287.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (60 samples, 0.12%)</title><rect x="139.3" y="293" width="1.4" height="15.0" fill="rgb(245,152,51)" rx="2" ry="2" />
<text x="142.34" y="303.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (134 samples, 0.27%)</title><rect x="150.6" y="165" width="3.1" height="15.0" fill="rgb(205,190,4)" rx="2" ry="2" />
<text x="153.60" y="175.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (77 samples, 0.15%)</title><rect x="1187.8" y="197" width="1.8" height="15.0" fill="rgb(215,47,5)" rx="2" ry="2" />
<text x="1190.80" y="207.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (669 samples, 1.33%)</title><rect x="1143.2" y="69" width="15.6" height="15.0" fill="rgb(253,200,13)" rx="2" ry="2" />
<text x="1146.17" y="79.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.newBuilder (669 samples, 1.33%)</title><rect x="1143.2" y="485" width="15.6" height="15.0" fill="rgb(240,37,8)" rx="2" ry="2" />
<text x="1146.17" y="495.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (230 samples, 0.46%)</title><rect x="1167.9" y="421" width="5.4" height="15.0" fill="rgb(254,180,7)" rx="2" ry="2" />
<text x="1170.92" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (109 samples, 0.22%)</title><rect x="140.7" y="485" width="2.6" height="15.0" fill="rgb(253,81,30)" rx="2" ry="2" />
<text x="143.75" y="495.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (1,022 samples, 2.03%)</title><rect x="10.0" y="533" width="23.9" height="15.0" fill="rgb(217,102,37)" rx="2" ry="2" />
<text x="13.00" y="543.5" >/..</text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.02%)</title><rect x="34.5" y="517" width="0.2" height="15.0" fill="rgb(205,192,31)" rx="2" ry="2" />
<text x="37.49" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (882 samples, 1.75%)</title><rect x="1122.5" y="517" width="20.7" height="15.0" fill="rgb(239,61,40)" rx="2" ry="2" />
<text x="1125.52" y="527.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (10,225 samples, 20.29%)</title><rect x="576.8" y="165" width="239.5" height="15.0" fill="rgb(221,136,13)" rx="2" ry="2" />
<text x="579.84" y="175.5" >java/util/concurrent/ThreadPool..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (106 samples, 0.21%)</title><rect x="1165.4" y="213" width="2.5" height="15.0" fill="rgb(235,30,2)" rx="2" ry="2" />
<text x="1168.44" y="223.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (882 samples, 1.75%)</title><rect x="1122.5" y="453" width="20.7" height="15.0" fill="rgb(231,64,47)" rx="2" ry="2" />
<text x="1125.52" y="463.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (13 samples, 0.03%)</title><rect x="296.9" y="549" width="0.3" height="15.0" fill="rgb(235,25,27)" rx="2" ry="2" />
<text x="299.95" y="559.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (10,225 samples, 20.29%)</title><rect x="576.8" y="229" width="239.5" height="15.0" fill="rgb(244,9,6)" rx="2" ry="2" />
<text x="579.84" y="239.5" >org/openjdk/jmh/runner/Benchmar..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (294 samples, 0.58%)</title><rect x="207.1" y="325" width="6.9" height="15.0" fill="rgb(214,207,20)" rx="2" ry="2" />
<text x="210.10" y="335.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (110 samples, 0.22%)</title><rect x="405.1" y="389" width="2.6" height="15.0" fill="rgb(250,134,17)" rx="2" ry="2" />
<text x="408.12" y="399.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (230 samples, 0.46%)</title><rect x="1167.9" y="261" width="5.4" height="15.0" fill="rgb(242,225,23)" rx="2" ry="2" />
<text x="1170.92" y="271.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (6,345 samples, 12.59%)</title><rect x="425.6" y="325" width="148.6" height="15.0" fill="rgb(237,216,51)" rx="2" ry="2" />
<text x="428.58" y="335.5" >java/lang/reflect/..</text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (134 samples, 0.27%)</title><rect x="150.6" y="421" width="3.1" height="15.0" fill="rgb(229,20,17)" rx="2" ry="2" />
<text x="153.60" y="431.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (5,797 samples, 11.50%)</title><rect x="816.3" y="261" width="135.7" height="15.0" fill="rgb(235,19,25)" rx="2" ry="2" />
<text x="819.26" y="271.5" >java/lang/Thread...</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (513 samples, 1.02%)</title><rect x="339.4" y="309" width="12.0" height="15.0" fill="rgb(247,114,41)" rx="2" ry="2" />
<text x="342.37" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (2,278 samples, 4.52%)</title><rect x="153.7" y="437" width="53.4" height="15.0" fill="rgb(206,124,43)" rx="2" ry="2" />
<text x="156.74" y="447.5" >scala..</text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (360 samples, 0.71%)</title><rect x="316.8" y="181" width="8.5" height="15.0" fill="rgb(215,105,27)" rx="2" ry="2" />
<text x="319.85" y="191.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (882 samples, 1.75%)</title><rect x="1122.5" y="357" width="20.7" height="15.0" fill="rgb(237,113,44)" rx="2" ry="2" />
<text x="1125.52" y="367.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (153 samples, 0.30%)</title><rect x="10.0" y="421" width="3.6" height="15.0" fill="rgb(207,172,30)" rx="2" ry="2" />
<text x="13.00" y="431.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (10,225 samples, 20.29%)</title><rect x="576.8" y="341" width="239.5" height="15.0" fill="rgb(221,99,44)" rx="2" ry="2" />
<text x="579.84" y="351.5" >example/generated/FizzBuzzBench..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (6,345 samples, 12.59%)</title><rect x="425.6" y="501" width="148.6" height="15.0" fill="rgb(208,21,11)" rx="2" ry="2" />
<text x="428.58" y="511.5" >scala/collection/i..</text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (109 samples, 0.22%)</title><rect x="140.7" y="261" width="2.6" height="15.0" fill="rgb(224,84,51)" rx="2" ry="2" />
<text x="143.75" y="271.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (217 samples, 0.43%)</title><rect x="963.8" y="373" width="5.0" height="15.0" fill="rgb(222,104,43)" rx="2" ry="2" />
<text x="966.77" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$StreamBuilder.&lt;init&gt; (261 samples, 0.52%)</title><rect x="1181.7" y="517" width="6.1" height="15.0" fill="rgb(231,179,5)" rx="2" ry="2" />
<text x="1184.66" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.from (3,529 samples, 7.00%)</title><rect x="214.0" y="517" width="82.6" height="15.0" fill="rgb(218,123,12)" rx="2" ry="2" />
<text x="216.99" y="527.5" >scala/col..</text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (60 samples, 0.12%)</title><rect x="139.3" y="469" width="1.4" height="15.0" fill="rgb(207,47,42)" rx="2" ry="2" />
<text x="142.34" y="479.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (114 samples, 0.23%)</title><rect x="422.8" y="341" width="2.7" height="15.0" fill="rgb(224,228,52)" rx="2" ry="2" />
<text x="425.85" y="351.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (77 samples, 0.15%)</title><rect x="1187.8" y="229" width="1.8" height="15.0" fill="rgb(223,33,32)" rx="2" ry="2" />
<text x="1190.80" y="239.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (636 samples, 1.26%)</title><rect x="372.9" y="533" width="14.9" height="15.0" fill="rgb(232,69,31)" rx="2" ry="2" />
<text x="375.90" y="543.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (10,225 samples, 20.29%)</title><rect x="576.8" y="245" width="239.5" height="15.0" fill="rgb(220,102,10)" rx="2" ry="2" />
<text x="579.84" y="255.5" >org/openjdk/jmh/runner/Benchmar..</text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (262 samples, 0.52%)</title><rect x="952.0" y="325" width="6.1" height="15.0" fill="rgb(221,139,27)" rx="2" ry="2" />
<text x="954.99" y="335.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (134 samples, 0.27%)</title><rect x="150.6" y="213" width="3.1" height="15.0" fill="rgb(246,68,9)" rx="2" ry="2" />
<text x="153.60" y="223.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (621 samples, 1.23%)</title><rect x="55.9" y="389" width="14.5" height="15.0" fill="rgb(225,138,23)" rx="2" ry="2" />
<text x="58.87" y="399.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (261 samples, 0.52%)</title><rect x="1181.7" y="421" width="6.1" height="15.0" fill="rgb(218,133,12)" rx="2" ry="2" />
<text x="1184.66" y="431.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (378 samples, 0.75%)</title><rect x="308.0" y="389" width="8.8" height="15.0" fill="rgb(219,225,29)" rx="2" ry="2" />
<text x="311.00" y="399.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (624 samples, 1.24%)</title><rect x="358.3" y="261" width="14.6" height="15.0" fill="rgb(222,149,35)" rx="2" ry="2" />
<text x="361.29" y="271.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (357 samples, 0.71%)</title><rect x="1173.3" y="277" width="8.4" height="15.0" fill="rgb(237,146,20)" rx="2" ry="2" />
<text x="1176.31" y="287.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (624 samples, 1.24%)</title><rect x="358.3" y="293" width="14.6" height="15.0" fill="rgb(249,1,45)" rx="2" ry="2" />
<text x="361.29" y="303.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (114 samples, 0.23%)</title><rect x="422.8" y="197" width="2.7" height="15.0" fill="rgb(246,180,48)" rx="2" ry="2" />
<text x="425.85" y="207.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (882 samples, 1.75%)</title><rect x="1122.5" y="325" width="20.7" height="15.0" fill="rgb(209,216,48)" rx="2" ry="2" />
<text x="1125.52" y="335.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (882 samples, 1.75%)</title><rect x="1122.5" y="293" width="20.7" height="15.0" fill="rgb(229,191,17)" rx="2" ry="2" />
<text x="1125.52" y="303.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (60 samples, 0.12%)</title><rect x="139.3" y="213" width="1.4" height="15.0" fill="rgb(218,131,45)" rx="2" ry="2" />
<text x="142.34" y="223.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (647 samples, 1.28%)</title><rect x="407.7" y="85" width="15.1" height="15.0" fill="rgb(246,48,40)" rx="2" ry="2" />
<text x="410.70" y="95.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$StreamBuilder.&lt;init&gt; (669 samples, 1.33%)</title><rect x="1143.2" y="501" width="15.6" height="15.0" fill="rgb(220,13,30)" rx="2" ry="2" />
<text x="1146.17" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (329 samples, 0.65%)</title><rect x="300.3" y="373" width="7.7" height="15.0" fill="rgb(254,63,28)" rx="2" ry="2" />
<text x="303.29" y="383.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (378 samples, 0.75%)</title><rect x="308.0" y="213" width="8.8" height="15.0" fill="rgb(208,102,5)" rx="2" ry="2" />
<text x="311.00" y="223.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (109 samples, 0.22%)</title><rect x="140.7" y="165" width="2.6" height="15.0" fill="rgb(218,220,19)" rx="2" ry="2" />
<text x="143.75" y="175.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (378 samples, 0.75%)</title><rect x="308.0" y="117" width="8.8" height="15.0" fill="rgb(247,121,31)" rx="2" ry="2" />
<text x="311.00" y="127.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$take$2 (600 samples, 1.19%)</title><rect x="325.3" y="501" width="14.1" height="15.0" fill="rgb(224,64,28)" rx="2" ry="2" />
<text x="328.32" y="511.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (378 samples, 0.75%)</title><rect x="308.0" y="165" width="8.8" height="15.0" fill="rgb(252,134,30)" rx="2" ry="2" />
<text x="311.00" y="175.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (329 samples, 0.65%)</title><rect x="300.3" y="325" width="7.7" height="15.0" fill="rgb(230,197,22)" rx="2" ry="2" />
<text x="303.29" y="335.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (3,525 samples, 6.99%)</title><rect x="214.1" y="85" width="82.5" height="15.0" fill="rgb(236,91,6)" rx="2" ry="2" />
<text x="217.08" y="95.5" >java/util..</text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (533 samples, 1.06%)</title><rect x="70.4" y="357" width="12.5" height="15.0" fill="rgb(221,193,1)" rx="2" ry="2" />
<text x="73.41" y="367.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (533 samples, 1.06%)</title><rect x="70.4" y="293" width="12.5" height="15.0" fill="rgb(211,78,31)" rx="2" ry="2" />
<text x="73.41" y="303.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (3,525 samples, 6.99%)</title><rect x="214.1" y="421" width="82.5" height="15.0" fill="rgb(231,206,7)" rx="2" ry="2" />
<text x="217.08" y="431.5" >scala/col..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (621 samples, 1.23%)</title><rect x="55.9" y="485" width="14.5" height="15.0" fill="rgb(212,139,7)" rx="2" ry="2" />
<text x="58.87" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (882 samples, 1.75%)</title><rect x="1122.5" y="405" width="20.7" height="15.0" fill="rgb(250,166,46)" rx="2" ry="2" />
<text x="1125.52" y="415.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (513 samples, 1.02%)</title><rect x="339.4" y="37" width="12.0" height="15.0" fill="rgb(247,158,1)" rx="2" ry="2" />
<text x="342.37" y="47.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.&lt;init&gt; (114 samples, 0.23%)</title><rect x="422.8" y="549" width="2.7" height="15.0" fill="rgb(250,188,47)" rx="2" ry="2" />
<text x="425.85" y="559.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (647 samples, 1.28%)</title><rect x="407.7" y="245" width="15.1" height="15.0" fill="rgb(214,10,43)" rx="2" ry="2" />
<text x="410.70" y="255.5" ></text>
</g>
<g >
<title>scala/collection/mutable/LazyBuilder.&lt;init&gt; (261 samples, 0.52%)</title><rect x="1181.7" y="533" width="6.1" height="15.0" fill="rgb(250,2,46)" rx="2" ry="2" />
<text x="1184.66" y="543.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (624 samples, 1.24%)</title><rect x="358.3" y="117" width="14.6" height="15.0" fill="rgb(225,157,19)" rx="2" ry="2" />
<text x="361.29" y="127.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (378 samples, 0.75%)</title><rect x="308.0" y="53" width="8.8" height="15.0" fill="rgb(228,103,12)" rx="2" ry="2" />
<text x="311.00" y="63.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (647 samples, 1.28%)</title><rect x="407.7" y="165" width="15.1" height="15.0" fill="rgb(242,114,11)" rx="2" ry="2" />
<text x="410.70" y="175.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (241 samples, 0.48%)</title><rect x="958.1" y="309" width="5.7" height="15.0" fill="rgb(206,224,30)" rx="2" ry="2" />
<text x="961.13" y="319.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (261 samples, 0.52%)</title><rect x="1181.7" y="325" width="6.1" height="15.0" fill="rgb(220,145,48)" rx="2" ry="2" />
<text x="1184.66" y="335.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (5,797 samples, 11.50%)</title><rect x="816.3" y="421" width="135.7" height="15.0" fill="rgb(222,148,17)" rx="2" ry="2" />
<text x="819.26" y="431.5" >sun/reflect/Nativ..</text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (740 samples, 1.47%)</title><rect x="387.8" y="405" width="17.3" height="15.0" fill="rgb(247,111,0)" rx="2" ry="2" />
<text x="390.79" y="415.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (261 samples, 0.52%)</title><rect x="1181.7" y="277" width="6.1" height="15.0" fill="rgb(230,37,45)" rx="2" ry="2" />
<text x="1184.66" y="287.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (295 samples, 0.59%)</title><rect x="351.4" y="517" width="6.9" height="15.0" fill="rgb(212,180,47)" rx="2" ry="2" />
<text x="354.38" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (262 samples, 0.52%)</title><rect x="952.0" y="437" width="6.1" height="15.0" fill="rgb(215,29,36)" rx="2" ry="2" />
<text x="954.99" y="447.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (10,225 samples, 20.29%)</title><rect x="576.8" y="133" width="239.5" height="15.0" fill="rgb(244,80,20)" rx="2" ry="2" />
<text x="579.84" y="143.5" >java/lang/Thread.run</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (329 samples, 0.65%)</title><rect x="300.3" y="245" width="7.7" height="15.0" fill="rgb(213,222,24)" rx="2" ry="2" />
<text x="303.29" y="255.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (4,590 samples, 9.11%)</title><rect x="968.8" y="357" width="107.5" height="15.0" fill="rgb(237,165,9)" rx="2" ry="2" />
<text x="971.85" y="367.5" >java/lang/ref..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (295 samples, 0.59%)</title><rect x="351.4" y="357" width="6.9" height="15.0" fill="rgb(247,88,1)" rx="2" ry="2" />
<text x="354.38" y="367.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (695 samples, 1.38%)</title><rect x="38.8" y="277" width="16.3" height="15.0" fill="rgb(208,91,3)" rx="2" ry="2" />
<text x="41.82" y="287.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (600 samples, 1.19%)</title><rect x="325.3" y="517" width="14.1" height="15.0" fill="rgb(213,208,51)" rx="2" ry="2" />
<text x="328.32" y="527.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (669 samples, 1.33%)</title><rect x="1143.2" y="165" width="15.6" height="15.0" fill="rgb(253,12,10)" rx="2" ry="2" />
<text x="1146.17" y="175.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (217 samples, 0.43%)</title><rect x="963.8" y="325" width="5.0" height="15.0" fill="rgb(240,171,47)" rx="2" ry="2" />
<text x="966.77" y="335.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (669 samples, 1.33%)</title><rect x="1143.2" y="261" width="15.6" height="15.0" fill="rgb(208,211,45)" rx="2" ry="2" />
<text x="1146.17" y="271.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (513 samples, 1.02%)</title><rect x="339.4" y="437" width="12.0" height="15.0" fill="rgb(226,32,21)" rx="2" ry="2" />
<text x="342.37" y="447.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (647 samples, 1.28%)</title><rect x="407.7" y="101" width="15.1" height="15.0" fill="rgb(236,141,15)" rx="2" ry="2" />
<text x="410.70" y="111.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (312 samples, 0.62%)</title><rect x="143.3" y="357" width="7.3" height="15.0" fill="rgb(240,86,44)" rx="2" ry="2" />
<text x="146.30" y="367.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (124 samples, 0.25%)</title><rect x="297.4" y="261" width="2.9" height="15.0" fill="rgb(224,169,49)" rx="2" ry="2" />
<text x="300.39" y="271.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (282 samples, 0.56%)</title><rect x="1158.8" y="405" width="6.6" height="15.0" fill="rgb(214,7,43)" rx="2" ry="2" />
<text x="1161.84" y="415.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (60 samples, 0.12%)</title><rect x="139.3" y="325" width="1.4" height="15.0" fill="rgb(253,148,53)" rx="2" ry="2" />
<text x="142.34" y="335.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (227 samples, 0.45%)</title><rect x="1076.3" y="309" width="5.3" height="15.0" fill="rgb(231,193,17)" rx="2" ry="2" />
<text x="1079.32" y="319.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (106 samples, 0.21%)</title><rect x="1165.4" y="245" width="2.5" height="15.0" fill="rgb(216,76,34)" rx="2" ry="2" />
<text x="1168.44" y="255.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (262 samples, 0.52%)</title><rect x="952.0" y="213" width="6.1" height="15.0" fill="rgb(213,201,49)" rx="2" ry="2" />
<text x="954.99" y="223.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (4,590 samples, 9.11%)</title><rect x="968.8" y="389" width="107.5" height="15.0" fill="rgb(211,150,12)" rx="2" ry="2" />
<text x="971.85" y="399.5" >sun/reflect/N..</text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (6 samples, 0.01%)</title><rect x="1189.6" y="245" width="0.2" height="15.0" fill="rgb(223,3,40)" rx="2" ry="2" />
<text x="1192.65" y="255.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (110 samples, 0.22%)</title><rect x="405.1" y="245" width="2.6" height="15.0" fill="rgb(214,204,47)" rx="2" ry="2" />
<text x="408.12" y="255.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (357 samples, 0.71%)</title><rect x="1173.3" y="341" width="8.4" height="15.0" fill="rgb(253,41,34)" rx="2" ry="2" />
<text x="1176.31" y="351.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (513 samples, 1.02%)</title><rect x="339.4" y="373" width="12.0" height="15.0" fill="rgb(236,161,18)" rx="2" ry="2" />
<text x="342.37" y="383.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (60 samples, 0.12%)</title><rect x="139.3" y="261" width="1.4" height="15.0" fill="rgb(213,1,49)" rx="2" ry="2" />
<text x="142.34" y="271.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (262 samples, 0.52%)</title><rect x="952.0" y="197" width="6.1" height="15.0" fill="rgb(218,225,46)" rx="2" ry="2" />
<text x="954.99" y="207.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (109 samples, 0.22%)</title><rect x="140.7" y="213" width="2.6" height="15.0" fill="rgb(236,136,38)" rx="2" ry="2" />
<text x="143.75" y="223.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (294 samples, 0.58%)</title><rect x="207.1" y="373" width="6.9" height="15.0" fill="rgb(208,162,47)" rx="2" ry="2" />
<text x="210.10" y="383.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (1,007 samples, 2.00%)</title><rect x="10.0" y="517" width="23.6" height="15.0" fill="rgb(216,119,8)" rx="2" ry="2" />
<text x="13.00" y="527.5" >/..</text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder (360 samples, 0.71%)</title><rect x="316.8" y="453" width="8.5" height="15.0" fill="rgb(215,180,3)" rx="2" ry="2" />
<text x="319.85" y="463.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (124 samples, 0.25%)</title><rect x="297.4" y="389" width="2.9" height="15.0" fill="rgb(239,229,32)" rx="2" ry="2" />
<text x="300.39" y="399.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (3,525 samples, 6.99%)</title><rect x="214.1" y="389" width="82.5" height="15.0" fill="rgb(254,23,8)" rx="2" ry="2" />
<text x="217.08" y="399.5" >scala/col..</text>
</g>
<g >
<title>java/lang/Thread.run (115 samples, 0.23%)</title><rect x="574.2" y="181" width="2.6" height="15.0" fill="rgb(254,36,22)" rx="2" ry="2" />
<text x="577.15" y="191.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (600 samples, 1.19%)</title><rect x="325.3" y="229" width="14.1" height="15.0" fill="rgb(233,33,27)" rx="2" ry="2" />
<text x="328.32" y="239.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.newBuilder (282 samples, 0.56%)</title><rect x="1158.8" y="469" width="6.6" height="15.0" fill="rgb(229,27,1)" rx="2" ry="2" />
<text x="1161.84" y="479.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (378 samples, 0.75%)</title><rect x="308.0" y="325" width="8.8" height="15.0" fill="rgb(228,140,49)" rx="2" ry="2" />
<text x="311.00" y="335.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (6,345 samples, 12.59%)</title><rect x="425.6" y="453" width="148.6" height="15.0" fill="rgb(241,22,0)" rx="2" ry="2" />
<text x="428.58" y="463.5" >scala/collection/i..</text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (6,345 samples, 12.59%)</title><rect x="425.6" y="517" width="148.6" height="15.0" fill="rgb(213,43,6)" rx="2" ry="2" />
<text x="428.58" y="527.5" >scala/collection/i..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (357 samples, 0.71%)</title><rect x="1173.3" y="101" width="8.4" height="15.0" fill="rgb(236,18,49)" rx="2" ry="2" />
<text x="1176.31" y="111.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (6,345 samples, 12.59%)</title><rect x="425.6" y="293" width="148.6" height="15.0" fill="rgb(224,205,54)" rx="2" ry="2" />
<text x="428.58" y="303.5" >org/openjdk/jmh/ru..</text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (2,278 samples, 4.52%)</title><rect x="153.7" y="293" width="53.4" height="15.0" fill="rgb(214,149,37)" rx="2" ry="2" />
<text x="156.74" y="303.5" >sun/r..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (720 samples, 1.43%)</title><rect x="952.0" y="533" width="16.8" height="15.0" fill="rgb(247,189,49)" rx="2" ry="2" />
<text x="954.99" y="543.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (261 samples, 0.52%)</title><rect x="1181.7" y="341" width="6.1" height="15.0" fill="rgb(217,108,15)" rx="2" ry="2" />
<text x="1184.66" y="351.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (624 samples, 1.24%)</title><rect x="358.3" y="325" width="14.6" height="15.0" fill="rgb(209,5,11)" rx="2" ry="2" />
<text x="361.29" y="335.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (312 samples, 0.62%)</title><rect x="143.3" y="149" width="7.3" height="15.0" fill="rgb(212,8,47)" rx="2" ry="2" />
<text x="146.30" y="159.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (360 samples, 0.71%)</title><rect x="316.8" y="213" width="8.5" height="15.0" fill="rgb(212,224,23)" rx="2" ry="2" />
<text x="319.85" y="223.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (124 samples, 0.25%)</title><rect x="297.4" y="437" width="2.9" height="15.0" fill="rgb(254,222,17)" rx="2" ry="2" />
<text x="300.39" y="447.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (217 samples, 0.43%)</title><rect x="963.8" y="437" width="5.0" height="15.0" fill="rgb(248,13,35)" rx="2" ry="2" />
<text x="966.77" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (360 samples, 0.71%)</title><rect x="316.8" y="325" width="8.5" height="15.0" fill="rgb(222,3,32)" rx="2" ry="2" />
<text x="319.85" y="335.5" ></text>
</g>
<g >
<title>java/lang/Integer.toString (2,470 samples, 4.90%)</title><rect x="82.9" y="533" width="57.8" height="15.0" fill="rgb(208,133,15)" rx="2" ry="2" />
<text x="85.91" y="543.5" >java/l..</text>
</g>
<g >
<title>example/FizzBuzz.run (295 samples, 0.59%)</title><rect x="351.4" y="421" width="6.9" height="15.0" fill="rgb(244,171,9)" rx="2" ry="2" />
<text x="354.38" y="431.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (2,410 samples, 4.78%)</title><rect x="82.9" y="149" width="56.4" height="15.0" fill="rgb(207,19,28)" rx="2" ry="2" />
<text x="85.91" y="159.5" >java/..</text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (647 samples, 1.28%)</title><rect x="407.7" y="181" width="15.1" height="15.0" fill="rgb(226,167,4)" rx="2" ry="2" />
<text x="410.70" y="191.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (669 samples, 1.33%)</title><rect x="1143.2" y="181" width="15.6" height="15.0" fill="rgb(239,139,51)" rx="2" ry="2" />
<text x="1146.17" y="191.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (533 samples, 1.06%)</title><rect x="70.4" y="469" width="12.5" height="15.0" fill="rgb(219,174,23)" rx="2" ry="2" />
<text x="73.41" y="479.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (600 samples, 1.19%)</title><rect x="325.3" y="213" width="14.1" height="15.0" fill="rgb(241,18,12)" rx="2" ry="2" />
<text x="328.32" y="223.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (262 samples, 0.52%)</title><rect x="952.0" y="341" width="6.1" height="15.0" fill="rgb(238,67,49)" rx="2" ry="2" />
<text x="954.99" y="351.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (312 samples, 0.62%)</title><rect x="143.3" y="405" width="7.3" height="15.0" fill="rgb(237,31,7)" rx="2" ry="2" />
<text x="146.30" y="415.5" ></text>
</g>
<g >
<title>scala/collection/mutable/Buffer.$init$ (336 samples, 0.67%)</title><rect x="1165.4" y="549" width="7.9" height="15.0" fill="rgb(246,54,49)" rx="2" ry="2" />
<text x="1168.44" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (647 samples, 1.28%)</title><rect x="407.7" y="341" width="15.1" height="15.0" fill="rgb(236,89,45)" rx="2" ry="2" />
<text x="410.70" y="351.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (533 samples, 1.06%)</title><rect x="70.4" y="501" width="12.5" height="15.0" fill="rgb(254,15,11)" rx="2" ry="2" />
<text x="73.41" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.$anonfun$from$1 (647 samples, 1.28%)</title><rect x="407.7" y="533" width="15.1" height="15.0" fill="rgb(213,127,39)" rx="2" ry="2" />
<text x="410.70" y="543.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (294 samples, 0.58%)</title><rect x="207.1" y="389" width="6.9" height="15.0" fill="rgb(229,155,10)" rx="2" ry="2" />
<text x="210.10" y="399.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (294 samples, 0.58%)</title><rect x="207.1" y="245" width="6.9" height="15.0" fill="rgb(225,164,10)" rx="2" ry="2" />
<text x="210.10" y="255.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (647 samples, 1.28%)</title><rect x="407.7" y="325" width="15.1" height="15.0" fill="rgb(247,210,43)" rx="2" ry="2" />
<text x="410.70" y="335.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (10,225 samples, 20.29%)</title><rect x="576.8" y="197" width="239.5" height="15.0" fill="rgb(234,130,27)" rx="2" ry="2" />
<text x="579.84" y="207.5" >java/util/concurrent/Executors$..</text>
</g>
<g >
<title>[unknown] (6 samples, 0.01%)</title><rect x="36.4" y="517" width="0.1" height="15.0" fill="rgb(207,1,50)" rx="2" ry="2" />
<text x="39.39" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (882 samples, 1.75%)</title><rect x="1122.5" y="469" width="20.7" height="15.0" fill="rgb(247,192,53)" rx="2" ry="2" />
<text x="1125.52" y="479.5" ></text>
</g>
<g >
<title>scala/runtime/BoxesRunTime.boxToInteger (3,823 samples, 7.59%)</title><rect x="207.1" y="533" width="89.5" height="15.0" fill="rgb(226,60,32)" rx="2" ry="2" />
<text x="210.10" y="543.5" >scala/runt..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (134 samples, 0.27%)</title><rect x="150.6" y="373" width="3.1" height="15.0" fill="rgb(215,161,17)" rx="2" ry="2" />
<text x="153.60" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (2,410 samples, 4.78%)</title><rect x="82.9" y="421" width="56.4" height="15.0" fill="rgb(250,177,41)" rx="2" ry="2" />
<text x="85.91" y="431.5" >scala..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (124 samples, 0.25%)</title><rect x="297.4" y="453" width="2.9" height="15.0" fill="rgb(236,110,18)" rx="2" ry="2" />
<text x="300.39" y="463.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (110 samples, 0.22%)</title><rect x="405.1" y="277" width="2.6" height="15.0" fill="rgb(224,107,40)" rx="2" ry="2" />
<text x="408.12" y="287.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$$Lambda$9/428362883.apply (513 samples, 1.02%)</title><rect x="339.4" y="469" width="12.0" height="15.0" fill="rgb(241,206,29)" rx="2" ry="2" />
<text x="342.37" y="479.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (60 samples, 0.12%)</title><rect x="139.3" y="437" width="1.4" height="15.0" fill="rgb(240,62,5)" rx="2" ry="2" />
<text x="142.34" y="447.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (329 samples, 0.65%)</title><rect x="300.3" y="133" width="7.7" height="15.0" fill="rgb(216,118,34)" rx="2" ry="2" />
<text x="303.29" y="143.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (533 samples, 1.06%)</title><rect x="70.4" y="389" width="12.5" height="15.0" fill="rgb(233,175,49)" rx="2" ry="2" />
<text x="73.41" y="399.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (1,746 samples, 3.46%)</title><rect x="1081.6" y="293" width="40.9" height="15.0" fill="rgb(206,56,4)" rx="2" ry="2" />
<text x="1084.64" y="303.5" >jav..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$.from (647 samples, 1.28%)</title><rect x="407.7" y="549" width="15.1" height="15.0" fill="rgb(214,90,40)" rx="2" ry="2" />
<text x="410.70" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (241 samples, 0.48%)</title><rect x="958.1" y="485" width="5.7" height="15.0" fill="rgb(239,203,32)" rx="2" ry="2" />
<text x="961.13" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (230 samples, 0.46%)</title><rect x="1167.9" y="357" width="5.4" height="15.0" fill="rgb(235,225,54)" rx="2" ry="2" />
<text x="1170.92" y="367.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (230 samples, 0.46%)</title><rect x="1167.9" y="165" width="5.4" height="15.0" fill="rgb(214,226,49)" rx="2" ry="2" />
<text x="1170.92" y="175.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (312 samples, 0.62%)</title><rect x="143.3" y="261" width="7.3" height="15.0" fill="rgb(230,173,25)" rx="2" ry="2" />
<text x="146.30" y="271.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (106 samples, 0.21%)</title><rect x="1165.4" y="85" width="2.5" height="15.0" fill="rgb(218,45,19)" rx="2" ry="2" />
<text x="1168.44" y="95.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (10,225 samples, 20.29%)</title><rect x="576.8" y="437" width="239.5" height="15.0" fill="rgb(251,159,49)" rx="2" ry="2" />
<text x="579.84" y="447.5" >scala/collection/immutable/Stre..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (600 samples, 1.19%)</title><rect x="325.3" y="405" width="14.1" height="15.0" fill="rgb(235,184,2)" rx="2" ry="2" />
<text x="328.32" y="415.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (6,345 samples, 12.59%)</title><rect x="425.6" y="277" width="148.6" height="15.0" fill="rgb(221,160,41)" rx="2" ry="2" />
<text x="428.58" y="287.5" >java/util/concurre..</text>
</g>
<g >
<title>example/FizzBuzz.run (134 samples, 0.27%)</title><rect x="150.6" y="405" width="3.1" height="15.0" fill="rgb(215,218,17)" rx="2" ry="2" />
<text x="153.60" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.02%)</title><rect x="34.5" y="501" width="0.2" height="15.0" fill="rgb(212,164,39)" rx="2" ry="2" />
<text x="37.49" y="511.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (227 samples, 0.45%)</title><rect x="1076.3" y="341" width="5.3" height="15.0" fill="rgb(211,89,54)" rx="2" ry="2" />
<text x="1079.32" y="351.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (600 samples, 1.19%)</title><rect x="325.3" y="277" width="14.1" height="15.0" fill="rgb(227,7,37)" rx="2" ry="2" />
<text x="328.32" y="287.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (2,410 samples, 4.78%)</title><rect x="82.9" y="261" width="56.4" height="15.0" fill="rgb(236,6,14)" rx="2" ry="2" />
<text x="85.91" y="271.5" >java/..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (227 samples, 0.45%)</title><rect x="1076.3" y="501" width="5.3" height="15.0" fill="rgb(209,40,28)" rx="2" ry="2" />
<text x="1079.32" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$StreamBuilder.&lt;init&gt; (106 samples, 0.21%)</title><rect x="1165.4" y="485" width="2.5" height="15.0" fill="rgb(232,216,18)" rx="2" ry="2" />
<text x="1168.44" y="495.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (312 samples, 0.62%)</title><rect x="143.3" y="325" width="7.3" height="15.0" fill="rgb(214,116,36)" rx="2" ry="2" />
<text x="146.30" y="335.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (109 samples, 0.22%)</title><rect x="140.7" y="229" width="2.6" height="15.0" fill="rgb(254,92,0)" rx="2" ry="2" />
<text x="143.75" y="239.5" ></text>
</g>
<g >
<title>start_thread (6 samples, 0.01%)</title><rect x="38.5" y="421" width="0.2" height="15.0" fill="rgb(222,33,18)" rx="2" ry="2" />
<text x="41.54" y="431.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (533 samples, 1.06%)</title><rect x="70.4" y="437" width="12.5" height="15.0" fill="rgb(252,7,24)" rx="2" ry="2" />
<text x="73.41" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (513 samples, 1.02%)</title><rect x="339.4" y="453" width="12.0" height="15.0" fill="rgb(248,79,25)" rx="2" ry="2" />
<text x="342.37" y="463.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (261 samples, 0.52%)</title><rect x="1181.7" y="293" width="6.1" height="15.0" fill="rgb(252,2,45)" rx="2" ry="2" />
<text x="1184.66" y="303.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (241 samples, 0.48%)</title><rect x="958.1" y="197" width="5.7" height="15.0" fill="rgb(219,167,52)" rx="2" ry="2" />
<text x="961.13" y="207.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (114 samples, 0.23%)</title><rect x="422.8" y="389" width="2.7" height="15.0" fill="rgb(229,105,43)" rx="2" ry="2" />
<text x="425.85" y="399.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (241 samples, 0.48%)</title><rect x="958.1" y="405" width="5.7" height="15.0" fill="rgb(241,63,51)" rx="2" ry="2" />
<text x="961.13" y="415.5" ></text>
</g>
<g >
<title>example/FizzBuzz$$Lambda$11/459636526.apply (2,279 samples, 4.52%)</title><rect x="153.7" y="485" width="53.4" height="15.0" fill="rgb(210,13,28)" rx="2" ry="2" />
<text x="156.74" y="495.5" >examp..</text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (124 samples, 0.25%)</title><rect x="297.4" y="373" width="2.9" height="15.0" fill="rgb(227,38,31)" rx="2" ry="2" />
<text x="300.39" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$take$2 (227 samples, 0.45%)</title><rect x="1076.3" y="549" width="5.3" height="15.0" fill="rgb(242,8,20)" rx="2" ry="2" />
<text x="1079.32" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (106 samples, 0.21%)</title><rect x="1165.4" y="325" width="2.5" height="15.0" fill="rgb(221,190,37)" rx="2" ry="2" />
<text x="1168.44" y="335.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (600 samples, 1.19%)</title><rect x="325.3" y="469" width="14.1" height="15.0" fill="rgb(240,28,45)" rx="2" ry="2" />
<text x="328.32" y="479.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (669 samples, 1.33%)</title><rect x="1143.2" y="133" width="15.6" height="15.0" fill="rgb(208,17,11)" rx="2" ry="2" />
<text x="1146.17" y="143.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder (669 samples, 1.33%)</title><rect x="1143.2" y="469" width="15.6" height="15.0" fill="rgb(205,15,4)" rx="2" ry="2" />
<text x="1146.17" y="479.5" ></text>
</g>
<g >
<title>scala/collection/mutable/LazyBuilder.&lt;init&gt; (378 samples, 0.75%)</title><rect x="308.0" y="501" width="8.8" height="15.0" fill="rgb(218,112,19)" rx="2" ry="2" />
<text x="311.00" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (2,278 samples, 4.52%)</title><rect x="153.7" y="453" width="53.4" height="15.0" fill="rgb(207,26,37)" rx="2" ry="2" />
<text x="156.74" y="463.5" >scala..</text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (124 samples, 0.25%)</title><rect x="297.4" y="501" width="2.9" height="15.0" fill="rgb(219,144,46)" rx="2" ry="2" />
<text x="300.39" y="511.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (230 samples, 0.46%)</title><rect x="1167.9" y="149" width="5.4" height="15.0" fill="rgb(234,99,18)" rx="2" ry="2" />
<text x="1170.92" y="159.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (2,410 samples, 4.78%)</title><rect x="82.9" y="213" width="56.4" height="15.0" fill="rgb(231,95,7)" rx="2" ry="2" />
<text x="85.91" y="223.5" >java/..</text>
</g>
<g >
<title>scala/collection/mutable/ListBuffer.&lt;init&gt; (360 samples, 0.71%)</title><rect x="316.8" y="517" width="8.5" height="15.0" fill="rgb(233,117,4)" rx="2" ry="2" />
<text x="319.85" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (695 samples, 1.38%)</title><rect x="38.8" y="437" width="16.3" height="15.0" fill="rgb(230,172,35)" rx="2" ry="2" />
<text x="41.82" y="447.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (140 samples, 0.28%)</title><rect x="10.0" y="389" width="3.3" height="15.0" fill="rgb(229,75,37)" rx="2" ry="2" />
<text x="13.00" y="399.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (695 samples, 1.38%)</title><rect x="38.8" y="325" width="16.3" height="15.0" fill="rgb(213,7,8)" rx="2" ry="2" />
<text x="41.82" y="335.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (621 samples, 1.23%)</title><rect x="55.9" y="325" width="14.5" height="15.0" fill="rgb(229,115,19)" rx="2" ry="2" />
<text x="58.87" y="335.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (282 samples, 0.56%)</title><rect x="1158.8" y="53" width="6.6" height="15.0" fill="rgb(213,167,46)" rx="2" ry="2" />
<text x="1161.84" y="63.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (600 samples, 1.19%)</title><rect x="325.3" y="341" width="14.1" height="15.0" fill="rgb(244,167,41)" rx="2" ry="2" />
<text x="328.32" y="351.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (360 samples, 0.71%)</title><rect x="316.8" y="85" width="8.5" height="15.0" fill="rgb(223,155,5)" rx="2" ry="2" />
<text x="319.85" y="95.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (533 samples, 1.06%)</title><rect x="70.4" y="373" width="12.5" height="15.0" fill="rgb(209,191,17)" rx="2" ry="2" />
<text x="73.41" y="383.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (295 samples, 0.59%)</title><rect x="351.4" y="309" width="6.9" height="15.0" fill="rgb(253,38,35)" rx="2" ry="2" />
<text x="354.38" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (513 samples, 1.02%)</title><rect x="339.4" y="325" width="12.0" height="15.0" fill="rgb(248,198,6)" rx="2" ry="2" />
<text x="342.37" y="335.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (695 samples, 1.38%)</title><rect x="38.8" y="405" width="16.3" height="15.0" fill="rgb(253,90,41)" rx="2" ry="2" />
<text x="41.82" y="415.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (106 samples, 0.21%)</title><rect x="1165.4" y="69" width="2.5" height="15.0" fill="rgb(225,82,19)" rx="2" ry="2" />
<text x="1168.44" y="79.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (1,746 samples, 3.46%)</title><rect x="1081.6" y="389" width="40.9" height="15.0" fill="rgb(232,0,35)" rx="2" ry="2" />
<text x="1084.64" y="399.5" >org..</text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (308 samples, 0.61%)</title><rect x="10.0" y="485" width="7.2" height="15.0" fill="rgb(229,148,46)" rx="2" ry="2" />
<text x="13.00" y="495.5" ></text>
</g>
<g >
<title>example/FizzBuzz$$Lambda$11/459636526.apply (77 samples, 0.15%)</title><rect x="1187.8" y="501" width="1.8" height="15.0" fill="rgb(235,218,27)" rx="2" ry="2" />
<text x="1190.80" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$StreamBuilder.&lt;init&gt; (357 samples, 0.71%)</title><rect x="1173.3" y="485" width="8.4" height="15.0" fill="rgb(250,184,46)" rx="2" ry="2" />
<text x="1176.31" y="495.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (621 samples, 1.23%)</title><rect x="55.9" y="277" width="14.5" height="15.0" fill="rgb(223,25,23)" rx="2" ry="2" />
<text x="58.87" y="287.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (110 samples, 0.22%)</title><rect x="405.1" y="405" width="2.6" height="15.0" fill="rgb(219,18,2)" rx="2" ry="2" />
<text x="408.12" y="415.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (241 samples, 0.48%)</title><rect x="958.1" y="373" width="5.7" height="15.0" fill="rgb(239,82,7)" rx="2" ry="2" />
<text x="961.13" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (740 samples, 1.47%)</title><rect x="387.8" y="453" width="17.3" height="15.0" fill="rgb(239,80,16)" rx="2" ry="2" />
<text x="390.79" y="463.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (262 samples, 0.52%)</title><rect x="952.0" y="357" width="6.1" height="15.0" fill="rgb(230,100,47)" rx="2" ry="2" />
<text x="954.99" y="367.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (513 samples, 1.02%)</title><rect x="339.4" y="117" width="12.0" height="15.0" fill="rgb(242,139,0)" rx="2" ry="2" />
<text x="342.37" y="127.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.from (513 samples, 1.02%)</title><rect x="339.4" y="501" width="12.0" height="15.0" fill="rgb(241,182,40)" rx="2" ry="2" />
<text x="342.37" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (621 samples, 1.23%)</title><rect x="55.9" y="437" width="14.5" height="15.0" fill="rgb(217,40,52)" rx="2" ry="2" />
<text x="58.87" y="447.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (882 samples, 1.75%)</title><rect x="1122.5" y="245" width="20.7" height="15.0" fill="rgb(220,20,30)" rx="2" ry="2" />
<text x="1125.52" y="255.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.from (114 samples, 0.23%)</title><rect x="422.8" y="533" width="2.7" height="15.0" fill="rgb(233,153,42)" rx="2" ry="2" />
<text x="425.85" y="543.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$$Lambda$9/428362883.apply (114 samples, 0.23%)</title><rect x="422.8" y="501" width="2.7" height="15.0" fill="rgb(213,205,6)" rx="2" ry="2" />
<text x="425.85" y="511.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (10,225 samples, 20.29%)</title><rect x="576.8" y="181" width="239.5" height="15.0" fill="rgb(226,208,45)" rx="2" ry="2" />
<text x="579.84" y="191.5" >java/util/concurrent/FutureTask..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (124 samples, 0.25%)</title><rect x="297.4" y="421" width="2.9" height="15.0" fill="rgb(244,107,29)" rx="2" ry="2" />
<text x="300.39" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (360 samples, 0.71%)</title><rect x="316.8" y="357" width="8.5" height="15.0" fill="rgb(254,175,16)" rx="2" ry="2" />
<text x="319.85" y="367.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (4,590 samples, 9.11%)</title><rect x="968.8" y="309" width="107.5" height="15.0" fill="rgb(240,107,18)" rx="2" ry="2" />
<text x="971.85" y="319.5" >java/util/con..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (114 samples, 0.23%)</title><rect x="422.8" y="149" width="2.7" height="15.0" fill="rgb(236,174,45)" rx="2" ry="2" />
<text x="425.85" y="159.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (124 samples, 0.25%)</title><rect x="297.4" y="197" width="2.9" height="15.0" fill="rgb(212,79,52)" rx="2" ry="2" />
<text x="300.39" y="207.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (5 samples, 0.01%)</title><rect x="34.4" y="549" width="0.1" height="15.0" fill="rgb(239,63,15)" rx="2" ry="2" />
<text x="37.37" y="559.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (77 samples, 0.15%)</title><rect x="1187.8" y="341" width="1.8" height="15.0" fill="rgb(225,97,2)" rx="2" ry="2" />
<text x="1190.80" y="351.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (600 samples, 1.19%)</title><rect x="325.3" y="485" width="14.1" height="15.0" fill="rgb(253,176,43)" rx="2" ry="2" />
<text x="328.32" y="495.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (357 samples, 0.71%)</title><rect x="1173.3" y="165" width="8.4" height="15.0" fill="rgb(247,149,35)" rx="2" ry="2" />
<text x="1176.31" y="175.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (5,797 samples, 11.50%)</title><rect x="816.3" y="437" width="135.7" height="15.0" fill="rgb(209,125,51)" rx="2" ry="2" />
<text x="819.26" y="447.5" >sun/reflect/Nativ..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (77 samples, 0.15%)</title><rect x="1187.8" y="373" width="1.8" height="15.0" fill="rgb(245,163,35)" rx="2" ry="2" />
<text x="1190.80" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (621 samples, 1.23%)</title><rect x="55.9" y="501" width="14.5" height="15.0" fill="rgb(221,143,7)" rx="2" ry="2" />
<text x="58.87" y="511.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (134 samples, 0.27%)</title><rect x="150.6" y="277" width="3.1" height="15.0" fill="rgb(240,29,50)" rx="2" ry="2" />
<text x="153.60" y="287.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (624 samples, 1.24%)</title><rect x="358.3" y="421" width="14.6" height="15.0" fill="rgb(208,203,32)" rx="2" ry="2" />
<text x="361.29" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (262 samples, 0.52%)</title><rect x="952.0" y="453" width="6.1" height="15.0" fill="rgb(226,103,39)" rx="2" ry="2" />
<text x="954.99" y="463.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (3,525 samples, 6.99%)</title><rect x="214.1" y="293" width="82.5" height="15.0" fill="rgb(248,159,5)" rx="2" ry="2" />
<text x="217.08" y="303.5" >example/F..</text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (360 samples, 0.71%)</title><rect x="316.8" y="197" width="8.5" height="15.0" fill="rgb(241,56,23)" rx="2" ry="2" />
<text x="319.85" y="207.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (3,525 samples, 6.99%)</title><rect x="214.1" y="309" width="82.5" height="15.0" fill="rgb(221,215,51)" rx="2" ry="2" />
<text x="217.08" y="319.5" >scala/col..</text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (357 samples, 0.71%)</title><rect x="1173.3" y="389" width="8.4" height="15.0" fill="rgb(227,67,45)" rx="2" ry="2" />
<text x="1176.31" y="399.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (60 samples, 0.12%)</title><rect x="139.3" y="373" width="1.4" height="15.0" fill="rgb(224,125,47)" rx="2" ry="2" />
<text x="142.34" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (357 samples, 0.71%)</title><rect x="1173.3" y="373" width="8.4" height="15.0" fill="rgb(230,75,39)" rx="2" ry="2" />
<text x="1176.31" y="383.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (4,590 samples, 9.11%)</title><rect x="968.8" y="341" width="107.5" height="15.0" fill="rgb(210,70,31)" rx="2" ry="2" />
<text x="971.85" y="351.5" >org/openjdk/j..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (282 samples, 0.56%)</title><rect x="1158.8" y="101" width="6.6" height="15.0" fill="rgb(235,119,32)" rx="2" ry="2" />
<text x="1161.84" y="111.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (4,590 samples, 9.11%)</title><rect x="968.8" y="469" width="107.5" height="15.0" fill="rgb(229,44,39)" rx="2" ry="2" />
<text x="971.85" y="479.5" >example/FizzB..</text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (282 samples, 0.56%)</title><rect x="1158.8" y="181" width="6.6" height="15.0" fill="rgb(240,27,30)" rx="2" ry="2" />
<text x="1161.84" y="191.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$take$2 (513 samples, 1.02%)</title><rect x="339.4" y="421" width="12.0" height="15.0" fill="rgb(219,175,51)" rx="2" ry="2" />
<text x="342.37" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (2,410 samples, 4.78%)</title><rect x="82.9" y="453" width="56.4" height="15.0" fill="rgb(205,14,21)" rx="2" ry="2" />
<text x="85.91" y="463.5" >scala..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (109 samples, 0.22%)</title><rect x="140.7" y="245" width="2.6" height="15.0" fill="rgb(249,165,23)" rx="2" ry="2" />
<text x="143.75" y="255.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (227 samples, 0.45%)</title><rect x="1076.3" y="245" width="5.3" height="15.0" fill="rgb(211,129,54)" rx="2" ry="2" />
<text x="1079.32" y="255.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (600 samples, 1.19%)</title><rect x="325.3" y="357" width="14.1" height="15.0" fill="rgb(230,71,48)" rx="2" ry="2" />
<text x="328.32" y="367.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (600 samples, 1.19%)</title><rect x="325.3" y="117" width="14.1" height="15.0" fill="rgb(214,57,34)" rx="2" ry="2" />
<text x="328.32" y="127.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (294 samples, 0.58%)</title><rect x="207.1" y="437" width="6.9" height="15.0" fill="rgb(252,221,9)" rx="2" ry="2" />
<text x="210.10" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (114 samples, 0.23%)</title><rect x="422.8" y="357" width="2.7" height="15.0" fill="rgb(238,22,43)" rx="2" ry="2" />
<text x="425.85" y="367.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.newBuilder (357 samples, 0.71%)</title><rect x="1173.3" y="469" width="8.4" height="15.0" fill="rgb(227,86,13)" rx="2" ry="2" />
<text x="1176.31" y="479.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (217 samples, 0.43%)</title><rect x="963.8" y="501" width="5.0" height="15.0" fill="rgb(231,51,34)" rx="2" ry="2" />
<text x="966.77" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (6,345 samples, 12.59%)</title><rect x="425.6" y="485" width="148.6" height="15.0" fill="rgb(223,10,3)" rx="2" ry="2" />
<text x="428.58" y="495.5" >scala/collection/i..</text>
</g>
<g >
<title>scala/collection/mutable/BufferLike.$init$ (357 samples, 0.71%)</title><rect x="1173.3" y="549" width="8.4" height="15.0" fill="rgb(207,104,13)" rx="2" ry="2" />
<text x="1176.31" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (230 samples, 0.46%)</title><rect x="1167.9" y="341" width="5.4" height="15.0" fill="rgb(234,201,20)" rx="2" ry="2" />
<text x="1170.92" y="351.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (282 samples, 0.56%)</title><rect x="1158.8" y="85" width="6.6" height="15.0" fill="rgb(230,130,40)" rx="2" ry="2" />
<text x="1161.84" y="95.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (9 samples, 0.02%)</title><rect x="36.0" y="549" width="0.2" height="15.0" fill="rgb(245,22,26)" rx="2" ry="2" />
<text x="39.01" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (295 samples, 0.59%)</title><rect x="351.4" y="469" width="6.9" height="15.0" fill="rgb(245,22,48)" rx="2" ry="2" />
<text x="354.38" y="479.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (227 samples, 0.45%)</title><rect x="1076.3" y="165" width="5.3" height="15.0" fill="rgb(251,70,42)" rx="2" ry="2" />
<text x="1079.32" y="175.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (134 samples, 0.27%)</title><rect x="150.6" y="293" width="3.1" height="15.0" fill="rgb(215,103,2)" rx="2" ry="2" />
<text x="153.60" y="303.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (5,797 samples, 11.50%)</title><rect x="816.3" y="341" width="135.7" height="15.0" fill="rgb(217,175,24)" rx="2" ry="2" />
<text x="819.26" y="351.5" >java/util/concurr..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (109 samples, 0.22%)</title><rect x="140.7" y="453" width="2.6" height="15.0" fill="rgb(228,13,32)" rx="2" ry="2" />
<text x="143.75" y="463.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (6,345 samples, 12.59%)</title><rect x="425.6" y="229" width="148.6" height="15.0" fill="rgb(211,203,17)" rx="2" ry="2" />
<text x="428.58" y="239.5" >java/util/concurre..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (624 samples, 1.24%)</title><rect x="358.3" y="181" width="14.6" height="15.0" fill="rgb(206,199,11)" rx="2" ry="2" />
<text x="361.29" y="191.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (360 samples, 0.71%)</title><rect x="316.8" y="389" width="8.5" height="15.0" fill="rgb(253,120,31)" rx="2" ry="2" />
<text x="319.85" y="399.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (2,278 samples, 4.52%)</title><rect x="153.7" y="373" width="53.4" height="15.0" fill="rgb(227,99,5)" rx="2" ry="2" />
<text x="156.74" y="383.5" >examp..</text>
</g>
<g >
<title>java/lang/Thread.run (6 samples, 0.01%)</title><rect x="1189.6" y="181" width="0.2" height="15.0" fill="rgb(232,66,46)" rx="2" ry="2" />
<text x="1192.65" y="191.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (329 samples, 0.65%)</title><rect x="300.3" y="181" width="7.7" height="15.0" fill="rgb(254,8,43)" rx="2" ry="2" />
<text x="303.29" y="191.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (3,525 samples, 6.99%)</title><rect x="214.1" y="133" width="82.5" height="15.0" fill="rgb(229,202,18)" rx="2" ry="2" />
<text x="217.08" y="143.5" >java/util..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$StreamBuilder.&lt;init&gt; (329 samples, 0.65%)</title><rect x="300.3" y="485" width="7.7" height="15.0" fill="rgb(225,70,0)" rx="2" ry="2" />
<text x="303.29" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (312 samples, 0.62%)</title><rect x="143.3" y="453" width="7.3" height="15.0" fill="rgb(239,140,35)" rx="2" ry="2" />
<text x="146.30" y="463.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (6 samples, 0.01%)</title><rect x="1189.6" y="213" width="0.2" height="15.0" fill="rgb(225,222,39)" rx="2" ry="2" />
<text x="1192.65" y="223.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (357 samples, 0.71%)</title><rect x="1173.3" y="149" width="8.4" height="15.0" fill="rgb(219,180,3)" rx="2" ry="2" />
<text x="1176.31" y="159.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (261 samples, 0.52%)</title><rect x="1181.7" y="261" width="6.1" height="15.0" fill="rgb(239,7,32)" rx="2" ry="2" />
<text x="1184.66" y="271.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder (230 samples, 0.46%)</title><rect x="1167.9" y="469" width="5.4" height="15.0" fill="rgb(227,82,51)" rx="2" ry="2" />
<text x="1170.92" y="479.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (241 samples, 0.48%)</title><rect x="958.1" y="245" width="5.7" height="15.0" fill="rgb(231,16,20)" rx="2" ry="2" />
<text x="961.13" y="255.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (2,410 samples, 4.78%)</title><rect x="82.9" y="197" width="56.4" height="15.0" fill="rgb(217,195,53)" rx="2" ry="2" />
<text x="85.91" y="207.5" >java/..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (134 samples, 0.27%)</title><rect x="150.6" y="453" width="3.1" height="15.0" fill="rgb(213,121,15)" rx="2" ry="2" />
<text x="153.60" y="463.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (9 samples, 0.02%)</title><rect x="34.5" y="533" width="0.2" height="15.0" fill="rgb(217,34,39)" rx="2" ry="2" />
<text x="37.49" y="543.5" ></text>
</g>
<g >
<title>futex_wake (64 samples, 0.13%)</title><rect x="36.8" y="501" width="1.5" height="15.0" fill="rgb(220,192,43)" rx="2" ry="2" />
<text x="39.76" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (636 samples, 1.26%)</title><rect x="372.9" y="501" width="14.9" height="15.0" fill="rgb(210,59,48)" rx="2" ry="2" />
<text x="375.90" y="511.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1$adapted (312 samples, 0.62%)</title><rect x="143.3" y="485" width="7.3" height="15.0" fill="rgb(221,115,13)" rx="2" ry="2" />
<text x="146.30" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (3,525 samples, 6.99%)</title><rect x="214.1" y="357" width="82.5" height="15.0" fill="rgb(209,84,20)" rx="2" ry="2" />
<text x="217.08" y="367.5" >scala/col..</text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1$adapted (294 samples, 0.58%)</title><rect x="207.1" y="501" width="6.9" height="15.0" fill="rgb(229,154,14)" rx="2" ry="2" />
<text x="210.10" y="511.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (227 samples, 0.45%)</title><rect x="1076.3" y="197" width="5.3" height="15.0" fill="rgb(227,197,31)" rx="2" ry="2" />
<text x="1079.32" y="207.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (110 samples, 0.22%)</title><rect x="405.1" y="325" width="2.6" height="15.0" fill="rgb(219,105,12)" rx="2" ry="2" />
<text x="408.12" y="335.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (10,225 samples, 20.29%)</title><rect x="576.8" y="213" width="239.5" height="15.0" fill="rgb(219,173,23)" rx="2" ry="2" />
<text x="579.84" y="223.5" >java/util/concurrent/FutureTask..</text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (261 samples, 0.52%)</title><rect x="1181.7" y="405" width="6.1" height="15.0" fill="rgb(223,10,12)" rx="2" ry="2" />
<text x="1184.66" y="415.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (106 samples, 0.21%)</title><rect x="1165.4" y="389" width="2.5" height="15.0" fill="rgb(231,213,18)" rx="2" ry="2" />
<text x="1168.44" y="399.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (533 samples, 1.06%)</title><rect x="70.4" y="485" width="12.5" height="15.0" fill="rgb(245,124,9)" rx="2" ry="2" />
<text x="73.41" y="495.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (3,525 samples, 6.99%)</title><rect x="214.1" y="197" width="82.5" height="15.0" fill="rgb(229,133,45)" rx="2" ry="2" />
<text x="217.08" y="207.5" >sun/refle..</text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (241 samples, 0.48%)</title><rect x="958.1" y="341" width="5.7" height="15.0" fill="rgb(226,216,50)" rx="2" ry="2" />
<text x="961.13" y="351.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (2,410 samples, 4.78%)</title><rect x="82.9" y="229" width="56.4" height="15.0" fill="rgb(231,176,44)" rx="2" ry="2" />
<text x="85.91" y="239.5" >org/o..</text>
</g>
<g >
<title>java/lang/Thread.run (262 samples, 0.52%)</title><rect x="952.0" y="181" width="6.1" height="15.0" fill="rgb(214,80,29)" rx="2" ry="2" />
<text x="954.99" y="191.5" ></text>
</g>
<g >
<title>scala/collection/mutable/ListBuffer.&lt;init&gt; (329 samples, 0.65%)</title><rect x="300.3" y="517" width="7.7" height="15.0" fill="rgb(207,219,33)" rx="2" ry="2" />
<text x="303.29" y="527.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (2,278 samples, 4.52%)</title><rect x="153.7" y="357" width="53.4" height="15.0" fill="rgb(249,142,40)" rx="2" ry="2" />
<text x="156.74" y="367.5" >examp..</text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (1,746 samples, 3.46%)</title><rect x="1081.6" y="357" width="40.9" height="15.0" fill="rgb(228,44,10)" rx="2" ry="2" />
<text x="1084.64" y="367.5" >jav..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (77 samples, 0.15%)</title><rect x="1187.8" y="181" width="1.8" height="15.0" fill="rgb(232,146,7)" rx="2" ry="2" />
<text x="1190.80" y="191.5" ></text>
</g>
<g >
<title>scala/collection/AbstractTraversable.genericBuilder (669 samples, 1.33%)</title><rect x="1143.2" y="437" width="15.6" height="15.0" fill="rgb(241,136,29)" rx="2" ry="2" />
<text x="1146.17" y="447.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (6 samples, 0.01%)</title><rect x="1189.6" y="373" width="0.2" height="15.0" fill="rgb(253,8,11)" rx="2" ry="2" />
<text x="1192.65" y="383.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (882 samples, 1.75%)</title><rect x="1122.5" y="277" width="20.7" height="15.0" fill="rgb(239,222,22)" rx="2" ry="2" />
<text x="1125.52" y="287.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (600 samples, 1.19%)</title><rect x="325.3" y="421" width="14.1" height="15.0" fill="rgb(221,85,23)" rx="2" ry="2" />
<text x="328.32" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (115 samples, 0.23%)</title><rect x="574.2" y="469" width="2.6" height="15.0" fill="rgb(211,4,53)" rx="2" ry="2" />
<text x="577.15" y="479.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder$ (360 samples, 0.71%)</title><rect x="316.8" y="437" width="8.5" height="15.0" fill="rgb(235,160,47)" rx="2" ry="2" />
<text x="319.85" y="447.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (110 samples, 0.22%)</title><rect x="405.1" y="117" width="2.6" height="15.0" fill="rgb(224,182,36)" rx="2" ry="2" />
<text x="408.12" y="127.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (647 samples, 1.28%)</title><rect x="407.7" y="133" width="15.1" height="15.0" fill="rgb(236,148,3)" rx="2" ry="2" />
<text x="410.70" y="143.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (114 samples, 0.23%)</title><rect x="422.8" y="421" width="2.7" height="15.0" fill="rgb(235,220,23)" rx="2" ry="2" />
<text x="425.85" y="431.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (8 samples, 0.02%)</title><rect x="36.0" y="517" width="0.2" height="15.0" fill="rgb(248,202,44)" rx="2" ry="2" />
<text x="39.01" y="527.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (882 samples, 1.75%)</title><rect x="1122.5" y="341" width="20.7" height="15.0" fill="rgb(234,106,20)" rx="2" ry="2" />
<text x="1125.52" y="351.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (669 samples, 1.33%)</title><rect x="1143.2" y="357" width="15.6" height="15.0" fill="rgb(250,220,38)" rx="2" ry="2" />
<text x="1146.17" y="367.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (109 samples, 0.22%)</title><rect x="140.7" y="357" width="2.6" height="15.0" fill="rgb(220,23,7)" rx="2" ry="2" />
<text x="143.75" y="367.5" ></text>
</g>
<g >
<title>scala/collection/mutable/AbstractBuffer.&lt;init&gt; (329 samples, 0.65%)</title><rect x="300.3" y="533" width="7.7" height="15.0" fill="rgb(249,151,50)" rx="2" ry="2" />
<text x="303.29" y="543.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$$Lambda$9/428362883.apply (3,529 samples, 7.00%)</title><rect x="214.0" y="485" width="82.6" height="15.0" fill="rgb(224,142,1)" rx="2" ry="2" />
<text x="216.99" y="495.5" >scala/col..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (5,797 samples, 11.50%)</title><rect x="816.3" y="469" width="135.7" height="15.0" fill="rgb(240,127,42)" rx="2" ry="2" />
<text x="819.26" y="479.5" >example/generated..</text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (10,225 samples, 20.29%)</title><rect x="576.8" y="357" width="239.5" height="15.0" fill="rgb(218,130,40)" rx="2" ry="2" />
<text x="579.84" y="367.5" >example/FizzBuzzBenchmark.run</text>
</g>
<g >
<title>try_to_wake_up (64 samples, 0.13%)</title><rect x="36.8" y="533" width="1.5" height="15.0" fill="rgb(214,173,46)" rx="2" ry="2" />
<text x="39.76" y="543.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (241 samples, 0.48%)</title><rect x="958.1" y="277" width="5.7" height="15.0" fill="rgb(212,77,7)" rx="2" ry="2" />
<text x="961.13" y="287.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (217 samples, 0.43%)</title><rect x="963.8" y="405" width="5.0" height="15.0" fill="rgb(253,105,10)" rx="2" ry="2" />
<text x="966.77" y="415.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (312 samples, 0.62%)</title><rect x="143.3" y="229" width="7.3" height="15.0" fill="rgb(214,27,34)" rx="2" ry="2" />
<text x="146.30" y="239.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (513 samples, 1.02%)</title><rect x="339.4" y="197" width="12.0" height="15.0" fill="rgb(217,14,3)" rx="2" ry="2" />
<text x="342.37" y="207.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (295 samples, 0.59%)</title><rect x="351.4" y="549" width="6.9" height="15.0" fill="rgb(219,55,30)" rx="2" ry="2" />
<text x="354.38" y="559.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (329 samples, 0.65%)</title><rect x="300.3" y="213" width="7.7" height="15.0" fill="rgb(226,117,5)" rx="2" ry="2" />
<text x="303.29" y="223.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (69 samples, 0.14%)</title><rect x="36.7" y="549" width="1.6" height="15.0" fill="rgb(223,200,25)" rx="2" ry="2" />
<text x="39.67" y="559.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (262 samples, 0.52%)</title><rect x="952.0" y="229" width="6.1" height="15.0" fill="rgb(236,137,26)" rx="2" ry="2" />
<text x="954.99" y="239.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1 (294 samples, 0.58%)</title><rect x="207.1" y="517" width="6.9" height="15.0" fill="rgb(224,23,50)" rx="2" ry="2" />
<text x="210.10" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (740 samples, 1.47%)</title><rect x="387.8" y="485" width="17.3" height="15.0" fill="rgb(247,11,48)" rx="2" ry="2" />
<text x="390.79" y="495.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (106 samples, 0.21%)</title><rect x="1165.4" y="277" width="2.5" height="15.0" fill="rgb(232,27,23)" rx="2" ry="2" />
<text x="1168.44" y="287.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (134 samples, 0.27%)</title><rect x="150.6" y="261" width="3.1" height="15.0" fill="rgb(235,94,10)" rx="2" ry="2" />
<text x="153.60" y="271.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (10,225 samples, 20.29%)</title><rect x="576.8" y="309" width="239.5" height="15.0" fill="rgb(225,31,3)" rx="2" ry="2" />
<text x="579.84" y="319.5" >sun/reflect/NativeMethodAccesso..</text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (294 samples, 0.58%)</title><rect x="207.1" y="213" width="6.9" height="15.0" fill="rgb(227,32,3)" rx="2" ry="2" />
<text x="210.10" y="223.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (10,225 samples, 20.29%)</title><rect x="576.8" y="485" width="239.5" height="15.0" fill="rgb(238,130,31)" rx="2" ry="2" />
<text x="579.84" y="495.5" >scala/collection/immutable/Stre..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (134 samples, 0.27%)</title><rect x="150.6" y="325" width="3.1" height="15.0" fill="rgb(248,71,26)" rx="2" ry="2" />
<text x="153.60" y="335.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (77 samples, 0.15%)</title><rect x="1187.8" y="405" width="1.8" height="15.0" fill="rgb(244,164,29)" rx="2" ry="2" />
<text x="1190.80" y="415.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (312 samples, 0.62%)</title><rect x="143.3" y="389" width="7.3" height="15.0" fill="rgb(246,199,22)" rx="2" ry="2" />
<text x="146.30" y="399.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (329 samples, 0.65%)</title><rect x="300.3" y="261" width="7.7" height="15.0" fill="rgb(245,118,27)" rx="2" ry="2" />
<text x="303.29" y="271.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (2,410 samples, 4.78%)</title><rect x="82.9" y="293" width="56.4" height="15.0" fill="rgb(213,62,16)" rx="2" ry="2" />
<text x="85.91" y="303.5" >sun/r..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (533 samples, 1.06%)</title><rect x="70.4" y="405" width="12.5" height="15.0" fill="rgb(205,15,44)" rx="2" ry="2" />
<text x="73.41" y="415.5" ></text>
</g>
<g >
<title>java/lang/invoke/LambdaForm$DMH/1020371697.invokeStatic_LL_L (740 samples, 1.47%)</title><rect x="387.8" y="533" width="17.3" height="15.0" fill="rgb(248,36,4)" rx="2" ry="2" />
<text x="390.79" y="543.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (4,590 samples, 9.11%)</title><rect x="968.8" y="421" width="107.5" height="15.0" fill="rgb(207,85,10)" rx="2" ry="2" />
<text x="971.85" y="431.5" >example/gener..</text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (357 samples, 0.71%)</title><rect x="1173.3" y="117" width="8.4" height="15.0" fill="rgb(212,145,42)" rx="2" ry="2" />
<text x="1176.31" y="127.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (636 samples, 1.26%)</title><rect x="372.9" y="277" width="14.9" height="15.0" fill="rgb(209,218,49)" rx="2" ry="2" />
<text x="375.90" y="287.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (294 samples, 0.58%)</title><rect x="207.1" y="165" width="6.9" height="15.0" fill="rgb(246,9,24)" rx="2" ry="2" />
<text x="210.10" y="175.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (357 samples, 0.71%)</title><rect x="1173.3" y="229" width="8.4" height="15.0" fill="rgb(211,54,27)" rx="2" ry="2" />
<text x="1176.31" y="239.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1 (2,279 samples, 4.52%)</title><rect x="153.7" y="517" width="53.4" height="15.0" fill="rgb(205,149,32)" rx="2" ry="2" />
<text x="156.74" y="527.5" >examp..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (695 samples, 1.38%)</title><rect x="38.8" y="197" width="16.3" height="15.0" fill="rgb(245,156,4)" rx="2" ry="2" />
<text x="41.82" y="207.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (241 samples, 0.48%)</title><rect x="958.1" y="325" width="5.7" height="15.0" fill="rgb(240,67,40)" rx="2" ry="2" />
<text x="961.13" y="335.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (882 samples, 1.75%)</title><rect x="1122.5" y="373" width="20.7" height="15.0" fill="rgb(240,12,13)" rx="2" ry="2" />
<text x="1125.52" y="383.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (261 samples, 0.52%)</title><rect x="1181.7" y="133" width="6.1" height="15.0" fill="rgb(215,93,38)" rx="2" ry="2" />
<text x="1184.66" y="143.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (621 samples, 1.23%)</title><rect x="55.9" y="469" width="14.5" height="15.0" fill="rgb(237,86,25)" rx="2" ry="2" />
<text x="58.87" y="479.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (261 samples, 0.52%)</title><rect x="1181.7" y="197" width="6.1" height="15.0" fill="rgb(254,119,12)" rx="2" ry="2" />
<text x="1184.66" y="207.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (513 samples, 1.02%)</title><rect x="339.4" y="341" width="12.0" height="15.0" fill="rgb(248,76,10)" rx="2" ry="2" />
<text x="342.37" y="351.5" ></text>
</g>
<g >
<title>scala/collection/mutable/AbstractBuffer.&lt;init&gt; (378 samples, 0.75%)</title><rect x="308.0" y="533" width="8.8" height="15.0" fill="rgb(253,143,5)" rx="2" ry="2" />
<text x="311.00" y="543.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (669 samples, 1.33%)</title><rect x="1143.2" y="373" width="15.6" height="15.0" fill="rgb(208,64,35)" rx="2" ry="2" />
<text x="1146.17" y="383.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (7 samples, 0.01%)</title><rect x="34.5" y="485" width="0.2" height="15.0" fill="rgb(216,206,18)" rx="2" ry="2" />
<text x="37.54" y="495.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (378 samples, 0.75%)</title><rect x="308.0" y="405" width="8.8" height="15.0" fill="rgb(242,184,13)" rx="2" ry="2" />
<text x="311.00" y="415.5" ></text>
</g>
<g >
<title>java/lang/Integer.toString (312 samples, 0.62%)</title><rect x="143.3" y="517" width="7.3" height="15.0" fill="rgb(232,198,48)" rx="2" ry="2" />
<text x="146.30" y="527.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (106 samples, 0.21%)</title><rect x="1165.4" y="229" width="2.5" height="15.0" fill="rgb(217,141,40)" rx="2" ry="2" />
<text x="1168.44" y="239.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.newBuilder (329 samples, 0.65%)</title><rect x="300.3" y="469" width="7.7" height="15.0" fill="rgb(215,108,10)" rx="2" ry="2" />
<text x="303.29" y="479.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (1,746 samples, 3.46%)</title><rect x="1081.6" y="421" width="40.9" height="15.0" fill="rgb(208,65,26)" rx="2" ry="2" />
<text x="1084.64" y="431.5" >jav..</text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (106 samples, 0.21%)</title><rect x="1165.4" y="117" width="2.5" height="15.0" fill="rgb(229,95,0)" rx="2" ry="2" />
<text x="1168.44" y="127.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (882 samples, 1.75%)</title><rect x="1122.5" y="261" width="20.7" height="15.0" fill="rgb(211,181,36)" rx="2" ry="2" />
<text x="1125.52" y="271.5" ></text>
</g>
<g >
<title>scala/collection/mutable/LazyBuilder.&lt;init&gt; (230 samples, 0.46%)</title><rect x="1167.9" y="517" width="5.4" height="15.0" fill="rgb(233,152,8)" rx="2" ry="2" />
<text x="1170.92" y="527.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (360 samples, 0.71%)</title><rect x="316.8" y="261" width="8.5" height="15.0" fill="rgb(245,79,39)" rx="2" ry="2" />
<text x="319.85" y="271.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (134 samples, 0.27%)</title><rect x="150.6" y="389" width="3.1" height="15.0" fill="rgb(224,115,9)" rx="2" ry="2" />
<text x="153.60" y="399.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (124 samples, 0.25%)</title><rect x="297.4" y="229" width="2.9" height="15.0" fill="rgb(205,137,15)" rx="2" ry="2" />
<text x="300.39" y="239.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (217 samples, 0.43%)</title><rect x="963.8" y="357" width="5.0" height="15.0" fill="rgb(217,97,19)" rx="2" ry="2" />
<text x="966.77" y="367.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (134 samples, 0.27%)</title><rect x="150.6" y="485" width="3.1" height="15.0" fill="rgb(222,145,5)" rx="2" ry="2" />
<text x="153.60" y="495.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.01%)</title><rect x="35.7" y="533" width="0.1" height="15.0" fill="rgb(221,172,24)" rx="2" ry="2" />
<text x="38.69" y="543.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (262 samples, 0.52%)</title><rect x="952.0" y="261" width="6.1" height="15.0" fill="rgb(221,58,22)" rx="2" ry="2" />
<text x="954.99" y="271.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (282 samples, 0.56%)</title><rect x="1158.8" y="373" width="6.6" height="15.0" fill="rgb(208,100,0)" rx="2" ry="2" />
<text x="1161.84" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.$anonfun$from$1 (513 samples, 1.02%)</title><rect x="339.4" y="485" width="12.0" height="15.0" fill="rgb(221,78,7)" rx="2" ry="2" />
<text x="342.37" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (109 samples, 0.22%)</title><rect x="140.7" y="421" width="2.6" height="15.0" fill="rgb(229,200,16)" rx="2" ry="2" />
<text x="143.75" y="431.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (124 samples, 0.25%)</title><rect x="297.4" y="277" width="2.9" height="15.0" fill="rgb(242,70,16)" rx="2" ry="2" />
<text x="300.39" y="287.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (360 samples, 0.71%)</title><rect x="316.8" y="69" width="8.5" height="15.0" fill="rgb(239,110,19)" rx="2" ry="2" />
<text x="319.85" y="79.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (2,410 samples, 4.78%)</title><rect x="82.9" y="437" width="56.4" height="15.0" fill="rgb(209,39,24)" rx="2" ry="2" />
<text x="85.91" y="447.5" >scala..</text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (10,225 samples, 20.29%)</title><rect x="576.8" y="277" width="239.5" height="15.0" fill="rgb(250,78,51)" rx="2" ry="2" />
<text x="579.84" y="287.5" >sun/reflect/DelegatingMethodAcc..</text>
</g>
<g >
<title>example/FizzBuzz.run (329 samples, 0.65%)</title><rect x="300.3" y="293" width="7.7" height="15.0" fill="rgb(222,163,29)" rx="2" ry="2" />
<text x="303.29" y="303.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (669 samples, 1.33%)</title><rect x="1143.2" y="421" width="15.6" height="15.0" fill="rgb(240,103,7)" rx="2" ry="2" />
<text x="1146.17" y="431.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (669 samples, 1.33%)</title><rect x="1143.2" y="229" width="15.6" height="15.0" fill="rgb(213,147,0)" rx="2" ry="2" />
<text x="1146.17" y="239.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (295 samples, 0.59%)</title><rect x="351.4" y="229" width="6.9" height="15.0" fill="rgb(217,187,24)" rx="2" ry="2" />
<text x="354.38" y="239.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (3,525 samples, 6.99%)</title><rect x="214.1" y="229" width="82.5" height="15.0" fill="rgb(233,1,2)" rx="2" ry="2" />
<text x="217.08" y="239.5" >sun/refle..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (6,345 samples, 12.59%)</title><rect x="425.6" y="405" width="148.6" height="15.0" fill="rgb(226,86,19)" rx="2" ry="2" />
<text x="428.58" y="415.5" >example/generated/..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (77 samples, 0.15%)</title><rect x="1187.8" y="453" width="1.8" height="15.0" fill="rgb(213,81,31)" rx="2" ry="2" />
<text x="1190.80" y="463.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (134 samples, 0.27%)</title><rect x="150.6" y="341" width="3.1" height="15.0" fill="rgb(230,136,13)" rx="2" ry="2" />
<text x="153.60" y="351.5" ></text>
</g>
<g >
<title>start_thread (8 samples, 0.02%)</title><rect x="13.6" y="421" width="0.2" height="15.0" fill="rgb(228,2,5)" rx="2" ry="2" />
<text x="16.58" y="431.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (740 samples, 1.47%)</title><rect x="387.8" y="197" width="17.3" height="15.0" fill="rgb(251,211,12)" rx="2" ry="2" />
<text x="390.79" y="207.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (2,278 samples, 4.52%)</title><rect x="153.7" y="277" width="53.4" height="15.0" fill="rgb(242,22,20)" rx="2" ry="2" />
<text x="156.74" y="287.5" >java/..</text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (378 samples, 0.75%)</title><rect x="308.0" y="197" width="8.8" height="15.0" fill="rgb(224,113,40)" rx="2" ry="2" />
<text x="311.00" y="207.5" ></text>
</g>
<g >
<title>example/FizzBuzz$$Lambda$11/459636526.apply (6 samples, 0.01%)</title><rect x="1189.6" y="517" width="0.2" height="15.0" fill="rgb(248,48,33)" rx="2" ry="2" />
<text x="1192.65" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.$anonfun$from$1 (114 samples, 0.23%)</title><rect x="422.8" y="517" width="2.7" height="15.0" fill="rgb(208,138,34)" rx="2" ry="2" />
<text x="425.85" y="527.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (262 samples, 0.52%)</title><rect x="952.0" y="309" width="6.1" height="15.0" fill="rgb(235,225,14)" rx="2" ry="2" />
<text x="954.99" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (106 samples, 0.21%)</title><rect x="1165.4" y="357" width="2.5" height="15.0" fill="rgb(242,72,18)" rx="2" ry="2" />
<text x="1168.44" y="367.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (227 samples, 0.45%)</title><rect x="1076.3" y="437" width="5.3" height="15.0" fill="rgb(240,38,40)" rx="2" ry="2" />
<text x="1079.32" y="447.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (161 samples, 0.32%)</title><rect x="10.0" y="437" width="3.8" height="15.0" fill="rgb(250,127,41)" rx="2" ry="2" />
<text x="13.00" y="447.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (636 samples, 1.26%)</title><rect x="372.9" y="421" width="14.9" height="15.0" fill="rgb(205,162,17)" rx="2" ry="2" />
<text x="375.90" y="431.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (624 samples, 1.24%)</title><rect x="358.3" y="245" width="14.6" height="15.0" fill="rgb(249,69,31)" rx="2" ry="2" />
<text x="361.29" y="255.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder$ (124 samples, 0.25%)</title><rect x="297.4" y="533" width="2.9" height="15.0" fill="rgb(212,116,24)" rx="2" ry="2" />
<text x="300.39" y="543.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (77 samples, 0.15%)</title><rect x="1187.8" y="213" width="1.8" height="15.0" fill="rgb(212,104,12)" rx="2" ry="2" />
<text x="1190.80" y="223.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (227 samples, 0.45%)</title><rect x="1076.3" y="277" width="5.3" height="15.0" fill="rgb(221,155,19)" rx="2" ry="2" />
<text x="1079.32" y="287.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (2,410 samples, 4.78%)</title><rect x="82.9" y="245" width="56.4" height="15.0" fill="rgb(228,62,10)" rx="2" ry="2" />
<text x="85.91" y="255.5" >org/o..</text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (695 samples, 1.38%)</title><rect x="38.8" y="293" width="16.3" height="15.0" fill="rgb(240,217,47)" rx="2" ry="2" />
<text x="41.82" y="303.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (124 samples, 0.25%)</title><rect x="297.4" y="357" width="2.9" height="15.0" fill="rgb(248,81,22)" rx="2" ry="2" />
<text x="300.39" y="367.5" ></text>
</g>
<g >
<title>scala/collection/mutable/AbstractSeq.&lt;init&gt; (282 samples, 0.56%)</title><rect x="1158.8" y="549" width="6.6" height="15.0" fill="rgb(236,172,23)" rx="2" ry="2" />
<text x="1161.84" y="559.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (5,797 samples, 11.50%)</title><rect x="816.3" y="501" width="135.7" height="15.0" fill="rgb(244,37,18)" rx="2" ry="2" />
<text x="819.26" y="511.5" >example/FizzBuzz...</text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (227 samples, 0.45%)</title><rect x="1076.3" y="533" width="5.3" height="15.0" fill="rgb(236,36,34)" rx="2" ry="2" />
<text x="1079.32" y="543.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (600 samples, 1.19%)</title><rect x="325.3" y="453" width="14.1" height="15.0" fill="rgb(225,93,21)" rx="2" ry="2" />
<text x="328.32" y="463.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (669 samples, 1.33%)</title><rect x="1143.2" y="405" width="15.6" height="15.0" fill="rgb(208,7,25)" rx="2" ry="2" />
<text x="1146.17" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (77 samples, 0.15%)</title><rect x="1187.8" y="325" width="1.8" height="15.0" fill="rgb(219,144,37)" rx="2" ry="2" />
<text x="1190.80" y="335.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (294 samples, 0.58%)</title><rect x="207.1" y="181" width="6.9" height="15.0" fill="rgb(217,179,2)" rx="2" ry="2" />
<text x="210.10" y="191.5" ></text>
</g>
<g >
<title>scala/collection/AbstractTraversable.genericBuilder (230 samples, 0.46%)</title><rect x="1167.9" y="437" width="5.4" height="15.0" fill="rgb(251,168,51)" rx="2" ry="2" />
<text x="1170.92" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (114 samples, 0.23%)</title><rect x="422.8" y="373" width="2.7" height="15.0" fill="rgb(205,178,21)" rx="2" ry="2" />
<text x="425.85" y="383.5" ></text>
</g>
<g >
<title>scala/collection/AbstractTraversable.genericBuilder (329 samples, 0.65%)</title><rect x="300.3" y="421" width="7.7" height="15.0" fill="rgb(223,85,28)" rx="2" ry="2" />
<text x="303.29" y="431.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (124 samples, 0.25%)</title><rect x="297.4" y="213" width="2.9" height="15.0" fill="rgb(244,134,9)" rx="2" ry="2" />
<text x="300.39" y="223.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (312 samples, 0.62%)</title><rect x="143.3" y="437" width="7.3" height="15.0" fill="rgb(233,14,16)" rx="2" ry="2" />
<text x="146.30" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (720 samples, 1.43%)</title><rect x="952.0" y="517" width="16.8" height="15.0" fill="rgb(225,141,23)" rx="2" ry="2" />
<text x="954.99" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (624 samples, 1.24%)</title><rect x="358.3" y="357" width="14.6" height="15.0" fill="rgb(248,39,6)" rx="2" ry="2" />
<text x="361.29" y="367.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (6,345 samples, 12.59%)</title><rect x="425.6" y="245" width="148.6" height="15.0" fill="rgb(225,186,51)" rx="2" ry="2" />
<text x="428.58" y="255.5" >java/util/concurre..</text>
</g>
<g >
<title>scala/collection/AbstractTraversable.genericBuilder (378 samples, 0.75%)</title><rect x="308.0" y="421" width="8.8" height="15.0" fill="rgb(215,44,34)" rx="2" ry="2" />
<text x="311.00" y="431.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (2,410 samples, 4.78%)</title><rect x="82.9" y="325" width="56.4" height="15.0" fill="rgb(246,220,50)" rx="2" ry="2" />
<text x="85.91" y="335.5" >examp..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (329 samples, 0.65%)</title><rect x="300.3" y="357" width="7.7" height="15.0" fill="rgb(207,225,13)" rx="2" ry="2" />
<text x="303.29" y="367.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (740 samples, 1.47%)</title><rect x="387.8" y="309" width="17.3" height="15.0" fill="rgb(221,28,11)" rx="2" ry="2" />
<text x="390.79" y="319.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (5,797 samples, 11.50%)</title><rect x="816.3" y="357" width="135.7" height="15.0" fill="rgb(242,194,26)" rx="2" ry="2" />
<text x="819.26" y="367.5" >org/openjdk/jmh/r..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (227 samples, 0.45%)</title><rect x="1076.3" y="181" width="5.3" height="15.0" fill="rgb(246,80,27)" rx="2" ry="2" />
<text x="1079.32" y="191.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (77 samples, 0.15%)</title><rect x="1187.8" y="293" width="1.8" height="15.0" fill="rgb(207,29,48)" rx="2" ry="2" />
<text x="1190.80" y="303.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (261 samples, 0.52%)</title><rect x="1181.7" y="437" width="6.1" height="15.0" fill="rgb(221,124,9)" rx="2" ry="2" />
<text x="1184.66" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (600 samples, 1.19%)</title><rect x="325.3" y="437" width="14.1" height="15.0" fill="rgb(245,126,19)" rx="2" ry="2" />
<text x="328.32" y="447.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (3,525 samples, 6.99%)</title><rect x="214.1" y="213" width="82.5" height="15.0" fill="rgb(247,131,31)" rx="2" ry="2" />
<text x="217.08" y="223.5" >sun/refle..</text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (134 samples, 0.27%)</title><rect x="150.6" y="229" width="3.1" height="15.0" fill="rgb(229,76,44)" rx="2" ry="2" />
<text x="153.60" y="239.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.newBuilder (106 samples, 0.21%)</title><rect x="1165.4" y="469" width="2.5" height="15.0" fill="rgb(244,35,18)" rx="2" ry="2" />
<text x="1168.44" y="479.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (230 samples, 0.46%)</title><rect x="1167.9" y="181" width="5.4" height="15.0" fill="rgb(221,71,22)" rx="2" ry="2" />
<text x="1170.92" y="191.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (295 samples, 0.59%)</title><rect x="351.4" y="181" width="6.9" height="15.0" fill="rgb(212,19,11)" rx="2" ry="2" />
<text x="354.38" y="191.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (669 samples, 1.33%)</title><rect x="1143.2" y="245" width="15.6" height="15.0" fill="rgb(210,185,33)" rx="2" ry="2" />
<text x="1146.17" y="255.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (227 samples, 0.45%)</title><rect x="1076.3" y="213" width="5.3" height="15.0" fill="rgb(250,182,45)" rx="2" ry="2" />
<text x="1079.32" y="223.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (636 samples, 1.26%)</title><rect x="372.9" y="469" width="14.9" height="15.0" fill="rgb(205,228,27)" rx="2" ry="2" />
<text x="375.90" y="479.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (357 samples, 0.71%)</title><rect x="1173.3" y="309" width="8.4" height="15.0" fill="rgb(249,223,31)" rx="2" ry="2" />
<text x="1176.31" y="319.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (636 samples, 1.26%)</title><rect x="372.9" y="389" width="14.9" height="15.0" fill="rgb(239,144,49)" rx="2" ry="2" />
<text x="375.90" y="399.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (114 samples, 0.23%)</title><rect x="422.8" y="133" width="2.7" height="15.0" fill="rgb(235,56,27)" rx="2" ry="2" />
<text x="425.85" y="143.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (241 samples, 0.48%)</title><rect x="958.1" y="389" width="5.7" height="15.0" fill="rgb(236,66,14)" rx="2" ry="2" />
<text x="961.13" y="399.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (378 samples, 0.75%)</title><rect x="308.0" y="357" width="8.8" height="15.0" fill="rgb(208,86,31)" rx="2" ry="2" />
<text x="311.00" y="367.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (378 samples, 0.75%)</title><rect x="308.0" y="261" width="8.8" height="15.0" fill="rgb(238,4,28)" rx="2" ry="2" />
<text x="311.00" y="271.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (200 samples, 0.40%)</title><rect x="10.0" y="469" width="4.7" height="15.0" fill="rgb(212,186,41)" rx="2" ry="2" />
<text x="13.00" y="479.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (360 samples, 0.71%)</title><rect x="316.8" y="149" width="8.5" height="15.0" fill="rgb(234,81,45)" rx="2" ry="2" />
<text x="319.85" y="159.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (106 samples, 0.21%)</title><rect x="1165.4" y="165" width="2.5" height="15.0" fill="rgb(226,106,29)" rx="2" ry="2" />
<text x="1168.44" y="175.5" ></text>
</g>
<g >
<title>do_futex (64 samples, 0.13%)</title><rect x="36.8" y="485" width="1.5" height="15.0" fill="rgb(225,200,39)" rx="2" ry="2" />
<text x="39.76" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (230 samples, 0.46%)</title><rect x="1167.9" y="325" width="5.4" height="15.0" fill="rgb(244,66,41)" rx="2" ry="2" />
<text x="1170.92" y="335.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (6 samples, 0.01%)</title><rect x="1189.6" y="421" width="0.2" height="15.0" fill="rgb(221,0,26)" rx="2" ry="2" />
<text x="1192.65" y="431.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (60 samples, 0.12%)</title><rect x="139.3" y="357" width="1.4" height="15.0" fill="rgb(240,173,14)" rx="2" ry="2" />
<text x="142.34" y="367.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (6,345 samples, 12.59%)</title><rect x="425.6" y="261" width="148.6" height="15.0" fill="rgb(215,67,40)" rx="2" ry="2" />
<text x="428.58" y="271.5" >java/util/concurre..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (647 samples, 1.28%)</title><rect x="407.7" y="293" width="15.1" height="15.0" fill="rgb(230,208,42)" rx="2" ry="2" />
<text x="410.70" y="303.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (282 samples, 0.56%)</title><rect x="1158.8" y="197" width="6.6" height="15.0" fill="rgb(229,102,5)" rx="2" ry="2" />
<text x="1161.84" y="207.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (230 samples, 0.46%)</title><rect x="1167.9" y="133" width="5.4" height="15.0" fill="rgb(221,48,7)" rx="2" ry="2" />
<text x="1170.92" y="143.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (22,482 samples, 44.61%)</title><rect x="425.6" y="533" width="526.4" height="15.0" fill="rgb(206,115,31)" rx="2" ry="2" />
<text x="428.58" y="543.5" >scala/collection/immutable/Stream$Cons.tail</text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1 (134 samples, 0.27%)</title><rect x="150.6" y="533" width="3.1" height="15.0" fill="rgb(240,100,25)" rx="2" ry="2" />
<text x="153.60" y="543.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (6,345 samples, 12.59%)</title><rect x="425.6" y="389" width="148.6" height="15.0" fill="rgb(230,128,49)" rx="2" ry="2" />
<text x="428.58" y="399.5" >example/generated/..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (134 samples, 0.27%)</title><rect x="150.6" y="437" width="3.1" height="15.0" fill="rgb(206,211,22)" rx="2" ry="2" />
<text x="153.60" y="447.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (3,525 samples, 6.99%)</title><rect x="214.1" y="165" width="82.5" height="15.0" fill="rgb(213,66,38)" rx="2" ry="2" />
<text x="217.08" y="175.5" >org/openj..</text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="55.4" y="501" width="0.2" height="15.0" fill="rgb(247,166,2)" rx="2" ry="2" />
<text x="58.42" y="511.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (624 samples, 1.24%)</title><rect x="358.3" y="149" width="14.6" height="15.0" fill="rgb(245,106,10)" rx="2" ry="2" />
<text x="361.29" y="159.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (3,525 samples, 6.99%)</title><rect x="214.1" y="325" width="82.5" height="15.0" fill="rgb(228,39,29)" rx="2" ry="2" />
<text x="217.08" y="335.5" >scala/col..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (295 samples, 0.59%)</title><rect x="351.4" y="485" width="6.9" height="15.0" fill="rgb(225,5,54)" rx="2" ry="2" />
<text x="354.38" y="495.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (9 samples, 0.02%)</title><rect x="34.5" y="549" width="0.2" height="15.0" fill="rgb(242,116,33)" rx="2" ry="2" />
<text x="37.49" y="559.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (124 samples, 0.25%)</title><rect x="297.4" y="165" width="2.9" height="15.0" fill="rgb(214,146,30)" rx="2" ry="2" />
<text x="300.39" y="175.5" ></text>
</g>
<g >
<title>futex_wait_setup (6 samples, 0.01%)</title><rect x="55.6" y="533" width="0.2" height="15.0" fill="rgb(234,99,45)" rx="2" ry="2" />
<text x="58.63" y="543.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (740 samples, 1.47%)</title><rect x="387.8" y="437" width="17.3" height="15.0" fill="rgb(250,126,36)" rx="2" ry="2" />
<text x="390.79" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (2,278 samples, 4.52%)</title><rect x="153.7" y="405" width="53.4" height="15.0" fill="rgb(225,32,45)" rx="2" ry="2" />
<text x="156.74" y="415.5" >scala..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (312 samples, 0.62%)</title><rect x="143.3" y="181" width="7.3" height="15.0" fill="rgb(215,50,0)" rx="2" ry="2" />
<text x="146.30" y="191.5" ></text>
</g>
<g >
<title>java/lang/invoke/LambdaForm$MH/1302192825.linkToTargetMethod (513 samples, 1.02%)</title><rect x="339.4" y="517" width="12.0" height="15.0" fill="rgb(252,168,1)" rx="2" ry="2" />
<text x="342.37" y="527.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (109 samples, 0.22%)</title><rect x="140.7" y="389" width="2.6" height="15.0" fill="rgb(250,172,21)" rx="2" ry="2" />
<text x="143.75" y="399.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (77 samples, 0.15%)</title><rect x="1187.8" y="437" width="1.8" height="15.0" fill="rgb(236,180,11)" rx="2" ry="2" />
<text x="1190.80" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (110 samples, 0.22%)</title><rect x="405.1" y="421" width="2.6" height="15.0" fill="rgb(253,115,53)" rx="2" ry="2" />
<text x="408.12" y="431.5" ></text>
</g>
<g >
<title>start_thread (34 samples, 0.07%)</title><rect x="13.9" y="453" width="0.8" height="15.0" fill="rgb(216,152,36)" rx="2" ry="2" />
<text x="16.89" y="463.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (6,345 samples, 12.59%)</title><rect x="425.6" y="437" width="148.6" height="15.0" fill="rgb(227,218,19)" rx="2" ry="2" />
<text x="428.58" y="447.5" >example/FizzBuzz.run</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (4,590 samples, 9.11%)</title><rect x="968.8" y="405" width="107.5" height="15.0" fill="rgb(223,226,7)" rx="2" ry="2" />
<text x="971.85" y="415.5" >sun/reflect/N..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (740 samples, 1.47%)</title><rect x="387.8" y="341" width="17.3" height="15.0" fill="rgb(214,75,26)" rx="2" ry="2" />
<text x="390.79" y="351.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (230 samples, 0.46%)</title><rect x="1167.9" y="69" width="5.4" height="15.0" fill="rgb(227,131,30)" rx="2" ry="2" />
<text x="1170.92" y="79.5" ></text>
</g>
<g >
<title>java/lang/invoke/LambdaForm$DMH/872904575.invokeStatic_LI_L (624 samples, 1.24%)</title><rect x="358.3" y="533" width="14.6" height="15.0" fill="rgb(224,101,44)" rx="2" ry="2" />
<text x="361.29" y="543.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (241 samples, 0.48%)</title><rect x="958.1" y="437" width="5.7" height="15.0" fill="rgb(207,93,27)" rx="2" ry="2" />
<text x="961.13" y="447.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (621 samples, 1.23%)</title><rect x="55.9" y="197" width="14.5" height="15.0" fill="rgb(238,2,26)" rx="2" ry="2" />
<text x="58.87" y="207.5" ></text>
</g>
<g >
<title>scala/runtime/BoxesRunTime.unboxToInt (6 samples, 0.01%)</title><rect x="1189.6" y="549" width="0.2" height="15.0" fill="rgb(238,179,49)" rx="2" ry="2" />
<text x="1192.65" y="559.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (6 samples, 0.01%)</title><rect x="1189.6" y="261" width="0.2" height="15.0" fill="rgb(224,98,4)" rx="2" ry="2" />
<text x="1192.65" y="271.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (110 samples, 0.22%)</title><rect x="405.1" y="133" width="2.6" height="15.0" fill="rgb(219,7,43)" rx="2" ry="2" />
<text x="408.12" y="143.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (3,525 samples, 6.99%)</title><rect x="214.1" y="469" width="82.5" height="15.0" fill="rgb(214,80,13)" rx="2" ry="2" />
<text x="217.08" y="479.5" >scala/col..</text>
</g>
<g >
<title>scala/collection/mutable/ListBuffer.&lt;init&gt; (282 samples, 0.56%)</title><rect x="1158.8" y="517" width="6.6" height="15.0" fill="rgb(210,187,36)" rx="2" ry="2" />
<text x="1161.84" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (110 samples, 0.22%)</title><rect x="405.1" y="501" width="2.6" height="15.0" fill="rgb(238,2,35)" rx="2" ry="2" />
<text x="408.12" y="511.5" ></text>
</g>
<g >
<title>scala/runtime/BoxesRunTime.unboxToInt (109 samples, 0.22%)</title><rect x="140.7" y="533" width="2.6" height="15.0" fill="rgb(230,53,17)" rx="2" ry="2" />
<text x="143.75" y="543.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (312 samples, 0.62%)</title><rect x="143.3" y="309" width="7.3" height="15.0" fill="rgb(250,212,52)" rx="2" ry="2" />
<text x="146.30" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (114 samples, 0.23%)</title><rect x="422.8" y="325" width="2.7" height="15.0" fill="rgb(221,153,18)" rx="2" ry="2" />
<text x="425.85" y="335.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (227 samples, 0.45%)</title><rect x="1076.3" y="357" width="5.3" height="15.0" fill="rgb(251,126,41)" rx="2" ry="2" />
<text x="1079.32" y="367.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (282 samples, 0.56%)</title><rect x="1158.8" y="117" width="6.6" height="15.0" fill="rgb(236,105,40)" rx="2" ry="2" />
<text x="1161.84" y="127.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (262 samples, 0.52%)</title><rect x="952.0" y="245" width="6.1" height="15.0" fill="rgb(240,97,44)" rx="2" ry="2" />
<text x="954.99" y="255.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (513 samples, 1.02%)</title><rect x="339.4" y="101" width="12.0" height="15.0" fill="rgb(249,96,51)" rx="2" ry="2" />
<text x="342.37" y="111.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (2,278 samples, 4.52%)</title><rect x="153.7" y="213" width="53.4" height="15.0" fill="rgb(241,218,45)" rx="2" ry="2" />
<text x="156.74" y="223.5" >java/..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (241 samples, 0.48%)</title><rect x="958.1" y="165" width="5.7" height="15.0" fill="rgb(220,190,3)" rx="2" ry="2" />
<text x="961.13" y="175.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (882 samples, 1.75%)</title><rect x="1122.5" y="437" width="20.7" height="15.0" fill="rgb(221,104,40)" rx="2" ry="2" />
<text x="1125.52" y="447.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (262 samples, 0.52%)</title><rect x="952.0" y="421" width="6.1" height="15.0" fill="rgb(230,140,13)" rx="2" ry="2" />
<text x="954.99" y="431.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (261 samples, 0.52%)</title><rect x="1181.7" y="165" width="6.1" height="15.0" fill="rgb(241,117,19)" rx="2" ry="2" />
<text x="1184.66" y="175.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (5,797 samples, 11.50%)</title><rect x="816.3" y="405" width="135.7" height="15.0" fill="rgb(229,139,2)" rx="2" ry="2" />
<text x="819.26" y="415.5" >sun/reflect/Deleg..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (647 samples, 1.28%)</title><rect x="407.7" y="453" width="15.1" height="15.0" fill="rgb(221,36,49)" rx="2" ry="2" />
<text x="410.70" y="463.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder (329 samples, 0.65%)</title><rect x="300.3" y="453" width="7.7" height="15.0" fill="rgb(218,28,32)" rx="2" ry="2" />
<text x="303.29" y="463.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (106 samples, 0.21%)</title><rect x="1165.4" y="181" width="2.5" height="15.0" fill="rgb(240,23,3)" rx="2" ry="2" />
<text x="1168.44" y="191.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (5,797 samples, 11.50%)</title><rect x="816.3" y="485" width="135.7" height="15.0" fill="rgb(220,71,21)" rx="2" ry="2" />
<text x="819.26" y="495.5" >example/FizzBuzzB..</text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (106 samples, 0.21%)</title><rect x="1165.4" y="405" width="2.5" height="15.0" fill="rgb(216,201,15)" rx="2" ry="2" />
<text x="1168.44" y="415.5" ></text>
</g>
<g >
<title>start_thread (6 samples, 0.01%)</title><rect x="13.4" y="405" width="0.2" height="15.0" fill="rgb(211,175,42)" rx="2" ry="2" />
<text x="16.44" y="415.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.get$Lambda (740 samples, 1.47%)</title><rect x="387.8" y="549" width="17.3" height="15.0" fill="rgb(217,146,45)" rx="2" ry="2" />
<text x="390.79" y="559.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (312 samples, 0.62%)</title><rect x="143.3" y="133" width="7.3" height="15.0" fill="rgb(237,1,0)" rx="2" ry="2" />
<text x="146.30" y="143.5" ></text>
</g>
<g >
<title>scala/collection/mutable/ListBuffer.&lt;init&gt; (357 samples, 0.71%)</title><rect x="1173.3" y="517" width="8.4" height="15.0" fill="rgb(231,2,15)" rx="2" ry="2" />
<text x="1176.31" y="527.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder$ (329 samples, 0.65%)</title><rect x="300.3" y="437" width="7.7" height="15.0" fill="rgb(236,34,8)" rx="2" ry="2" />
<text x="303.29" y="447.5" ></text>
</g>
<g >
<title>start_thread (7 samples, 0.01%)</title><rect x="13.3" y="389" width="0.1" height="15.0" fill="rgb(219,152,5)" rx="2" ry="2" />
<text x="16.28" y="399.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (6,345 samples, 12.59%)</title><rect x="425.6" y="469" width="148.6" height="15.0" fill="rgb(210,213,40)" rx="2" ry="2" />
<text x="428.58" y="479.5" >scala/collection/i..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (647 samples, 1.28%)</title><rect x="407.7" y="421" width="15.1" height="15.0" fill="rgb(208,177,37)" rx="2" ry="2" />
<text x="410.70" y="431.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (60 samples, 0.12%)</title><rect x="139.3" y="453" width="1.4" height="15.0" fill="rgb(207,22,29)" rx="2" ry="2" />
<text x="142.34" y="463.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (295 samples, 0.59%)</title><rect x="351.4" y="437" width="6.9" height="15.0" fill="rgb(243,62,42)" rx="2" ry="2" />
<text x="354.38" y="447.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (624 samples, 1.24%)</title><rect x="358.3" y="213" width="14.6" height="15.0" fill="rgb(210,194,13)" rx="2" ry="2" />
<text x="361.29" y="223.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (1,746 samples, 3.46%)</title><rect x="1081.6" y="533" width="40.9" height="15.0" fill="rgb(211,224,33)" rx="2" ry="2" />
<text x="1084.64" y="543.5" >exa..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$StreamBuilder.&lt;init&gt; (360 samples, 0.71%)</title><rect x="316.8" y="485" width="8.5" height="15.0" fill="rgb(223,45,35)" rx="2" ry="2" />
<text x="319.85" y="495.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (114 samples, 0.23%)</title><rect x="422.8" y="261" width="2.7" height="15.0" fill="rgb(213,213,20)" rx="2" ry="2" />
<text x="425.85" y="271.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (513 samples, 1.02%)</title><rect x="339.4" y="261" width="12.0" height="15.0" fill="rgb(233,213,29)" rx="2" ry="2" />
<text x="342.37" y="271.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (109 samples, 0.22%)</title><rect x="140.7" y="469" width="2.6" height="15.0" fill="rgb(207,143,37)" rx="2" ry="2" />
<text x="143.75" y="479.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (882 samples, 1.75%)</title><rect x="1122.5" y="197" width="20.7" height="15.0" fill="rgb(239,181,22)" rx="2" ry="2" />
<text x="1125.52" y="207.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (312 samples, 0.62%)</title><rect x="143.3" y="165" width="7.3" height="15.0" fill="rgb(211,34,17)" rx="2" ry="2" />
<text x="146.30" y="175.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (282 samples, 0.56%)</title><rect x="1158.8" y="309" width="6.6" height="15.0" fill="rgb(221,104,5)" rx="2" ry="2" />
<text x="1161.84" y="319.5" ></text>
</g>
<g >
<title>scala/collection/AbstractTraversable.genericBuilder (360 samples, 0.71%)</title><rect x="316.8" y="421" width="8.5" height="15.0" fill="rgb(248,28,50)" rx="2" ry="2" />
<text x="319.85" y="431.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (282 samples, 0.56%)</title><rect x="1158.8" y="389" width="6.6" height="15.0" fill="rgb(239,3,52)" rx="2" ry="2" />
<text x="1161.84" y="399.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (624 samples, 1.24%)</title><rect x="358.3" y="341" width="14.6" height="15.0" fill="rgb(227,35,19)" rx="2" ry="2" />
<text x="361.29" y="351.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (329 samples, 0.65%)</title><rect x="300.3" y="53" width="7.7" height="15.0" fill="rgb(245,161,1)" rx="2" ry="2" />
<text x="303.29" y="63.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (624 samples, 1.24%)</title><rect x="358.3" y="405" width="14.6" height="15.0" fill="rgb(229,85,22)" rx="2" ry="2" />
<text x="361.29" y="415.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (227 samples, 0.45%)</title><rect x="1076.3" y="293" width="5.3" height="15.0" fill="rgb(219,138,11)" rx="2" ry="2" />
<text x="1079.32" y="303.5" ></text>
</g>
<g >
<title>scala/collection/mutable/ListBuffer.&lt;init&gt; (106 samples, 0.21%)</title><rect x="1165.4" y="517" width="2.5" height="15.0" fill="rgb(251,167,42)" rx="2" ry="2" />
<text x="1168.44" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (513 samples, 1.02%)</title><rect x="339.4" y="293" width="12.0" height="15.0" fill="rgb(239,39,52)" rx="2" ry="2" />
<text x="342.37" y="303.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (882 samples, 1.75%)</title><rect x="1122.5" y="229" width="20.7" height="15.0" fill="rgb(216,8,14)" rx="2" ry="2" />
<text x="1125.52" y="239.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (295 samples, 0.59%)</title><rect x="351.4" y="341" width="6.9" height="15.0" fill="rgb(248,36,19)" rx="2" ry="2" />
<text x="354.38" y="351.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder (378 samples, 0.75%)</title><rect x="308.0" y="453" width="8.8" height="15.0" fill="rgb(242,84,30)" rx="2" ry="2" />
<text x="311.00" y="463.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (241 samples, 0.48%)</title><rect x="958.1" y="181" width="5.7" height="15.0" fill="rgb(206,90,23)" rx="2" ry="2" />
<text x="961.13" y="191.5" ></text>
</g>
<g >
<title>scala/collection/mutable/LazyBuilder.&lt;init&gt; (106 samples, 0.21%)</title><rect x="1165.4" y="501" width="2.5" height="15.0" fill="rgb(252,196,15)" rx="2" ry="2" />
<text x="1168.44" y="511.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1$adapted (6 samples, 0.01%)</title><rect x="1189.6" y="533" width="0.2" height="15.0" fill="rgb(229,216,17)" rx="2" ry="2" />
<text x="1192.65" y="543.5" ></text>
</g>
<g >
<title>example/FizzBuzz$$Lambda$11/459636526.apply (109 samples, 0.22%)</title><rect x="140.7" y="501" width="2.6" height="15.0" fill="rgb(247,214,42)" rx="2" ry="2" />
<text x="143.75" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (1,746 samples, 3.46%)</title><rect x="1081.6" y="549" width="40.9" height="15.0" fill="rgb(219,170,6)" rx="2" ry="2" />
<text x="1084.64" y="559.5" >sca..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (621 samples, 1.23%)</title><rect x="55.9" y="341" width="14.5" height="15.0" fill="rgb(240,88,14)" rx="2" ry="2" />
<text x="58.87" y="351.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (695 samples, 1.38%)</title><rect x="38.8" y="421" width="16.3" height="15.0" fill="rgb(232,45,54)" rx="2" ry="2" />
<text x="41.82" y="431.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (695 samples, 1.38%)</title><rect x="38.8" y="245" width="16.3" height="15.0" fill="rgb(237,104,2)" rx="2" ry="2" />
<text x="41.82" y="255.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (8 samples, 0.02%)</title><rect x="38.5" y="485" width="0.2" height="15.0" fill="rgb(237,217,39)" rx="2" ry="2" />
<text x="41.50" y="495.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (77 samples, 0.15%)</title><rect x="1187.8" y="277" width="1.8" height="15.0" fill="rgb(212,51,32)" rx="2" ry="2" />
<text x="1190.80" y="287.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (357 samples, 0.71%)</title><rect x="1173.3" y="261" width="8.4" height="15.0" fill="rgb(240,218,52)" rx="2" ry="2" />
<text x="1176.31" y="271.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1 (695 samples, 1.38%)</title><rect x="38.8" y="549" width="16.3" height="15.0" fill="rgb(222,206,21)" rx="2" ry="2" />
<text x="41.82" y="559.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (60 samples, 0.12%)</title><rect x="139.3" y="405" width="1.4" height="15.0" fill="rgb(251,129,53)" rx="2" ry="2" />
<text x="142.34" y="415.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (230 samples, 0.46%)</title><rect x="1167.9" y="389" width="5.4" height="15.0" fill="rgb(225,95,29)" rx="2" ry="2" />
<text x="1170.92" y="399.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (217 samples, 0.43%)</title><rect x="963.8" y="469" width="5.0" height="15.0" fill="rgb(227,213,43)" rx="2" ry="2" />
<text x="966.77" y="479.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (360 samples, 0.71%)</title><rect x="316.8" y="293" width="8.5" height="15.0" fill="rgb(237,208,17)" rx="2" ry="2" />
<text x="319.85" y="303.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (1,746 samples, 3.46%)</title><rect x="1081.6" y="325" width="40.9" height="15.0" fill="rgb(209,67,11)" rx="2" ry="2" />
<text x="1084.64" y="335.5" >jav..</text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (115 samples, 0.23%)</title><rect x="574.2" y="309" width="2.6" height="15.0" fill="rgb(208,193,40)" rx="2" ry="2" />
<text x="577.15" y="319.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (110 samples, 0.22%)</title><rect x="405.1" y="213" width="2.6" height="15.0" fill="rgb(218,189,18)" rx="2" ry="2" />
<text x="408.12" y="223.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (695 samples, 1.38%)</title><rect x="38.8" y="357" width="16.3" height="15.0" fill="rgb(254,178,13)" rx="2" ry="2" />
<text x="41.82" y="367.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (6,345 samples, 12.59%)</title><rect x="425.6" y="197" width="148.6" height="15.0" fill="rgb(252,113,49)" rx="2" ry="2" />
<text x="428.58" y="207.5" >java/lang/Thread.run</text>
</g>
<g >
<title>example/FizzBuzz.run (669 samples, 1.33%)</title><rect x="1143.2" y="309" width="15.6" height="15.0" fill="rgb(230,120,15)" rx="2" ry="2" />
<text x="1146.17" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (60 samples, 0.12%)</title><rect x="139.3" y="517" width="1.4" height="15.0" fill="rgb(222,168,32)" rx="2" ry="2" />
<text x="142.34" y="527.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (166 samples, 0.33%)</title><rect x="10.0" y="453" width="3.9" height="15.0" fill="rgb(215,210,2)" rx="2" ry="2" />
<text x="13.00" y="463.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (513 samples, 1.02%)</title><rect x="339.4" y="53" width="12.0" height="15.0" fill="rgb(215,150,41)" rx="2" ry="2" />
<text x="342.37" y="63.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1$adapted (695 samples, 1.38%)</title><rect x="38.8" y="533" width="16.3" height="15.0" fill="rgb(210,124,45)" rx="2" ry="2" />
<text x="41.82" y="543.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (262 samples, 0.52%)</title><rect x="952.0" y="501" width="6.1" height="15.0" fill="rgb(221,98,47)" rx="2" ry="2" />
<text x="954.99" y="511.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (261 samples, 0.52%)</title><rect x="1181.7" y="101" width="6.1" height="15.0" fill="rgb(225,150,40)" rx="2" ry="2" />
<text x="1184.66" y="111.5" ></text>
</g>
<g >
<title>scala/collection/mutable/LazyBuilder.&lt;init&gt; (360 samples, 0.71%)</title><rect x="316.8" y="501" width="8.5" height="15.0" fill="rgb(251,64,50)" rx="2" ry="2" />
<text x="319.85" y="511.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (669 samples, 1.33%)</title><rect x="1143.2" y="197" width="15.6" height="15.0" fill="rgb(209,204,6)" rx="2" ry="2" />
<text x="1146.17" y="207.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (360 samples, 0.71%)</title><rect x="316.8" y="405" width="8.5" height="15.0" fill="rgb(244,91,34)" rx="2" ry="2" />
<text x="319.85" y="415.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (533 samples, 1.06%)</title><rect x="70.4" y="341" width="12.5" height="15.0" fill="rgb(253,55,42)" rx="2" ry="2" />
<text x="73.41" y="351.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (77 samples, 0.15%)</title><rect x="1187.8" y="165" width="1.8" height="15.0" fill="rgb(237,188,20)" rx="2" ry="2" />
<text x="1190.80" y="175.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (3,525 samples, 6.99%)</title><rect x="214.1" y="149" width="82.5" height="15.0" fill="rgb(209,166,54)" rx="2" ry="2" />
<text x="217.08" y="159.5" >org/openj..</text>
</g>
<g >
<title>java/lang/Thread.run (2,410 samples, 4.78%)</title><rect x="82.9" y="133" width="56.4" height="15.0" fill="rgb(252,207,6)" rx="2" ry="2" />
<text x="85.91" y="143.5" >java/..</text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (378 samples, 0.75%)</title><rect x="308.0" y="309" width="8.8" height="15.0" fill="rgb(223,175,49)" rx="2" ry="2" />
<text x="311.00" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (669 samples, 1.33%)</title><rect x="1143.2" y="389" width="15.6" height="15.0" fill="rgb(241,162,41)" rx="2" ry="2" />
<text x="1146.17" y="399.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (10,225 samples, 20.29%)</title><rect x="576.8" y="373" width="239.5" height="15.0" fill="rgb(205,144,40)" rx="2" ry="2" />
<text x="579.84" y="383.5" >example/FizzBuzz.run</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (114 samples, 0.23%)</title><rect x="422.8" y="245" width="2.7" height="15.0" fill="rgb(252,77,22)" rx="2" ry="2" />
<text x="425.85" y="255.5" ></text>
</g>
<g >
<title>scala/collection/mutable/AbstractBuffer.&lt;init&gt; (360 samples, 0.71%)</title><rect x="316.8" y="533" width="8.5" height="15.0" fill="rgb(234,31,51)" rx="2" ry="2" />
<text x="319.85" y="543.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (647 samples, 1.28%)</title><rect x="407.7" y="117" width="15.1" height="15.0" fill="rgb(209,76,29)" rx="2" ry="2" />
<text x="410.70" y="127.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (217 samples, 0.43%)</title><rect x="963.8" y="309" width="5.0" height="15.0" fill="rgb(228,96,8)" rx="2" ry="2" />
<text x="966.77" y="319.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (357 samples, 0.71%)</title><rect x="1173.3" y="69" width="8.4" height="15.0" fill="rgb(240,170,48)" rx="2" ry="2" />
<text x="1176.31" y="79.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$$Lambda$9/428362883.get$Lambda (513 samples, 1.02%)</title><rect x="339.4" y="549" width="12.0" height="15.0" fill="rgb(216,175,8)" rx="2" ry="2" />
<text x="342.37" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (513 samples, 1.02%)</title><rect x="339.4" y="405" width="12.0" height="15.0" fill="rgb(240,83,13)" rx="2" ry="2" />
<text x="342.37" y="415.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$StreamBuilder.&lt;init&gt; (230 samples, 0.46%)</title><rect x="1167.9" y="501" width="5.4" height="15.0" fill="rgb(223,224,40)" rx="2" ry="2" />
<text x="1170.92" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="55.6" y="453" width="0.2" height="15.0" fill="rgb(249,47,22)" rx="2" ry="2" />
<text x="58.63" y="463.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (8 samples, 0.02%)</title><rect x="38.5" y="437" width="0.2" height="15.0" fill="rgb(219,47,30)" rx="2" ry="2" />
<text x="41.50" y="447.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (624 samples, 1.24%)</title><rect x="358.3" y="309" width="14.6" height="15.0" fill="rgb(247,151,22)" rx="2" ry="2" />
<text x="361.29" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$StreamBuilder.&lt;init&gt; (378 samples, 0.75%)</title><rect x="308.0" y="485" width="8.8" height="15.0" fill="rgb(217,17,50)" rx="2" ry="2" />
<text x="311.00" y="495.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (295 samples, 0.59%)</title><rect x="351.4" y="245" width="6.9" height="15.0" fill="rgb(232,107,19)" rx="2" ry="2" />
<text x="354.38" y="255.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (636 samples, 1.26%)</title><rect x="372.9" y="293" width="14.9" height="15.0" fill="rgb(225,183,3)" rx="2" ry="2" />
<text x="375.90" y="303.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (114 samples, 0.23%)</title><rect x="422.8" y="437" width="2.7" height="15.0" fill="rgb(208,41,2)" rx="2" ry="2" />
<text x="425.85" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (115 samples, 0.23%)</title><rect x="574.2" y="485" width="2.6" height="15.0" fill="rgb(219,142,54)" rx="2" ry="2" />
<text x="577.15" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.$anonfun$from$1 (3,529 samples, 7.00%)</title><rect x="214.0" y="501" width="82.6" height="15.0" fill="rgb(254,99,3)" rx="2" ry="2" />
<text x="216.99" y="511.5" >scala/col..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (6,345 samples, 12.59%)</title><rect x="425.6" y="357" width="148.6" height="15.0" fill="rgb(249,120,4)" rx="2" ry="2" />
<text x="428.58" y="367.5" >sun/reflect/Native..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (2,278 samples, 4.52%)</title><rect x="153.7" y="309" width="53.4" height="15.0" fill="rgb(242,182,16)" rx="2" ry="2" />
<text x="156.74" y="319.5" >sun/r..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (114 samples, 0.23%)</title><rect x="422.8" y="229" width="2.7" height="15.0" fill="rgb(242,178,12)" rx="2" ry="2" />
<text x="425.85" y="239.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.get$Lambda (624 samples, 1.24%)</title><rect x="358.3" y="549" width="14.6" height="15.0" fill="rgb(224,172,31)" rx="2" ry="2" />
<text x="361.29" y="559.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (513 samples, 1.02%)</title><rect x="339.4" y="245" width="12.0" height="15.0" fill="rgb(207,49,15)" rx="2" ry="2" />
<text x="342.37" y="255.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (621 samples, 1.23%)</title><rect x="55.9" y="309" width="14.5" height="15.0" fill="rgb(206,85,46)" rx="2" ry="2" />
<text x="58.87" y="319.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (621 samples, 1.23%)</title><rect x="55.9" y="293" width="14.5" height="15.0" fill="rgb(221,154,24)" rx="2" ry="2" />
<text x="58.87" y="303.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (1,746 samples, 3.46%)</title><rect x="1081.6" y="469" width="40.9" height="15.0" fill="rgb(241,47,7)" rx="2" ry="2" />
<text x="1084.64" y="479.5" >sun..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (241 samples, 0.48%)</title><rect x="958.1" y="421" width="5.7" height="15.0" fill="rgb(209,148,30)" rx="2" ry="2" />
<text x="961.13" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$take$2 (10,340 samples, 20.52%)</title><rect x="574.2" y="517" width="242.1" height="15.0" fill="rgb(222,152,42)" rx="2" ry="2" />
<text x="577.15" y="527.5" >scala/collection/immutable/Strea..</text>
</g>
<g >
<title>example/FizzBuzz.run (109 samples, 0.22%)</title><rect x="140.7" y="405" width="2.6" height="15.0" fill="rgb(208,91,35)" rx="2" ry="2" />
<text x="143.75" y="415.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder (357 samples, 0.71%)</title><rect x="1173.3" y="453" width="8.4" height="15.0" fill="rgb(224,73,18)" rx="2" ry="2" />
<text x="1176.31" y="463.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (2,410 samples, 4.78%)</title><rect x="82.9" y="277" width="56.4" height="15.0" fill="rgb(211,127,18)" rx="2" ry="2" />
<text x="85.91" y="287.5" >sun/r..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (740 samples, 1.47%)</title><rect x="387.8" y="261" width="17.3" height="15.0" fill="rgb(227,216,6)" rx="2" ry="2" />
<text x="390.79" y="271.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (1,746 samples, 3.46%)</title><rect x="1081.6" y="405" width="40.9" height="15.0" fill="rgb(243,93,7)" rx="2" ry="2" />
<text x="1084.64" y="415.5" >org..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (115 samples, 0.23%)</title><rect x="574.2" y="197" width="2.6" height="15.0" fill="rgb(241,6,51)" rx="2" ry="2" />
<text x="577.15" y="207.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (3,525 samples, 6.99%)</title><rect x="214.1" y="261" width="82.5" height="15.0" fill="rgb(239,56,23)" rx="2" ry="2" />
<text x="217.08" y="271.5" >example/g..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (6 samples, 0.01%)</title><rect x="1189.6" y="197" width="0.2" height="15.0" fill="rgb(226,60,20)" rx="2" ry="2" />
<text x="1192.65" y="207.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (282 samples, 0.56%)</title><rect x="1158.8" y="261" width="6.6" height="15.0" fill="rgb(213,70,40)" rx="2" ry="2" />
<text x="1161.84" y="271.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (6,345 samples, 12.59%)</title><rect x="425.6" y="373" width="148.6" height="15.0" fill="rgb(234,175,41)" rx="2" ry="2" />
<text x="428.58" y="383.5" >sun/reflect/Native..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (114 samples, 0.23%)</title><rect x="422.8" y="117" width="2.7" height="15.0" fill="rgb(219,37,12)" rx="2" ry="2" />
<text x="425.85" y="127.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (114 samples, 0.23%)</title><rect x="422.8" y="181" width="2.7" height="15.0" fill="rgb(246,225,41)" rx="2" ry="2" />
<text x="425.85" y="191.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (6 samples, 0.01%)</title><rect x="1189.6" y="341" width="0.2" height="15.0" fill="rgb(254,125,38)" rx="2" ry="2" />
<text x="1192.65" y="351.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (636 samples, 1.26%)</title><rect x="372.9" y="437" width="14.9" height="15.0" fill="rgb(228,162,24)" rx="2" ry="2" />
<text x="375.90" y="447.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder (282 samples, 0.56%)</title><rect x="1158.8" y="453" width="6.6" height="15.0" fill="rgb(226,39,11)" rx="2" ry="2" />
<text x="1161.84" y="463.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (294 samples, 0.58%)</title><rect x="207.1" y="197" width="6.9" height="15.0" fill="rgb(237,173,29)" rx="2" ry="2" />
<text x="210.10" y="207.5" ></text>
</g>
<g >
<title>do_futex (6 samples, 0.01%)</title><rect x="55.4" y="533" width="0.2" height="15.0" fill="rgb(224,61,14)" rx="2" ry="2" />
<text x="58.42" y="543.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (329 samples, 0.65%)</title><rect x="300.3" y="197" width="7.7" height="15.0" fill="rgb(240,165,15)" rx="2" ry="2" />
<text x="303.29" y="207.5" ></text>
</g>
<g >
<title>[unknown] (7 samples, 0.01%)</title><rect x="34.5" y="469" width="0.2" height="15.0" fill="rgb(243,67,43)" rx="2" ry="2" />
<text x="37.54" y="479.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (109 samples, 0.22%)</title><rect x="140.7" y="293" width="2.6" height="15.0" fill="rgb(205,183,15)" rx="2" ry="2" />
<text x="143.75" y="303.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (2,410 samples, 4.78%)</title><rect x="82.9" y="357" width="56.4" height="15.0" fill="rgb(253,157,38)" rx="2" ry="2" />
<text x="85.91" y="367.5" >examp..</text>
</g>
<g >
<title>example/FizzBuzz$$Lambda$11/459636526.apply (2,410 samples, 4.78%)</title><rect x="82.9" y="469" width="56.4" height="15.0" fill="rgb(236,60,46)" rx="2" ry="2" />
<text x="85.91" y="479.5" >examp..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (22,482 samples, 44.61%)</title><rect x="425.6" y="549" width="526.4" height="15.0" fill="rgb(213,117,2)" rx="2" ry="2" />
<text x="428.58" y="559.5" >scala/collection/immutable/Stream$Cons.tail</text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (1,746 samples, 3.46%)</title><rect x="1081.6" y="437" width="40.9" height="15.0" fill="rgb(233,9,34)" rx="2" ry="2" />
<text x="1084.64" y="447.5" >sun..</text>
</g>
<g >
<title>example/FizzBuzz.run (230 samples, 0.46%)</title><rect x="1167.9" y="309" width="5.4" height="15.0" fill="rgb(224,85,28)" rx="2" ry="2" />
<text x="1170.92" y="319.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (227 samples, 0.45%)</title><rect x="1076.3" y="389" width="5.3" height="15.0" fill="rgb(252,138,32)" rx="2" ry="2" />
<text x="1079.32" y="399.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (360 samples, 0.71%)</title><rect x="316.8" y="373" width="8.5" height="15.0" fill="rgb(252,2,33)" rx="2" ry="2" />
<text x="319.85" y="383.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (282 samples, 0.56%)</title><rect x="1158.8" y="277" width="6.6" height="15.0" fill="rgb(245,105,41)" rx="2" ry="2" />
<text x="1161.84" y="287.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (621 samples, 1.23%)</title><rect x="55.9" y="421" width="14.5" height="15.0" fill="rgb(254,56,4)" rx="2" ry="2" />
<text x="58.87" y="431.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (60 samples, 0.12%)</title><rect x="139.3" y="341" width="1.4" height="15.0" fill="rgb(219,12,19)" rx="2" ry="2" />
<text x="142.34" y="351.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (3,525 samples, 6.99%)</title><rect x="214.1" y="53" width="82.5" height="15.0" fill="rgb(249,194,51)" rx="2" ry="2" />
<text x="217.08" y="63.5" >java/lang..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (114 samples, 0.23%)</title><rect x="422.8" y="277" width="2.7" height="15.0" fill="rgb(219,192,45)" rx="2" ry="2" />
<text x="425.85" y="287.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (106 samples, 0.21%)</title><rect x="1165.4" y="341" width="2.5" height="15.0" fill="rgb(247,55,24)" rx="2" ry="2" />
<text x="1168.44" y="351.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (124 samples, 0.25%)</title><rect x="297.4" y="149" width="2.9" height="15.0" fill="rgb(225,96,16)" rx="2" ry="2" />
<text x="300.39" y="159.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (669 samples, 1.33%)</title><rect x="1143.2" y="293" width="15.6" height="15.0" fill="rgb(238,51,27)" rx="2" ry="2" />
<text x="1146.17" y="303.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (360 samples, 0.71%)</title><rect x="316.8" y="245" width="8.5" height="15.0" fill="rgb(216,165,31)" rx="2" ry="2" />
<text x="319.85" y="255.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (740 samples, 1.47%)</title><rect x="387.8" y="245" width="17.3" height="15.0" fill="rgb(206,100,27)" rx="2" ry="2" />
<text x="390.79" y="255.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (1,154 samples, 2.29%)</title><rect x="55.9" y="533" width="27.0" height="15.0" fill="rgb(233,155,8)" rx="2" ry="2" />
<text x="58.87" y="543.5" >s..</text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (2,278 samples, 4.52%)</title><rect x="153.7" y="261" width="53.4" height="15.0" fill="rgb(222,130,22)" rx="2" ry="2" />
<text x="156.74" y="271.5" >org/o..</text>
</g>
<g >
<title>scala/collection/generic/Growable.$init$ (329 samples, 0.65%)</title><rect x="300.3" y="549" width="7.7" height="15.0" fill="rgb(235,223,33)" rx="2" ry="2" />
<text x="303.29" y="559.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (740 samples, 1.47%)</title><rect x="387.8" y="277" width="17.3" height="15.0" fill="rgb(210,218,13)" rx="2" ry="2" />
<text x="390.79" y="287.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (282 samples, 0.56%)</title><rect x="1158.8" y="341" width="6.6" height="15.0" fill="rgb(245,188,39)" rx="2" ry="2" />
<text x="1161.84" y="351.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (695 samples, 1.38%)</title><rect x="38.8" y="453" width="16.3" height="15.0" fill="rgb(227,129,9)" rx="2" ry="2" />
<text x="41.82" y="463.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (8 samples, 0.02%)</title><rect x="36.0" y="501" width="0.2" height="15.0" fill="rgb(251,23,50)" rx="2" ry="2" />
<text x="39.01" y="511.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (1,032 samples, 2.05%)</title><rect x="10.0" y="549" width="24.2" height="15.0" fill="rgb(223,133,48)" rx="2" ry="2" />
<text x="13.00" y="559.5" >/..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (134 samples, 0.27%)</title><rect x="150.6" y="245" width="3.1" height="15.0" fill="rgb(231,51,11)" rx="2" ry="2" />
<text x="153.60" y="255.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (295 samples, 0.59%)</title><rect x="351.4" y="277" width="6.9" height="15.0" fill="rgb(236,70,8)" rx="2" ry="2" />
<text x="354.38" y="287.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (882 samples, 1.75%)</title><rect x="1122.5" y="149" width="20.7" height="15.0" fill="rgb(205,176,41)" rx="2" ry="2" />
<text x="1125.52" y="159.5" ></text>
</g>
<g >
<title>example/FizzBuzz$$Lambda$11/459636526.apply (294 samples, 0.58%)</title><rect x="207.1" y="485" width="6.9" height="15.0" fill="rgb(252,170,2)" rx="2" ry="2" />
<text x="210.10" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (4,590 samples, 9.11%)</title><rect x="968.8" y="533" width="107.5" height="15.0" fill="rgb(251,172,37)" rx="2" ry="2" />
<text x="971.85" y="543.5" >scala/collect..</text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (533 samples, 1.06%)</title><rect x="70.4" y="309" width="12.5" height="15.0" fill="rgb(238,86,43)" rx="2" ry="2" />
<text x="73.41" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (106 samples, 0.21%)</title><rect x="1165.4" y="373" width="2.5" height="15.0" fill="rgb(230,176,34)" rx="2" ry="2" />
<text x="1168.44" y="383.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (5,797 samples, 11.50%)</title><rect x="816.3" y="389" width="135.7" height="15.0" fill="rgb(223,114,13)" rx="2" ry="2" />
<text x="819.26" y="399.5" >java/lang/reflect..</text>
</g>
<g >
<title>java/lang/Thread.run (2,278 samples, 4.52%)</title><rect x="153.7" y="149" width="53.4" height="15.0" fill="rgb(248,137,38)" rx="2" ry="2" />
<text x="156.74" y="159.5" >java/..</text>
</g>
<g >
<title>example/FizzBuzz.run (636 samples, 1.26%)</title><rect x="372.9" y="485" width="14.9" height="15.0" fill="rgb(251,190,37)" rx="2" ry="2" />
<text x="375.90" y="495.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (124 samples, 0.25%)</title><rect x="297.4" y="485" width="2.9" height="15.0" fill="rgb(242,87,53)" rx="2" ry="2" />
<text x="300.39" y="495.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (282 samples, 0.56%)</title><rect x="1158.8" y="69" width="6.6" height="15.0" fill="rgb(238,27,36)" rx="2" ry="2" />
<text x="1161.84" y="79.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (217 samples, 0.43%)</title><rect x="963.8" y="389" width="5.0" height="15.0" fill="rgb(222,172,53)" rx="2" ry="2" />
<text x="966.77" y="399.5" ></text>
</g>
<g >
<title>wake_up_q (64 samples, 0.13%)</title><rect x="36.8" y="517" width="1.5" height="15.0" fill="rgb(207,41,3)" rx="2" ry="2" />
<text x="39.76" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (4,590 samples, 9.11%)</title><rect x="968.8" y="501" width="107.5" height="15.0" fill="rgb(239,38,17)" rx="2" ry="2" />
<text x="971.85" y="511.5" >scala/collect..</text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (647 samples, 1.28%)</title><rect x="407.7" y="213" width="15.1" height="15.0" fill="rgb(237,165,47)" rx="2" ry="2" />
<text x="410.70" y="223.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (312 samples, 0.62%)</title><rect x="143.3" y="421" width="7.3" height="15.0" fill="rgb(215,90,7)" rx="2" ry="2" />
<text x="146.30" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (624 samples, 1.24%)</title><rect x="358.3" y="469" width="14.6" height="15.0" fill="rgb(217,194,5)" rx="2" ry="2" />
<text x="361.29" y="479.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (740 samples, 1.47%)</title><rect x="387.8" y="213" width="17.3" height="15.0" fill="rgb(224,116,32)" rx="2" ry="2" />
<text x="390.79" y="223.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (312 samples, 0.62%)</title><rect x="143.3" y="277" width="7.3" height="15.0" fill="rgb(225,120,42)" rx="2" ry="2" />
<text x="146.30" y="287.5" ></text>
</g>
<g >
<title>__pthread_disable_asynccancel (6 samples, 0.01%)</title><rect x="35.7" y="549" width="0.1" height="15.0" fill="rgb(213,14,7)" rx="2" ry="2" />
<text x="38.69" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$.newBuilder (230 samples, 0.46%)</title><rect x="1167.9" y="485" width="5.4" height="15.0" fill="rgb(232,45,50)" rx="2" ry="2" />
<text x="1170.92" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (262 samples, 0.52%)</title><rect x="952.0" y="469" width="6.1" height="15.0" fill="rgb(254,148,42)" rx="2" ry="2" />
<text x="954.99" y="479.5" ></text>
</g>
<g >
<title>get_futex_value_locked (6 samples, 0.01%)</title><rect x="55.6" y="549" width="0.2" height="15.0" fill="rgb(214,182,5)" rx="2" ry="2" />
<text x="58.63" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (4,590 samples, 9.11%)</title><rect x="968.8" y="517" width="107.5" height="15.0" fill="rgb(227,47,18)" rx="2" ry="2" />
<text x="971.85" y="527.5" >scala/collect..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (695 samples, 1.38%)</title><rect x="38.8" y="229" width="16.3" height="15.0" fill="rgb(244,206,27)" rx="2" ry="2" />
<text x="41.82" y="239.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (295 samples, 0.59%)</title><rect x="351.4" y="261" width="6.9" height="15.0" fill="rgb(245,89,6)" rx="2" ry="2" />
<text x="354.38" y="271.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (261 samples, 0.52%)</title><rect x="1181.7" y="357" width="6.1" height="15.0" fill="rgb(235,160,44)" rx="2" ry="2" />
<text x="1184.66" y="367.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (261 samples, 0.52%)</title><rect x="1181.7" y="309" width="6.1" height="15.0" fill="rgb(225,52,36)" rx="2" ry="2" />
<text x="1184.66" y="319.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (2,410 samples, 4.78%)</title><rect x="82.9" y="165" width="56.4" height="15.0" fill="rgb(246,89,13)" rx="2" ry="2" />
<text x="85.91" y="175.5" >java/..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (6,345 samples, 12.59%)</title><rect x="425.6" y="213" width="148.6" height="15.0" fill="rgb(249,212,17)" rx="2" ry="2" />
<text x="428.58" y="223.5" >java/util/concurre..</text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (8 samples, 0.02%)</title><rect x="38.5" y="517" width="0.2" height="15.0" fill="rgb(249,45,41)" rx="2" ry="2" />
<text x="41.50" y="527.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (124 samples, 0.25%)</title><rect x="297.4" y="181" width="2.9" height="15.0" fill="rgb(214,159,24)" rx="2" ry="2" />
<text x="300.39" y="191.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (740 samples, 1.47%)</title><rect x="387.8" y="373" width="17.3" height="15.0" fill="rgb(244,98,13)" rx="2" ry="2" />
<text x="390.79" y="383.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (115 samples, 0.23%)</title><rect x="574.2" y="277" width="2.6" height="15.0" fill="rgb(205,15,11)" rx="2" ry="2" />
<text x="577.15" y="287.5" ></text>
</g>
<g >
<title>java/lang/invoke/LambdaForm$MH/1820628360.linkToTargetMethod (624 samples, 1.24%)</title><rect x="358.3" y="517" width="14.6" height="15.0" fill="rgb(221,112,19)" rx="2" ry="2" />
<text x="361.29" y="527.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (115 samples, 0.23%)</title><rect x="574.2" y="341" width="2.6" height="15.0" fill="rgb(249,15,11)" rx="2" ry="2" />
<text x="577.15" y="351.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (624 samples, 1.24%)</title><rect x="358.3" y="277" width="14.6" height="15.0" fill="rgb(205,65,14)" rx="2" ry="2" />
<text x="361.29" y="287.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (647 samples, 1.28%)</title><rect x="407.7" y="485" width="15.1" height="15.0" fill="rgb(208,53,15)" rx="2" ry="2" />
<text x="410.70" y="495.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (669 samples, 1.33%)</title><rect x="1143.2" y="277" width="15.6" height="15.0" fill="rgb(218,25,9)" rx="2" ry="2" />
<text x="1146.17" y="287.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (5,797 samples, 11.50%)</title><rect x="816.3" y="309" width="135.7" height="15.0" fill="rgb(213,29,16)" rx="2" ry="2" />
<text x="819.26" y="319.5" >java/util/concurr..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (227 samples, 0.45%)</title><rect x="1076.3" y="325" width="5.3" height="15.0" fill="rgb(227,130,8)" rx="2" ry="2" />
<text x="1079.32" y="335.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (106 samples, 0.21%)</title><rect x="1165.4" y="261" width="2.5" height="15.0" fill="rgb(253,151,24)" rx="2" ry="2" />
<text x="1168.44" y="271.5" ></text>
</g>
<g >
<title>java/lang/Integer.valueOf (3,823 samples, 7.59%)</title><rect x="207.1" y="549" width="89.5" height="15.0" fill="rgb(239,229,31)" rx="2" ry="2" />
<text x="210.10" y="559.5" >java/lang/..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (6 samples, 0.01%)</title><rect x="1189.6" y="469" width="0.2" height="15.0" fill="rgb(206,53,11)" rx="2" ry="2" />
<text x="1192.65" y="479.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (3,525 samples, 6.99%)</title><rect x="214.1" y="181" width="82.5" height="15.0" fill="rgb(222,101,25)" rx="2" ry="2" />
<text x="217.08" y="191.5" >java/lang..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (378 samples, 0.75%)</title><rect x="308.0" y="133" width="8.8" height="15.0" fill="rgb(245,174,22)" rx="2" ry="2" />
<text x="311.00" y="143.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (110 samples, 0.22%)</title><rect x="405.1" y="309" width="2.6" height="15.0" fill="rgb(205,161,30)" rx="2" ry="2" />
<text x="408.12" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$take$2 (624 samples, 1.24%)</title><rect x="358.3" y="485" width="14.6" height="15.0" fill="rgb(228,150,23)" rx="2" ry="2" />
<text x="361.29" y="495.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (360 samples, 0.71%)</title><rect x="316.8" y="101" width="8.5" height="15.0" fill="rgb(253,160,50)" rx="2" ry="2" />
<text x="319.85" y="111.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (882 samples, 1.75%)</title><rect x="1122.5" y="389" width="20.7" height="15.0" fill="rgb(250,221,22)" rx="2" ry="2" />
<text x="1125.52" y="399.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (124 samples, 0.25%)</title><rect x="297.4" y="405" width="2.9" height="15.0" fill="rgb(223,203,50)" rx="2" ry="2" />
<text x="300.39" y="415.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (6 samples, 0.01%)</title><rect x="55.6" y="437" width="0.2" height="15.0" fill="rgb(226,191,27)" rx="2" ry="2" />
<text x="58.63" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.take (624 samples, 1.24%)</title><rect x="358.3" y="501" width="14.6" height="15.0" fill="rgb(215,223,7)" rx="2" ry="2" />
<text x="361.29" y="511.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder$ (282 samples, 0.56%)</title><rect x="1158.8" y="437" width="6.6" height="15.0" fill="rgb(246,133,29)" rx="2" ry="2" />
<text x="1161.84" y="447.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (695 samples, 1.38%)</title><rect x="38.8" y="389" width="16.3" height="15.0" fill="rgb(233,111,42)" rx="2" ry="2" />
<text x="41.82" y="399.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (241 samples, 0.48%)</title><rect x="958.1" y="469" width="5.7" height="15.0" fill="rgb(236,143,24)" rx="2" ry="2" />
<text x="961.13" y="479.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (106 samples, 0.21%)</title><rect x="1165.4" y="53" width="2.5" height="15.0" fill="rgb(242,228,50)" rx="2" ry="2" />
<text x="1168.44" y="63.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (230 samples, 0.46%)</title><rect x="1167.9" y="101" width="5.4" height="15.0" fill="rgb(231,2,22)" rx="2" ry="2" />
<text x="1170.92" y="111.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (4,590 samples, 9.11%)</title><rect x="968.8" y="245" width="107.5" height="15.0" fill="rgb(245,185,35)" rx="2" ry="2" />
<text x="971.85" y="255.5" >java/util/con..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (4,590 samples, 9.11%)</title><rect x="968.8" y="437" width="107.5" height="15.0" fill="rgb(241,169,50)" rx="2" ry="2" />
<text x="971.85" y="447.5" >example/gener..</text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (513 samples, 1.02%)</title><rect x="339.4" y="133" width="12.0" height="15.0" fill="rgb(240,155,41)" rx="2" ry="2" />
<text x="342.37" y="143.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (109 samples, 0.22%)</title><rect x="140.7" y="309" width="2.6" height="15.0" fill="rgb(216,122,23)" rx="2" ry="2" />
<text x="143.75" y="319.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (329 samples, 0.65%)</title><rect x="300.3" y="405" width="7.7" height="15.0" fill="rgb(211,213,27)" rx="2" ry="2" />
<text x="303.29" y="415.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (217 samples, 0.43%)</title><rect x="963.8" y="341" width="5.0" height="15.0" fill="rgb(249,228,49)" rx="2" ry="2" />
<text x="966.77" y="351.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (110 samples, 0.22%)</title><rect x="405.1" y="517" width="2.6" height="15.0" fill="rgb(220,101,45)" rx="2" ry="2" />
<text x="408.12" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (77 samples, 0.15%)</title><rect x="1187.8" y="485" width="1.8" height="15.0" fill="rgb(222,20,12)" rx="2" ry="2" />
<text x="1190.80" y="495.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (360 samples, 0.71%)</title><rect x="316.8" y="309" width="8.5" height="15.0" fill="rgb(254,50,32)" rx="2" ry="2" />
<text x="319.85" y="319.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (77 samples, 0.15%)</title><rect x="1187.8" y="261" width="1.8" height="15.0" fill="rgb(210,103,3)" rx="2" ry="2" />
<text x="1190.80" y="271.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (110 samples, 0.22%)</title><rect x="405.1" y="181" width="2.6" height="15.0" fill="rgb(208,173,37)" rx="2" ry="2" />
<text x="408.12" y="191.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (621 samples, 1.23%)</title><rect x="55.9" y="453" width="14.5" height="15.0" fill="rgb(251,58,9)" rx="2" ry="2" />
<text x="58.87" y="463.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (10,225 samples, 20.29%)</title><rect x="576.8" y="469" width="239.5" height="15.0" fill="rgb(239,137,42)" rx="2" ry="2" />
<text x="579.84" y="479.5" >scala/collection/immutable/Stre..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (636 samples, 1.26%)</title><rect x="372.9" y="453" width="14.9" height="15.0" fill="rgb(229,169,54)" rx="2" ry="2" />
<text x="375.90" y="463.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (533 samples, 1.06%)</title><rect x="70.4" y="453" width="12.5" height="15.0" fill="rgb(242,131,16)" rx="2" ry="2" />
<text x="73.41" y="463.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (261 samples, 0.52%)</title><rect x="1181.7" y="229" width="6.1" height="15.0" fill="rgb(238,105,9)" rx="2" ry="2" />
<text x="1184.66" y="239.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (981 samples, 1.95%)</title><rect x="10.0" y="501" width="23.0" height="15.0" fill="rgb(207,18,40)" rx="2" ry="2" />
<text x="13.00" y="511.5" >/..</text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (513 samples, 1.02%)</title><rect x="339.4" y="357" width="12.0" height="15.0" fill="rgb(229,121,5)" rx="2" ry="2" />
<text x="342.37" y="367.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (261 samples, 0.52%)</title><rect x="1181.7" y="85" width="6.1" height="15.0" fill="rgb(241,177,27)" rx="2" ry="2" />
<text x="1184.66" y="95.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (636 samples, 1.26%)</title><rect x="372.9" y="341" width="14.9" height="15.0" fill="rgb(237,149,31)" rx="2" ry="2" />
<text x="375.90" y="351.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (134 samples, 0.27%)</title><rect x="150.6" y="469" width="3.1" height="15.0" fill="rgb(245,207,11)" rx="2" ry="2" />
<text x="153.60" y="479.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (8 samples, 0.02%)</title><rect x="38.5" y="469" width="0.2" height="15.0" fill="rgb(216,179,10)" rx="2" ry="2" />
<text x="41.50" y="479.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (115 samples, 0.23%)</title><rect x="574.2" y="389" width="2.6" height="15.0" fill="rgb(218,24,10)" rx="2" ry="2" />
<text x="577.15" y="399.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (114 samples, 0.23%)</title><rect x="422.8" y="165" width="2.7" height="15.0" fill="rgb(213,98,26)" rx="2" ry="2" />
<text x="425.85" y="175.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (3,525 samples, 6.99%)</title><rect x="214.1" y="245" width="82.5" height="15.0" fill="rgb(243,86,17)" rx="2" ry="2" />
<text x="217.08" y="255.5" >example/g..</text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (241 samples, 0.48%)</title><rect x="958.1" y="213" width="5.7" height="15.0" fill="rgb(209,158,43)" rx="2" ry="2" />
<text x="961.13" y="223.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (282 samples, 0.56%)</title><rect x="1158.8" y="229" width="6.6" height="15.0" fill="rgb(236,157,37)" rx="2" ry="2" />
<text x="1161.84" y="239.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (647 samples, 1.28%)</title><rect x="407.7" y="437" width="15.1" height="15.0" fill="rgb(228,228,38)" rx="2" ry="2" />
<text x="410.70" y="447.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (134 samples, 0.27%)</title><rect x="150.6" y="181" width="3.1" height="15.0" fill="rgb(247,174,26)" rx="2" ry="2" />
<text x="153.60" y="191.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (115 samples, 0.23%)</title><rect x="574.2" y="405" width="2.6" height="15.0" fill="rgb(241,229,46)" rx="2" ry="2" />
<text x="577.15" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (282 samples, 0.56%)</title><rect x="1158.8" y="213" width="6.6" height="15.0" fill="rgb(241,67,4)" rx="2" ry="2" />
<text x="1161.84" y="223.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (378 samples, 0.75%)</title><rect x="308.0" y="341" width="8.8" height="15.0" fill="rgb(240,139,54)" rx="2" ry="2" />
<text x="311.00" y="351.5" ></text>
</g>
<g >
<title>scala/runtime/BoxesRunTime.boxToInteger (79 samples, 0.16%)</title><rect x="1187.8" y="549" width="1.8" height="15.0" fill="rgb(236,222,24)" rx="2" ry="2" />
<text x="1190.80" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (2,278 samples, 4.52%)</title><rect x="153.7" y="421" width="53.4" height="15.0" fill="rgb(230,188,40)" rx="2" ry="2" />
<text x="156.74" y="431.5" >scala..</text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (294 samples, 0.58%)</title><rect x="207.1" y="293" width="6.9" height="15.0" fill="rgb(221,37,16)" rx="2" ry="2" />
<text x="210.10" y="303.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (4,590 samples, 9.11%)</title><rect x="968.8" y="549" width="107.5" height="15.0" fill="rgb(236,102,27)" rx="2" ry="2" />
<text x="971.85" y="559.5" >scala/collect..</text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$take$2 (3,525 samples, 6.99%)</title><rect x="214.1" y="437" width="82.5" height="15.0" fill="rgb(229,132,40)" rx="2" ry="2" />
<text x="217.08" y="447.5" >scala/col..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (60 samples, 0.12%)</title><rect x="139.3" y="501" width="1.4" height="15.0" fill="rgb(245,28,14)" rx="2" ry="2" />
<text x="142.34" y="511.5" ></text>
</g>
<g >
<title>example/FizzBuzz$$Lambda$11/459636526.apply (312 samples, 0.62%)</title><rect x="143.3" y="469" width="7.3" height="15.0" fill="rgb(210,48,44)" rx="2" ry="2" />
<text x="146.30" y="479.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder$ (106 samples, 0.21%)</title><rect x="1165.4" y="437" width="2.5" height="15.0" fill="rgb(235,207,21)" rx="2" ry="2" />
<text x="1168.44" y="447.5" ></text>
</g>
<g >
<title>java/lang/invoke/LambdaForm$DMH/1471070082.invokeStatic_II_L (513 samples, 1.02%)</title><rect x="339.4" y="533" width="12.0" height="15.0" fill="rgb(238,178,26)" rx="2" ry="2" />
<text x="342.37" y="543.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (636 samples, 1.26%)</title><rect x="372.9" y="261" width="14.9" height="15.0" fill="rgb(230,31,30)" rx="2" ry="2" />
<text x="375.90" y="271.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (647 samples, 1.28%)</title><rect x="407.7" y="149" width="15.1" height="15.0" fill="rgb(213,49,1)" rx="2" ry="2" />
<text x="410.70" y="159.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (114 samples, 0.23%)</title><rect x="422.8" y="213" width="2.7" height="15.0" fill="rgb(244,27,7)" rx="2" ry="2" />
<text x="425.85" y="223.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (295 samples, 0.59%)</title><rect x="351.4" y="453" width="6.9" height="15.0" fill="rgb(213,73,53)" rx="2" ry="2" />
<text x="354.38" y="463.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (621 samples, 1.23%)</title><rect x="55.9" y="213" width="14.5" height="15.0" fill="rgb(234,115,50)" rx="2" ry="2" />
<text x="58.87" y="223.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (227 samples, 0.45%)</title><rect x="1076.3" y="229" width="5.3" height="15.0" fill="rgb(224,133,29)" rx="2" ry="2" />
<text x="1079.32" y="239.5" ></text>
</g>
<g >
<title>start_thread (11 samples, 0.02%)</title><rect x="10.1" y="357" width="0.2" height="15.0" fill="rgb(252,113,13)" rx="2" ry="2" />
<text x="13.07" y="367.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (217 samples, 0.43%)</title><rect x="963.8" y="245" width="5.0" height="15.0" fill="rgb(224,23,17)" rx="2" ry="2" />
<text x="966.77" y="255.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (64 samples, 0.13%)</title><rect x="36.8" y="421" width="1.5" height="15.0" fill="rgb(227,195,24)" rx="2" ry="2" />
<text x="39.76" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (294 samples, 0.58%)</title><rect x="207.1" y="405" width="6.9" height="15.0" fill="rgb(223,59,28)" rx="2" ry="2" />
<text x="210.10" y="415.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (513 samples, 1.02%)</title><rect x="339.4" y="149" width="12.0" height="15.0" fill="rgb(217,212,28)" rx="2" ry="2" />
<text x="342.37" y="159.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (6 samples, 0.01%)</title><rect x="1189.6" y="309" width="0.2" height="15.0" fill="rgb(225,145,6)" rx="2" ry="2" />
<text x="1192.65" y="319.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (77 samples, 0.15%)</title><rect x="1187.8" y="309" width="1.8" height="15.0" fill="rgb(234,205,32)" rx="2" ry="2" />
<text x="1190.80" y="319.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (4,590 samples, 9.11%)</title><rect x="968.8" y="277" width="107.5" height="15.0" fill="rgb(213,211,23)" rx="2" ry="2" />
<text x="971.85" y="287.5" >java/util/con..</text>
</g>
<g >
<title>__x64_sys_futex (6 samples, 0.01%)</title><rect x="55.4" y="517" width="0.2" height="15.0" fill="rgb(253,62,34)" rx="2" ry="2" />
<text x="58.42" y="527.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (295 samples, 0.59%)</title><rect x="351.4" y="533" width="6.9" height="15.0" fill="rgb(216,137,5)" rx="2" ry="2" />
<text x="354.38" y="543.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (357 samples, 0.71%)</title><rect x="1173.3" y="213" width="8.4" height="15.0" fill="rgb(245,136,37)" rx="2" ry="2" />
<text x="1176.31" y="223.5" ></text>
</g>
<g >
<title>__x64_sys_futex (6 samples, 0.01%)</title><rect x="55.6" y="485" width="0.2" height="15.0" fill="rgb(213,56,16)" rx="2" ry="2" />
<text x="58.63" y="495.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (115 samples, 0.23%)</title><rect x="574.2" y="325" width="2.6" height="15.0" fill="rgb(222,24,39)" rx="2" ry="2" />
<text x="577.15" y="335.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (134 samples, 0.27%)</title><rect x="150.6" y="309" width="3.1" height="15.0" fill="rgb(223,157,26)" rx="2" ry="2" />
<text x="153.60" y="319.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1 (2,410 samples, 4.78%)</title><rect x="82.9" y="501" width="56.4" height="15.0" fill="rgb(212,100,28)" rx="2" ry="2" />
<text x="85.91" y="511.5" >examp..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (134 samples, 0.27%)</title><rect x="150.6" y="357" width="3.1" height="15.0" fill="rgb(250,192,25)" rx="2" ry="2" />
<text x="153.60" y="367.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (360 samples, 0.71%)</title><rect x="316.8" y="341" width="8.5" height="15.0" fill="rgb(220,51,35)" rx="2" ry="2" />
<text x="319.85" y="351.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (295 samples, 0.59%)</title><rect x="351.4" y="373" width="6.9" height="15.0" fill="rgb(219,74,52)" rx="2" ry="2" />
<text x="354.38" y="383.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (294 samples, 0.58%)</title><rect x="207.1" y="453" width="6.9" height="15.0" fill="rgb(249,199,26)" rx="2" ry="2" />
<text x="210.10" y="463.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (294 samples, 0.58%)</title><rect x="207.1" y="421" width="6.9" height="15.0" fill="rgb(228,59,54)" rx="2" ry="2" />
<text x="210.10" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (6 samples, 0.01%)</title><rect x="1189.6" y="437" width="0.2" height="15.0" fill="rgb(248,215,42)" rx="2" ry="2" />
<text x="1192.65" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (227 samples, 0.45%)</title><rect x="1076.3" y="469" width="5.3" height="15.0" fill="rgb(251,167,45)" rx="2" ry="2" />
<text x="1079.32" y="479.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder (106 samples, 0.21%)</title><rect x="1165.4" y="453" width="2.5" height="15.0" fill="rgb(243,42,35)" rx="2" ry="2" />
<text x="1168.44" y="463.5" ></text>
</g>
<g >
<title>scala/collection/mutable/LazyBuilder.&lt;init&gt; (329 samples, 0.65%)</title><rect x="300.3" y="501" width="7.7" height="15.0" fill="rgb(246,0,51)" rx="2" ry="2" />
<text x="303.29" y="511.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (2,278 samples, 4.52%)</title><rect x="153.7" y="389" width="53.4" height="15.0" fill="rgb(244,222,29)" rx="2" ry="2" />
<text x="156.74" y="399.5" >examp..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.03%)</title><rect x="38.4" y="533" width="0.4" height="15.0" fill="rgb(221,79,5)" rx="2" ry="2" />
<text x="41.43" y="543.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (230 samples, 0.46%)</title><rect x="1167.9" y="117" width="5.4" height="15.0" fill="rgb(254,181,44)" rx="2" ry="2" />
<text x="1170.92" y="127.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (4,590 samples, 9.11%)</title><rect x="968.8" y="293" width="107.5" height="15.0" fill="rgb(254,47,46)" rx="2" ry="2" />
<text x="971.85" y="303.5" >java/util/con..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (669 samples, 1.33%)</title><rect x="1143.2" y="117" width="15.6" height="15.0" fill="rgb(206,58,34)" rx="2" ry="2" />
<text x="1146.17" y="127.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (357 samples, 0.71%)</title><rect x="1173.3" y="245" width="8.4" height="15.0" fill="rgb(220,42,36)" rx="2" ry="2" />
<text x="1176.31" y="255.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (740 samples, 1.47%)</title><rect x="387.8" y="469" width="17.3" height="15.0" fill="rgb(234,106,28)" rx="2" ry="2" />
<text x="390.79" y="479.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$10/229084538.apply (110 samples, 0.22%)</title><rect x="405.1" y="469" width="2.6" height="15.0" fill="rgb(233,69,30)" rx="2" ry="2" />
<text x="408.12" y="479.5" ></text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (4,590 samples, 9.11%)</title><rect x="968.8" y="453" width="107.5" height="15.0" fill="rgb(249,21,29)" rx="2" ry="2" />
<text x="971.85" y="463.5" >example/FizzB..</text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (1,746 samples, 3.46%)</title><rect x="1081.6" y="501" width="40.9" height="15.0" fill="rgb(206,58,4)" rx="2" ry="2" />
<text x="1084.64" y="511.5" >exa..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (2,410 samples, 4.78%)</title><rect x="82.9" y="181" width="56.4" height="15.0" fill="rgb(238,27,53)" rx="2" ry="2" />
<text x="85.91" y="191.5" >java/..</text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (357 samples, 0.71%)</title><rect x="1173.3" y="181" width="8.4" height="15.0" fill="rgb(236,140,15)" rx="2" ry="2" />
<text x="1176.31" y="191.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (695 samples, 1.38%)</title><rect x="38.8" y="341" width="16.3" height="15.0" fill="rgb(246,74,32)" rx="2" ry="2" />
<text x="41.82" y="351.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (227 samples, 0.45%)</title><rect x="1076.3" y="421" width="5.3" height="15.0" fill="rgb(253,158,15)" rx="2" ry="2" />
<text x="1079.32" y="431.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (600 samples, 1.19%)</title><rect x="325.3" y="149" width="14.1" height="15.0" fill="rgb(220,110,16)" rx="2" ry="2" />
<text x="328.32" y="159.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (513 samples, 1.02%)</title><rect x="339.4" y="389" width="12.0" height="15.0" fill="rgb(227,217,27)" rx="2" ry="2" />
<text x="342.37" y="399.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (5,797 samples, 11.50%)</title><rect x="816.3" y="373" width="135.7" height="15.0" fill="rgb(216,36,3)" rx="2" ry="2" />
<text x="819.26" y="383.5" >org/openjdk/jmh/r..</text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (312 samples, 0.62%)</title><rect x="143.3" y="197" width="7.3" height="15.0" fill="rgb(216,82,27)" rx="2" ry="2" />
<text x="146.30" y="207.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (329 samples, 0.65%)</title><rect x="300.3" y="117" width="7.7" height="15.0" fill="rgb(210,153,13)" rx="2" ry="2" />
<text x="303.29" y="127.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1 (312 samples, 0.62%)</title><rect x="143.3" y="501" width="7.3" height="15.0" fill="rgb(205,115,51)" rx="2" ry="2" />
<text x="146.30" y="511.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (294 samples, 0.58%)</title><rect x="207.1" y="469" width="6.9" height="15.0" fill="rgb(240,100,8)" rx="2" ry="2" />
<text x="210.10" y="479.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (261 samples, 0.52%)</title><rect x="1181.7" y="149" width="6.1" height="15.0" fill="rgb(232,112,34)" rx="2" ry="2" />
<text x="1184.66" y="159.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (110 samples, 0.22%)</title><rect x="405.1" y="437" width="2.6" height="15.0" fill="rgb(239,107,51)" rx="2" ry="2" />
<text x="408.12" y="447.5" ></text>
</g>
<g >
<title>java/util/concurrent/Executors$RunnableAdapter.call (636 samples, 1.26%)</title><rect x="372.9" y="309" width="14.9" height="15.0" fill="rgb(242,203,17)" rx="2" ry="2" />
<text x="375.90" y="319.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder$ (378 samples, 0.75%)</title><rect x="308.0" y="437" width="8.8" height="15.0" fill="rgb(210,224,46)" rx="2" ry="2" />
<text x="311.00" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (882 samples, 1.75%)</title><rect x="1122.5" y="501" width="20.7" height="15.0" fill="rgb(232,88,7)" rx="2" ry="2" />
<text x="1125.52" y="511.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (669 samples, 1.33%)</title><rect x="1143.2" y="149" width="15.6" height="15.0" fill="rgb(252,184,37)" rx="2" ry="2" />
<text x="1146.17" y="159.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (533 samples, 1.06%)</title><rect x="70.4" y="261" width="12.5" height="15.0" fill="rgb(247,112,32)" rx="2" ry="2" />
<text x="73.41" y="271.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (621 samples, 1.23%)</title><rect x="55.9" y="373" width="14.5" height="15.0" fill="rgb(247,139,40)" rx="2" ry="2" />
<text x="58.87" y="383.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1$adapted (2,279 samples, 4.52%)</title><rect x="153.7" y="501" width="53.4" height="15.0" fill="rgb(206,82,9)" rx="2" ry="2" />
<text x="156.74" y="511.5" >examp..</text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (114 samples, 0.23%)</title><rect x="422.8" y="85" width="2.7" height="15.0" fill="rgb(242,163,18)" rx="2" ry="2" />
<text x="425.85" y="95.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (624 samples, 1.24%)</title><rect x="358.3" y="437" width="14.6" height="15.0" fill="rgb(250,11,33)" rx="2" ry="2" />
<text x="361.29" y="447.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (621 samples, 1.23%)</title><rect x="55.9" y="261" width="14.5" height="15.0" fill="rgb(250,124,36)" rx="2" ry="2" />
<text x="58.87" y="271.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (329 samples, 0.65%)</title><rect x="300.3" y="389" width="7.7" height="15.0" fill="rgb(231,223,17)" rx="2" ry="2" />
<text x="303.29" y="399.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (8 samples, 0.02%)</title><rect x="36.0" y="485" width="0.2" height="15.0" fill="rgb(206,172,33)" rx="2" ry="2" />
<text x="39.01" y="495.5" ></text>
</g>
<g >
<title>scala/collection/mutable/AbstractBuffer.&lt;init&gt; (669 samples, 1.33%)</title><rect x="1143.2" y="549" width="15.6" height="15.0" fill="rgb(234,150,8)" rx="2" ry="2" />
<text x="1146.17" y="559.5" ></text>
</g>
<g >
<title>/usr/lib/jvm/java-8-openjdk/jre/lib/amd64/server/libjvm.so (8 samples, 0.02%)</title><rect x="36.0" y="533" width="0.2" height="15.0" fill="rgb(237,60,4)" rx="2" ry="2" />
<text x="39.01" y="543.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (124 samples, 0.25%)</title><rect x="297.4" y="325" width="2.9" height="15.0" fill="rgb(224,93,53)" rx="2" ry="2" />
<text x="300.39" y="335.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (35 samples, 0.07%)</title><rect x="34.9" y="549" width="0.8" height="15.0" fill="rgb(218,131,14)" rx="2" ry="2" />
<text x="37.87" y="559.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$take$2 (114 samples, 0.23%)</title><rect x="422.8" y="453" width="2.7" height="15.0" fill="rgb(246,3,41)" rx="2" ry="2" />
<text x="425.85" y="463.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (312 samples, 0.62%)</title><rect x="143.3" y="213" width="7.3" height="15.0" fill="rgb(237,43,15)" rx="2" ry="2" />
<text x="146.30" y="223.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (636 samples, 1.26%)</title><rect x="372.9" y="373" width="14.9" height="15.0" fill="rgb(218,144,34)" rx="2" ry="2" />
<text x="375.90" y="383.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (115 samples, 0.23%)</title><rect x="574.2" y="373" width="2.6" height="15.0" fill="rgb(247,14,51)" rx="2" ry="2" />
<text x="577.15" y="383.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (261 samples, 0.52%)</title><rect x="1181.7" y="213" width="6.1" height="15.0" fill="rgb(236,190,9)" rx="2" ry="2" />
<text x="1184.66" y="223.5" ></text>
</g>
<g >
<title>scala/collection/mutable/AbstractBuffer.&lt;init&gt; (357 samples, 0.71%)</title><rect x="1173.3" y="533" width="8.4" height="15.0" fill="rgb(208,56,4)" rx="2" ry="2" />
<text x="1176.31" y="543.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (513 samples, 1.02%)</title><rect x="339.4" y="229" width="12.0" height="15.0" fill="rgb(250,21,26)" rx="2" ry="2" />
<text x="342.37" y="239.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (77 samples, 0.15%)</title><rect x="1187.8" y="245" width="1.8" height="15.0" fill="rgb(218,166,54)" rx="2" ry="2" />
<text x="1190.80" y="255.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (115 samples, 0.23%)</title><rect x="574.2" y="453" width="2.6" height="15.0" fill="rgb(232,142,31)" rx="2" ry="2" />
<text x="577.15" y="463.5" ></text>
</g>
<g >
<title>start_thread (7 samples, 0.01%)</title><rect x="36.0" y="453" width="0.2" height="15.0" fill="rgb(224,138,32)" rx="2" ry="2" />
<text x="39.04" y="463.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (513 samples, 1.02%)</title><rect x="339.4" y="277" width="12.0" height="15.0" fill="rgb(230,102,17)" rx="2" ry="2" />
<text x="342.37" y="287.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (6 samples, 0.01%)</title><rect x="1189.6" y="325" width="0.2" height="15.0" fill="rgb(232,92,1)" rx="2" ry="2" />
<text x="1192.65" y="335.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (241 samples, 0.48%)</title><rect x="958.1" y="453" width="5.7" height="15.0" fill="rgb(251,214,7)" rx="2" ry="2" />
<text x="961.13" y="463.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (10,225 samples, 20.29%)</title><rect x="576.8" y="405" width="239.5" height="15.0" fill="rgb(224,49,1)" rx="2" ry="2" />
<text x="579.84" y="415.5" >scala/collection/immutable/Stre..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (2,278 samples, 4.52%)</title><rect x="153.7" y="229" width="53.4" height="15.0" fill="rgb(247,28,26)" rx="2" ry="2" />
<text x="156.74" y="239.5" >java/..</text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (1,746 samples, 3.46%)</title><rect x="1081.6" y="373" width="40.9" height="15.0" fill="rgb(224,102,16)" rx="2" ry="2" />
<text x="1084.64" y="383.5" >jav..</text>
</g>
<g >
<title>java/lang/invoke/LambdaForm$MH/1147891823.linkToTargetMethod (740 samples, 1.47%)</title><rect x="387.8" y="517" width="17.3" height="15.0" fill="rgb(208,188,25)" rx="2" ry="2" />
<text x="390.79" y="527.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (669 samples, 1.33%)</title><rect x="1143.2" y="101" width="15.6" height="15.0" fill="rgb(205,32,53)" rx="2" ry="2" />
<text x="1146.17" y="111.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (378 samples, 0.75%)</title><rect x="308.0" y="293" width="8.8" height="15.0" fill="rgb(219,95,23)" rx="2" ry="2" />
<text x="311.00" y="303.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (600 samples, 1.19%)</title><rect x="325.3" y="245" width="14.1" height="15.0" fill="rgb(253,121,33)" rx="2" ry="2" />
<text x="328.32" y="255.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (261 samples, 0.52%)</title><rect x="1181.7" y="181" width="6.1" height="15.0" fill="rgb(223,175,42)" rx="2" ry="2" />
<text x="1184.66" y="191.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (114 samples, 0.23%)</title><rect x="422.8" y="69" width="2.7" height="15.0" fill="rgb(211,144,48)" rx="2" ry="2" />
<text x="425.85" y="79.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (230 samples, 0.46%)</title><rect x="1167.9" y="245" width="5.4" height="15.0" fill="rgb(216,24,6)" rx="2" ry="2" />
<text x="1170.92" y="255.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (4,590 samples, 9.11%)</title><rect x="968.8" y="325" width="107.5" height="15.0" fill="rgb(206,188,12)" rx="2" ry="2" />
<text x="971.85" y="335.5" >org/openjdk/j..</text>
</g>
<g >
<title>example/FizzBuzzBenchmark.run (6 samples, 0.01%)</title><rect x="1189.6" y="405" width="0.2" height="15.0" fill="rgb(240,163,54)" rx="2" ry="2" />
<text x="1192.65" y="415.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (294 samples, 0.58%)</title><rect x="207.1" y="149" width="6.9" height="15.0" fill="rgb(206,68,43)" rx="2" ry="2" />
<text x="210.10" y="159.5" ></text>
</g>
<g >
<title>start_thread (5 samples, 0.01%)</title><rect x="13.8" y="437" width="0.1" height="15.0" fill="rgb(215,211,17)" rx="2" ry="2" />
<text x="16.77" y="447.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (106 samples, 0.21%)</title><rect x="1165.4" y="309" width="2.5" height="15.0" fill="rgb(217,3,17)" rx="2" ry="2" />
<text x="1168.44" y="319.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream$Cons.tail (636 samples, 1.26%)</title><rect x="372.9" y="517" width="14.9" height="15.0" fill="rgb(212,84,9)" rx="2" ry="2" />
<text x="375.90" y="527.5" ></text>
</g>
<g >
<title>example/FizzBuzz.run (312 samples, 0.62%)</title><rect x="143.3" y="373" width="7.3" height="15.0" fill="rgb(246,131,50)" rx="2" ry="2" />
<text x="146.30" y="383.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (230 samples, 0.46%)</title><rect x="1167.9" y="229" width="5.4" height="15.0" fill="rgb(219,69,53)" rx="2" ry="2" />
<text x="1170.92" y="239.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (6 samples, 0.01%)</title><rect x="1189.6" y="501" width="0.2" height="15.0" fill="rgb(234,79,39)" rx="2" ry="2" />
<text x="1192.65" y="511.5" ></text>
</g>
<g >
<title>scala/collection/AbstractTraversable.genericBuilder (357 samples, 0.71%)</title><rect x="1173.3" y="421" width="8.4" height="15.0" fill="rgb(242,15,32)" rx="2" ry="2" />
<text x="1176.31" y="431.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (378 samples, 0.75%)</title><rect x="308.0" y="373" width="8.8" height="15.0" fill="rgb(246,92,18)" rx="2" ry="2" />
<text x="311.00" y="383.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (740 samples, 1.47%)</title><rect x="387.8" y="357" width="17.3" height="15.0" fill="rgb(240,205,32)" rx="2" ry="2" />
<text x="390.79" y="367.5" ></text>
</g>
<g >
<title>scala/collection/immutable/Stream.$anonfun$map$1 (2,278 samples, 4.52%)</title><rect x="153.7" y="469" width="53.4" height="15.0" fill="rgb(221,216,5)" rx="2" ry="2" />
<text x="156.74" y="479.5" >scala..</text>
</g>
<g >
<title>scala/collection/immutable/Stream$$Lambda$13/1785410984.apply (357 samples, 0.71%)</title><rect x="1173.3" y="357" width="8.4" height="15.0" fill="rgb(214,120,23)" rx="2" ry="2" />
<text x="1176.31" y="367.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (10,225 samples, 20.29%)</title><rect x="576.8" y="293" width="239.5" height="15.0" fill="rgb(239,42,43)" rx="2" ry="2" />
<text x="579.84" y="303.5" >sun/reflect/NativeMethodAccesso..</text>
</g>
<g >
<title>java/lang/Thread.run (4,590 samples, 9.11%)</title><rect x="968.8" y="229" width="107.5" height="15.0" fill="rgb(216,51,45)" rx="2" ry="2" />
<text x="971.85" y="239.5" >java/lang/Thr..</text>
</g>
<g >
<title>scala/collection/immutable/Stream.foreach (2,410 samples, 4.78%)</title><rect x="82.9" y="389" width="56.4" height="15.0" fill="rgb(254,85,5)" rx="2" ry="2" />
<text x="85.91" y="399.5" >scala..</text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl.invoke (110 samples, 0.22%)</title><rect x="405.1" y="261" width="2.6" height="15.0" fill="rgb(207,2,8)" rx="2" ry="2" />
<text x="408.12" y="271.5" ></text>
</g>
<g >
<title>java/lang/Thread.run (357 samples, 0.71%)</title><rect x="1173.3" y="53" width="8.4" height="15.0" fill="rgb(252,114,38)" rx="2" ry="2" />
<text x="1176.31" y="63.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_avgt_jmhStub (740 samples, 1.47%)</title><rect x="387.8" y="389" width="17.3" height="15.0" fill="rgb(254,214,12)" rx="2" ry="2" />
<text x="390.79" y="399.5" ></text>
</g>
<g >
<title>example/FizzBuzz.$anonfun$run$1$adapted (77 samples, 0.15%)</title><rect x="1187.8" y="517" width="1.8" height="15.0" fill="rgb(233,77,0)" rx="2" ry="2" />
<text x="1190.80" y="527.5" ></text>
</g>
<g >
<title>org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call (60 samples, 0.12%)</title><rect x="139.3" y="309" width="1.4" height="15.0" fill="rgb(235,82,15)" rx="2" ry="2" />
<text x="142.34" y="319.5" ></text>
</g>
<g >
<title>example/generated/FizzBuzzBenchmark_run_jmhTest.run_AverageTime (378 samples, 0.75%)</title><rect x="308.0" y="245" width="8.8" height="15.0" fill="rgb(250,32,52)" rx="2" ry="2" />
<text x="311.00" y="255.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (294 samples, 0.58%)</title><rect x="207.1" y="277" width="6.9" height="15.0" fill="rgb(210,139,29)" rx="2" ry="2" />
<text x="210.10" y="287.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (106 samples, 0.21%)</title><rect x="1165.4" y="133" width="2.5" height="15.0" fill="rgb(233,80,30)" rx="2" ry="2" />
<text x="1168.44" y="143.5" ></text>
</g>
<g >
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder (124 samples, 0.25%)</title><rect x="297.4" y="549" width="2.9" height="15.0" fill="rgb(251,161,5)" rx="2" ry="2" />
<text x="300.39" y="559.5" ></text>
</g>
<g >
<title>example/FizzBuzz$$Lambda$11/459636526.apply (695 samples, 1.38%)</title><rect x="38.8" y="517" width="16.3" height="15.0" fill="rgb(229,18,0)" rx="2" ry="2" />
<text x="41.82" y="527.5" ></text>
</g>
</g>
</svg>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment