Skip to content

Instantly share code, notes, and snippets.

@marcrasi
Created May 7, 2020 22:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcrasi/728e744090eba260993a057e3c9329f7 to your computer and use it in GitHub Desktop.
Save marcrasi/728e744090eba260993a057e3c9329f7 to your computer and use it in GitHub Desktop.
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="1800" height="2134" onload="init(evt)" viewBox="0 0 1800 2134" 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="1800.0" height="2134.0" fill="url(#background)" />
<text id="title" x="900.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="2117" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1690.00" y="24" >Search</text>
<text id="ignorecase" x="1774.00" y="24" >ic</text>
<text id="matched" x="1690.00" y="2117" > </text>
<g id="frames">
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="148.4" y="1733" width="0.4" height="15.0" fill="rgb(229,33,44)" rx="2" ry="2" />
<text x="151.43" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (6 samples, 0.02%)</title><rect x="1269.3" y="1749" width="0.4" height="15.0" fill="rgb(234,130,20)" rx="2" ry="2" />
<text x="1272.27" y="1759.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="593.6" y="1877" width="0.2" height="15.0" fill="rgb(216,78,42)" rx="2" ry="2" />
<text x="596.62" y="1887.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (4 samples, 0.02%)</title><rect x="197.3" y="1893" width="0.3" height="15.0" fill="rgb(215,190,51)" rx="2" ry="2" />
<text x="200.30" y="1903.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (3 samples, 0.01%)</title><rect x="1204.6" y="1893" width="0.2" height="15.0" fill="rgb(221,98,24)" rx="2" ry="2" />
<text x="1207.59" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (91 samples, 0.35%)</title><rect x="821.0" y="1733" width="6.2" height="15.0" fill="rgb(252,112,33)" rx="2" ry="2" />
<text x="823.99" y="1743.5" ></text>
</g>
<g >
<title>implicit closure #1 (Swift.Int) -&gt; Swift.Int64 in TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (2 samples, 0.01%)</title><rect x="1464.8" y="1845" width="0.2" height="15.0" fill="rgb(217,200,10)" rx="2" ry="2" />
<text x="1467.82" y="1855.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @escaping @callee_guaranteed (@unowned SwiftFusion.Vector3) -&gt; (@owned SwiftFusion.Values.TangentVector) to @escaping @callee_guaranteed (@in_guaranteed SwiftFusion.Vector3) -&gt; (@out SwiftFusion.Values.TangentVector) (2,351 samples, 9.08%)</title><rect x="1271.1" y="1925" width="161.6" height="15.0" fill="rgb(250,152,33)" rx="2" ry="2" />
<text x="1274.06" y="1935.5" >partial apply forwar..</text>
</g>
<g >
<title>closure #1 (Swift.UnsafeMutableRawPointer) -&gt; () in (extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (4 samples, 0.02%)</title><rect x="1466.4" y="1893" width="0.3" height="15.0" fill="rgb(216,180,39)" rx="2" ry="2" />
<text x="1469.40" y="1903.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (9 samples, 0.03%)</title><rect x="1457.1" y="1925" width="0.6" height="15.0" fill="rgb(227,101,23)" rx="2" ry="2" />
<text x="1460.12" y="1935.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (17 samples, 0.07%)</title><rect x="790.3" y="1861" width="1.2" height="15.0" fill="rgb(231,115,13)" rx="2" ry="2" />
<text x="793.34" y="1871.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="522.3" y="1877" width="0.1" height="15.0" fill="rgb(205,159,47)" rx="2" ry="2" />
<text x="525.27" y="1887.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="676.6" y="1893" width="0.1" height="15.0" fill="rgb(242,23,44)" rx="2" ry="2" />
<text x="679.58" y="1903.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="1241.9" y="1909" width="0.2" height="15.0" fill="rgb(240,126,29)" rx="2" ry="2" />
<text x="1244.92" y="1919.5" ></text>
</g>
<g >
<title>closure #2 (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; () in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (4 samples, 0.02%)</title><rect x="1466.4" y="1877" width="0.3" height="15.0" fill="rgb(213,20,25)" rx="2" ry="2" />
<text x="1469.40" y="1887.5" ></text>
</g>
<g >
<title>swift_deallocClassInstance (4 samples, 0.02%)</title><rect x="1255.3" y="1973" width="0.3" height="15.0" fill="rgb(227,45,44)" rx="2" ry="2" />
<text x="1258.32" y="1983.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="199.9" y="1877" width="0.1" height="15.0" fill="rgb(242,167,49)" rx="2" ry="2" />
<text x="202.91" y="1887.5" ></text>
</g>
<g >
<title>swift_retain (10 samples, 0.04%)</title><rect x="1488.3" y="1893" width="0.6" height="15.0" fill="rgb(205,82,17)" rx="2" ry="2" />
<text x="1491.26" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (71 samples, 0.27%)</title><rect x="941.3" y="1893" width="4.9" height="15.0" fill="rgb(243,227,28)" rx="2" ry="2" />
<text x="944.34" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (4 samples, 0.02%)</title><rect x="91.8" y="1717" width="0.3" height="15.0" fill="rgb(227,149,21)" rx="2" ry="2" />
<text x="94.79" y="1727.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (6 samples, 0.02%)</title><rect x="668.8" y="1877" width="0.4" height="15.0" fill="rgb(249,68,7)" rx="2" ry="2" />
<text x="671.81" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow._ShapedArrayProtocol.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A.Scalar&gt;) throws -&gt; A1) throws -&gt; A1 in conformance TensorFlow.ShapedArray&lt;A&gt; : TensorFlow._ShapedArrayProtocol in TensorFlow (33 samples, 0.13%)</title><rect x="42.0" y="1925" width="2.2" height="15.0" fill="rgb(252,17,21)" rx="2" ry="2" />
<text x="44.96" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (9 samples, 0.03%)</title><rect x="1018.9" y="1749" width="0.7" height="15.0" fill="rgb(233,65,29)" rx="2" ry="2" />
<text x="1021.94" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (3 samples, 0.01%)</title><rect x="1433.2" y="1909" width="0.2" height="15.0" fill="rgb(225,184,27)" rx="2" ry="2" />
<text x="1436.20" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (23 samples, 0.09%)</title><rect x="283.4" y="1861" width="1.5" height="15.0" fill="rgb(240,108,5)" rx="2" ry="2" />
<text x="286.35" y="1871.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::destroy (3 samples, 0.01%)</title><rect x="1135.5" y="1893" width="0.2" height="15.0" fill="rgb(247,140,45)" rx="2" ry="2" />
<text x="1138.52" y="1903.5" ></text>
</g>
<g >
<title>operator delete@plt (3 samples, 0.01%)</title><rect x="620.1" y="1893" width="0.2" height="15.0" fill="rgb(249,77,17)" rx="2" ry="2" />
<text x="623.08" y="1903.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.SignedInteger in Swift (2 samples, 0.01%)</title><rect x="1207.1" y="1925" width="0.1" height="15.0" fill="rgb(214,138,23)" rx="2" ry="2" />
<text x="1210.07" y="1935.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1112.0" y="1909" width="0.1" height="15.0" fill="rgb(251,127,49)" rx="2" ry="2" />
<text x="1115.01" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (336 samples, 1.30%)</title><rect x="953.4" y="1893" width="23.1" height="15.0" fill="rgb(252,93,4)" rx="2" ry="2" />
<text x="956.44" y="1903.5" >T..</text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="1031.5" y="1877" width="0.1" height="15.0" fill="rgb(238,146,34)" rx="2" ry="2" />
<text x="1034.45" y="1887.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.BinaryInteger in Swift (5 samples, 0.02%)</title><rect x="783.9" y="1893" width="0.3" height="15.0" fill="rgb(207,70,39)" rx="2" ry="2" />
<text x="786.87" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (2 samples, 0.01%)</title><rect x="1494.5" y="1973" width="0.2" height="15.0" fill="rgb(250,72,38)" rx="2" ry="2" />
<text x="1497.51" y="1983.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="1028.5" y="1861" width="0.2" height="15.0" fill="rgb(215,103,10)" rx="2" ry="2" />
<text x="1031.50" y="1871.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (57 samples, 0.22%)</title><rect x="1455.6" y="1957" width="3.9" height="15.0" fill="rgb(209,106,25)" rx="2" ry="2" />
<text x="1458.61" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::DeviceOrHostCPU (4 samples, 0.02%)</title><rect x="442.1" y="1829" width="0.3" height="15.0" fill="rgb(234,112,44)" rx="2" ry="2" />
<text x="445.13" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (2 samples, 0.01%)</title><rect x="1261.8" y="1749" width="0.1" height="15.0" fill="rgb(219,28,7)" rx="2" ry="2" />
<text x="1264.78" y="1759.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::initializeWithCopy (2 samples, 0.01%)</title><rect x="1242.8" y="1909" width="0.1" height="15.0" fill="rgb(252,157,20)" rx="2" ry="2" />
<text x="1245.81" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (16 samples, 0.06%)</title><rect x="118.0" y="1829" width="1.1" height="15.0" fill="rgb(237,48,49)" rx="2" ry="2" />
<text x="120.98" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (35 samples, 0.14%)</title><rect x="933.0" y="1797" width="2.4" height="15.0" fill="rgb(246,129,53)" rx="2" ry="2" />
<text x="936.03" y="1807.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="294.8" y="1925" width="0.3" height="15.0" fill="rgb(240,90,17)" rx="2" ry="2" />
<text x="297.83" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (4 samples, 0.02%)</title><rect x="1493.4" y="1829" width="0.3" height="15.0" fill="rgb(234,78,4)" rx="2" ry="2" />
<text x="1496.41" y="1839.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.String._uncheckedFromUTF8(_: Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;, asciiPreScanResult: Swift.Bool) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="1141.8" y="1877" width="0.2" height="15.0" fill="rgb(239,41,43)" rx="2" ry="2" />
<text x="1144.84" y="1887.5" ></text>
</g>
<g >
<title>swift_allocObject (2 samples, 0.01%)</title><rect x="1040.9" y="1861" width="0.1" height="15.0" fill="rgb(214,61,29)" rx="2" ry="2" />
<text x="1043.87" y="1871.5" ></text>
</g>
<g >
<title>TFE_Execute (5 samples, 0.02%)</title><rect x="1148.2" y="1893" width="0.3" height="15.0" fill="rgb(232,17,17)" rx="2" ry="2" />
<text x="1151.16" y="1903.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="584.8" y="1845" width="0.1" height="15.0" fill="rgb(222,185,16)" rx="2" ry="2" />
<text x="587.75" y="1855.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="328.2" y="1845" width="0.2" height="15.0" fill="rgb(230,134,30)" rx="2" ry="2" />
<text x="331.17" y="1855.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow._AnyTensorHandle._cTensorHandle.getter : Swift.OpaquePointer (5 samples, 0.02%)</title><rect x="502.9" y="1877" width="0.3" height="15.0" fill="rgb(217,161,28)" rx="2" ry="2" />
<text x="505.89" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="29.0" y="1973" width="0.1" height="15.0" fill="rgb(248,82,54)" rx="2" ry="2" />
<text x="31.97" y="1983.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (2 samples, 0.01%)</title><rect x="1128.3" y="1893" width="0.1" height="15.0" fill="rgb(213,180,38)" rx="2" ry="2" />
<text x="1131.30" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (16 samples, 0.06%)</title><rect x="263.8" y="1877" width="1.1" height="15.0" fill="rgb(236,109,22)" rx="2" ry="2" />
<text x="266.77" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (93 samples, 0.36%)</title><rect x="435.3" y="1797" width="6.3" height="15.0" fill="rgb(243,226,6)" rx="2" ry="2" />
<text x="438.26" y="1807.5" ></text>
</g>
<g >
<title>swift_dynamicCastImpl (80 samples, 0.31%)</title><rect x="1709.2" y="2037" width="5.5" height="15.0" fill="rgb(223,150,25)" rx="2" ry="2" />
<text x="1712.17" y="2047.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type __C.TF_Code and conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (2 samples, 0.01%)</title><rect x="974.5" y="1877" width="0.1" height="15.0" fill="rgb(226,212,38)" rx="2" ry="2" />
<text x="977.47" y="1887.5" ></text>
</g>
<g >
<title>TFE_NewOp (47 samples, 0.18%)</title><rect x="494.7" y="1877" width="3.2" height="15.0" fill="rgb(211,36,19)" rx="2" ry="2" />
<text x="497.71" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (22 samples, 0.08%)</title><rect x="801.5" y="1893" width="1.5" height="15.0" fill="rgb(220,79,12)" rx="2" ry="2" />
<text x="804.47" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (6 samples, 0.02%)</title><rect x="525.2" y="1845" width="0.4" height="15.0" fill="rgb(234,87,19)" rx="2" ry="2" />
<text x="528.23" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (5 samples, 0.02%)</title><rect x="561.4" y="1829" width="0.3" height="15.0" fill="rgb(205,89,1)" rx="2" ry="2" />
<text x="564.38" y="1839.5" ></text>
</g>
<g >
<title>Swift.Array._owner.getter : Swift.AnyObject? (2 samples, 0.01%)</title><rect x="470.3" y="1813" width="0.1" height="15.0" fill="rgb(220,175,14)" rx="2" ry="2" />
<text x="473.31" y="1823.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (18 samples, 0.07%)</title><rect x="177.4" y="1925" width="1.2" height="15.0" fill="rgb(239,83,16)" rx="2" ry="2" />
<text x="180.37" y="1935.5" ></text>
</g>
<g >
<title>TFE_Execute (116 samples, 0.45%)</title><rect x="1231.5" y="1893" width="7.9" height="15.0" fill="rgb(218,121,7)" rx="2" ry="2" />
<text x="1234.47" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (4 samples, 0.02%)</title><rect x="462.1" y="1925" width="0.3" height="15.0" fill="rgb(246,39,44)" rx="2" ry="2" />
<text x="465.13" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1189" width="0.9" height="15.0" fill="rgb(254,179,8)" rx="2" ry="2" />
<text x="24.27" y="1199.5" ></text>
</g>
<g >
<title>std::_Hash_bytes (2 samples, 0.01%)</title><rect x="1046.2" y="1861" width="0.2" height="15.0" fill="rgb(252,137,4)" rx="2" ry="2" />
<text x="1049.23" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (11 samples, 0.04%)</title><rect x="81.8" y="1893" width="0.7" height="15.0" fill="rgb(224,207,17)" rx="2" ry="2" />
<text x="84.76" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (3 samples, 0.01%)</title><rect x="1128.8" y="1877" width="0.2" height="15.0" fill="rgb(241,2,15)" rx="2" ry="2" />
<text x="1131.78" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (10 samples, 0.04%)</title><rect x="458.1" y="1893" width="0.7" height="15.0" fill="rgb(249,161,14)" rx="2" ry="2" />
<text x="461.14" y="1903.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (2 samples, 0.01%)</title><rect x="293.8" y="1909" width="0.1" height="15.0" fill="rgb(240,136,32)" rx="2" ry="2" />
<text x="296.80" y="1919.5" ></text>
</g>
<g >
<title>memcpy@plt (2 samples, 0.01%)</title><rect x="1281.1" y="1813" width="0.1" height="15.0" fill="rgb(227,171,12)" rx="2" ry="2" />
<text x="1284.09" y="1823.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (19 samples, 0.07%)</title><rect x="787.2" y="1829" width="1.3" height="15.0" fill="rgb(205,223,30)" rx="2" ry="2" />
<text x="790.17" y="1839.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="337.7" y="1845" width="0.1" height="15.0" fill="rgb(222,79,14)" rx="2" ry="2" />
<text x="340.65" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (4 samples, 0.02%)</title><rect x="375.8" y="1781" width="0.3" height="15.0" fill="rgb(249,102,53)" rx="2" ry="2" />
<text x="378.80" y="1791.5" ></text>
</g>
<g >
<title>SwiftFusion.BetweenFactor.linearize(SwiftFusion.Values) -&gt; SwiftFusion.JacobianFactor (2,829 samples, 10.92%)</title><rect x="1261.0" y="1957" width="194.5" height="15.0" fill="rgb(229,143,41)" rx="2" ry="2" />
<text x="1264.02" y="1967.5" >SwiftFusion.BetweenFactor..</text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1008.4" y="1909" width="0.1" height="15.0" fill="rgb(235,119,46)" rx="2" ry="2" />
<text x="1011.36" y="1919.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="559.7" y="1861" width="0.2" height="15.0" fill="rgb(221,27,17)" rx="2" ry="2" />
<text x="562.73" y="1871.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="75.4" y="1909" width="0.2" height="15.0" fill="rgb(242,222,7)" rx="2" ry="2" />
<text x="78.43" y="1919.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Range&lt;Swift.Int32&gt; and conformance &lt; where A: Swift.Strideable, A.Stride: Swift.SignedInteger&gt; Swift.Range&lt;A&gt; : Swift.Sequence in Swift (2 samples, 0.01%)</title><rect x="403.8" y="1861" width="0.1" height="15.0" fill="rgb(213,52,48)" rx="2" ry="2" />
<text x="406.78" y="1871.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int32) -&gt; (@unowned Swift.Int, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int32) -&gt; (@out Swift.Int, @error @owned Swift.Error) (35 samples, 0.14%)</title><rect x="231.8" y="1861" width="2.4" height="15.0" fill="rgb(218,73,27)" rx="2" ry="2" />
<text x="234.80" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (3 samples, 0.01%)</title><rect x="838.9" y="1765" width="0.2" height="15.0" fill="rgb(229,19,36)" rx="2" ry="2" />
<text x="841.86" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::InputDevice (2 samples, 0.01%)</title><rect x="1200.4" y="1845" width="0.1" height="15.0" fill="rgb(228,187,54)" rx="2" ry="2" />
<text x="1203.40" y="1855.5" ></text>
</g>
<g >
<title>swift_release (6 samples, 0.02%)</title><rect x="337.1" y="1829" width="0.4" height="15.0" fill="rgb(250,89,27)" rx="2" ry="2" />
<text x="340.10" y="1839.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (3 samples, 0.01%)</title><rect x="1457.3" y="1861" width="0.2" height="15.0" fill="rgb(246,2,18)" rx="2" ry="2" />
<text x="1460.26" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (4 samples, 0.02%)</title><rect x="1494.7" y="1925" width="0.2" height="15.0" fill="rgb(212,176,45)" rx="2" ry="2" />
<text x="1497.65" y="1935.5" ></text>
</g>
<g >
<title>swift_isUniquelyReferenced_nonNull_native (2 samples, 0.01%)</title><rect x="380.2" y="1893" width="0.1" height="15.0" fill="rgb(246,195,19)" rx="2" ry="2" />
<text x="383.20" y="1903.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (3 samples, 0.01%)</title><rect x="49.7" y="1877" width="0.2" height="15.0" fill="rgb(228,104,28)" rx="2" ry="2" />
<text x="52.66" y="1887.5" ></text>
</g>
<g >
<title>swift_arrayDestroy (3 samples, 0.01%)</title><rect x="782.2" y="1845" width="0.2" height="15.0" fill="rgb(227,49,8)" rx="2" ry="2" />
<text x="785.22" y="1855.5" ></text>
</g>
<g >
<title>TF_GetCode (2 samples, 0.01%)</title><rect x="1067.1" y="1909" width="0.2" height="15.0" fill="rgb(219,2,3)" rx="2" ry="2" />
<text x="1070.13" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (2 samples, 0.01%)</title><rect x="1471.6" y="1829" width="0.2" height="15.0" fill="rgb(222,167,37)" rx="2" ry="2" />
<text x="1474.62" y="1839.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (4 samples, 0.02%)</title><rect x="179.2" y="1893" width="0.3" height="15.0" fill="rgb(228,26,21)" rx="2" ry="2" />
<text x="182.22" y="1903.5" ></text>
</g>
<g >
<title>nominal type descriptor for TensorFlow.Tensor (11 samples, 0.04%)</title><rect x="1714.7" y="2053" width="0.7" height="15.0" fill="rgb(208,58,11)" rx="2" ry="2" />
<text x="1717.67" y="2063.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, Swift.Bool) -&gt; () (34 samples, 0.13%)</title><rect x="704.5" y="1893" width="2.3" height="15.0" fill="rgb(205,131,29)" rx="2" ry="2" />
<text x="707.49" y="1903.5" ></text>
</g>
<g >
<title>getCache (3 samples, 0.01%)</title><rect x="411.1" y="1893" width="0.2" height="15.0" fill="rgb(209,69,22)" rx="2" ry="2" />
<text x="414.06" y="1903.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="274.1" y="1765" width="0.1" height="15.0" fill="rgb(208,81,2)" rx="2" ry="2" />
<text x="277.08" y="1775.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (20 samples, 0.08%)</title><rect x="1398.6" y="1813" width="1.4" height="15.0" fill="rgb(244,164,5)" rx="2" ry="2" />
<text x="1401.63" y="1823.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="1040.1" y="1909" width="0.2" height="15.0" fill="rgb(236,24,28)" rx="2" ry="2" />
<text x="1043.11" y="1919.5" ></text>
</g>
<g >
<title>generic specialization &lt;serialized, Swift.Int64&gt; of Swift.ContiguousArray._createNewBuffer(bufferIsUnique: Swift.Bool, minimumCapacity: Swift.Int, growForAppend: Swift.Bool) -&gt; () (7 samples, 0.03%)</title><rect x="59.8" y="1957" width="0.4" height="15.0" fill="rgb(235,116,2)" rx="2" ry="2" />
<text x="62.76" y="1967.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (7 samples, 0.03%)</title><rect x="327.3" y="1845" width="0.5" height="15.0" fill="rgb(216,157,34)" rx="2" ry="2" />
<text x="330.28" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1301" width="0.9" height="15.0" fill="rgb(250,126,47)" rx="2" ry="2" />
<text x="24.27" y="1311.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (9 samples, 0.03%)</title><rect x="771.0" y="1861" width="0.6" height="15.0" fill="rgb(208,44,29)" rx="2" ry="2" />
<text x="773.95" y="1871.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (6 samples, 0.02%)</title><rect x="939.5" y="1797" width="0.4" height="15.0" fill="rgb(227,229,52)" rx="2" ry="2" />
<text x="942.49" y="1807.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int64) -&gt; (@unowned Swift.Int32, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int64) -&gt; (@out Swift.Int32, @error @owned Swift.Error)partial apply forwarder with unmangled suffix &quot;.1&quot; (28 samples, 0.11%)</title><rect x="85.2" y="1925" width="1.9" height="15.0" fill="rgb(231,119,16)" rx="2" ry="2" />
<text x="88.19" y="1935.5" ></text>
</g>
<g >
<title>type metadata accessor for Swift._ContiguousArrayStorage (2 samples, 0.01%)</title><rect x="981.6" y="1829" width="0.1" height="15.0" fill="rgb(254,6,11)" rx="2" ry="2" />
<text x="984.55" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (147 samples, 0.57%)</title><rect x="359.6" y="1893" width="10.1" height="15.0" fill="rgb(241,123,1)" rx="2" ry="2" />
<text x="362.58" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="869" width="0.9" height="15.0" fill="rgb(216,208,24)" rx="2" ry="2" />
<text x="24.27" y="879.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (4 samples, 0.02%)</title><rect x="1446.3" y="1797" width="0.3" height="15.0" fill="rgb(227,90,51)" rx="2" ry="2" />
<text x="1449.33" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (3 samples, 0.01%)</title><rect x="1265.1" y="1893" width="0.3" height="15.0" fill="rgb(235,92,25)" rx="2" ry="2" />
<text x="1268.15" y="1903.5" ></text>
</g>
<g >
<title>Eigen::internal::TensorBlockIO&lt;unsigned long long, long, 2, 1&gt;::Copy (16 samples, 0.06%)</title><rect x="922.7" y="1573" width="1.1" height="15.0" fill="rgb(215,105,2)" rx="2" ry="2" />
<text x="925.72" y="1583.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (2 samples, 0.01%)</title><rect x="1474.0" y="1973" width="0.2" height="15.0" fill="rgb(221,169,5)" rx="2" ry="2" />
<text x="1477.03" y="1983.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (13 samples, 0.05%)</title><rect x="774.9" y="1749" width="0.9" height="15.0" fill="rgb(210,220,42)" rx="2" ry="2" />
<text x="777.94" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.CTensorTensorBuffer.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (27 samples, 0.10%)</title><rect x="395.3" y="1893" width="1.8" height="15.0" fill="rgb(223,114,30)" rx="2" ry="2" />
<text x="398.25" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (27 samples, 0.10%)</title><rect x="1034.0" y="1781" width="1.9" height="15.0" fill="rgb(211,25,48)" rx="2" ry="2" />
<text x="1037.00" y="1791.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="483.0" y="1797" width="0.2" height="15.0" fill="rgb(212,12,54)" rx="2" ry="2" />
<text x="486.03" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::TensorShapeBase (4 samples, 0.02%)</title><rect x="324.4" y="1701" width="0.3" height="15.0" fill="rgb(219,214,18)" rx="2" ry="2" />
<text x="327.39" y="1711.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1003.1" y="1877" width="0.2" height="15.0" fill="rgb(227,207,8)" rx="2" ry="2" />
<text x="1006.14" y="1887.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int) -&gt; (@unowned Swift.Int64, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int) -&gt; (@out Swift.Int64, @error @owned Swift.Error) (3 samples, 0.01%)</title><rect x="1464.8" y="1877" width="0.2" height="15.0" fill="rgb(216,124,37)" rx="2" ry="2" />
<text x="1467.75" y="1887.5" ></text>
</g>
<g >
<title>google::protobuf::RepeatedPtrField&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::RepeatedPtrField (2 samples, 0.01%)</title><rect x="799.9" y="1845" width="0.1" height="15.0" fill="rgb(211,196,8)" rx="2" ry="2" />
<text x="802.89" y="1855.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (2 samples, 0.01%)</title><rect x="109.1" y="1813" width="0.2" height="15.0" fill="rgb(213,199,33)" rx="2" ry="2" />
<text x="112.11" y="1823.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (7 samples, 0.03%)</title><rect x="941.5" y="1877" width="0.5" height="15.0" fill="rgb(214,124,1)" rx="2" ry="2" />
<text x="944.55" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).key.unsafeMutableAddressor : TensorFlow.ThreadLocalStorage.Key (2 samples, 0.01%)</title><rect x="158.7" y="1765" width="0.2" height="15.0" fill="rgb(216,221,11)" rx="2" ry="2" />
<text x="161.74" y="1775.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of (extension in Swift):Swift.Range&lt; where A: Swift.Strideable, A.Stride: Swift.SignedInteger&gt;.distance(from: A, to: A) -&gt; Swift.Int (6 samples, 0.02%)</title><rect x="231.0" y="1845" width="0.4" height="15.0" fill="rgb(231,184,2)" rx="2" ry="2" />
<text x="233.98" y="1855.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="1034.6" y="1749" width="0.2" height="15.0" fill="rgb(208,223,40)" rx="2" ry="2" />
<text x="1037.62" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.init(arrayLiteral: Swift.Int...) -&gt; TensorFlow.TensorShape (2 samples, 0.01%)</title><rect x="1172.2" y="1941" width="0.2" height="15.0" fill="rgb(248,53,12)" rx="2" ry="2" />
<text x="1175.22" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="29.0" y="2005" width="0.1" height="15.0" fill="rgb(223,59,10)" rx="2" ry="2" />
<text x="31.97" y="2015.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (9 samples, 0.03%)</title><rect x="383.7" y="1877" width="0.6" height="15.0" fill="rgb(245,12,17)" rx="2" ry="2" />
<text x="386.71" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (3 samples, 0.01%)</title><rect x="227.5" y="1877" width="0.2" height="15.0" fill="rgb(217,143,43)" rx="2" ry="2" />
<text x="230.54" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (4 samples, 0.02%)</title><rect x="1493.4" y="1845" width="0.3" height="15.0" fill="rgb(222,46,20)" rx="2" ry="2" />
<text x="1496.41" y="1855.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="1036.9" y="1845" width="0.2" height="15.0" fill="rgb(239,64,43)" rx="2" ry="2" />
<text x="1039.88" y="1855.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (9 samples, 0.03%)</title><rect x="245.8" y="1781" width="0.6" height="15.0" fill="rgb(224,195,39)" rx="2" ry="2" />
<text x="248.83" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (30 samples, 0.12%)</title><rect x="1268.5" y="1909" width="2.1" height="15.0" fill="rgb(245,39,25)" rx="2" ry="2" />
<text x="1271.52" y="1919.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::initializeWithCopy (3 samples, 0.01%)</title><rect x="231.1" y="1829" width="0.2" height="15.0" fill="rgb(209,72,13)" rx="2" ry="2" />
<text x="234.12" y="1839.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (11 samples, 0.04%)</title><rect x="1017.0" y="1765" width="0.7" height="15.0" fill="rgb(244,30,48)" rx="2" ry="2" />
<text x="1019.95" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (11 samples, 0.04%)</title><rect x="1481.7" y="1909" width="0.8" height="15.0" fill="rgb(217,12,20)" rx="2" ry="2" />
<text x="1484.73" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (71 samples, 0.27%)</title><rect x="500.1" y="1909" width="4.9" height="15.0" fill="rgb(228,184,9)" rx="2" ry="2" />
<text x="503.07" y="1919.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (23 samples, 0.09%)</title><rect x="571.3" y="1877" width="1.6" height="15.0" fill="rgb(246,79,8)" rx="2" ry="2" />
<text x="574.35" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (414 samples, 1.60%)</title><rect x="425.3" y="1941" width="28.4" height="15.0" fill="rgb(229,131,30)" rx="2" ry="2" />
<text x="428.29" y="1951.5" >Te..</text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (39 samples, 0.15%)</title><rect x="1156.8" y="1781" width="2.7" height="15.0" fill="rgb(207,64,42)" rx="2" ry="2" />
<text x="1159.82" y="1791.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (3 samples, 0.01%)</title><rect x="979.9" y="1797" width="0.2" height="15.0" fill="rgb(212,0,52)" rx="2" ry="2" />
<text x="982.90" y="1807.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="701.9" y="1861" width="0.1" height="15.0" fill="rgb(217,75,35)" rx="2" ry="2" />
<text x="704.87" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="1461.2" y="1925" width="0.2" height="15.0" fill="rgb(237,87,53)" rx="2" ry="2" />
<text x="1464.25" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (17 samples, 0.07%)</title><rect x="549.4" y="1829" width="1.2" height="15.0" fill="rgb(219,55,18)" rx="2" ry="2" />
<text x="552.42" y="1839.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (13 samples, 0.05%)</title><rect x="568.8" y="1893" width="0.9" height="15.0" fill="rgb(230,44,10)" rx="2" ry="2" />
<text x="571.81" y="1903.5" ></text>
</g>
<g >
<title>pthread_once@plt (2 samples, 0.01%)</title><rect x="1409.8" y="1813" width="0.2" height="15.0" fill="rgb(212,72,7)" rx="2" ry="2" />
<text x="1412.83" y="1823.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_unlock (2 samples, 0.01%)</title><rect x="738.9" y="1781" width="0.2" height="15.0" fill="rgb(205,162,26)" rx="2" ry="2" />
<text x="741.92" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () (26 samples, 0.10%)</title><rect x="120.0" y="1909" width="1.8" height="15.0" fill="rgb(249,154,52)" rx="2" ry="2" />
<text x="123.04" y="1919.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.UnsafeBufferPointer&lt;Swift.Int8&gt;&gt; of Swift._copyCollectionToContiguousArray&lt;A where A: Swift.Collection&gt;(A) -&gt; Swift.ContiguousArray&lt;A.Element&gt; (4 samples, 0.02%)</title><rect x="559.2" y="1845" width="0.3" height="15.0" fill="rgb(219,225,46)" rx="2" ry="2" />
<text x="562.18" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::gtl::FindPtrOrNull&lt;tensorflow::gtl::FlatMap&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::unordered_map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, unsigned int, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned int&gt; &gt; &gt; const*, tensorflow::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, void&gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt; &gt; (6 samples, 0.02%)</title><rect x="988.7" y="1845" width="0.4" height="15.0" fill="rgb(212,147,27)" rx="2" ry="2" />
<text x="991.70" y="1855.5" ></text>
</g>
<g >
<title>TF_Message (2 samples, 0.01%)</title><rect x="999.6" y="1861" width="0.1" height="15.0" fill="rgb(249,35,30)" rx="2" ry="2" />
<text x="1002.56" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (7 samples, 0.03%)</title><rect x="669.4" y="1877" width="0.4" height="15.0" fill="rgb(248,12,21)" rx="2" ry="2" />
<text x="672.36" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (10 samples, 0.04%)</title><rect x="1140.4" y="1893" width="0.7" height="15.0" fill="rgb(248,209,10)" rx="2" ry="2" />
<text x="1143.40" y="1903.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (6 samples, 0.02%)</title><rect x="938.3" y="1861" width="0.4" height="15.0" fill="rgb(230,115,11)" rx="2" ry="2" />
<text x="941.32" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (7 samples, 0.03%)</title><rect x="1071.4" y="1861" width="0.5" height="15.0" fill="rgb(243,158,51)" rx="2" ry="2" />
<text x="1074.39" y="1871.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (5 samples, 0.02%)</title><rect x="858.9" y="1861" width="0.3" height="15.0" fill="rgb(229,201,19)" rx="2" ry="2" />
<text x="861.86" y="1871.5" ></text>
</g>
<g >
<title>Swift.Array._baseAddressIfContiguous.getter : Swift.UnsafeMutablePointer&lt;A&gt;? (2 samples, 0.01%)</title><rect x="815.4" y="1765" width="0.1" height="15.0" fill="rgb(253,214,1)" rx="2" ry="2" />
<text x="818.35" y="1775.5" ></text>
</g>
<g >
<title>swift_checkMetadataState (3 samples, 0.01%)</title><rect x="648.9" y="1781" width="0.2" height="15.0" fill="rgb(246,133,19)" rx="2" ry="2" />
<text x="651.88" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_tensor (14 samples, 0.05%)</title><rect x="579.1" y="1685" width="1.0" height="15.0" fill="rgb(220,185,22)" rx="2" ry="2" />
<text x="582.12" y="1695.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.makeHostCopy() -&gt; TensorFlow.ShapedArray&lt;A&gt; (227 samples, 0.88%)</title><rect x="397.3" y="1925" width="15.6" height="15.0" fill="rgb(235,88,6)" rx="2" ry="2" />
<text x="400.32" y="1935.5" ></text>
</g>
<g >
<title>static TensorFlow._RawTFEager.reshape&lt;A where A: TensorFlow.TensorFlowScalar&gt;(_: TensorFlow.Tensor&lt;A&gt;, shape: [Swift.Int64]) -&gt; TensorFlow.Tensor&lt;A&gt; (556 samples, 2.15%)</title><rect x="84.5" y="1957" width="38.2" height="15.0" fill="rgb(227,37,31)" rx="2" ry="2" />
<text x="87.51" y="1967.5" >sta..</text>
</g>
<g >
<title>partial apply forwarder for AD__$s11SwiftFusion1moiyAA7Vector2VAA4Rot2V_ADtF__pullback_src_0_wrt_0_1 (4 samples, 0.02%)</title><rect x="1291.9" y="1781" width="0.3" height="15.0" fill="rgb(222,28,53)" rx="2" ry="2" />
<text x="1294.89" y="1791.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (4 samples, 0.02%)</title><rect x="1492.2" y="1973" width="0.3" height="15.0" fill="rgb(224,170,53)" rx="2" ry="2" />
<text x="1495.18" y="1983.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="56.0" y="1829" width="0.1" height="15.0" fill="rgb(245,188,27)" rx="2" ry="2" />
<text x="58.98" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::CancellationManager::CancellationManager (2 samples, 0.01%)</title><rect x="964.4" y="1717" width="0.1" height="15.0" fill="rgb(233,103,52)" rx="2" ry="2" />
<text x="967.37" y="1727.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (3 samples, 0.01%)</title><rect x="1108.4" y="1877" width="0.2" height="15.0" fill="rgb(224,122,31)" rx="2" ry="2" />
<text x="1111.37" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(copyingFromCTensor: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (11 samples, 0.04%)</title><rect x="1465.6" y="1893" width="0.8" height="15.0" fill="rgb(244,12,37)" rx="2" ry="2" />
<text x="1468.65" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (16 samples, 0.06%)</title><rect x="296.6" y="1861" width="1.1" height="15.0" fill="rgb(224,120,17)" rx="2" ry="2" />
<text x="299.62" y="1871.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="1036.5" y="1829" width="0.2" height="15.0" fill="rgb(219,215,51)" rx="2" ry="2" />
<text x="1039.47" y="1839.5" ></text>
</g>
<g >
<title>swift_checkMetadataState (119 samples, 0.46%)</title><rect x="1379.3" y="1797" width="8.2" height="15.0" fill="rgb(219,94,30)" rx="2" ry="2" />
<text x="1382.32" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (4 samples, 0.02%)</title><rect x="1453.9" y="1925" width="0.3" height="15.0" fill="rgb(247,199,30)" rx="2" ry="2" />
<text x="1456.89" y="1935.5" ></text>
</g>
<g >
<title>swift_retain (7 samples, 0.03%)</title><rect x="491.3" y="1925" width="0.5" height="15.0" fill="rgb(247,55,28)" rx="2" ry="2" />
<text x="494.27" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (37 samples, 0.14%)</title><rect x="1201.2" y="1893" width="2.5" height="15.0" fill="rgb(207,65,0)" rx="2" ry="2" />
<text x="1204.16" y="1903.5" ></text>
</g>
<g >
<title>TFE_Execute (390 samples, 1.51%)</title><rect x="734.4" y="1845" width="26.8" height="15.0" fill="rgb(251,182,40)" rx="2" ry="2" />
<text x="737.39" y="1855.5" >T..</text>
</g>
<g >
<title>tensorflow::OpDefForOp (3 samples, 0.01%)</title><rect x="1146.9" y="1893" width="0.2" height="15.0" fill="rgb(244,70,0)" rx="2" ry="2" />
<text x="1149.86" y="1903.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_rlock (2 samples, 0.01%)</title><rect x="868.4" y="1781" width="0.2" height="15.0" fill="rgb(231,69,6)" rx="2" ry="2" />
<text x="871.42" y="1791.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (13 samples, 0.05%)</title><rect x="944.9" y="1781" width="0.9" height="15.0" fill="rgb(254,150,36)" rx="2" ry="2" />
<text x="947.92" y="1791.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.ShapedArray&lt;A where A: TensorFlow._TensorFlowDataTypeCompatible&gt;.init(cTensorHandle: Swift.OpaquePointer) -&gt; TensorFlow.ShapedArray&lt;A&gt; (119 samples, 0.46%)</title><rect x="44.3" y="1909" width="8.2" height="15.0" fill="rgb(212,112,22)" rx="2" ry="2" />
<text x="47.30" y="1919.5" ></text>
</g>
<g >
<title>swift_retain (6 samples, 0.02%)</title><rect x="651.1" y="1797" width="0.4" height="15.0" fill="rgb(237,161,30)" rx="2" ry="2" />
<text x="654.08" y="1807.5" ></text>
</g>
<g >
<title>implicit closure #1 (Swift.Int) -&gt; Swift.Int64 in TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (2 samples, 0.01%)</title><rect x="1492.6" y="1877" width="0.1" height="15.0" fill="rgb(254,58,18)" rx="2" ry="2" />
<text x="1495.59" y="1887.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="57.7" y="1909" width="0.1" height="15.0" fill="rgb(211,70,14)" rx="2" ry="2" />
<text x="60.70" y="1919.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (26 samples, 0.10%)</title><rect x="848.3" y="1861" width="1.8" height="15.0" fill="rgb(217,228,17)" rx="2" ry="2" />
<text x="851.28" y="1871.5" ></text>
</g>
<g >
<title>swift_beginAccess (3 samples, 0.01%)</title><rect x="628.1" y="1893" width="0.2" height="15.0" fill="rgb(225,110,13)" rx="2" ry="2" />
<text x="631.05" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow._RawTFEager.sum&lt;A, B where A: Swift.Numeric, A: TensorFlow.TensorFlowScalar, B: TensorFlow.TensorFlowIndex&gt;(_: TensorFlow.Tensor&lt;A&gt;, reductionIndices: TensorFlow.Tensor&lt;B&gt;, keepDims: Swift.Bool) -&gt; TensorFlow.Tensor&lt;A&gt; (374 samples, 1.44%)</title><rect x="137.8" y="1941" width="25.8" height="15.0" fill="rgb(212,15,42)" rx="2" ry="2" />
<text x="140.84" y="1951.5" >s..</text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="530.7" y="1941" width="0.2" height="15.0" fill="rgb(240,21,23)" rx="2" ry="2" />
<text x="533.66" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (7 samples, 0.03%)</title><rect x="92.6" y="1781" width="0.5" height="15.0" fill="rgb(254,49,31)" rx="2" ry="2" />
<text x="95.62" y="1791.5" ></text>
</g>
<g >
<title>swift_slowAlloc (2 samples, 0.01%)</title><rect x="338.3" y="1829" width="0.2" height="15.0" fill="rgb(233,14,54)" rx="2" ry="2" />
<text x="341.34" y="1839.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (2 samples, 0.01%)</title><rect x="1071.7" y="1829" width="0.2" height="15.0" fill="rgb(237,204,25)" rx="2" ry="2" />
<text x="1074.73" y="1839.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (2 samples, 0.01%)</title><rect x="51.0" y="1877" width="0.1" height="15.0" fill="rgb(216,184,14)" rx="2" ry="2" />
<text x="53.97" y="1887.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of generic specialization &lt;serialized, Swift.Int32&gt; of static (extension in TensorFlow):TensorFlow.Tensor&lt; where A: Swift.Numeric&gt;.- infix(TensorFlow.Tensor&lt;A&gt;, TensorFlow.Tensor&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (1,306 samples, 5.04%)</title><rect x="714.0" y="1925" width="89.7" height="15.0" fill="rgb(236,212,14)" rx="2" ry="2" />
<text x="716.97" y="1935.5" >function s..</text>
</g>
<g >
<title>swift_release (10 samples, 0.04%)</title><rect x="830.2" y="1749" width="0.7" height="15.0" fill="rgb(207,217,53)" rx="2" ry="2" />
<text x="833.20" y="1759.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (4 samples, 0.02%)</title><rect x="1493.9" y="1989" width="0.3" height="15.0" fill="rgb(207,16,35)" rx="2" ry="2" />
<text x="1496.89" y="1999.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (5 samples, 0.02%)</title><rect x="1105.3" y="1749" width="0.4" height="15.0" fill="rgb(237,1,33)" rx="2" ry="2" />
<text x="1108.34" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (3 samples, 0.01%)</title><rect x="307.1" y="1861" width="0.2" height="15.0" fill="rgb(238,115,5)" rx="2" ry="2" />
<text x="310.07" y="1871.5" ></text>
</g>
<g >
<title>swift_release (5 samples, 0.02%)</title><rect x="1222.3" y="1925" width="0.3" height="15.0" fill="rgb(227,219,28)" rx="2" ry="2" />
<text x="1225.26" y="1935.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="359.1" y="1845" width="0.1" height="15.0" fill="rgb(214,86,6)" rx="2" ry="2" />
<text x="362.10" y="1855.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (4 samples, 0.02%)</title><rect x="880.9" y="1861" width="0.3" height="15.0" fill="rgb(244,3,40)" rx="2" ry="2" />
<text x="883.93" y="1871.5" ></text>
</g>
<g >
<title>swift_checkMetadataState (2 samples, 0.01%)</title><rect x="1108.8" y="1893" width="0.1" height="15.0" fill="rgb(210,61,32)" rx="2" ry="2" />
<text x="1111.78" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::LocalTensorHandleData::TensorValue (4 samples, 0.02%)</title><rect x="1137.6" y="1749" width="0.3" height="15.0" fill="rgb(253,41,49)" rx="2" ry="2" />
<text x="1140.58" y="1759.5" ></text>
</g>
<g >
<title>initializeWithCopy value witness for SwiftFusion.AnyDerivative (16 samples, 0.06%)</title><rect x="1290.4" y="1861" width="1.1" height="15.0" fill="rgb(227,70,0)" rx="2" ry="2" />
<text x="1293.37" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::OpKernelContext (3 samples, 0.01%)</title><rect x="1198.9" y="1749" width="0.2" height="15.0" fill="rgb(241,131,17)" rx="2" ry="2" />
<text x="1201.89" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (5 samples, 0.02%)</title><rect x="1265.7" y="1925" width="0.3" height="15.0" fill="rgb(235,223,51)" rx="2" ry="2" />
<text x="1268.70" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (5 samples, 0.02%)</title><rect x="1491.4" y="1877" width="0.3" height="15.0" fill="rgb(240,125,46)" rx="2" ry="2" />
<text x="1494.35" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (4 samples, 0.02%)</title><rect x="1442.0" y="1685" width="0.3" height="15.0" fill="rgb(252,219,14)" rx="2" ry="2" />
<text x="1445.00" y="1695.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(copyingFromCTensor: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (62 samples, 0.24%)</title><rect x="475.1" y="1797" width="4.3" height="15.0" fill="rgb(232,135,26)" rx="2" ry="2" />
<text x="478.12" y="1807.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Character&gt; of Swift.Array.count.getter : Swift.Int (2 samples, 0.01%)</title><rect x="263.3" y="1877" width="0.1" height="15.0" fill="rgb(233,204,49)" rx="2" ry="2" />
<text x="266.28" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (7 samples, 0.03%)</title><rect x="115.1" y="1845" width="0.5" height="15.0" fill="rgb(227,17,2)" rx="2" ry="2" />
<text x="118.09" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (8 samples, 0.03%)</title><rect x="1105.3" y="1765" width="0.5" height="15.0" fill="rgb(233,135,29)" rx="2" ry="2" />
<text x="1108.27" y="1775.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int64 and conformance Swift.Int64 : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="234.1" y="1829" width="0.1" height="15.0" fill="rgb(251,102,11)" rx="2" ry="2" />
<text x="237.07" y="1839.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (55 samples, 0.21%)</title><rect x="1086.2" y="1893" width="3.7" height="15.0" fill="rgb(234,29,20)" rx="2" ry="2" />
<text x="1089.17" y="1903.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="386.0" y="1909" width="0.1" height="15.0" fill="rgb(224,201,53)" rx="2" ry="2" />
<text x="388.97" y="1919.5" ></text>
</g>
<g >
<title>swift_retain@plt (2 samples, 0.01%)</title><rect x="1124.9" y="1797" width="0.2" height="15.0" fill="rgb(251,53,7)" rx="2" ry="2" />
<text x="1127.93" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for Swift._ExpressibleByBuiltinIntegerLiteral.init(_builtinIntegerLiteral: Builtin.IntLiteral) -&gt; A in conformance Swift.Int : Swift._ExpressibleByBuiltinIntegerLiteral in Swift (2 samples, 0.01%)</title><rect x="373.1" y="1893" width="0.2" height="15.0" fill="rgb(221,23,47)" rx="2" ry="2" />
<text x="376.12" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="244.0" y="1877" width="0.2" height="15.0" fill="rgb(252,45,4)" rx="2" ry="2" />
<text x="246.97" y="1887.5" ></text>
</g>
<g >
<title>__pthread_getspecific (5 samples, 0.02%)</title><rect x="624.2" y="1861" width="0.3" height="15.0" fill="rgb(206,144,54)" rx="2" ry="2" />
<text x="627.21" y="1871.5" ></text>
</g>
<g >
<title>Swift.Array.subscript.modify : (Swift.Int) -&gt; A (2 samples, 0.01%)</title><rect x="670.5" y="1845" width="0.1" height="15.0" fill="rgb(237,189,7)" rx="2" ry="2" />
<text x="673.46" y="1855.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int and conformance Swift.Int : Swift.SignedInteger in Swift (2 samples, 0.01%)</title><rect x="303.9" y="1877" width="0.1" height="15.0" fill="rgb(222,58,41)" rx="2" ry="2" />
<text x="306.91" y="1887.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (2 samples, 0.01%)</title><rect x="511.2" y="1781" width="0.1" height="15.0" fill="rgb(235,156,14)" rx="2" ry="2" />
<text x="514.21" y="1791.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (3 samples, 0.01%)</title><rect x="103.5" y="1797" width="0.2" height="15.0" fill="rgb(213,131,38)" rx="2" ry="2" />
<text x="106.48" y="1807.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="607.6" y="1845" width="0.2" height="15.0" fill="rgb(222,200,40)" rx="2" ry="2" />
<text x="610.64" y="1855.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type __C.TF_Code and conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (2 samples, 0.01%)</title><rect x="446.8" y="1909" width="0.1" height="15.0" fill="rgb(235,222,3)" rx="2" ry="2" />
<text x="449.80" y="1919.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="250.8" y="1797" width="0.2" height="15.0" fill="rgb(225,96,29)" rx="2" ry="2" />
<text x="253.84" y="1807.5" ></text>
</g>
<g >
<title>type metadata accessor for TensorFlow._ThreadLocalState (2 samples, 0.01%)</title><rect x="1028.8" y="1861" width="0.1" height="15.0" fill="rgb(249,19,35)" rx="2" ry="2" />
<text x="1031.77" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1813" width="0.9" height="15.0" fill="rgb(240,176,38)" rx="2" ry="2" />
<text x="24.27" y="1823.5" ></text>
</g>
<g >
<title>Eigen::internal::TensorExecutor&lt;Eigen::TensorAssignOp&lt;Eigen::TensorMap&lt;Eigen::Tensor&lt;double, 1, 1, long&gt;, 16, Eigen::MakePointer&gt;, Eigen::TensorCwiseUnaryOp&lt;Eigen::internal::scalar_right&lt;double, double, Eigen::internal::scalar_product_op&lt;double, double&gt;, true&gt;, Eigen::TensorMap&lt;Eigen::Tensor&lt;double const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const&gt; const&gt; const, Eigen::ThreadPoolDevice, true, (4 samples, 0.02%)</title><rect x="1118.5" y="1733" width="0.3" height="15.0" fill="rgb(210,96,52)" rx="2" ry="2" />
<text x="1121.54" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.init() -&gt; TensorFlow._ExecutionContext (3 samples, 0.01%)</title><rect x="1495.1" y="1989" width="0.2" height="15.0" fill="rgb(216,75,25)" rx="2" ry="2" />
<text x="1498.06" y="1999.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (2 samples, 0.01%)</title><rect x="1448.0" y="1845" width="0.2" height="15.0" fill="rgb(248,73,8)" rx="2" ry="2" />
<text x="1451.05" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (10 samples, 0.04%)</title><rect x="799.7" y="1861" width="0.7" height="15.0" fill="rgb(233,56,28)" rx="2" ry="2" />
<text x="802.68" y="1871.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_runlock (2 samples, 0.01%)</title><rect x="139.8" y="1813" width="0.1" height="15.0" fill="rgb(230,24,9)" rx="2" ry="2" />
<text x="142.77" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.internalConsistencyCheck(_: Swift.Bool, _: Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="1226.7" y="1909" width="0.1" height="15.0" fill="rgb(253,163,27)" rx="2" ry="2" />
<text x="1229.66" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (5 samples, 0.02%)</title><rect x="91.0" y="1765" width="0.4" height="15.0" fill="rgb(251,73,1)" rx="2" ry="2" />
<text x="94.04" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::TF_TensorToTensor (2 samples, 0.01%)</title><rect x="93.2" y="1781" width="0.2" height="15.0" fill="rgb(250,121,0)" rx="2" ry="2" />
<text x="96.24" y="1791.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (3 samples, 0.01%)</title><rect x="1086.6" y="1797" width="0.2" height="15.0" fill="rgb(213,198,49)" rx="2" ry="2" />
<text x="1089.58" y="1807.5" ></text>
</g>
<g >
<title>__tls_get_addr (4 samples, 0.02%)</title><rect x="851.3" y="1893" width="0.3" height="15.0" fill="rgb(246,199,38)" rx="2" ry="2" />
<text x="854.30" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (188 samples, 0.73%)</title><rect x="430.5" y="1909" width="12.9" height="15.0" fill="rgb(221,18,49)" rx="2" ry="2" />
<text x="433.51" y="1919.5" ></text>
</g>
<g >
<title>swift_getWitnessTable::$_6::operator (3 samples, 0.01%)</title><rect x="18.6" y="2021" width="0.2" height="15.0" fill="rgb(230,52,23)" rx="2" ry="2" />
<text x="21.59" y="2031.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.FixedWidthInteger.min.getter : A in conformance Swift.Int32 : Swift.FixedWidthInteger in Swift (2 samples, 0.01%)</title><rect x="373.5" y="1893" width="0.2" height="15.0" fill="rgb(210,42,28)" rx="2" ry="2" />
<text x="376.53" y="1903.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Double&gt; of TensorFlow.Tensor.subscript.getter : (TensorFlow.Tensor&lt;A&gt;.IndexPath) -&gt; TensorFlow.Tensor&lt;A&gt; (141 samples, 0.54%)</title><rect x="1463.7" y="1973" width="9.6" height="15.0" fill="rgb(224,121,33)" rx="2" ry="2" />
<text x="1466.65" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="709" width="0.9" height="15.0" fill="rgb(205,122,8)" rx="2" ry="2" />
<text x="24.27" y="719.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="641.1" y="1685" width="0.2" height="15.0" fill="rgb(238,10,31)" rx="2" ry="2" />
<text x="644.11" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::Executor (2 samples, 0.01%)</title><rect x="384.3" y="1877" width="0.2" height="15.0" fill="rgb(254,97,47)" rx="2" ry="2" />
<text x="387.32" y="1887.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="1211.6" y="1861" width="0.2" height="15.0" fill="rgb(250,66,51)" rx="2" ry="2" />
<text x="1214.60" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (94 samples, 0.36%)</title><rect x="66.4" y="1877" width="6.4" height="15.0" fill="rgb(210,107,14)" rx="2" ry="2" />
<text x="69.36" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (13 samples, 0.05%)</title><rect x="158.5" y="1797" width="0.9" height="15.0" fill="rgb(210,180,11)" rx="2" ry="2" />
<text x="161.47" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (47 samples, 0.18%)</title><rect x="977.8" y="1861" width="3.2" height="15.0" fill="rgb(213,196,47)" rx="2" ry="2" />
<text x="980.77" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (2 samples, 0.01%)</title><rect x="449.7" y="1813" width="0.1" height="15.0" fill="rgb(229,222,37)" rx="2" ry="2" />
<text x="452.69" y="1823.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (5 samples, 0.02%)</title><rect x="256.2" y="1797" width="0.3" height="15.0" fill="rgb(226,217,44)" rx="2" ry="2" />
<text x="259.20" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::ClearError (2 samples, 0.01%)</title><rect x="114.8" y="1829" width="0.2" height="15.0" fill="rgb(254,83,10)" rx="2" ry="2" />
<text x="117.82" y="1839.5" ></text>
</g>
<g >
<title>destroy value witness for Swift.IndexingIterator (2 samples, 0.01%)</title><rect x="654.2" y="1861" width="0.2" height="15.0" fill="rgb(246,11,12)" rx="2" ry="2" />
<text x="657.24" y="1871.5" ></text>
</g>
<g >
<title>swift_retain (11 samples, 0.04%)</title><rect x="390.1" y="1957" width="0.8" height="15.0" fill="rgb(247,101,30)" rx="2" ry="2" />
<text x="393.10" y="1967.5" ></text>
</g>
<g >
<title>static (extension in TensorFlow):TensorFlow.TensorGroup._tensorHandleCount.getter : Swift.Int32 (5 samples, 0.02%)</title><rect x="1267.0" y="1861" width="0.3" height="15.0" fill="rgb(217,2,21)" rx="2" ry="2" />
<text x="1270.00" y="1871.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Double&gt; of TensorFlow.Tensor.transposed() -&gt; TensorFlow.Tensor&lt;A&gt; (5,314 samples, 20.52%)</title><rect x="629.9" y="1941" width="365.3" height="15.0" fill="rgb(225,46,39)" rx="2" ry="2" />
<text x="632.91" y="1951.5" >generic specialization &lt;Swift.Double&gt; of TensorFl..</text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="818.9" y="1701" width="0.2" height="15.0" fill="rgb(224,56,3)" rx="2" ry="2" />
<text x="821.86" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::LocalTensorHandleData::TensorValue (3 samples, 0.01%)</title><rect x="963.2" y="1717" width="0.2" height="15.0" fill="rgb(244,93,46)" rx="2" ry="2" />
<text x="966.20" y="1727.5" ></text>
</g>
<g >
<title>__pthread_once (2 samples, 0.01%)</title><rect x="476.6" y="1701" width="0.2" height="15.0" fill="rgb(250,109,14)" rx="2" ry="2" />
<text x="479.63" y="1711.5" ></text>
</g>
<g >
<title>swift_retain (16 samples, 0.06%)</title><rect x="184.2" y="1909" width="1.1" height="15.0" fill="rgb(226,74,52)" rx="2" ry="2" />
<text x="187.17" y="1919.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static (extension in SwiftFusion):Swift.Array&lt;A where A == TensorFlow.Tensor&lt;Swift.Double&gt;&gt;.- infix([TensorFlow.Tensor&lt;Swift.Double&gt;], [TensorFlow.Tensor&lt;Swift.Double&gt;]) -&gt; [TensorFlow.Tensor&lt;Swift.Double&gt;] (13 samples, 0.05%)</title><rect x="1148.0" y="1973" width="0.9" height="15.0" fill="rgb(214,120,3)" rx="2" ry="2" />
<text x="1151.03" y="1983.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="893.1" y="1861" width="0.1" height="15.0" fill="rgb(225,150,29)" rx="2" ry="2" />
<text x="896.09" y="1871.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (3 samples, 0.01%)</title><rect x="1205.1" y="1893" width="0.2" height="15.0" fill="rgb(252,55,27)" rx="2" ry="2" />
<text x="1208.08" y="1903.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (5 samples, 0.02%)</title><rect x="1083.8" y="1893" width="0.4" height="15.0" fill="rgb(228,28,19)" rx="2" ry="2" />
<text x="1086.83" y="1903.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="302.3" y="1845" width="0.2" height="15.0" fill="rgb(227,0,23)" rx="2" ry="2" />
<text x="305.32" y="1855.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1124.0" y="1925" width="0.1" height="15.0" fill="rgb(236,72,39)" rx="2" ry="2" />
<text x="1126.97" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (32 samples, 0.12%)</title><rect x="374.8" y="1829" width="2.2" height="15.0" fill="rgb(218,206,15)" rx="2" ry="2" />
<text x="377.77" y="1839.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="694.9" y="1861" width="0.1" height="15.0" fill="rgb(215,111,6)" rx="2" ry="2" />
<text x="697.86" y="1871.5" ></text>
</g>
<g >
<title>pod_direct_initializeBufferWithCopyOfBuffer (12 samples, 0.05%)</title><rect x="1281.2" y="1813" width="0.9" height="15.0" fill="rgb(213,33,50)" rx="2" ry="2" />
<text x="1284.23" y="1823.5" ></text>
</g>
<g >
<title>__strlen_avx2 (5 samples, 0.02%)</title><rect x="828.6" y="1733" width="0.4" height="15.0" fill="rgb(243,204,2)" rx="2" ry="2" />
<text x="831.62" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="1215.0" y="1893" width="0.2" height="15.0" fill="rgb(209,208,25)" rx="2" ry="2" />
<text x="1218.04" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (2 samples, 0.01%)</title><rect x="1466.5" y="1845" width="0.2" height="15.0" fill="rgb(205,59,17)" rx="2" ry="2" />
<text x="1469.54" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::SetAttrValue (2 samples, 0.01%)</title><rect x="706.5" y="1845" width="0.2" height="15.0" fill="rgb(205,102,43)" rx="2" ry="2" />
<text x="709.55" y="1855.5" ></text>
</g>
<g >
<title>type metadata accessor for TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (2 samples, 0.01%)</title><rect x="186.1" y="1925" width="0.1" height="15.0" fill="rgb(234,213,42)" rx="2" ry="2" />
<text x="189.10" y="1935.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int32) -&gt; (@unowned Swift.Int, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int32) -&gt; (@out Swift.Int, @error @owned Swift.Error) (2 samples, 0.01%)</title><rect x="1460.3" y="1877" width="0.1" height="15.0" fill="rgb(234,27,47)" rx="2" ry="2" />
<text x="1463.28" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::GetCachedKernel (4 samples, 0.02%)</title><rect x="318.2" y="1797" width="0.3" height="15.0" fill="rgb(219,114,24)" rx="2" ry="2" />
<text x="321.20" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (316 samples, 1.22%)</title><rect x="468.2" y="1925" width="21.8" height="15.0" fill="rgb(210,202,52)" rx="2" ry="2" />
<text x="471.25" y="1935.5" >T..</text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (4 samples, 0.02%)</title><rect x="1270.3" y="1845" width="0.3" height="15.0" fill="rgb(237,1,49)" rx="2" ry="2" />
<text x="1273.30" y="1855.5" ></text>
</g>
<g >
<title>Swift._copyCollectionToContiguousArray&lt;A where A: Swift.Collection&gt;(A) -&gt; Swift.ContiguousArray&lt;A.Element&gt; (7 samples, 0.03%)</title><rect x="42.6" y="1781" width="0.5" height="15.0" fill="rgb(235,150,15)" rx="2" ry="2" />
<text x="45.65" y="1791.5" ></text>
</g>
<g >
<title>TFE_Execute (97 samples, 0.37%)</title><rect x="66.2" y="1893" width="6.6" height="15.0" fill="rgb(213,156,38)" rx="2" ry="2" />
<text x="69.16" y="1903.5" ></text>
</g>
<g >
<title>memcpy@plt (2 samples, 0.01%)</title><rect x="1408.5" y="1813" width="0.1" height="15.0" fill="rgb(237,223,52)" rx="2" ry="2" />
<text x="1411.46" y="1823.5" ></text>
</g>
<g >
<title>TFE_DeleteTensorHandle (2 samples, 0.01%)</title><rect x="1460.8" y="1925" width="0.2" height="15.0" fill="rgb(225,35,48)" rx="2" ry="2" />
<text x="1463.83" y="1935.5" ></text>
</g>
<g >
<title>swift::metadataimpl::FixedSizeBufferValueWitnesses&lt;swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::AggregateBox&lt;&gt; &gt;, true, 0ul, 1ul, false&gt;::storeEnumTagSinglePayload (47 samples, 0.18%)</title><rect x="1375.8" y="1797" width="3.2" height="15.0" fill="rgb(235,202,31)" rx="2" ry="2" />
<text x="1378.81" y="1807.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="521.7" y="1877" width="0.2" height="15.0" fill="rgb(229,63,27)" rx="2" ry="2" />
<text x="524.72" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="341" width="0.9" height="15.0" fill="rgb(240,145,54)" rx="2" ry="2" />
<text x="24.27" y="351.5" ></text>
</g>
<g >
<title>swift_getTupleTypeMetadata2 (2 samples, 0.01%)</title><rect x="237.6" y="1861" width="0.1" height="15.0" fill="rgb(222,18,34)" rx="2" ry="2" />
<text x="240.58" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (9 samples, 0.03%)</title><rect x="70.6" y="1717" width="0.6" height="15.0" fill="rgb(243,216,27)" rx="2" ry="2" />
<text x="73.62" y="1727.5" ></text>
</g>
<g >
<title>TF_ManagedBuffer::~TF_ManagedBuffer (9 samples, 0.03%)</title><rect x="666.1" y="1781" width="0.6" height="15.0" fill="rgb(235,35,29)" rx="2" ry="2" />
<text x="669.06" y="1791.5" ></text>
</g>
<g >
<title>_mid_memalign (2 samples, 0.01%)</title><rect x="752.9" y="1589" width="0.1" height="15.0" fill="rgb(205,85,12)" rx="2" ry="2" />
<text x="755.88" y="1599.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::Buffer&lt;double&gt;::~Buffer (3 samples, 0.01%)</title><rect x="601.4" y="1813" width="0.2" height="15.0" fill="rgb(221,15,47)" rx="2" ry="2" />
<text x="604.39" y="1823.5" ></text>
</g>
<g >
<title>outlined init with copy of SwiftFusion._AD__$s11SwiftFusion4Rot2V8unrotateyAA7Vector2VAFF_bb0__PB__src_0_wrt_0_1 (2 samples, 0.01%)</title><rect x="1293.4" y="1813" width="0.1" height="15.0" fill="rgb(246,17,44)" rx="2" ry="2" />
<text x="1296.40" y="1823.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (8 samples, 0.03%)</title><rect x="575.7" y="1765" width="0.6" height="15.0" fill="rgb(224,27,36)" rx="2" ry="2" />
<text x="578.75" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (5 samples, 0.02%)</title><rect x="226.7" y="1877" width="0.4" height="15.0" fill="rgb(232,209,7)" rx="2" ry="2" />
<text x="229.72" y="1887.5" ></text>
</g>
<g >
<title>partial apply forwarder for closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1 in TensorFlow.ShapedArray.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (2 samples, 0.01%)</title><rect x="1461.8" y="1877" width="0.1" height="15.0" fill="rgb(246,207,19)" rx="2" ry="2" />
<text x="1464.80" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (58 samples, 0.22%)</title><rect x="526.2" y="1925" width="4.0" height="15.0" fill="rgb(214,186,40)" rx="2" ry="2" />
<text x="529.19" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="29.0" y="1957" width="0.1" height="15.0" fill="rgb(208,118,19)" rx="2" ry="2" />
<text x="31.97" y="1967.5" ></text>
</g>
<g >
<title>destroy value witness for SwiftFusion.AnyDerivative (15 samples, 0.06%)</title><rect x="1431.4" y="1845" width="1.0" height="15.0" fill="rgb(249,190,44)" rx="2" ry="2" />
<text x="1434.42" y="1855.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;tensorflow::Fprint128, std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt;, std::allocator&lt;std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;tensorflow::Fprint128&gt;, tensorflow::Fprint128Hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (7 samples, 0.03%)</title><rect x="432.7" y="1829" width="0.5" height="15.0" fill="rgb(207,70,53)" rx="2" ry="2" />
<text x="435.71" y="1839.5" ></text>
</g>
<g >
<title>protocol witness for Swift.ExpressibleByIntegerLiteral.init(integerLiteral: A.IntegerLiteralType) -&gt; A in conformance Swift.Int64 : Swift.ExpressibleByIntegerLiteral in Swift (5 samples, 0.02%)</title><rect x="466.4" y="1877" width="0.3" height="15.0" fill="rgb(249,118,50)" rx="2" ry="2" />
<text x="469.39" y="1887.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (4 samples, 0.02%)</title><rect x="454.3" y="1909" width="0.3" height="15.0" fill="rgb(250,208,17)" rx="2" ry="2" />
<text x="457.30" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (45 samples, 0.17%)</title><rect x="1468.7" y="1957" width="3.1" height="15.0" fill="rgb(214,113,43)" rx="2" ry="2" />
<text x="1471.67" y="1967.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (11 samples, 0.04%)</title><rect x="784.7" y="1861" width="0.8" height="15.0" fill="rgb(244,61,33)" rx="2" ry="2" />
<text x="787.70" y="1871.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;int, std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt;, std::allocator&lt;std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;int&gt;, std::hash&lt;int&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::~_Hashtable (2 samples, 0.01%)</title><rect x="67.4" y="1829" width="0.1" height="15.0" fill="rgb(250,134,36)" rx="2" ry="2" />
<text x="70.39" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (301 samples, 1.16%)</title><rect x="505.3" y="1909" width="20.7" height="15.0" fill="rgb(215,75,3)" rx="2" ry="2" />
<text x="508.30" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::RankOp::Compute (2 samples, 0.01%)</title><rect x="967.9" y="1733" width="0.1" height="15.0" fill="rgb(219,111,41)" rx="2" ry="2" />
<text x="970.87" y="1743.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (5 samples, 0.02%)</title><rect x="721.7" y="1861" width="0.4" height="15.0" fill="rgb(208,190,1)" rx="2" ry="2" />
<text x="724.74" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (145 samples, 0.56%)</title><rect x="772.9" y="1877" width="9.9" height="15.0" fill="rgb(229,206,24)" rx="2" ry="2" />
<text x="775.88" y="1887.5" ></text>
</g>
<g >
<title>swift_beginAccess (4 samples, 0.02%)</title><rect x="641.7" y="1685" width="0.3" height="15.0" fill="rgb(221,5,42)" rx="2" ry="2" />
<text x="644.73" y="1695.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="1246.7" y="1861" width="0.1" height="15.0" fill="rgb(238,1,36)" rx="2" ry="2" />
<text x="1249.66" y="1871.5" ></text>
</g>
<g >
<title>swift_checkMetadataState (2 samples, 0.01%)</title><rect x="850.1" y="1861" width="0.1" height="15.0" fill="rgb(214,56,45)" rx="2" ry="2" />
<text x="853.06" y="1871.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1110.2" y="1925" width="0.2" height="15.0" fill="rgb(227,82,31)" rx="2" ry="2" />
<text x="1113.22" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (33 samples, 0.13%)</title><rect x="374.8" y="1845" width="2.2" height="15.0" fill="rgb(214,116,8)" rx="2" ry="2" />
<text x="377.77" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (12 samples, 0.05%)</title><rect x="680.7" y="1845" width="0.8" height="15.0" fill="rgb(232,147,42)" rx="2" ry="2" />
<text x="683.70" y="1855.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow._AnyTensorHandle._cTensorHandle.getter : Swift.OpaquePointer (4 samples, 0.02%)</title><rect x="950.5" y="1877" width="0.3" height="15.0" fill="rgb(216,117,42)" rx="2" ry="2" />
<text x="953.48" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (37 samples, 0.14%)</title><rect x="1537.1" y="1893" width="2.6" height="15.0" fill="rgb(230,45,14)" rx="2" ry="2" />
<text x="1540.13" y="1903.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (3 samples, 0.01%)</title><rect x="1270.6" y="1893" width="0.2" height="15.0" fill="rgb(221,48,10)" rx="2" ry="2" />
<text x="1273.58" y="1903.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="881.8" y="1861" width="0.1" height="15.0" fill="rgb(219,1,17)" rx="2" ry="2" />
<text x="884.75" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (18 samples, 0.07%)</title><rect x="959.9" y="1797" width="1.2" height="15.0" fill="rgb(245,4,48)" rx="2" ry="2" />
<text x="962.90" y="1807.5" ></text>
</g>
<g >
<title>TFE_Execute (195 samples, 0.75%)</title><rect x="1013.4" y="1861" width="13.4" height="15.0" fill="rgb(227,97,15)" rx="2" ry="2" />
<text x="1016.45" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (25 samples, 0.10%)</title><rect x="375.0" y="1797" width="1.8" height="15.0" fill="rgb(237,50,10)" rx="2" ry="2" />
<text x="378.05" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (4 samples, 0.02%)</title><rect x="109.0" y="1845" width="0.3" height="15.0" fill="rgb(214,130,33)" rx="2" ry="2" />
<text x="111.98" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (3 samples, 0.01%)</title><rect x="88.0" y="1797" width="0.2" height="15.0" fill="rgb(252,137,51)" rx="2" ry="2" />
<text x="91.01" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (14 samples, 0.05%)</title><rect x="1067.5" y="1909" width="0.9" height="15.0" fill="rgb(232,143,4)" rx="2" ry="2" />
<text x="1070.47" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::ByteSizeLong (2 samples, 0.01%)</title><rect x="597.2" y="1813" width="0.1" height="15.0" fill="rgb(253,186,4)" rx="2" ry="2" />
<text x="600.19" y="1823.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="661.9" y="1925" width="0.2" height="15.0" fill="rgb(254,192,15)" rx="2" ry="2" />
<text x="664.87" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (195 samples, 0.75%)</title><rect x="470.7" y="1813" width="13.4" height="15.0" fill="rgb(225,192,54)" rx="2" ry="2" />
<text x="473.65" y="1823.5" ></text>
</g>
<g >
<title>swift_release (6 samples, 0.02%)</title><rect x="1036.1" y="1829" width="0.4" height="15.0" fill="rgb(205,151,17)" rx="2" ry="2" />
<text x="1039.06" y="1839.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (2 samples, 0.01%)</title><rect x="881.4" y="1861" width="0.1" height="15.0" fill="rgb(254,167,6)" rx="2" ry="2" />
<text x="884.41" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorValue (5 samples, 0.02%)</title><rect x="1234.5" y="1765" width="0.3" height="15.0" fill="rgb(235,83,39)" rx="2" ry="2" />
<text x="1237.49" y="1775.5" ></text>
</g>
<g >
<title>swift_once (3 samples, 0.01%)</title><rect x="764.1" y="1813" width="0.2" height="15.0" fill="rgb(251,23,4)" rx="2" ry="2" />
<text x="767.08" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (2 samples, 0.01%)</title><rect x="1455.6" y="1861" width="0.1" height="15.0" fill="rgb(254,151,42)" rx="2" ry="2" />
<text x="1458.61" y="1871.5" ></text>
</g>
<g >
<title>swift_beginAccess (2 samples, 0.01%)</title><rect x="1245.1" y="1797" width="0.2" height="15.0" fill="rgb(209,28,54)" rx="2" ry="2" />
<text x="1248.15" y="1807.5" ></text>
</g>
<g >
<title>closure #2 (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; () in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="1443.0" y="1733" width="0.1" height="15.0" fill="rgb(208,166,7)" rx="2" ry="2" />
<text x="1445.96" y="1743.5" ></text>
</g>
<g >
<title>__malloc_usable_size (4 samples, 0.02%)</title><rect x="790.5" y="1845" width="0.3" height="15.0" fill="rgb(221,41,13)" rx="2" ry="2" />
<text x="793.54" y="1855.5" ></text>
</g>
<g >
<title>swift_beginAccess (2 samples, 0.01%)</title><rect x="225.4" y="1909" width="0.1" height="15.0" fill="rgb(232,227,28)" rx="2" ry="2" />
<text x="228.41" y="1919.5" ></text>
</g>
<g >
<title>swift_beginAccess (2 samples, 0.01%)</title><rect x="764.3" y="1829" width="0.1" height="15.0" fill="rgb(221,30,45)" rx="2" ry="2" />
<text x="767.29" y="1839.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (282 samples, 1.09%)</title><rect x="632.6" y="1861" width="19.4" height="15.0" fill="rgb(216,133,8)" rx="2" ry="2" />
<text x="635.59" y="1871.5" ></text>
</g>
<g >
<title>swift_arrayDestroy (33 samples, 0.13%)</title><rect x="1430.2" y="1861" width="2.2" height="15.0" fill="rgb(243,221,35)" rx="2" ry="2" />
<text x="1433.18" y="1871.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (2 samples, 0.01%)</title><rect x="1472.7" y="1877" width="0.1" height="15.0" fill="rgb(249,125,19)" rx="2" ry="2" />
<text x="1475.66" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (51 samples, 0.20%)</title><rect x="883.3" y="1845" width="3.5" height="15.0" fill="rgb(251,122,51)" rx="2" ry="2" />
<text x="886.26" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_: A, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (324 samples, 1.25%)</title><rect x="1150.0" y="1941" width="22.2" height="15.0" fill="rgb(211,161,21)" rx="2" ry="2" />
<text x="1152.95" y="1951.5" >T..</text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (16 samples, 0.06%)</title><rect x="454.7" y="1893" width="1.1" height="15.0" fill="rgb(246,68,39)" rx="2" ry="2" />
<text x="457.71" y="1903.5" ></text>
</g>
<g >
<title>swift_beginAccess (2 samples, 0.01%)</title><rect x="199.4" y="1877" width="0.2" height="15.0" fill="rgb(248,225,22)" rx="2" ry="2" />
<text x="202.43" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.scalars.getter : [A] (19 samples, 0.07%)</title><rect x="1461.7" y="1957" width="1.3" height="15.0" fill="rgb(233,190,0)" rx="2" ry="2" />
<text x="1464.73" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (16 samples, 0.06%)</title><rect x="21.1" y="1893" width="1.1" height="15.0" fill="rgb(249,93,41)" rx="2" ry="2" />
<text x="24.13" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (3 samples, 0.01%)</title><rect x="375.5" y="1765" width="0.2" height="15.0" fill="rgb(223,21,53)" rx="2" ry="2" />
<text x="378.46" y="1775.5" ></text>
</g>
<g >
<title>TFE_NewOp (42 samples, 0.16%)</title><rect x="345.8" y="1893" width="2.9" height="15.0" fill="rgb(213,223,50)" rx="2" ry="2" />
<text x="348.83" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (9 samples, 0.03%)</title><rect x="105.1" y="1861" width="0.6" height="15.0" fill="rgb(230,229,37)" rx="2" ry="2" />
<text x="108.06" y="1871.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (5 samples, 0.02%)</title><rect x="649.7" y="1781" width="0.3" height="15.0" fill="rgb(217,127,0)" rx="2" ry="2" />
<text x="652.71" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (242 samples, 0.93%)</title><rect x="742.3" y="1765" width="16.6" height="15.0" fill="rgb(238,29,11)" rx="2" ry="2" />
<text x="745.29" y="1775.5" ></text>
</g>
<g >
<title>partial apply forwarder for closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="632.7" y="1845" width="0.1" height="15.0" fill="rgb(245,117,15)" rx="2" ry="2" />
<text x="635.66" y="1855.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int and conformance Swift.Int : Swift.SignedInteger in Swift (2 samples, 0.01%)</title><rect x="592.3" y="1909" width="0.2" height="15.0" fill="rgb(252,162,34)" rx="2" ry="2" />
<text x="595.31" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::InputDevice (2 samples, 0.01%)</title><rect x="1081.1" y="1829" width="0.1" height="15.0" fill="rgb(238,176,46)" rx="2" ry="2" />
<text x="1084.08" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (29 samples, 0.11%)</title><rect x="1026.9" y="1877" width="2.0" height="15.0" fill="rgb(235,87,6)" rx="2" ry="2" />
<text x="1029.92" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (5 samples, 0.02%)</title><rect x="862.9" y="1877" width="0.4" height="15.0" fill="rgb(209,94,25)" rx="2" ry="2" />
<text x="865.92" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::BuildCacheKeyForDevice (14 samples, 0.05%)</title><rect x="741.0" y="1765" width="0.9" height="15.0" fill="rgb(238,21,42)" rx="2" ry="2" />
<text x="743.98" y="1775.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="304.5" y="1909" width="0.2" height="15.0" fill="rgb(249,111,22)" rx="2" ry="2" />
<text x="307.52" y="1919.5" ></text>
</g>
<g >
<title>Eigen::ThreadPoolDevice::parallelFor (4 samples, 0.02%)</title><rect x="750.1" y="1669" width="0.3" height="15.0" fill="rgb(245,178,37)" rx="2" ry="2" />
<text x="753.13" y="1679.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (2 samples, 0.01%)</title><rect x="993.0" y="1909" width="0.1" height="15.0" fill="rgb(227,99,35)" rx="2" ry="2" />
<text x="995.96" y="1919.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (4 samples, 0.02%)</title><rect x="499.0" y="1877" width="0.2" height="15.0" fill="rgb(236,129,52)" rx="2" ry="2" />
<text x="501.97" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (6 samples, 0.02%)</title><rect x="640.7" y="1685" width="0.4" height="15.0" fill="rgb(254,64,49)" rx="2" ry="2" />
<text x="643.70" y="1695.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (3 samples, 0.01%)</title><rect x="1470.9" y="1909" width="0.2" height="15.0" fill="rgb(218,18,8)" rx="2" ry="2" />
<text x="1473.94" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::Executor (7 samples, 0.03%)</title><rect x="989.1" y="1861" width="0.5" height="15.0" fill="rgb(209,209,5)" rx="2" ry="2" />
<text x="992.11" y="1871.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="353.5" y="1893" width="0.1" height="15.0" fill="rgb(213,114,6)" rx="2" ry="2" />
<text x="356.46" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::profiler::TraceMe::Stop (2 samples, 0.01%)</title><rect x="1239.2" y="1845" width="0.2" height="15.0" fill="rgb(244,76,38)" rx="2" ry="2" />
<text x="1242.24" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::BuildCacheKeyForDevice (3 samples, 0.01%)</title><rect x="1468.9" y="1813" width="0.3" height="15.0" fill="rgb(205,194,37)" rx="2" ry="2" />
<text x="1471.94" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (50 samples, 0.19%)</title><rect x="696.3" y="1829" width="3.4" height="15.0" fill="rgb(232,226,45)" rx="2" ry="2" />
<text x="699.31" y="1839.5" ></text>
</g>
<g >
<title>TF_DeleteTensor (2 samples, 0.01%)</title><rect x="246.9" y="1781" width="0.1" height="15.0" fill="rgb(208,13,50)" rx="2" ry="2" />
<text x="249.86" y="1791.5" ></text>
</g>
<g >
<title>Swift.UnsafeBufferPointer.baseAddress.getter : Swift.UnsafePointer&lt;A&gt;? (3 samples, 0.01%)</title><rect x="93.9" y="1781" width="0.2" height="15.0" fill="rgb(212,5,52)" rx="2" ry="2" />
<text x="96.86" y="1791.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (2 samples, 0.01%)</title><rect x="143.3" y="1813" width="0.2" height="15.0" fill="rgb(218,70,41)" rx="2" ry="2" />
<text x="146.34" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (48 samples, 0.19%)</title><rect x="449.3" y="1893" width="3.3" height="15.0" fill="rgb(235,180,34)" rx="2" ry="2" />
<text x="452.28" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (5 samples, 0.02%)</title><rect x="1120.1" y="1781" width="0.4" height="15.0" fill="rgb(251,12,18)" rx="2" ry="2" />
<text x="1123.12" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (322 samples, 1.24%)</title><rect x="736.9" y="1797" width="22.2" height="15.0" fill="rgb(245,29,19)" rx="2" ry="2" />
<text x="739.93" y="1807.5" >t..</text>
</g>
<g >
<title>tensorflow::EagerOpRewriteRegistry::RunRewrite (3 samples, 0.01%)</title><rect x="759.3" y="1797" width="0.2" height="15.0" fill="rgb(243,29,32)" rx="2" ry="2" />
<text x="762.34" y="1807.5" ></text>
</g>
<g >
<title>Eigen::TensorCostModel&lt;Eigen::ThreadPoolDevice&gt;::numThreads (3 samples, 0.01%)</title><rect x="1194.7" y="1717" width="0.2" height="15.0" fill="rgb(251,119,46)" rx="2" ry="2" />
<text x="1197.70" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (15 samples, 0.06%)</title><rect x="120.7" y="1861" width="1.0" height="15.0" fill="rgb(210,167,31)" rx="2" ry="2" />
<text x="123.66" y="1871.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (4 samples, 0.02%)</title><rect x="565.2" y="1829" width="0.3" height="15.0" fill="rgb(229,7,8)" rx="2" ry="2" />
<text x="568.23" y="1839.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (4 samples, 0.02%)</title><rect x="714.8" y="1909" width="0.3" height="15.0" fill="rgb(222,184,30)" rx="2" ry="2" />
<text x="717.80" y="1919.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (7 samples, 0.03%)</title><rect x="973.9" y="1877" width="0.5" height="15.0" fill="rgb(238,219,43)" rx="2" ry="2" />
<text x="976.92" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorShape::IsSameSize (4 samples, 0.02%)</title><rect x="1238.1" y="1749" width="0.2" height="15.0" fill="rgb(249,198,3)" rx="2" ry="2" />
<text x="1241.07" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (436 samples, 1.68%)</title><rect x="952.4" y="1909" width="30.0" height="15.0" fill="rgb(216,52,11)" rx="2" ry="2" />
<text x="955.41" y="1919.5" >Te..</text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="723.9" y="1877" width="0.2" height="15.0" fill="rgb(252,153,40)" rx="2" ry="2" />
<text x="726.94" y="1887.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (3 samples, 0.01%)</title><rect x="265.1" y="1893" width="0.2" height="15.0" fill="rgb(249,0,8)" rx="2" ry="2" />
<text x="268.14" y="1903.5" ></text>
</g>
<g >
<title>_int_free (49 samples, 0.19%)</title><rect x="24.9" y="2005" width="3.4" height="15.0" fill="rgb(209,34,36)" rx="2" ry="2" />
<text x="27.92" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="373" width="0.9" height="15.0" fill="rgb(247,210,0)" rx="2" ry="2" />
<text x="24.27" y="383.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (12 samples, 0.05%)</title><rect x="1248.2" y="1925" width="0.9" height="15.0" fill="rgb(212,147,14)" rx="2" ry="2" />
<text x="1251.24" y="1935.5" ></text>
</g>
<g >
<title>malloc (668 samples, 2.58%)</title><rect x="1643.7" y="2053" width="45.9" height="15.0" fill="rgb(207,61,10)" rx="2" ry="2" />
<text x="1646.73" y="2063.5" >malloc</text>
</g>
<g >
<title>tensorflow::Tensor::CopyFromInternal (3 samples, 0.01%)</title><rect x="818.2" y="1701" width="0.2" height="15.0" fill="rgb(242,215,26)" rx="2" ry="2" />
<text x="821.17" y="1711.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (174 samples, 0.67%)</title><rect x="253.9" y="1909" width="12.0" height="15.0" fill="rgb(216,168,0)" rx="2" ry="2" />
<text x="256.94" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorHandle (9 samples, 0.03%)</title><rect x="757.7" y="1717" width="0.6" height="15.0" fill="rgb(216,102,24)" rx="2" ry="2" />
<text x="760.69" y="1727.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="660.8" y="1877" width="0.1" height="15.0" fill="rgb(250,101,43)" rx="2" ry="2" />
<text x="663.77" y="1887.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (3 samples, 0.01%)</title><rect x="880.2" y="1845" width="0.2" height="15.0" fill="rgb(211,27,4)" rx="2" ry="2" />
<text x="883.17" y="1855.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection&lt; where A.Iterator == Swift.IndexingIterator&lt;A&gt;&gt;.makeIterator() -&gt; Swift.IndexingIterator&lt;A&gt; (2 samples, 0.01%)</title><rect x="1267.5" y="1861" width="0.1" height="15.0" fill="rgb(240,100,20)" rx="2" ry="2" />
<text x="1270.49" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle._cTensorHandle.getter : Swift.OpaquePointer (10 samples, 0.04%)</title><rect x="719.1" y="1877" width="0.6" height="15.0" fill="rgb(247,54,26)" rx="2" ry="2" />
<text x="722.06" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (4 samples, 0.02%)</title><rect x="1437.3" y="1829" width="0.2" height="15.0" fill="rgb(242,70,15)" rx="2" ry="2" />
<text x="1440.26" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::shaped&lt;int, 1ul&gt; (3 samples, 0.01%)</title><rect x="277.0" y="1701" width="0.2" height="15.0" fill="rgb(244,181,41)" rx="2" ry="2" />
<text x="279.96" y="1711.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="498.7" y="1877" width="0.1" height="15.0" fill="rgb(242,194,37)" rx="2" ry="2" />
<text x="501.70" y="1887.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow._ShapedArrayProtocol&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A.TensorFlow._ShapedArrayProtocol.Scalar&gt;) -&gt; (@owned [A.TensorFlow._ShapedArrayProtocol.Scalar], @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A.TensorFlow._ShapedArrayProtocol.Scalar&gt;) -&gt; (@out [A.TensorFlow._ShapedArrayProtocol.Scalar], @error @owned Swift.Error) (26 samples, 0.10%)</title><rect x="395.3" y="1845" width="1.8" height="15.0" fill="rgb(240,153,16)" rx="2" ry="2" />
<text x="398.32" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () (16 samples, 0.06%)</title><rect x="79.2" y="1941" width="1.1" height="15.0" fill="rgb(213,35,18)" rx="2" ry="2" />
<text x="82.21" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::port::Free (2 samples, 0.01%)</title><rect x="241.7" y="1781" width="0.1" height="15.0" fill="rgb(234,11,11)" rx="2" ry="2" />
<text x="244.70" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CopyFromInternal (2 samples, 0.01%)</title><rect x="408.8" y="1861" width="0.1" height="15.0" fill="rgb(239,180,27)" rx="2" ry="2" />
<text x="411.79" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.FixedWidthInteger.bitWidth.getter : Swift.Int in conformance Swift.Int32 : Swift.FixedWidthInteger in Swift (3 samples, 0.01%)</title><rect x="836.9" y="1765" width="0.2" height="15.0" fill="rgb(254,129,6)" rx="2" ry="2" />
<text x="839.87" y="1775.5" ></text>
</g>
<g >
<title>std::_Hash_bytes (3 samples, 0.01%)</title><rect x="81.3" y="1893" width="0.3" height="15.0" fill="rgb(226,182,22)" rx="2" ry="2" />
<text x="84.35" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::DeviceOrHostCPU (2 samples, 0.01%)</title><rect x="443.1" y="1845" width="0.1" height="15.0" fill="rgb(248,58,42)" rx="2" ry="2" />
<text x="446.09" y="1855.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1147.7" y="1925" width="0.1" height="15.0" fill="rgb(221,140,0)" rx="2" ry="2" />
<text x="1150.68" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1285" width="0.9" height="15.0" fill="rgb(217,34,49)" rx="2" ry="2" />
<text x="24.27" y="1295.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (5 samples, 0.02%)</title><rect x="125.6" y="1797" width="0.4" height="15.0" fill="rgb(240,137,6)" rx="2" ry="2" />
<text x="128.61" y="1807.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (6 samples, 0.02%)</title><rect x="934.3" y="1749" width="0.4" height="15.0" fill="rgb(221,67,19)" rx="2" ry="2" />
<text x="937.33" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (2 samples, 0.01%)</title><rect x="1470.9" y="1893" width="0.2" height="15.0" fill="rgb(254,11,15)" rx="2" ry="2" />
<text x="1473.94" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="530.9" y="1941" width="0.2" height="15.0" fill="rgb(216,123,48)" rx="2" ry="2" />
<text x="533.93" y="1951.5" ></text>
</g>
<g >
<title>protocol witness for Swift.Collection.subscript.read : (A.Index) -&gt; A.Element in conformance [A] : Swift.Collection in Swift (2 samples, 0.01%)</title><rect x="553.5" y="1861" width="0.1" height="15.0" fill="rgb(225,174,12)" rx="2" ry="2" />
<text x="556.48" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for Swift.BinaryInteger.init&lt;A where A1: Swift.BinaryInteger&gt;(truncatingIfNeeded: A1) -&gt; A in conformance Swift.Int64 : Swift.BinaryInteger in Swift (4 samples, 0.02%)</title><rect x="1436.4" y="1781" width="0.3" height="15.0" fill="rgb(215,54,39)" rx="2" ry="2" />
<text x="1439.43" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (3 samples, 0.01%)</title><rect x="1458.9" y="1829" width="0.2" height="15.0" fill="rgb(249,217,32)" rx="2" ry="2" />
<text x="1461.91" y="1839.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int, @unowned Swift.Int) -&gt; (@unowned Swift.Int, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int, @in_guaranteed Swift.Int) -&gt; (@out Swift.Int, @error @owned Swift.Error) (2 samples, 0.01%)</title><rect x="488.5" y="1861" width="0.2" height="15.0" fill="rgb(251,9,33)" rx="2" ry="2" />
<text x="491.52" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (6 samples, 0.02%)</title><rect x="292.4" y="1829" width="0.4" height="15.0" fill="rgb(225,3,24)" rx="2" ry="2" />
<text x="295.43" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (6 samples, 0.02%)</title><rect x="1452.2" y="1829" width="0.4" height="15.0" fill="rgb(205,226,45)" rx="2" ry="2" />
<text x="1455.17" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (2 samples, 0.01%)</title><rect x="1132.0" y="1893" width="0.1" height="15.0" fill="rgb(239,206,19)" rx="2" ry="2" />
<text x="1135.01" y="1903.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;tensorflow::Fprint128, std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt;, std::allocator&lt;std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;tensorflow::Fprint128&gt;, tensorflow::Fprint128Hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (2 samples, 0.01%)</title><rect x="1116.7" y="1829" width="0.1" height="15.0" fill="rgb(220,35,31)" rx="2" ry="2" />
<text x="1119.68" y="1839.5" ></text>
</g>
<g >
<title>TF_AllocateTensor (3 samples, 0.01%)</title><rect x="1102.9" y="1797" width="0.2" height="15.0" fill="rgb(233,57,37)" rx="2" ry="2" />
<text x="1105.94" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (185 samples, 0.71%)</title><rect x="107.2" y="1909" width="12.7" height="15.0" fill="rgb(245,175,3)" rx="2" ry="2" />
<text x="110.19" y="1919.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (3 samples, 0.01%)</title><rect x="1490.1" y="1941" width="0.2" height="15.0" fill="rgb(210,4,30)" rx="2" ry="2" />
<text x="1493.11" y="1951.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (7 samples, 0.03%)</title><rect x="1262.9" y="1781" width="0.5" height="15.0" fill="rgb(230,8,22)" rx="2" ry="2" />
<text x="1265.95" y="1791.5" ></text>
</g>
<g >
<title>getEnumTagSinglePayload value witness for SwiftFusion._ConcreteDerivativeBox (7 samples, 0.03%)</title><rect x="1368.6" y="1797" width="0.5" height="15.0" fill="rgb(233,210,9)" rx="2" ry="2" />
<text x="1371.59" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::DeviceOrHostCPU (2 samples, 0.01%)</title><rect x="71.9" y="1829" width="0.1" height="15.0" fill="rgb(243,64,48)" rx="2" ry="2" />
<text x="74.86" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (4 samples, 0.02%)</title><rect x="78.2" y="1877" width="0.3" height="15.0" fill="rgb(210,144,32)" rx="2" ry="2" />
<text x="81.18" y="1887.5" ></text>
</g>
<g >
<title>_int_free (9 samples, 0.03%)</title><rect x="1593.8" y="1989" width="0.6" height="15.0" fill="rgb(244,53,47)" rx="2" ry="2" />
<text x="1596.76" y="1999.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type [Swift.Int] and conformance [A] : Swift.Sequence in Swift (4 samples, 0.02%)</title><rect x="1170.2" y="1909" width="0.2" height="15.0" fill="rgb(222,56,11)" rx="2" ry="2" />
<text x="1173.16" y="1919.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (10 samples, 0.04%)</title><rect x="1042.7" y="1829" width="0.7" height="15.0" fill="rgb(210,187,32)" rx="2" ry="2" />
<text x="1045.73" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::IsRemote (2 samples, 0.01%)</title><rect x="1075.5" y="1749" width="0.1" height="15.0" fill="rgb(226,19,1)" rx="2" ry="2" />
<text x="1078.51" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (3 samples, 0.01%)</title><rect x="143.3" y="1845" width="0.2" height="15.0" fill="rgb(253,225,39)" rx="2" ry="2" />
<text x="146.27" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow._RawTFEager.reshape&lt;A, B where A: TensorFlow.TensorFlowScalar, B: TensorFlow.TensorFlowIndex&gt;(_: TensorFlow.Tensor&lt;A&gt;, shape: TensorFlow.Tensor&lt;B&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (22 samples, 0.08%)</title><rect x="1433.5" y="1909" width="1.5" height="15.0" fill="rgb(207,5,26)" rx="2" ry="2" />
<text x="1436.48" y="1919.5" ></text>
</g>
<g >
<title>Swift.Array.endIndex.getter : Swift.Int (2 samples, 0.01%)</title><rect x="621.3" y="1877" width="0.2" height="15.0" fill="rgb(226,113,16)" rx="2" ry="2" />
<text x="624.32" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for Swift.Sequence.makeIterator() -&gt; A.Iterator in conformance &lt; where A: Swift.Strideable, A.Stride: Swift.SignedInteger&gt; Swift.Range&lt;A&gt; : Swift.Sequence in Swift (2 samples, 0.01%)</title><rect x="46.7" y="1829" width="0.1" height="15.0" fill="rgb(221,128,12)" rx="2" ry="2" />
<text x="49.70" y="1839.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Range&lt;Swift.Int32&gt; and conformance &lt; where A: Swift.Strideable, A.Stride: Swift.SignedInteger&gt; Swift.Range&lt;A&gt; : Swift.Collection in Swift (3 samples, 0.01%)</title><rect x="411.3" y="1893" width="0.2" height="15.0" fill="rgb(233,91,7)" rx="2" ry="2" />
<text x="414.27" y="1903.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.ShapedArray&lt;A where A: TensorFlow._TensorFlowDataTypeCompatible&gt;.init(owning: Swift.OpaquePointer) -&gt; TensorFlow.ShapedArray&lt;A&gt; (7 samples, 0.03%)</title><rect x="1461.9" y="1893" width="0.5" height="15.0" fill="rgb(220,14,32)" rx="2" ry="2" />
<text x="1464.93" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (2 samples, 0.01%)</title><rect x="225.5" y="1909" width="0.2" height="15.0" fill="rgb(248,163,37)" rx="2" ry="2" />
<text x="228.55" y="1919.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (2 samples, 0.01%)</title><rect x="1009.5" y="1893" width="0.1" height="15.0" fill="rgb(252,70,43)" rx="2" ry="2" />
<text x="1012.46" y="1903.5" ></text>
</g>
<g >
<title>memset@plt (4 samples, 0.02%)</title><rect x="406.0" y="1877" width="0.3" height="15.0" fill="rgb(245,217,46)" rx="2" ry="2" />
<text x="409.04" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::GetCachedKernel (2 samples, 0.01%)</title><rect x="72.1" y="1845" width="0.1" height="15.0" fill="rgb(249,200,16)" rx="2" ry="2" />
<text x="75.07" y="1855.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="779.3" y="1813" width="0.1" height="15.0" fill="rgb(215,110,4)" rx="2" ry="2" />
<text x="782.27" y="1823.5" ></text>
</g>
<g >
<title>swift_dynamicCast (22 samples, 0.08%)</title><rect x="1387.6" y="1797" width="1.5" height="15.0" fill="rgb(252,130,51)" rx="2" ry="2" />
<text x="1390.56" y="1807.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (3 samples, 0.01%)</title><rect x="150.1" y="1765" width="0.3" height="15.0" fill="rgb(228,110,10)" rx="2" ry="2" />
<text x="153.15" y="1775.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (11 samples, 0.04%)</title><rect x="79.5" y="1925" width="0.7" height="15.0" fill="rgb(218,90,30)" rx="2" ry="2" />
<text x="82.49" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.shape.getter : TensorFlow.TensorShape (6 samples, 0.02%)</title><rect x="1463.2" y="1941" width="0.4" height="15.0" fill="rgb(215,153,26)" rx="2" ry="2" />
<text x="1466.17" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (14 samples, 0.05%)</title><rect x="439.6" y="1733" width="0.9" height="15.0" fill="rgb(251,144,5)" rx="2" ry="2" />
<text x="442.59" y="1743.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="975.4" y="1877" width="0.2" height="15.0" fill="rgb(248,198,14)" rx="2" ry="2" />
<text x="978.44" y="1887.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (3 samples, 0.01%)</title><rect x="413.5" y="1941" width="0.2" height="15.0" fill="rgb(227,173,39)" rx="2" ry="2" />
<text x="416.47" y="1951.5" ></text>
</g>
<g >
<title>$defer #1 () -&gt; () in TensorFlow.TFETensorHandle.rank.getter : Swift.Int (2 samples, 0.01%)</title><rect x="296.5" y="1861" width="0.1" height="15.0" fill="rgb(240,1,45)" rx="2" ry="2" />
<text x="299.48" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="148.4" y="1781" width="0.4" height="15.0" fill="rgb(237,135,23)" rx="2" ry="2" />
<text x="151.43" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::tensor&lt;double, 2ul&gt; (6 samples, 0.02%)</title><rect x="1021.3" y="1685" width="0.4" height="15.0" fill="rgb(239,90,46)" rx="2" ry="2" />
<text x="1024.28" y="1695.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="1455.2" y="1941" width="0.2" height="15.0" fill="rgb(242,128,30)" rx="2" ry="2" />
<text x="1458.20" y="1951.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.AdditiveArithmetic.+ infix(A, A) -&gt; A in conformance SwiftFusion.AnyDerivative : Swift.AdditiveArithmetic in SwiftFusion (6 samples, 0.02%)</title><rect x="1293.9" y="1861" width="0.4" height="15.0" fill="rgb(218,28,47)" rx="2" ry="2" />
<text x="1296.88" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.init(arrayLiteral: Swift.Int...) -&gt; TensorFlow.TensorShape (3 samples, 0.01%)</title><rect x="1170.6" y="1925" width="0.2" height="15.0" fill="rgb(209,167,49)" rx="2" ry="2" />
<text x="1173.64" y="1935.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (7 samples, 0.03%)</title><rect x="456.8" y="1925" width="0.5" height="15.0" fill="rgb(241,225,41)" rx="2" ry="2" />
<text x="459.84" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (214 samples, 0.83%)</title><rect x="145.4" y="1909" width="14.7" height="15.0" fill="rgb(205,102,12)" rx="2" ry="2" />
<text x="148.41" y="1919.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (28 samples, 0.11%)</title><rect x="1157.2" y="1733" width="2.0" height="15.0" fill="rgb(213,87,28)" rx="2" ry="2" />
<text x="1160.24" y="1743.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (2 samples, 0.01%)</title><rect x="1204.7" y="1877" width="0.1" height="15.0" fill="rgb(247,70,20)" rx="2" ry="2" />
<text x="1207.66" y="1887.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (4 samples, 0.02%)</title><rect x="1219.2" y="1829" width="0.2" height="15.0" fill="rgb(215,67,31)" rx="2" ry="2" />
<text x="1222.17" y="1839.5" ></text>
</g>
<g >
<title>TFE_Execute (133 samples, 0.51%)</title><rect x="509.8" y="1861" width="9.1" height="15.0" fill="rgb(233,111,17)" rx="2" ry="2" />
<text x="512.76" y="1871.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (11 samples, 0.04%)</title><rect x="1042.7" y="1845" width="0.8" height="15.0" fill="rgb(214,219,37)" rx="2" ry="2" />
<text x="1045.73" y="1855.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="670.7" y="1845" width="0.2" height="15.0" fill="rgb(240,205,53)" rx="2" ry="2" />
<text x="673.74" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (41 samples, 0.16%)</title><rect x="1201.1" y="1909" width="2.8" height="15.0" fill="rgb(236,184,32)" rx="2" ry="2" />
<text x="1204.09" y="1919.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (2 samples, 0.01%)</title><rect x="984.0" y="1845" width="0.1" height="15.0" fill="rgb(235,76,11)" rx="2" ry="2" />
<text x="986.96" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (639 samples, 2.47%)</title><rect x="727.9" y="1877" width="43.9" height="15.0" fill="rgb(224,147,11)" rx="2" ry="2" />
<text x="730.92" y="1887.5" >Tens..</text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="264.3" y="1845" width="0.2" height="15.0" fill="rgb(230,158,24)" rx="2" ry="2" />
<text x="267.32" y="1855.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="308.4" y="1909" width="0.1" height="15.0" fill="rgb(248,214,29)" rx="2" ry="2" />
<text x="311.37" y="1919.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (4 samples, 0.02%)</title><rect x="459.7" y="1829" width="0.3" height="15.0" fill="rgb(209,48,24)" rx="2" ry="2" />
<text x="462.73" y="1839.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (7 samples, 0.03%)</title><rect x="1448.2" y="1829" width="0.5" height="15.0" fill="rgb(243,78,35)" rx="2" ry="2" />
<text x="1451.19" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (127 samples, 0.49%)</title><rect x="681.5" y="1861" width="8.8" height="15.0" fill="rgb(237,43,31)" rx="2" ry="2" />
<text x="684.53" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (5 samples, 0.02%)</title><rect x="50.9" y="1893" width="0.3" height="15.0" fill="rgb(240,100,30)" rx="2" ry="2" />
<text x="53.90" y="1903.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (10 samples, 0.04%)</title><rect x="733.3" y="1797" width="0.7" height="15.0" fill="rgb(219,73,11)" rx="2" ry="2" />
<text x="736.29" y="1807.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (5 samples, 0.02%)</title><rect x="116.0" y="1861" width="0.3" height="15.0" fill="rgb(217,209,47)" rx="2" ry="2" />
<text x="118.99" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (9 samples, 0.03%)</title><rect x="821.5" y="1701" width="0.7" height="15.0" fill="rgb(228,192,13)" rx="2" ry="2" />
<text x="824.54" y="1711.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (101 samples, 0.39%)</title><rect x="245.1" y="1877" width="6.9" height="15.0" fill="rgb(247,5,50)" rx="2" ry="2" />
<text x="248.07" y="1887.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_rlock (4 samples, 0.02%)</title><rect x="1188.0" y="1829" width="0.3" height="15.0" fill="rgb(213,134,53)" rx="2" ry="2" />
<text x="1191.03" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (68 samples, 0.26%)</title><rect x="55.0" y="1941" width="4.7" height="15.0" fill="rgb(230,75,1)" rx="2" ry="2" />
<text x="58.02" y="1951.5" ></text>
</g>
<g >
<title>getEnumTagSinglePayload value witness for SwiftFusion._ConcreteDerivativeBox (13 samples, 0.05%)</title><rect x="1347.0" y="1781" width="0.9" height="15.0" fill="rgb(232,102,44)" rx="2" ry="2" />
<text x="1350.01" y="1791.5" ></text>
</g>
<g >
<title>swift_getAssociatedConformanceWitness (2 samples, 0.01%)</title><rect x="535.7" y="1877" width="0.1" height="15.0" fill="rgb(235,189,33)" rx="2" ry="2" />
<text x="538.68" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1525.9" y="1909" width="0.2" height="15.0" fill="rgb(250,26,27)" rx="2" ry="2" />
<text x="1528.92" y="1919.5" ></text>
</g>
<g >
<title>__malloc_usable_size (3 samples, 0.01%)</title><rect x="1216.4" y="1893" width="0.2" height="15.0" fill="rgb(249,29,5)" rx="2" ry="2" />
<text x="1219.42" y="1903.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int64) -&gt; (@unowned Swift.Int32, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int64) -&gt; (@out Swift.Int32, @error @owned Swift.Error) (27 samples, 0.10%)</title><rect x="85.3" y="1909" width="1.8" height="15.0" fill="rgb(252,115,50)" rx="2" ry="2" />
<text x="88.26" y="1919.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (5 samples, 0.02%)</title><rect x="956.6" y="1829" width="0.3" height="15.0" fill="rgb(220,169,22)" rx="2" ry="2" />
<text x="959.60" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_tensor (9 samples, 0.03%)</title><rect x="276.1" y="1669" width="0.6" height="15.0" fill="rgb(230,26,31)" rx="2" ry="2" />
<text x="279.07" y="1679.5" ></text>
</g>
<g >
<title>TFE_Execute (231 samples, 0.89%)</title><rect x="911.6" y="1845" width="15.9" height="15.0" fill="rgb(240,79,10)" rx="2" ry="2" />
<text x="914.58" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (6 samples, 0.02%)</title><rect x="562.0" y="1861" width="0.4" height="15.0" fill="rgb(238,145,13)" rx="2" ry="2" />
<text x="565.00" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (2 samples, 0.01%)</title><rect x="1450.7" y="1797" width="0.1" height="15.0" fill="rgb(247,202,11)" rx="2" ry="2" />
<text x="1453.66" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (3 samples, 0.01%)</title><rect x="1471.6" y="1893" width="0.2" height="15.0" fill="rgb(230,7,11)" rx="2" ry="2" />
<text x="1474.56" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::AllocateRaw (2 samples, 0.01%)</title><rect x="276.5" y="1637" width="0.1" height="15.0" fill="rgb(237,110,34)" rx="2" ry="2" />
<text x="279.48" y="1647.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (81 samples, 0.31%)</title><rect x="900.7" y="1909" width="5.6" height="15.0" fill="rgb(219,193,0)" rx="2" ry="2" />
<text x="903.72" y="1919.5" ></text>
</g>
<g >
<title>generic specialization &lt;serialized, Swift.Int64&gt; of Swift.ContiguousArray._createNewBuffer(bufferIsUnique: Swift.Bool, minimumCapacity: Swift.Int, growForAppend: Swift.Bool) -&gt; () (2 samples, 0.01%)</title><rect x="1452.7" y="1925" width="0.2" height="15.0" fill="rgb(246,121,43)" rx="2" ry="2" />
<text x="1455.72" y="1935.5" ></text>
</g>
<g >
<title>static Swift.UnsafeMutablePointer.allocate(capacity: Swift.Int) -&gt; Swift.UnsafeMutablePointer&lt;A&gt; (2 samples, 0.01%)</title><rect x="975.3" y="1877" width="0.1" height="15.0" fill="rgb(245,166,21)" rx="2" ry="2" />
<text x="978.30" y="1887.5" ></text>
</g>
<g >
<title>partial apply forwarder for AD__$s11SwiftFusion4Rot2V1moiyA2C_ACtFZ__pullback_src_0_wrt_0_1 (2 samples, 0.01%)</title><rect x="1292.2" y="1781" width="0.1" height="15.0" fill="rgb(244,11,12)" rx="2" ry="2" />
<text x="1295.16" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::TF_TensorToTensor (5 samples, 0.02%)</title><rect x="258.5" y="1829" width="0.3" height="15.0" fill="rgb(218,172,39)" rx="2" ry="2" />
<text x="261.47" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::BinaryOp&lt;Eigen::ThreadPoolDevice, tensorflow::functor::add&lt;double&gt; &gt;::Compute (2 samples, 0.01%)</title><rect x="364.0" y="1749" width="0.2" height="15.0" fill="rgb(241,52,7)" rx="2" ry="2" />
<text x="367.05" y="1759.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift._HashTable.scale(forCapacity: Swift.Int) -&gt; Swift.Int8 (3 samples, 0.01%)</title><rect x="1052.3" y="1893" width="0.3" height="15.0" fill="rgb(220,180,31)" rx="2" ry="2" />
<text x="1055.35" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (3 samples, 0.01%)</title><rect x="444.7" y="1877" width="0.2" height="15.0" fill="rgb(217,12,37)" rx="2" ry="2" />
<text x="447.67" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_tensor (10 samples, 0.04%)</title><rect x="439.9" y="1701" width="0.6" height="15.0" fill="rgb(251,99,41)" rx="2" ry="2" />
<text x="442.86" y="1711.5" ></text>
</g>
<g >
<title>swift_slowAlloc (4 samples, 0.02%)</title><rect x="379.2" y="1909" width="0.3" height="15.0" fill="rgb(214,2,10)" rx="2" ry="2" />
<text x="382.24" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow._AnyTensorHandle._tfeTensorHandle.getter : TensorFlow.TFETensorHandle in conformance TensorFlow.TFETensorHandle : TensorFlow._AnyTensorHandle in TensorFlow (3 samples, 0.01%)</title><rect x="719.4" y="1845" width="0.2" height="15.0" fill="rgb(220,57,13)" rx="2" ry="2" />
<text x="722.40" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::TF_TensorToTensor (11 samples, 0.04%)</title><rect x="638.0" y="1733" width="0.7" height="15.0" fill="rgb(215,145,31)" rx="2" ry="2" />
<text x="640.95" y="1743.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="940.5" y="1893" width="0.2" height="15.0" fill="rgb(216,194,24)" rx="2" ry="2" />
<text x="943.52" y="1903.5" ></text>
</g>
<g >
<title>swift_endAccess (2 samples, 0.01%)</title><rect x="669.7" y="1861" width="0.1" height="15.0" fill="rgb(215,228,2)" rx="2" ry="2" />
<text x="672.71" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (2 samples, 0.01%)</title><rect x="1465.8" y="1861" width="0.1" height="15.0" fill="rgb(244,222,25)" rx="2" ry="2" />
<text x="1468.78" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for Swift._ExpressibleByBuiltinIntegerLiteral.init(_builtinIntegerLiteral: Builtin.IntLiteral) -&gt; A in conformance Swift.Int64 : Swift._ExpressibleByBuiltinIntegerLiteral in Swift (2 samples, 0.01%)</title><rect x="466.0" y="1861" width="0.1" height="15.0" fill="rgb(238,14,7)" rx="2" ry="2" />
<text x="468.98" y="1871.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.BidirectionalCollection.last.getter : A.Element? (12 samples, 0.05%)</title><rect x="762.0" y="1813" width="0.8" height="15.0" fill="rgb(244,6,17)" rx="2" ry="2" />
<text x="765.02" y="1823.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="834.7" y="1733" width="0.1" height="15.0" fill="rgb(254,188,53)" rx="2" ry="2" />
<text x="837.67" y="1743.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1246.5" y="1877" width="0.1" height="15.0" fill="rgb(225,110,16)" rx="2" ry="2" />
<text x="1249.45" y="1887.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (2 samples, 0.01%)</title><rect x="490.7" y="1925" width="0.2" height="15.0" fill="rgb(244,143,46)" rx="2" ry="2" />
<text x="493.72" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (13 samples, 0.05%)</title><rect x="1124.4" y="1877" width="0.9" height="15.0" fill="rgb(248,164,32)" rx="2" ry="2" />
<text x="1127.38" y="1887.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="419.9" y="1893" width="0.2" height="15.0" fill="rgb(220,213,41)" rx="2" ry="2" />
<text x="422.93" y="1903.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (4 samples, 0.02%)</title><rect x="292.6" y="1813" width="0.2" height="15.0" fill="rgb(209,117,42)" rx="2" ry="2" />
<text x="295.56" y="1823.5" ></text>
</g>
<g >
<title>AD__$s11SwiftFusion5Pose2V7inverseACyF__pullback_src_0_wrt_0 (3 samples, 0.01%)</title><rect x="1293.4" y="1829" width="0.2" height="15.0" fill="rgb(208,209,53)" rx="2" ry="2" />
<text x="1296.40" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (26 samples, 0.10%)</title><rect x="983.5" y="1877" width="1.8" height="15.0" fill="rgb(238,125,50)" rx="2" ry="2" />
<text x="986.55" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (6 samples, 0.02%)</title><rect x="252.0" y="1893" width="0.4" height="15.0" fill="rgb(247,34,46)" rx="2" ry="2" />
<text x="255.01" y="1903.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (10 samples, 0.04%)</title><rect x="160.5" y="1893" width="0.6" height="15.0" fill="rgb(212,92,12)" rx="2" ry="2" />
<text x="163.46" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="965" width="0.9" height="15.0" fill="rgb(205,147,10)" rx="2" ry="2" />
<text x="24.27" y="975.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (82 samples, 0.32%)</title><rect x="109.3" y="1877" width="5.7" height="15.0" fill="rgb(250,206,3)" rx="2" ry="2" />
<text x="112.32" y="1887.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (8 samples, 0.03%)</title><rect x="1451.2" y="1829" width="0.6" height="15.0" fill="rgb(210,37,7)" rx="2" ry="2" />
<text x="1454.21" y="1839.5" ></text>
</g>
<g >
<title>__strlen_avx2 (3 samples, 0.01%)</title><rect x="767.1" y="1845" width="0.2" height="15.0" fill="rgb(229,72,43)" rx="2" ry="2" />
<text x="770.10" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (43 samples, 0.17%)</title><rect x="1086.3" y="1861" width="3.0" height="15.0" fill="rgb(240,197,14)" rx="2" ry="2" />
<text x="1089.30" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.CTensorTensorBuffer.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (3 samples, 0.01%)</title><rect x="1461.7" y="1893" width="0.2" height="15.0" fill="rgb(216,163,3)" rx="2" ry="2" />
<text x="1464.73" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="288.4" y="1861" width="0.1" height="15.0" fill="rgb(237,20,36)" rx="2" ry="2" />
<text x="291.37" y="1871.5" ></text>
</g>
<g >
<title>reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (95 samples, 0.37%)</title><rect x="1101.2" y="1877" width="6.5" height="15.0" fill="rgb(223,59,50)" rx="2" ry="2" />
<text x="1104.22" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (2 samples, 0.01%)</title><rect x="1454.7" y="1765" width="0.2" height="15.0" fill="rgb(220,21,41)" rx="2" ry="2" />
<text x="1457.72" y="1775.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (9 samples, 0.03%)</title><rect x="884.5" y="1749" width="0.6" height="15.0" fill="rgb(252,192,17)" rx="2" ry="2" />
<text x="887.50" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (46 samples, 0.18%)</title><rect x="977.8" y="1845" width="3.1" height="15.0" fill="rgb(225,189,52)" rx="2" ry="2" />
<text x="980.77" y="1855.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1068.4" y="1909" width="0.2" height="15.0" fill="rgb(244,195,15)" rx="2" ry="2" />
<text x="1071.43" y="1919.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (2 samples, 0.01%)</title><rect x="1011.9" y="1877" width="0.1" height="15.0" fill="rgb(237,138,52)" rx="2" ry="2" />
<text x="1014.86" y="1887.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int, @unowned Swift.Int) -&gt; (@unowned Swift.Int, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int, @in_guaranteed Swift.Int) -&gt; (@out Swift.Int, @error @owned Swift.Error) (2 samples, 0.01%)</title><rect x="135.2" y="1861" width="0.1" height="15.0" fill="rgb(227,20,32)" rx="2" ry="2" />
<text x="138.16" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for Swift.ExpressibleByIntegerLiteral.init(integerLiteral: A.IntegerLiteralType) -&gt; A in conformance Swift.Int : Swift.ExpressibleByIntegerLiteral in Swift (2 samples, 0.01%)</title><rect x="730.5" y="1845" width="0.1" height="15.0" fill="rgb(211,158,36)" rx="2" ry="2" />
<text x="733.47" y="1855.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (7 samples, 0.03%)</title><rect x="186.3" y="1941" width="0.5" height="15.0" fill="rgb(220,189,13)" rx="2" ry="2" />
<text x="189.30" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (8 samples, 0.03%)</title><rect x="496.4" y="1813" width="0.5" height="15.0" fill="rgb(213,3,19)" rx="2" ry="2" />
<text x="499.36" y="1823.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="97.6" y="1845" width="0.2" height="15.0" fill="rgb(205,123,15)" rx="2" ry="2" />
<text x="100.64" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (4 samples, 0.02%)</title><rect x="685.7" y="1733" width="0.2" height="15.0" fill="rgb(219,221,8)" rx="2" ry="2" />
<text x="688.65" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (54 samples, 0.21%)</title><rect x="1076.0" y="1749" width="3.7" height="15.0" fill="rgb(211,106,0)" rx="2" ry="2" />
<text x="1078.99" y="1759.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (6 samples, 0.02%)</title><rect x="952.8" y="1893" width="0.4" height="15.0" fill="rgb(217,90,40)" rx="2" ry="2" />
<text x="955.82" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (10 samples, 0.04%)</title><rect x="248.0" y="1717" width="0.7" height="15.0" fill="rgb(222,170,36)" rx="2" ry="2" />
<text x="251.03" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (42 samples, 0.16%)</title><rect x="1536.8" y="1989" width="2.9" height="15.0" fill="rgb(245,101,35)" rx="2" ry="2" />
<text x="1539.78" y="1999.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (7 samples, 0.03%)</title><rect x="369.8" y="1861" width="0.5" height="15.0" fill="rgb(232,36,38)" rx="2" ry="2" />
<text x="372.82" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for Swift.FixedWidthInteger.init(littleEndian: A) -&gt; A in conformance Swift.Int32 : Swift.FixedWidthInteger in Swift (3 samples, 0.01%)</title><rect x="814.6" y="1733" width="0.2" height="15.0" fill="rgb(243,88,21)" rx="2" ry="2" />
<text x="817.60" y="1743.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (3 samples, 0.01%)</title><rect x="144.0" y="1877" width="0.2" height="15.0" fill="rgb(245,224,44)" rx="2" ry="2" />
<text x="146.96" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (306 samples, 1.18%)</title><rect x="505.2" y="1925" width="21.0" height="15.0" fill="rgb(252,108,40)" rx="2" ry="2" />
<text x="508.16" y="1935.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (8 samples, 0.03%)</title><rect x="300.6" y="1845" width="0.6" height="15.0" fill="rgb(223,114,7)" rx="2" ry="2" />
<text x="303.61" y="1855.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow._AnyTensorHandle._cTensorHandle.getter : Swift.OpaquePointer (2 samples, 0.01%)</title><rect x="1006.0" y="1877" width="0.2" height="15.0" fill="rgb(232,90,45)" rx="2" ry="2" />
<text x="1009.02" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrInt (5 samples, 0.02%)</title><rect x="1472.4" y="1909" width="0.4" height="15.0" fill="rgb(226,99,9)" rx="2" ry="2" />
<text x="1475.45" y="1919.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="186.9" y="1957" width="0.2" height="15.0" fill="rgb(225,201,6)" rx="2" ry="2" />
<text x="189.92" y="1967.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (14 samples, 0.05%)</title><rect x="477.9" y="1781" width="0.9" height="15.0" fill="rgb(206,222,17)" rx="2" ry="2" />
<text x="480.87" y="1791.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int64) -&gt; (@unowned Swift.Int32, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int64) -&gt; (@out Swift.Int32, @error @owned Swift.Error) (2 samples, 0.01%)</title><rect x="123.4" y="1925" width="0.1" height="15.0" fill="rgb(235,43,51)" rx="2" ry="2" />
<text x="126.41" y="1935.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char const*&gt; (3 samples, 0.01%)</title><rect x="788.5" y="1829" width="0.2" height="15.0" fill="rgb(213,30,37)" rx="2" ry="2" />
<text x="791.48" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (16 samples, 0.06%)</title><rect x="445.2" y="1909" width="1.1" height="15.0" fill="rgb(223,207,25)" rx="2" ry="2" />
<text x="448.15" y="1919.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (3 samples, 0.01%)</title><rect x="937.2" y="1861" width="0.2" height="15.0" fill="rgb(239,91,48)" rx="2" ry="2" />
<text x="940.22" y="1871.5" ></text>
</g>
<g >
<title>destroy value witness for TensorFlow.Tensor (57 samples, 0.22%)</title><rect x="200.7" y="1941" width="3.9" height="15.0" fill="rgb(231,27,5)" rx="2" ry="2" />
<text x="203.67" y="1951.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (7 samples, 0.03%)</title><rect x="741.5" y="1749" width="0.4" height="15.0" fill="rgb(219,53,27)" rx="2" ry="2" />
<text x="744.47" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="805" width="0.9" height="15.0" fill="rgb(234,165,45)" rx="2" ry="2" />
<text x="24.27" y="815.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (2 samples, 0.01%)</title><rect x="1460.8" y="1893" width="0.2" height="15.0" fill="rgb(242,54,16)" rx="2" ry="2" />
<text x="1463.83" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="705.0" y="1845" width="0.2" height="15.0" fill="rgb(209,72,1)" rx="2" ry="2" />
<text x="708.04" y="1855.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (3 samples, 0.01%)</title><rect x="1248.5" y="1845" width="0.2" height="15.0" fill="rgb(208,0,35)" rx="2" ry="2" />
<text x="1251.51" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::gtl::FindPtrOrNull&lt;tensorflow::gtl::FlatMap&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::unordered_map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, unsigned int, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned int&gt; &gt; &gt; const*, tensorflow::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, void&gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt; &gt; (2 samples, 0.01%)</title><rect x="82.4" y="1877" width="0.1" height="15.0" fill="rgb(223,143,26)" rx="2" ry="2" />
<text x="85.38" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (3 samples, 0.01%)</title><rect x="48.6" y="1877" width="0.2" height="15.0" fill="rgb(233,21,1)" rx="2" ry="2" />
<text x="51.56" y="1887.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow._AnyTensorHandle._cTensorHandle.getter : Swift.OpaquePointer (2 samples, 0.01%)</title><rect x="855.0" y="1877" width="0.2" height="15.0" fill="rgb(238,112,19)" rx="2" ry="2" />
<text x="858.01" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (26 samples, 0.10%)</title><rect x="422.5" y="1909" width="1.8" height="15.0" fill="rgb(214,121,13)" rx="2" ry="2" />
<text x="425.47" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (7 samples, 0.03%)</title><rect x="1233.0" y="1829" width="0.5" height="15.0" fill="rgb(234,111,48)" rx="2" ry="2" />
<text x="1235.98" y="1839.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="898.4" y="1893" width="0.1" height="15.0" fill="rgb(230,203,18)" rx="2" ry="2" />
<text x="901.38" y="1903.5" ></text>
</g>
<g >
<title>swift_getAssociatedConformanceWitness (2 samples, 0.01%)</title><rect x="75.2" y="1909" width="0.2" height="15.0" fill="rgb(219,8,0)" rx="2" ry="2" />
<text x="78.23" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (3 samples, 0.01%)</title><rect x="653.4" y="1845" width="0.2" height="15.0" fill="rgb(233,25,31)" rx="2" ry="2" />
<text x="656.42" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (97 samples, 0.37%)</title><rect x="456.4" y="1957" width="6.7" height="15.0" fill="rgb(213,42,14)" rx="2" ry="2" />
<text x="459.43" y="1967.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="1252.8" y="1925" width="0.2" height="15.0" fill="rgb(222,17,36)" rx="2" ry="2" />
<text x="1255.85" y="1935.5" ></text>
</g>
<g >
<title>outlined destroy of TensorFlow.Tensor&lt;A&gt; (3 samples, 0.01%)</title><rect x="1144.2" y="1877" width="0.3" height="15.0" fill="rgb(210,192,43)" rx="2" ry="2" />
<text x="1147.25" y="1887.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int32) -&gt; (@unowned Swift.Int, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int32) -&gt; (@out Swift.Int, @error @owned Swift.Error) (2 samples, 0.01%)</title><rect x="1460.3" y="1893" width="0.1" height="15.0" fill="rgb(206,184,19)" rx="2" ry="2" />
<text x="1463.28" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (38 samples, 0.15%)</title><rect x="664.1" y="1845" width="2.7" height="15.0" fill="rgb(234,49,29)" rx="2" ry="2" />
<text x="667.14" y="1855.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (6 samples, 0.02%)</title><rect x="911.0" y="1813" width="0.4" height="15.0" fill="rgb(247,112,21)" rx="2" ry="2" />
<text x="914.03" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (4 samples, 0.02%)</title><rect x="79.9" y="1893" width="0.3" height="15.0" fill="rgb(219,43,45)" rx="2" ry="2" />
<text x="82.90" y="1903.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="144.9" y="1893" width="0.2" height="15.0" fill="rgb(251,175,38)" rx="2" ry="2" />
<text x="147.86" y="1903.5" ></text>
</g>
<g >
<title>closure #1 (Swift.Int64) -&gt; Swift.Int32 in static TensorFlow._RawTFEager.sum&lt;A where A: Swift.Numeric, A: TensorFlow.TensorFlowScalar&gt;(_: TensorFlow.Tensor&lt;A&gt;, reductionIndices: [Swift.Int64], keepDims: Swift.Bool) -&gt; TensorFlow.Tensor&lt;A&gt; (18 samples, 0.07%)</title><rect x="123.6" y="1893" width="1.3" height="15.0" fill="rgb(208,92,42)" rx="2" ry="2" />
<text x="126.62" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (23 samples, 0.09%)</title><rect x="1247.6" y="1957" width="1.6" height="15.0" fill="rgb(251,153,25)" rx="2" ry="2" />
<text x="1250.62" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (5 samples, 0.02%)</title><rect x="1491.4" y="1861" width="0.3" height="15.0" fill="rgb(254,158,54)" rx="2" ry="2" />
<text x="1494.35" y="1871.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[0] = Dead&gt; of generic specialization &lt;SwiftFusion.Pose2&gt; of static (extension in SwiftFusion):Swift.Differentiable&lt; where A.TangentVector: Swift.KeyPathIterable&gt;.tangentStandardBasis.getter : [A.TangentVector] (7 samples, 0.03%)</title><rect x="1266.1" y="1941" width="0.5" height="15.0" fill="rgb(242,34,18)" rx="2" ry="2" />
<text x="1269.11" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_tensor (6 samples, 0.02%)</title><rect x="70.8" y="1701" width="0.4" height="15.0" fill="rgb(214,148,40)" rx="2" ry="2" />
<text x="73.76" y="1711.5" ></text>
</g>
<g >
<title>getCache (3 samples, 0.01%)</title><rect x="492.4" y="1941" width="0.2" height="15.0" fill="rgb(214,34,14)" rx="2" ry="2" />
<text x="495.37" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (3 samples, 0.01%)</title><rect x="1493.5" y="1813" width="0.2" height="15.0" fill="rgb(219,160,44)" rx="2" ry="2" />
<text x="1496.48" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (77 samples, 0.30%)</title><rect x="1075.0" y="1781" width="5.3" height="15.0" fill="rgb(238,222,40)" rx="2" ry="2" />
<text x="1077.96" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::GetCachedKernel (2 samples, 0.01%)</title><rect x="576.3" y="1797" width="0.1" height="15.0" fill="rgb(208,76,44)" rx="2" ry="2" />
<text x="579.30" y="1807.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="451.0" y="1797" width="0.1" height="15.0" fill="rgb(226,202,13)" rx="2" ry="2" />
<text x="454.00" y="1807.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (12 samples, 0.05%)</title><rect x="1044.4" y="1893" width="0.8" height="15.0" fill="rgb(227,114,42)" rx="2" ry="2" />
<text x="1047.38" y="1903.5" ></text>
</g>
<g >
<title>reabstraction thunk helper &lt;A where A: TensorFlow._ShapedArrayProtocol&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A.TensorFlow._ShapedArrayProtocol.Scalar&gt;) -&gt; (@owned [A.TensorFlow._ShapedArrayProtocol.Scalar], @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A.TensorFlow._ShapedArrayProtocol.Scalar&gt;) -&gt; (@out [A.TensorFlow._ShapedArrayProtocol.Scalar], @error @owned Swift.Error) (22 samples, 0.08%)</title><rect x="42.2" y="1829" width="1.5" height="15.0" fill="rgb(242,53,20)" rx="2" ry="2" />
<text x="45.24" y="1839.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace_aux (3 samples, 0.01%)</title><rect x="121.3" y="1829" width="0.3" height="15.0" fill="rgb(223,47,37)" rx="2" ry="2" />
<text x="124.35" y="1839.5" ></text>
</g>
<g >
<title>operator new (3 samples, 0.01%)</title><rect x="898.0" y="1877" width="0.2" height="15.0" fill="rgb(229,223,36)" rx="2" ry="2" />
<text x="901.04" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (2 samples, 0.01%)</title><rect x="714.5" y="1909" width="0.2" height="15.0" fill="rgb(244,18,30)" rx="2" ry="2" />
<text x="717.52" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (3 samples, 0.01%)</title><rect x="861.4" y="1893" width="0.2" height="15.0" fill="rgb(232,45,32)" rx="2" ry="2" />
<text x="864.41" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (151 samples, 0.58%)</title><rect x="538.0" y="1813" width="10.4" height="15.0" fill="rgb(218,41,44)" rx="2" ry="2" />
<text x="541.01" y="1823.5" ></text>
</g>
<g >
<title>reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (278 samples, 1.07%)</title><rect x="468.6" y="1877" width="19.1" height="15.0" fill="rgb(250,109,45)" rx="2" ry="2" />
<text x="471.59" y="1887.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (7 samples, 0.03%)</title><rect x="711.4" y="1797" width="0.5" height="15.0" fill="rgb(230,186,11)" rx="2" ry="2" />
<text x="714.43" y="1807.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="932.1" y="1861" width="0.2" height="15.0" fill="rgb(216,118,7)" rx="2" ry="2" />
<text x="935.06" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (4 samples, 0.02%)</title><rect x="1119.1" y="1701" width="0.3" height="15.0" fill="rgb(226,210,29)" rx="2" ry="2" />
<text x="1122.09" y="1711.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="328.4" y="1845" width="0.3" height="15.0" fill="rgb(211,79,5)" rx="2" ry="2" />
<text x="331.44" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () (36 samples, 0.14%)</title><rect x="1213.0" y="1941" width="2.5" height="15.0" fill="rgb(230,157,21)" rx="2" ry="2" />
<text x="1215.98" y="1951.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (6 samples, 0.02%)</title><rect x="787.4" y="1797" width="0.5" height="15.0" fill="rgb(211,40,1)" rx="2" ry="2" />
<text x="790.45" y="1807.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (17 samples, 0.07%)</title><rect x="955.8" y="1877" width="1.1" height="15.0" fill="rgb(209,205,53)" rx="2" ry="2" />
<text x="958.78" y="1887.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (5 samples, 0.02%)</title><rect x="1270.2" y="1877" width="0.4" height="15.0" fill="rgb(247,133,7)" rx="2" ry="2" />
<text x="1273.23" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (6 samples, 0.02%)</title><rect x="469.7" y="1797" width="0.4" height="15.0" fill="rgb(213,59,37)" rx="2" ry="2" />
<text x="472.69" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (41 samples, 0.16%)</title><rect x="1117.7" y="1813" width="2.8" height="15.0" fill="rgb(246,168,38)" rx="2" ry="2" />
<text x="1120.71" y="1823.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="1043.0" y="1813" width="0.1" height="15.0" fill="rgb(205,141,49)" rx="2" ry="2" />
<text x="1046.00" y="1823.5" ></text>
</g>
<g >
<title>swift_checkMetadataState (4 samples, 0.02%)</title><rect x="843.1" y="1781" width="0.2" height="15.0" fill="rgb(227,178,10)" rx="2" ry="2" />
<text x="846.05" y="1791.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (29 samples, 0.11%)</title><rect x="1213.4" y="1925" width="2.0" height="15.0" fill="rgb(222,52,2)" rx="2" ry="2" />
<text x="1216.39" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::BuildCacheKeyForDevice (13 samples, 0.05%)</title><rect x="575.4" y="1781" width="0.9" height="15.0" fill="rgb(243,121,54)" rx="2" ry="2" />
<text x="578.40" y="1791.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="23.8" y="1973" width="0.2" height="15.0" fill="rgb(209,102,16)" rx="2" ry="2" />
<text x="26.82" y="1983.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="134.4" y="1829" width="0.2" height="15.0" fill="rgb(223,62,25)" rx="2" ry="2" />
<text x="137.41" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::shaped&lt;double, 1ul&gt; (9 samples, 0.03%)</title><rect x="1198.2" y="1733" width="0.6" height="15.0" fill="rgb(240,200,26)" rx="2" ry="2" />
<text x="1201.20" y="1743.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (7 samples, 0.03%)</title><rect x="1178.3" y="1925" width="0.5" height="15.0" fill="rgb(248,15,26)" rx="2" ry="2" />
<text x="1181.34" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::input (7 samples, 0.03%)</title><rect x="753.8" y="1685" width="0.5" height="15.0" fill="rgb(232,196,13)" rx="2" ry="2" />
<text x="756.84" y="1695.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="238.3" y="1861" width="0.1" height="15.0" fill="rgb(205,121,12)" rx="2" ry="2" />
<text x="241.27" y="1871.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of Swift.String.init(cString: Swift.UnsafePointer&lt;Swift.Int8&gt;) -&gt; Swift.String (3 samples, 0.01%)</title><rect x="829.8" y="1749" width="0.2" height="15.0" fill="rgb(213,216,3)" rx="2" ry="2" />
<text x="832.79" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (30 samples, 0.12%)</title><rect x="480.3" y="1765" width="2.1" height="15.0" fill="rgb(231,167,22)" rx="2" ry="2" />
<text x="483.35" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (11 samples, 0.04%)</title><rect x="1066.4" y="1893" width="0.7" height="15.0" fill="rgb(228,133,38)" rx="2" ry="2" />
<text x="1069.37" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="657.7" y="1893" width="0.1" height="15.0" fill="rgb(237,108,15)" rx="2" ry="2" />
<text x="660.68" y="1903.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (7 samples, 0.03%)</title><rect x="903.8" y="1861" width="0.5" height="15.0" fill="rgb(240,182,23)" rx="2" ry="2" />
<text x="906.81" y="1871.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (28 samples, 0.11%)</title><rect x="123.1" y="1941" width="1.9" height="15.0" fill="rgb(247,56,51)" rx="2" ry="2" />
<text x="126.07" y="1951.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (5 samples, 0.02%)</title><rect x="546.1" y="1733" width="0.4" height="15.0" fill="rgb(214,39,45)" rx="2" ry="2" />
<text x="549.12" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::NodeDef (2 samples, 0.01%)</title><rect x="1129.1" y="1893" width="0.2" height="15.0" fill="rgb(208,195,15)" rx="2" ry="2" />
<text x="1132.12" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (3 samples, 0.01%)</title><rect x="1433.2" y="1893" width="0.2" height="15.0" fill="rgb(218,33,50)" rx="2" ry="2" />
<text x="1436.20" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (39 samples, 0.15%)</title><rect x="334.1" y="1797" width="2.7" height="15.0" fill="rgb(224,181,17)" rx="2" ry="2" />
<text x="337.08" y="1807.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (3 samples, 0.01%)</title><rect x="1247.4" y="1925" width="0.2" height="15.0" fill="rgb(232,43,5)" rx="2" ry="2" />
<text x="1250.42" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (18 samples, 0.07%)</title><rect x="415.5" y="1893" width="1.3" height="15.0" fill="rgb(207,54,2)" rx="2" ry="2" />
<text x="418.53" y="1903.5" ></text>
</g>
<g >
<title>TFE_Execute (7 samples, 0.03%)</title><rect x="1454.4" y="1877" width="0.5" height="15.0" fill="rgb(254,35,26)" rx="2" ry="2" />
<text x="1457.37" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (31 samples, 0.12%)</title><rect x="948.1" y="1877" width="2.2" height="15.0" fill="rgb(226,109,30)" rx="2" ry="2" />
<text x="951.15" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (6 samples, 0.02%)</title><rect x="242.1" y="1893" width="0.4" height="15.0" fill="rgb(220,169,36)" rx="2" ry="2" />
<text x="245.11" y="1903.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (3 samples, 0.01%)</title><rect x="359.3" y="1829" width="0.2" height="15.0" fill="rgb(241,40,40)" rx="2" ry="2" />
<text x="362.31" y="1839.5" ></text>
</g>
<g >
<title>protocol witness for Swift.Collection.subscript.read : (A.Index) -&gt; A.Element in conformance [A] : Swift.Collection in Swift (2 samples, 0.01%)</title><rect x="539.6" y="1781" width="0.1" height="15.0" fill="rgb(244,113,20)" rx="2" ry="2" />
<text x="542.59" y="1791.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (2 samples, 0.01%)</title><rect x="1447.6" y="1829" width="0.2" height="15.0" fill="rgb(253,17,32)" rx="2" ry="2" />
<text x="1450.64" y="1839.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (7 samples, 0.03%)</title><rect x="1460.1" y="1909" width="0.5" height="15.0" fill="rgb(211,140,23)" rx="2" ry="2" />
<text x="1463.08" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerOpRewriteRegistry::RunRewrite (3 samples, 0.01%)</title><rect x="689.3" y="1797" width="0.2" height="15.0" fill="rgb(213,121,0)" rx="2" ry="2" />
<text x="692.30" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::AllocateRaw (2 samples, 0.01%)</title><rect x="258.1" y="1829" width="0.2" height="15.0" fill="rgb(232,61,44)" rx="2" ry="2" />
<text x="261.13" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (227 samples, 0.88%)</title><rect x="1474.3" y="1941" width="15.6" height="15.0" fill="rgb(227,114,1)" rx="2" ry="2" />
<text x="1477.31" y="1951.5" ></text>
</g>
<g >
<title>tuple_storeEnumTagSinglePayload&lt;false, false&gt; (24 samples, 0.09%)</title><rect x="1780.7" y="2053" width="1.7" height="15.0" fill="rgb(244,201,18)" rx="2" ry="2" />
<text x="1783.72" y="2063.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (11 samples, 0.04%)</title><rect x="1451.9" y="1877" width="0.8" height="15.0" fill="rgb(206,187,6)" rx="2" ry="2" />
<text x="1454.90" y="1887.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;tensorflow::Fprint128, std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt;, std::allocator&lt;std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;tensorflow::Fprint128&gt;, tensorflow::Fprint128Hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (2 samples, 0.01%)</title><rect x="1136.5" y="1829" width="0.2" height="15.0" fill="rgb(212,77,7)" rx="2" ry="2" />
<text x="1139.55" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.rank.getter : Swift.Int (39 samples, 0.15%)</title><rect x="392.3" y="1957" width="2.7" height="15.0" fill="rgb(254,56,3)" rx="2" ry="2" />
<text x="395.30" y="1967.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (37 samples, 0.14%)</title><rect x="523.1" y="1877" width="2.5" height="15.0" fill="rgb(212,138,45)" rx="2" ry="2" />
<text x="526.10" y="1887.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_init (2 samples, 0.01%)</title><rect x="757.5" y="1717" width="0.2" height="15.0" fill="rgb(240,43,29)" rx="2" ry="2" />
<text x="760.55" y="1727.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="879.7" y="1845" width="0.2" height="15.0" fill="rgb(235,154,33)" rx="2" ry="2" />
<text x="882.69" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (8 samples, 0.03%)</title><rect x="497.4" y="1861" width="0.5" height="15.0" fill="rgb(235,41,34)" rx="2" ry="2" />
<text x="500.39" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (11 samples, 0.04%)</title><rect x="564.9" y="1845" width="0.7" height="15.0" fill="rgb(253,66,36)" rx="2" ry="2" />
<text x="567.89" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input (3 samples, 0.01%)</title><rect x="367.6" y="1685" width="0.2" height="15.0" fill="rgb(241,124,4)" rx="2" ry="2" />
<text x="370.55" y="1695.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1240.1" y="1877" width="0.1" height="15.0" fill="rgb(220,176,49)" rx="2" ry="2" />
<text x="1243.06" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (9 samples, 0.03%)</title><rect x="337.9" y="1845" width="0.6" height="15.0" fill="rgb(231,144,20)" rx="2" ry="2" />
<text x="340.86" y="1855.5" ></text>
</g>
<g >
<title>Swift._allocateUninitializedArray&lt;A&gt;(Builtin.Word) -&gt; ([A], Builtin.RawPointer) (2 samples, 0.01%)</title><rect x="378.1" y="1845" width="0.1" height="15.0" fill="rgb(214,12,53)" rx="2" ry="2" />
<text x="381.07" y="1855.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (4 samples, 0.02%)</title><rect x="1069.2" y="1909" width="0.3" height="15.0" fill="rgb(209,185,41)" rx="2" ry="2" />
<text x="1072.19" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="997" width="0.9" height="15.0" fill="rgb(208,108,30)" rx="2" ry="2" />
<text x="24.27" y="1007.5" ></text>
</g>
<g >
<title>protocol witness for Swift.BinaryInteger._lowWord.getter : Swift.UInt in conformance Swift.Int64 : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="465.7" y="1861" width="0.1" height="15.0" fill="rgb(247,156,16)" rx="2" ry="2" />
<text x="468.71" y="1871.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="568.1" y="1909" width="0.2" height="15.0" fill="rgb(232,175,29)" rx="2" ry="2" />
<text x="571.12" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::DeviceOrHostCPU (3 samples, 0.01%)</title><rect x="326.0" y="1797" width="0.2" height="15.0" fill="rgb(235,78,53)" rx="2" ry="2" />
<text x="328.97" y="1807.5" ></text>
</g>
<g >
<title>std::_Hash_bytes (3 samples, 0.01%)</title><rect x="291.1" y="1861" width="0.2" height="15.0" fill="rgb(226,180,20)" rx="2" ry="2" />
<text x="294.05" y="1871.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="407.1" y="1877" width="0.3" height="15.0" fill="rgb(229,75,48)" rx="2" ry="2" />
<text x="410.08" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (6 samples, 0.02%)</title><rect x="1262.3" y="1877" width="0.4" height="15.0" fill="rgb(217,39,23)" rx="2" ry="2" />
<text x="1265.33" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (21 samples, 0.08%)</title><rect x="674.0" y="1861" width="1.4" height="15.0" fill="rgb(237,171,33)" rx="2" ry="2" />
<text x="676.97" y="1871.5" ></text>
</g>
<g >
<title>outlined destroy of [Swift.Int] (2 samples, 0.01%)</title><rect x="1109.3" y="1909" width="0.1" height="15.0" fill="rgb(213,165,53)" rx="2" ry="2" />
<text x="1112.26" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1621" width="0.9" height="15.0" fill="rgb(254,11,33)" rx="2" ry="2" />
<text x="24.27" y="1631.5" ></text>
</g>
<g >
<title>getCache (4 samples, 0.02%)</title><rect x="253.0" y="1909" width="0.2" height="15.0" fill="rgb(217,110,42)" rx="2" ry="2" />
<text x="255.97" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::tensor&lt;int, 1ul&gt; (4 samples, 0.02%)</title><rect x="917.5" y="1701" width="0.3" height="15.0" fill="rgb(231,103,7)" rx="2" ry="2" />
<text x="920.49" y="1711.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (4 samples, 0.02%)</title><rect x="1450.7" y="1813" width="0.2" height="15.0" fill="rgb(209,192,34)" rx="2" ry="2" />
<text x="1453.66" y="1823.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (604 samples, 2.33%)</title><rect x="806.2" y="1861" width="41.5" height="15.0" fill="rgb(227,46,1)" rx="2" ry="2" />
<text x="809.21" y="1871.5" >par..</text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="105.7" y="1861" width="0.1" height="15.0" fill="rgb(214,102,47)" rx="2" ry="2" />
<text x="108.68" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::gtl::FindPtrOrNull&lt;tensorflow::gtl::FlatMap&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::unordered_map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, unsigned int, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned int&gt; &gt; &gt; const*, tensorflow::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, void&gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt; &gt; (2 samples, 0.01%)</title><rect x="561.0" y="1829" width="0.1" height="15.0" fill="rgb(225,98,22)" rx="2" ry="2" />
<text x="563.97" y="1839.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::~_Hashtable (2 samples, 0.01%)</title><rect x="416.3" y="1829" width="0.1" height="15.0" fill="rgb(242,228,32)" rx="2" ry="2" />
<text x="419.29" y="1839.5" ></text>
</g>
<g >
<title>protocol witness for Swift._ExpressibleByBuiltinIntegerLiteral.init(_builtinIntegerLiteral: Builtin.IntLiteral) -&gt; A in conformance Swift.Int32 : Swift._ExpressibleByBuiltinIntegerLiteral in Swift (2 samples, 0.01%)</title><rect x="680.3" y="1845" width="0.1" height="15.0" fill="rgb(238,229,39)" rx="2" ry="2" />
<text x="683.29" y="1855.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.Tensor&lt; where A: Swift.Numeric&gt;.init(ones: TensorFlow.TensorShape) -&gt; TensorFlow.Tensor&lt;A&gt; (47 samples, 0.18%)</title><rect x="1262.1" y="1925" width="3.3" height="15.0" fill="rgb(221,30,38)" rx="2" ry="2" />
<text x="1265.12" y="1935.5" ></text>
</g>
<g >
<title>std::_Hash_bytes (5 samples, 0.02%)</title><rect x="1251.6" y="1845" width="0.4" height="15.0" fill="rgb(214,161,46)" rx="2" ry="2" />
<text x="1254.61" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (19 samples, 0.07%)</title><rect x="1177.0" y="1925" width="1.3" height="15.0" fill="rgb(215,129,9)" rx="2" ry="2" />
<text x="1180.03" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for Swift.ExpressibleByIntegerLiteral.init(integerLiteral: A.IntegerLiteralType) -&gt; A in conformance Swift.Int : Swift.ExpressibleByIntegerLiteral in Swift (2 samples, 0.01%)</title><rect x="235.3" y="1845" width="0.1" height="15.0" fill="rgb(215,50,19)" rx="2" ry="2" />
<text x="238.31" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (4 samples, 0.02%)</title><rect x="1468.4" y="1925" width="0.3" height="15.0" fill="rgb(218,92,24)" rx="2" ry="2" />
<text x="1471.39" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (62 samples, 0.24%)</title><rect x="587.8" y="1893" width="4.3" height="15.0" fill="rgb(206,132,30)" rx="2" ry="2" />
<text x="590.85" y="1903.5" ></text>
</g>
<g >
<title>partial apply forwarder for AD__$s11SwiftFusion4Rot2V1moiyA2C_ACtFZ__pullback_src_0_wrt_0_1 (3 samples, 0.01%)</title><rect x="1293.2" y="1813" width="0.2" height="15.0" fill="rgb(250,95,23)" rx="2" ry="2" />
<text x="1296.19" y="1823.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (4 samples, 0.02%)</title><rect x="330.0" y="1861" width="0.2" height="15.0" fill="rgb(227,210,15)" rx="2" ry="2" />
<text x="332.96" y="1871.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (2 samples, 0.01%)</title><rect x="1446.5" y="1733" width="0.1" height="15.0" fill="rgb(226,189,21)" rx="2" ry="2" />
<text x="1449.47" y="1743.5" ></text>
</g>
<g >
<title>swift_checkMetadataState (2 samples, 0.01%)</title><rect x="396.7" y="1781" width="0.1" height="15.0" fill="rgb(213,198,12)" rx="2" ry="2" />
<text x="399.70" y="1791.5" ></text>
</g>
<g >
<title>AD__$s11SwiftFusion5Pose2V7inverseACyF__pullback_src_0_wrt_0 (5 samples, 0.02%)</title><rect x="1292.5" y="1797" width="0.3" height="15.0" fill="rgb(229,14,22)" rx="2" ry="2" />
<text x="1295.50" y="1807.5" ></text>
</g>
<g >
<title>getEnumTagSinglePayload value witness for SwiftFusion.AnyDerivative (51 samples, 0.20%)</title><rect x="1314.5" y="1845" width="3.5" height="15.0" fill="rgb(216,1,31)" rx="2" ry="2" />
<text x="1317.50" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (5 samples, 0.02%)</title><rect x="1493.3" y="1877" width="0.4" height="15.0" fill="rgb(209,9,5)" rx="2" ry="2" />
<text x="1496.34" y="1887.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="1085.5" y="1909" width="0.3" height="15.0" fill="rgb(206,196,28)" rx="2" ry="2" />
<text x="1088.55" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for Swift.FixedWidthInteger.init(littleEndian: A) -&gt; A in conformance Swift.Int32 : Swift.FixedWidthInteger in Swift (2 samples, 0.01%)</title><rect x="508.4" y="1845" width="0.1" height="15.0" fill="rgb(235,104,50)" rx="2" ry="2" />
<text x="511.39" y="1855.5" ></text>
</g>
<g >
<title>AD__$s11SwiftFusion7betweenyAA5Pose2VAD_ADtF__pullback_src_0_wrt_0_1 (19 samples, 0.07%)</title><rect x="1291.5" y="1829" width="1.3" height="15.0" fill="rgb(216,111,23)" rx="2" ry="2" />
<text x="1294.54" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (55 samples, 0.21%)</title><rect x="333.8" y="1845" width="3.8" height="15.0" fill="rgb(211,171,19)" rx="2" ry="2" />
<text x="336.81" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (7 samples, 0.03%)</title><rect x="1126.2" y="1893" width="0.4" height="15.0" fill="rgb(232,124,42)" rx="2" ry="2" />
<text x="1129.17" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (6 samples, 0.02%)</title><rect x="1161.4" y="1733" width="0.4" height="15.0" fill="rgb(236,52,30)" rx="2" ry="2" />
<text x="1164.36" y="1743.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.String._uncheckedFromUTF8(_: Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;, asciiPreScanResult: Swift.Bool) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="768.0" y="1845" width="0.1" height="15.0" fill="rgb(210,51,40)" rx="2" ry="2" />
<text x="771.00" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (7 samples, 0.03%)</title><rect x="601.2" y="1829" width="0.5" height="15.0" fill="rgb(222,169,7)" rx="2" ry="2" />
<text x="604.18" y="1839.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (2 samples, 0.01%)</title><rect x="1111.8" y="1845" width="0.1" height="15.0" fill="rgb(240,205,38)" rx="2" ry="2" />
<text x="1114.80" y="1855.5" ></text>
</g>
<g >
<title>swift_beginAccess (3 samples, 0.01%)</title><rect x="84.2" y="1941" width="0.2" height="15.0" fill="rgb(240,115,7)" rx="2" ry="2" />
<text x="87.16" y="1951.5" ></text>
</g>
<g >
<title>partial apply forwarder for AD__$s11SwiftFusion7Vector3VA2CIegydd_A2CIegyd_TR_src_0_wrt_0_pullback_index_subset_thunk (20 samples, 0.08%)</title><rect x="1291.5" y="1861" width="1.3" height="15.0" fill="rgb(210,17,37)" rx="2" ry="2" />
<text x="1294.47" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::DeviceBase::eigen_cpu_device (2 samples, 0.01%)</title><rect x="275.9" y="1701" width="0.1" height="15.0" fill="rgb(211,162,18)" rx="2" ry="2" />
<text x="278.86" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (6 samples, 0.02%)</title><rect x="966.7" y="1653" width="0.4" height="15.0" fill="rgb(228,202,52)" rx="2" ry="2" />
<text x="969.71" y="1663.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="448.4" y="1925" width="0.1" height="15.0" fill="rgb(210,219,43)" rx="2" ry="2" />
<text x="451.38" y="1935.5" ></text>
</g>
<g >
<title>Eigen::internal::TensorExecutor&lt;Eigen::TensorAssignOp&lt;Eigen::TensorMap&lt;Eigen::Tensor&lt;int, 1, 1, long&gt;, 16, Eigen::MakePointer&gt;, Eigen::TensorCwiseUnaryOp&lt;Eigen::internal::scalar_left&lt;int, int, Eigen::internal::scalar_difference_op&lt;int, int&gt;, true&gt;, Eigen::TensorMap&lt;Eigen::Tensor&lt;int const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const&gt; const&gt; const, Eigen::ThreadPoolDevice, true, (7 samples, 0.03%)</title><rect x="749.9" y="1685" width="0.5" height="15.0" fill="rgb(211,14,50)" rx="2" ry="2" />
<text x="752.92" y="1695.5" ></text>
</g>
<g >
<title>swift_allocObject (2 samples, 0.01%)</title><rect x="778.0" y="1797" width="0.1" height="15.0" fill="rgb(250,82,32)" rx="2" ry="2" />
<text x="780.96" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::Global (2 samples, 0.01%)</title><rect x="796.4" y="1829" width="0.1" height="15.0" fill="rgb(224,70,23)" rx="2" ry="2" />
<text x="799.38" y="1839.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (5 samples, 0.02%)</title><rect x="1213.0" y="1909" width="0.4" height="15.0" fill="rgb(235,50,1)" rx="2" ry="2" />
<text x="1216.05" y="1919.5" ></text>
</g>
<g >
<title>partial apply forwarder for AD__$s11SwiftFusion13BetweenFactorV11errorVectoryAA7Vector3VAA6ValuesVF__pullback_src_0_wrt_0 (2,350 samples, 9.07%)</title><rect x="1271.1" y="1893" width="161.6" height="15.0" fill="rgb(224,177,23)" rx="2" ry="2" />
<text x="1274.13" y="1903.5" >partial apply forwar..</text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorHandle (2 samples, 0.01%)</title><rect x="441.4" y="1765" width="0.2" height="15.0" fill="rgb(248,179,19)" rx="2" ry="2" />
<text x="444.44" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (15 samples, 0.06%)</title><rect x="358.5" y="1877" width="1.1" height="15.0" fill="rgb(225,5,8)" rx="2" ry="2" />
<text x="361.55" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (5 samples, 0.02%)</title><rect x="1473.6" y="1893" width="0.4" height="15.0" fill="rgb(223,200,28)" rx="2" ry="2" />
<text x="1476.62" y="1903.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (4 samples, 0.02%)</title><rect x="782.2" y="1861" width="0.2" height="15.0" fill="rgb(233,117,22)" rx="2" ry="2" />
<text x="785.16" y="1871.5" ></text>
</g>
<g >
<title>closure #2 (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; () in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (19 samples, 0.07%)</title><rect x="1161.2" y="1781" width="1.3" height="15.0" fill="rgb(212,117,4)" rx="2" ry="2" />
<text x="1164.15" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (13 samples, 0.05%)</title><rect x="1141.1" y="1909" width="0.9" height="15.0" fill="rgb(228,196,2)" rx="2" ry="2" />
<text x="1144.08" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="1789.7" y="1989" width="0.3" height="15.0" fill="rgb(226,181,48)" rx="2" ry="2" />
<text x="1792.66" y="1999.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (6 samples, 0.02%)</title><rect x="345.4" y="1877" width="0.4" height="15.0" fill="rgb(229,21,16)" rx="2" ry="2" />
<text x="348.35" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (2 samples, 0.01%)</title><rect x="543.1" y="1717" width="0.1" height="15.0" fill="rgb(241,147,1)" rx="2" ry="2" />
<text x="546.10" y="1727.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (14 samples, 0.05%)</title><rect x="1122.3" y="1909" width="1.0" height="15.0" fill="rgb(215,212,1)" rx="2" ry="2" />
<text x="1125.32" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::~TensorHandle (3 samples, 0.01%)</title><rect x="1458.9" y="1813" width="0.2" height="15.0" fill="rgb(231,47,12)" rx="2" ry="2" />
<text x="1461.91" y="1823.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeMutableRawPointer) -&gt; () in (extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (12 samples, 0.05%)</title><rect x="1105.1" y="1797" width="0.8" height="15.0" fill="rgb(249,34,47)" rx="2" ry="2" />
<text x="1108.07" y="1807.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="860.1" y="1877" width="0.2" height="15.0" fill="rgb(236,0,52)" rx="2" ry="2" />
<text x="863.10" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (32 samples, 0.12%)</title><rect x="978.0" y="1813" width="2.2" height="15.0" fill="rgb(228,117,11)" rx="2" ry="2" />
<text x="980.98" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::InputDevice (4 samples, 0.02%)</title><rect x="759.6" y="1797" width="0.3" height="15.0" fill="rgb(231,4,45)" rx="2" ry="2" />
<text x="762.61" y="1807.5" ></text>
</g>
<g >
<title>_int_free (13 samples, 0.05%)</title><rect x="618.3" y="1893" width="0.9" height="15.0" fill="rgb(242,178,43)" rx="2" ry="2" />
<text x="621.29" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (124 samples, 0.48%)</title><rect x="1134.2" y="1925" width="8.5" height="15.0" fill="rgb(237,97,31)" rx="2" ry="2" />
<text x="1137.21" y="1935.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (81 samples, 0.31%)</title><rect x="344.8" y="1925" width="5.6" height="15.0" fill="rgb(251,194,40)" rx="2" ry="2" />
<text x="347.80" y="1935.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (3 samples, 0.01%)</title><rect x="572.7" y="1813" width="0.2" height="15.0" fill="rgb(206,222,24)" rx="2" ry="2" />
<text x="575.72" y="1823.5" ></text>
</g>
<g >
<title>swift_once (4 samples, 0.02%)</title><rect x="667.7" y="1861" width="0.3" height="15.0" fill="rgb(239,201,36)" rx="2" ry="2" />
<text x="670.71" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (72 samples, 0.28%)</title><rect x="900.7" y="1893" width="5.0" height="15.0" fill="rgb(205,203,35)" rx="2" ry="2" />
<text x="903.72" y="1903.5" ></text>
</g>
<g >
<title>implicit closure #1 (Swift.Int) -&gt; Swift.Int64 in TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (7 samples, 0.03%)</title><rect x="539.0" y="1749" width="0.5" height="15.0" fill="rgb(232,118,39)" rx="2" ry="2" />
<text x="542.04" y="1759.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int and conformance Swift.Int : Swift.SignedInteger in Swift (3 samples, 0.01%)</title><rect x="888.4" y="1893" width="0.2" height="15.0" fill="rgb(220,227,15)" rx="2" ry="2" />
<text x="891.42" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (8 samples, 0.03%)</title><rect x="1491.4" y="1957" width="0.5" height="15.0" fill="rgb(213,89,0)" rx="2" ry="2" />
<text x="1494.35" y="1967.5" ></text>
</g>
<g >
<title>reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (155 samples, 0.60%)</title><rect x="87.6" y="1877" width="10.7" height="15.0" fill="rgb(214,127,46)" rx="2" ry="2" />
<text x="90.60" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (56 samples, 0.22%)</title><rect x="222.0" y="1941" width="3.8" height="15.0" fill="rgb(250,62,48)" rx="2" ry="2" />
<text x="224.98" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (4 samples, 0.02%)</title><rect x="91.1" y="1749" width="0.3" height="15.0" fill="rgb(237,46,17)" rx="2" ry="2" />
<text x="94.11" y="1759.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (9 samples, 0.03%)</title><rect x="1148.2" y="1957" width="0.6" height="15.0" fill="rgb(225,156,30)" rx="2" ry="2" />
<text x="1151.16" y="1967.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (73 samples, 0.28%)</title><rect x="245.7" y="1797" width="5.0" height="15.0" fill="rgb(250,193,15)" rx="2" ry="2" />
<text x="248.69" y="1807.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (3 samples, 0.01%)</title><rect x="294.1" y="1893" width="0.2" height="15.0" fill="rgb(224,40,11)" rx="2" ry="2" />
<text x="297.08" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::DeallocateRaw (2 samples, 0.01%)</title><rect x="196.1" y="1781" width="0.2" height="15.0" fill="rgb(206,107,33)" rx="2" ry="2" />
<text x="199.13" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (326 samples, 1.26%)</title><rect x="310.2" y="1893" width="22.4" height="15.0" fill="rgb(232,102,35)" rx="2" ry="2" />
<text x="313.16" y="1903.5" >T..</text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (44 samples, 0.17%)</title><rect x="1130.6" y="1957" width="3.1" height="15.0" fill="rgb(240,95,38)" rx="2" ry="2" />
<text x="1133.64" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (3 samples, 0.01%)</title><rect x="1115.4" y="1877" width="0.3" height="15.0" fill="rgb(230,196,15)" rx="2" ry="2" />
<text x="1118.45" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::Resolve (12 samples, 0.05%)</title><rect x="408.5" y="1877" width="0.8" height="15.0" fill="rgb(247,96,24)" rx="2" ry="2" />
<text x="411.45" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (53 samples, 0.20%)</title><rect x="1223.8" y="1941" width="3.6" height="15.0" fill="rgb(253,140,3)" rx="2" ry="2" />
<text x="1226.77" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::SetDeviceName (3 samples, 0.01%)</title><rect x="895.4" y="1845" width="0.2" height="15.0" fill="rgb(223,34,32)" rx="2" ry="2" />
<text x="898.43" y="1855.5" ></text>
</g>
<g >
<title>std::_Function_base::_Base_manager&lt;long (2 samples, 0.01%)</title><rect x="1118.8" y="1733" width="0.2" height="15.0" fill="rgb(214,103,11)" rx="2" ry="2" />
<text x="1121.81" y="1743.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (15 samples, 0.06%)</title><rect x="243.1" y="1893" width="1.1" height="15.0" fill="rgb(243,197,3)" rx="2" ry="2" />
<text x="246.15" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (66 samples, 0.25%)</title><rect x="559.0" y="1909" width="4.5" height="15.0" fill="rgb(206,114,34)" rx="2" ry="2" />
<text x="561.98" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (58 samples, 0.22%)</title><rect x="138.4" y="1925" width="4.0" height="15.0" fill="rgb(214,100,27)" rx="2" ry="2" />
<text x="141.39" y="1935.5" ></text>
</g>
<g >
<title>swift_getAssociatedConformanceWitness (3 samples, 0.01%)</title><rect x="770.7" y="1861" width="0.3" height="15.0" fill="rgb(228,47,23)" rx="2" ry="2" />
<text x="773.75" y="1871.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="705.9" y="1797" width="0.2" height="15.0" fill="rgb(242,114,4)" rx="2" ry="2" />
<text x="708.93" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::BinaryOp&lt;Eigen::ThreadPoolDevice, tensorflow::functor::sub&lt;int&gt; &gt;::Compute (110 samples, 0.42%)</title><rect x="748.4" y="1701" width="7.6" height="15.0" fill="rgb(246,27,11)" rx="2" ry="2" />
<text x="751.41" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (3 samples, 0.01%)</title><rect x="68.8" y="1781" width="0.2" height="15.0" fill="rgb(225,9,16)" rx="2" ry="2" />
<text x="71.84" y="1791.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (2 samples, 0.01%)</title><rect x="1144.5" y="1877" width="0.1" height="15.0" fill="rgb(239,187,3)" rx="2" ry="2" />
<text x="1147.45" y="1887.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (4 samples, 0.02%)</title><rect x="1226.4" y="1909" width="0.3" height="15.0" fill="rgb(210,92,21)" rx="2" ry="2" />
<text x="1229.38" y="1919.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (6 samples, 0.02%)</title><rect x="141.8" y="1893" width="0.4" height="15.0" fill="rgb(247,1,12)" rx="2" ry="2" />
<text x="144.83" y="1903.5" ></text>
</g>
<g >
<title>partial apply forwarder for AD__$s11SwiftFusion13BetweenFactorV9linearizeyAA08JacobianD0VAA6ValuesVFAA7Vector3VAHcACcfu_AjHcfu0___vjp_src_0_wrt_0 (8 samples, 0.03%)</title><rect x="1453.3" y="1941" width="0.6" height="15.0" fill="rgb(242,224,53)" rx="2" ry="2" />
<text x="1456.34" y="1951.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="829.6" y="1749" width="0.2" height="15.0" fill="rgb(247,40,2)" rx="2" ry="2" />
<text x="832.58" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (11 samples, 0.04%)</title><rect x="1103.8" y="1765" width="0.7" height="15.0" fill="rgb(232,94,13)" rx="2" ry="2" />
<text x="1106.76" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (5 samples, 0.02%)</title><rect x="416.4" y="1829" width="0.4" height="15.0" fill="rgb(210,156,33)" rx="2" ry="2" />
<text x="419.42" y="1839.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (10 samples, 0.04%)</title><rect x="1161.3" y="1749" width="0.7" height="15.0" fill="rgb(222,207,43)" rx="2" ry="2" />
<text x="1164.29" y="1759.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (38 samples, 0.15%)</title><rect x="104.6" y="1925" width="2.6" height="15.0" fill="rgb(224,69,43)" rx="2" ry="2" />
<text x="107.58" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (9 samples, 0.03%)</title><rect x="1491.4" y="1973" width="0.6" height="15.0" fill="rgb(254,201,40)" rx="2" ry="2" />
<text x="1494.35" y="1983.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (50 samples, 0.19%)</title><rect x="1173.2" y="1925" width="3.4" height="15.0" fill="rgb(220,2,49)" rx="2" ry="2" />
<text x="1176.18" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (2 samples, 0.01%)</title><rect x="544.8" y="1781" width="0.2" height="15.0" fill="rgb(223,1,3)" rx="2" ry="2" />
<text x="547.82" y="1791.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int and conformance Swift.Int : Swift.SignedInteger in Swift (4 samples, 0.02%)</title><rect x="453.9" y="1941" width="0.3" height="15.0" fill="rgb(215,105,43)" rx="2" ry="2" />
<text x="456.88" y="1951.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="656.7" y="1893" width="0.2" height="15.0" fill="rgb(239,6,41)" rx="2" ry="2" />
<text x="659.72" y="1903.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (27 samples, 0.10%)</title><rect x="428.5" y="1909" width="1.9" height="15.0" fill="rgb(221,180,44)" rx="2" ry="2" />
<text x="431.52" y="1919.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="519.7" y="1845" width="0.2" height="15.0" fill="rgb(253,131,37)" rx="2" ry="2" />
<text x="522.73" y="1855.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="467.6" y="1925" width="0.1" height="15.0" fill="rgb(238,203,0)" rx="2" ry="2" />
<text x="470.56" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::NumDims (4 samples, 0.02%)</title><rect x="40.9" y="1877" width="0.3" height="15.0" fill="rgb(243,111,46)" rx="2" ry="2" />
<text x="43.93" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::LocalTensorHandleData::TensorValue (2 samples, 0.01%)</title><rect x="744.6" y="1717" width="0.2" height="15.0" fill="rgb(243,101,13)" rx="2" ry="2" />
<text x="747.63" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::OutputDevice (2 samples, 0.01%)</title><rect x="758.5" y="1749" width="0.1" height="15.0" fill="rgb(253,205,1)" rx="2" ry="2" />
<text x="761.51" y="1759.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="827.0" y="1717" width="0.1" height="15.0" fill="rgb(206,26,17)" rx="2" ry="2" />
<text x="829.97" y="1727.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (7 samples, 0.03%)</title><rect x="1126.9" y="1925" width="0.5" height="15.0" fill="rgb(229,222,6)" rx="2" ry="2" />
<text x="1129.92" y="1935.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (10 samples, 0.04%)</title><rect x="341.4" y="1877" width="0.7" height="15.0" fill="rgb(205,164,16)" rx="2" ry="2" />
<text x="344.43" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (5 samples, 0.02%)</title><rect x="563.0" y="1893" width="0.3" height="15.0" fill="rgb(252,191,23)" rx="2" ry="2" />
<text x="565.96" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (3 samples, 0.01%)</title><rect x="1468.9" y="1829" width="0.3" height="15.0" fill="rgb(221,175,16)" rx="2" ry="2" />
<text x="1471.94" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInputList&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(A) -&gt; () (26 samples, 0.10%)</title><rect x="1266.7" y="1909" width="1.7" height="15.0" fill="rgb(248,203,51)" rx="2" ry="2" />
<text x="1269.66" y="1919.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (2 samples, 0.01%)</title><rect x="1244.0" y="1813" width="0.2" height="15.0" fill="rgb(242,122,12)" rx="2" ry="2" />
<text x="1247.05" y="1823.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.SignedInteger in Swift (2 samples, 0.01%)</title><rect x="449.0" y="1925" width="0.1" height="15.0" fill="rgb(218,37,19)" rx="2" ry="2" />
<text x="452.00" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle._cTensorHandle.getter : Swift.OpaquePointer (6 samples, 0.02%)</title><rect x="1176.6" y="1925" width="0.4" height="15.0" fill="rgb(242,158,0)" rx="2" ry="2" />
<text x="1179.62" y="1935.5" ></text>
</g>
<g >
<title>__pthread_getspecific (2 samples, 0.01%)</title><rect x="118.7" y="1749" width="0.1" height="15.0" fill="rgb(213,13,52)" rx="2" ry="2" />
<text x="121.67" y="1759.5" ></text>
</g>
<g >
<title>swift_endAccess (3 samples, 0.01%)</title><rect x="822.0" y="1685" width="0.2" height="15.0" fill="rgb(228,43,1)" rx="2" ry="2" />
<text x="824.95" y="1695.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (228 samples, 0.88%)</title><rect x="469.0" y="1829" width="15.7" height="15.0" fill="rgb(211,21,40)" rx="2" ry="2" />
<text x="472.00" y="1839.5" ></text>
</g>
<g >
<title>TFE_DeleteTensorHandle (6 samples, 0.02%)</title><rect x="605.9" y="1909" width="0.4" height="15.0" fill="rgb(213,72,30)" rx="2" ry="2" />
<text x="608.85" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (51 samples, 0.20%)</title><rect x="304.9" y="1909" width="3.5" height="15.0" fill="rgb(232,125,19)" rx="2" ry="2" />
<text x="307.87" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (6 samples, 0.02%)</title><rect x="177.5" y="1909" width="0.4" height="15.0" fill="rgb(238,12,35)" rx="2" ry="2" />
<text x="180.50" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::profiler::TraceMe::Stop (2 samples, 0.01%)</title><rect x="442.4" y="1829" width="0.1" height="15.0" fill="rgb(209,153,19)" rx="2" ry="2" />
<text x="445.40" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::OpKernelContext (2 samples, 0.01%)</title><rect x="437.9" y="1749" width="0.1" height="15.0" fill="rgb(229,69,4)" rx="2" ry="2" />
<text x="440.87" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::ByteSizeLong (4 samples, 0.02%)</title><rect x="706.1" y="1797" width="0.2" height="15.0" fill="rgb(236,86,37)" rx="2" ry="2" />
<text x="709.07" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::BinaryOp&lt;Eigen::ThreadPoolDevice, tensorflow::functor::add&lt;double&gt; &gt;::Compute (2 samples, 0.01%)</title><rect x="1148.3" y="1749" width="0.1" height="15.0" fill="rgb(226,121,53)" rx="2" ry="2" />
<text x="1151.30" y="1759.5" ></text>
</g>
<g >
<title>type metadata accessor for __C.TF_Code (2 samples, 0.01%)</title><rect x="976.4" y="1877" width="0.1" height="15.0" fill="rgb(211,72,33)" rx="2" ry="2" />
<text x="979.40" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (20 samples, 0.08%)</title><rect x="266.6" y="1877" width="1.4" height="15.0" fill="rgb(247,177,23)" rx="2" ry="2" />
<text x="269.58" y="1887.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1123.7" y="1909" width="0.1" height="15.0" fill="rgb(226,86,9)" rx="2" ry="2" />
<text x="1126.69" y="1919.5" ></text>
</g>
<g >
<title>swift_release (13 samples, 0.05%)</title><rect x="625.6" y="1877" width="0.9" height="15.0" fill="rgb(226,42,1)" rx="2" ry="2" />
<text x="628.65" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (5 samples, 0.02%)</title><rect x="89.6" y="1797" width="0.3" height="15.0" fill="rgb(228,100,50)" rx="2" ry="2" />
<text x="92.59" y="1807.5" ></text>
</g>
<g >
<title>swift_release (9 samples, 0.03%)</title><rect x="462.5" y="1941" width="0.6" height="15.0" fill="rgb(249,43,8)" rx="2" ry="2" />
<text x="465.47" y="1951.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (3 samples, 0.01%)</title><rect x="620.3" y="1893" width="0.2" height="15.0" fill="rgb(248,35,23)" rx="2" ry="2" />
<text x="623.29" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="1789.7" y="1973" width="0.3" height="15.0" fill="rgb(249,67,6)" rx="2" ry="2" />
<text x="1792.66" y="1983.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CopyFromInternal (2 samples, 0.01%)</title><rect x="541.9" y="1733" width="0.2" height="15.0" fill="rgb(221,109,31)" rx="2" ry="2" />
<text x="544.93" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::TF_TensorToTensor (5 samples, 0.02%)</title><rect x="818.0" y="1733" width="0.4" height="15.0" fill="rgb(235,202,44)" rx="2" ry="2" />
<text x="821.03" y="1743.5" ></text>
</g>
<g >
<title>_int_free (15 samples, 0.06%)</title><rect x="1604.5" y="2053" width="1.0" height="15.0" fill="rgb(241,139,7)" rx="2" ry="2" />
<text x="1607.49" y="2063.5" ></text>
</g>
<g >
<title>Swift.Array.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (605 samples, 2.34%)</title><rect x="806.1" y="1877" width="41.6" height="15.0" fill="rgb(242,90,31)" rx="2" ry="2" />
<text x="809.14" y="1887.5" >Swi..</text>
</g>
<g >
<title>static TensorFlow._RawTFEager.fill&lt;A, B where A: TensorFlow.TensorFlowScalar, B: TensorFlow.TensorFlowIndex&gt;(dims: TensorFlow.Tensor&lt;B&gt;, value: TensorFlow.Tensor&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (19 samples, 0.07%)</title><rect x="1263.8" y="1893" width="1.3" height="15.0" fill="rgb(223,14,37)" rx="2" ry="2" />
<text x="1266.84" y="1903.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (20 samples, 0.08%)</title><rect x="797.8" y="1781" width="1.4" height="15.0" fill="rgb(241,167,15)" rx="2" ry="2" />
<text x="800.83" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::NodeDef (2 samples, 0.01%)</title><rect x="946.0" y="1845" width="0.2" height="15.0" fill="rgb(232,191,1)" rx="2" ry="2" />
<text x="949.02" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (83 samples, 0.32%)</title><rect x="576.6" y="1765" width="5.7" height="15.0" fill="rgb(236,55,17)" rx="2" ry="2" />
<text x="579.57" y="1775.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (18 samples, 0.07%)</title><rect x="523.4" y="1781" width="1.3" height="15.0" fill="rgb(239,206,9)" rx="2" ry="2" />
<text x="526.44" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (19 samples, 0.07%)</title><rect x="366.0" y="1701" width="1.3" height="15.0" fill="rgb(208,224,53)" rx="2" ry="2" />
<text x="369.04" y="1711.5" ></text>
</g>
<g >
<title>swift_release (16 samples, 0.06%)</title><rect x="778.2" y="1813" width="1.1" height="15.0" fill="rgb(236,100,12)" rx="2" ry="2" />
<text x="781.17" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (17 samples, 0.07%)</title><rect x="1077.1" y="1701" width="1.2" height="15.0" fill="rgb(228,117,6)" rx="2" ry="2" />
<text x="1080.09" y="1711.5" ></text>
</g>
<g >
<title>all (25,897 samples, 100%)</title><rect x="10.0" y="2085" width="1780.0" height="15.0" fill="rgb(233,164,14)" rx="2" ry="2" />
<text x="13.00" y="2095.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (118 samples, 0.46%)</title><rect x="986.0" y="1925" width="8.1" height="15.0" fill="rgb(239,9,8)" rx="2" ry="2" />
<text x="988.95" y="1935.5" ></text>
</g>
<g >
<title>Swift.ContiguousArray._createNewBuffer(bufferIsUnique: Swift.Bool, minimumCapacity: Swift.Int, growForAppend: Swift.Bool) -&gt; () (2 samples, 0.01%)</title><rect x="538.4" y="1781" width="0.1" height="15.0" fill="rgb(242,154,7)" rx="2" ry="2" />
<text x="541.36" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::~TensorHandle (14 samples, 0.05%)</title><rect x="415.8" y="1845" width="1.0" height="15.0" fill="rgb(246,59,50)" rx="2" ry="2" />
<text x="418.80" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::Buffer&lt;double&gt;::~Buffer (4 samples, 0.02%)</title><rect x="196.0" y="1797" width="0.3" height="15.0" fill="rgb(251,58,27)" rx="2" ry="2" />
<text x="198.99" y="1807.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.Hasher._hash(seed: Swift.Int, _: Swift.UInt) -&gt; Swift.Int (2 samples, 0.01%)</title><rect x="1051.9" y="1909" width="0.1" height="15.0" fill="rgb(213,17,14)" rx="2" ry="2" />
<text x="1054.87" y="1919.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="411.7" y="1893" width="0.1" height="15.0" fill="rgb(211,115,35)" rx="2" ry="2" />
<text x="414.68" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (33 samples, 0.13%)</title><rect x="1066.3" y="1925" width="2.3" height="15.0" fill="rgb(226,199,44)" rx="2" ry="2" />
<text x="1069.30" y="1935.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="47.2" y="1845" width="0.1" height="15.0" fill="rgb(212,98,27)" rx="2" ry="2" />
<text x="50.19" y="1855.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (13 samples, 0.05%)</title><rect x="939.4" y="1829" width="0.8" height="15.0" fill="rgb(220,170,3)" rx="2" ry="2" />
<text x="942.35" y="1839.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (3 samples, 0.01%)</title><rect x="1092.8" y="1893" width="0.2" height="15.0" fill="rgb(241,217,9)" rx="2" ry="2" />
<text x="1095.83" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (2 samples, 0.01%)</title><rect x="1155.8" y="1765" width="0.1" height="15.0" fill="rgb(212,37,40)" rx="2" ry="2" />
<text x="1158.79" y="1775.5" ></text>
</g>
<g >
<title>swift_arrayDestroy (455 samples, 1.76%)</title><rect x="189.5" y="1957" width="31.2" height="15.0" fill="rgb(253,94,40)" rx="2" ry="2" />
<text x="192.46" y="1967.5" >sw..</text>
</g>
<g >
<title>destroy value witness for Swift.IndexingIterator (2 samples, 0.01%)</title><rect x="489.3" y="1893" width="0.2" height="15.0" fill="rgb(214,164,46)" rx="2" ry="2" />
<text x="492.35" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (72 samples, 0.28%)</title><rect x="883.0" y="1877" width="4.9" height="15.0" fill="rgb(213,112,45)" rx="2" ry="2" />
<text x="885.99" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="293.0" y="1877" width="0.2" height="15.0" fill="rgb(224,179,13)" rx="2" ry="2" />
<text x="296.05" y="1887.5" ></text>
</g>
<g >
<title>swift_once (2 samples, 0.01%)</title><rect x="197.1" y="1877" width="0.1" height="15.0" fill="rgb(228,202,36)" rx="2" ry="2" />
<text x="200.09" y="1887.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (22 samples, 0.08%)</title><rect x="797.7" y="1797" width="1.5" height="15.0" fill="rgb(242,105,19)" rx="2" ry="2" />
<text x="800.69" y="1807.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="601.9" y="1893" width="0.1" height="15.0" fill="rgb(251,117,53)" rx="2" ry="2" />
<text x="604.87" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::StepContainer (2 samples, 0.01%)</title><rect x="962.4" y="1749" width="0.1" height="15.0" fill="rgb(231,140,30)" rx="2" ry="2" />
<text x="965.38" y="1759.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorOperation.updateAttribute(Swift.String, Swift.Bool) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TensorOperation in TensorFlow (57 samples, 0.22%)</title><rect x="1040.3" y="1925" width="3.9" height="15.0" fill="rgb(210,175,15)" rx="2" ry="2" />
<text x="1043.32" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (6 samples, 0.02%)</title><rect x="51.2" y="1893" width="0.5" height="15.0" fill="rgb(228,77,40)" rx="2" ry="2" />
<text x="54.24" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="837" width="0.9" height="15.0" fill="rgb(216,135,7)" rx="2" ry="2" />
<text x="24.27" y="847.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (6 samples, 0.02%)</title><rect x="271.4" y="1845" width="0.4" height="15.0" fill="rgb(228,191,23)" rx="2" ry="2" />
<text x="274.39" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (2 samples, 0.01%)</title><rect x="589.6" y="1765" width="0.2" height="15.0" fill="rgb(232,137,26)" rx="2" ry="2" />
<text x="592.63" y="1775.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (4 samples, 0.02%)</title><rect x="303.5" y="1861" width="0.3" height="15.0" fill="rgb(221,27,30)" rx="2" ry="2" />
<text x="306.49" y="1871.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::initializeWithCopy (2 samples, 0.01%)</title><rect x="840.4" y="1781" width="0.1" height="15.0" fill="rgb(206,229,48)" rx="2" ry="2" />
<text x="843.37" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (40 samples, 0.15%)</title><rect x="588.2" y="1845" width="2.7" height="15.0" fill="rgb(233,226,8)" rx="2" ry="2" />
<text x="591.19" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.internalConsistencyCheck(_: Swift.Bool, _: Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (3 samples, 0.01%)</title><rect x="1466.2" y="1861" width="0.2" height="15.0" fill="rgb(233,86,41)" rx="2" ry="2" />
<text x="1469.19" y="1871.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1109.6" y="1909" width="0.1" height="15.0" fill="rgb(243,15,49)" rx="2" ry="2" />
<text x="1112.60" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::Status::empty_string[abi:cxx11] (2 samples, 0.01%)</title><rect x="74.5" y="1893" width="0.1" height="15.0" fill="rgb(248,64,48)" rx="2" ry="2" />
<text x="77.47" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (4 samples, 0.02%)</title><rect x="699.5" y="1813" width="0.2" height="15.0" fill="rgb(245,15,29)" rx="2" ry="2" />
<text x="702.47" y="1823.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (278 samples, 1.07%)</title><rect x="468.6" y="1861" width="19.1" height="15.0" fill="rgb(245,45,26)" rx="2" ry="2" />
<text x="471.59" y="1871.5" ></text>
</g>
<g >
<title>implicit closure #2 (Swift.Int, Swift.Int) -&gt; Swift.Int in implicit closure #1 (Swift.Int.Type) -&gt; (Swift.Int, Swift.Int) -&gt; Swift.Int in (extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (2 samples, 0.01%)</title><rect x="125.5" y="1765" width="0.1" height="15.0" fill="rgb(215,227,40)" rx="2" ry="2" />
<text x="128.47" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle._tfeTensorHandle.getter : TensorFlow.TFETensorHandle (2 samples, 0.01%)</title><rect x="1132.4" y="1877" width="0.1" height="15.0" fill="rgb(213,37,52)" rx="2" ry="2" />
<text x="1135.35" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow._RawTFEager.reshape&lt;A where A: TensorFlow.TensorFlowScalar&gt;(_: TensorFlow.Tensor&lt;A&gt;, shape: [Swift.Int64]) -&gt; TensorFlow.Tensor&lt;A&gt; (29 samples, 0.11%)</title><rect x="1433.0" y="1925" width="2.0" height="15.0" fill="rgb(243,205,26)" rx="2" ry="2" />
<text x="1436.00" y="1935.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int) -&gt; (@unowned Swift.Int64, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int) -&gt; (@out Swift.Int64, @error @owned Swift.Error) (9 samples, 0.03%)</title><rect x="256.1" y="1845" width="0.6" height="15.0" fill="rgb(208,198,31)" rx="2" ry="2" />
<text x="259.07" y="1855.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1006.0" y="1845" width="0.2" height="15.0" fill="rgb(222,193,27)" rx="2" ry="2" />
<text x="1009.02" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.internalConsistencyCheck(_: Swift.Bool, _: Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="1177.8" y="1909" width="0.1" height="15.0" fill="rgb(215,229,34)" rx="2" ry="2" />
<text x="1180.79" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle._cTensorHandle.getter : Swift.OpaquePointer (3 samples, 0.01%)</title><rect x="307.3" y="1893" width="0.2" height="15.0" fill="rgb(233,7,50)" rx="2" ry="2" />
<text x="310.27" y="1903.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.String._uncheckedFromUTF8(_: Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;, asciiPreScanResult: Swift.Bool) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="1112.9" y="1893" width="0.1" height="15.0" fill="rgb(223,73,38)" rx="2" ry="2" />
<text x="1115.90" y="1903.5" ></text>
</g>
<g >
<title>TFE_NewTensorHandle (19 samples, 0.07%)</title><rect x="1155.3" y="1781" width="1.3" height="15.0" fill="rgb(244,171,24)" rx="2" ry="2" />
<text x="1158.31" y="1791.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (8 samples, 0.03%)</title><rect x="1034.5" y="1765" width="0.5" height="15.0" fill="rgb(239,31,23)" rx="2" ry="2" />
<text x="1037.48" y="1775.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="808.9" y="1765" width="0.2" height="15.0" fill="rgb(246,4,3)" rx="2" ry="2" />
<text x="811.89" y="1775.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (3 samples, 0.01%)</title><rect x="1701.9" y="2021" width="0.2" height="15.0" fill="rgb(231,186,54)" rx="2" ry="2" />
<text x="1704.88" y="2031.5" ></text>
</g>
<g >
<title>tensorflow::BinaryOp&lt;Eigen::ThreadPoolDevice, tensorflow::functor::add&lt;double&gt; &gt;::Compute (33 samples, 0.13%)</title><rect x="1235.5" y="1749" width="2.2" height="15.0" fill="rgb(222,162,22)" rx="2" ry="2" />
<text x="1238.46" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (2 samples, 0.01%)</title><rect x="1460.8" y="1877" width="0.2" height="15.0" fill="rgb(241,200,4)" rx="2" ry="2" />
<text x="1463.83" y="1887.5" ></text>
</g>
<g >
<title>__posix_memalign (2 samples, 0.01%)</title><rect x="1022.4" y="1621" width="0.2" height="15.0" fill="rgb(254,133,36)" rx="2" ry="2" />
<text x="1025.45" y="1631.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.BidirectionalCollection.last.getter : A.Element? (5 samples, 0.02%)</title><rect x="279.6" y="1829" width="0.3" height="15.0" fill="rgb(231,137,34)" rx="2" ry="2" />
<text x="282.57" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (4 samples, 0.02%)</title><rect x="385.6" y="1893" width="0.2" height="15.0" fill="rgb(225,189,8)" rx="2" ry="2" />
<text x="388.56" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_temp (16 samples, 0.06%)</title><rect x="579.0" y="1701" width="1.1" height="15.0" fill="rgb(224,81,53)" rx="2" ry="2" />
<text x="581.98" y="1711.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (16 samples, 0.06%)</title><rect x="358.5" y="1893" width="1.1" height="15.0" fill="rgb(205,52,39)" rx="2" ry="2" />
<text x="361.48" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (12 samples, 0.05%)</title><rect x="1047.5" y="1845" width="0.9" height="15.0" fill="rgb(252,87,20)" rx="2" ry="2" />
<text x="1050.54" y="1855.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (29 samples, 0.11%)</title><rect x="538.2" y="1797" width="1.9" height="15.0" fill="rgb(206,48,13)" rx="2" ry="2" />
<text x="541.15" y="1807.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (9 samples, 0.03%)</title><rect x="592.9" y="1877" width="0.6" height="15.0" fill="rgb(211,69,27)" rx="2" ry="2" />
<text x="595.86" y="1887.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="24.2" y="1989" width="0.4" height="15.0" fill="rgb(209,132,30)" rx="2" ry="2" />
<text x="27.23" y="1999.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::OutputResourceDevice (2 samples, 0.01%)</title><rect x="325.8" y="1765" width="0.1" height="15.0" fill="rgb(223,101,27)" rx="2" ry="2" />
<text x="328.76" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::BuildCacheKeyForDevice (2 samples, 0.01%)</title><rect x="1136.8" y="1813" width="0.1" height="15.0" fill="rgb(214,130,43)" rx="2" ry="2" />
<text x="1139.75" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (3 samples, 0.01%)</title><rect x="119.3" y="1861" width="0.2" height="15.0" fill="rgb(236,178,38)" rx="2" ry="2" />
<text x="122.29" y="1871.5" ></text>
</g>
<g >
<title>_mid_memalign (54 samples, 0.21%)</title><rect x="1639.2" y="2053" width="3.7" height="15.0" fill="rgb(221,104,28)" rx="2" ry="2" />
<text x="1642.20" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1701" width="0.9" height="15.0" fill="rgb(205,158,23)" rx="2" ry="2" />
<text x="24.27" y="1711.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (21 samples, 0.08%)</title><rect x="519.0" y="1877" width="1.5" height="15.0" fill="rgb(254,147,20)" rx="2" ry="2" />
<text x="522.04" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow._AnyTensorHandle._tfeTensorHandle.getter : TensorFlow.TFETensorHandle in conformance TensorFlow.TFETensorHandle : TensorFlow._AnyTensorHandle in TensorFlow (3 samples, 0.01%)</title><rect x="1132.4" y="1893" width="0.2" height="15.0" fill="rgb(221,120,36)" rx="2" ry="2" />
<text x="1135.35" y="1903.5" ></text>
</g>
<g >
<title>nominal type descriptor for Swift.Int32 (22 samples, 0.08%)</title><rect x="1700.4" y="2053" width="1.5" height="15.0" fill="rgb(212,37,1)" rx="2" ry="2" />
<text x="1703.37" y="2063.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (7 samples, 0.03%)</title><rect x="279.5" y="1845" width="0.5" height="15.0" fill="rgb(211,31,49)" rx="2" ry="2" />
<text x="282.51" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (12 samples, 0.05%)</title><rect x="1234.0" y="1781" width="0.8" height="15.0" fill="rgb(215,96,54)" rx="2" ry="2" />
<text x="1237.01" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (88 samples, 0.34%)</title><rect x="576.4" y="1797" width="6.1" height="15.0" fill="rgb(254,157,19)" rx="2" ry="2" />
<text x="579.44" y="1807.5" ></text>
</g>
<g >
<title>TFE_Execute (24 samples, 0.09%)</title><rect x="1449.0" y="1813" width="1.7" height="15.0" fill="rgb(237,82,40)" rx="2" ry="2" />
<text x="1452.01" y="1823.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (9 samples, 0.03%)</title><rect x="1103.9" y="1733" width="0.6" height="15.0" fill="rgb(246,168,40)" rx="2" ry="2" />
<text x="1106.90" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, Swift.Bool) -&gt; () (49 samples, 0.19%)</title><rect x="1040.4" y="1909" width="3.4" height="15.0" fill="rgb(221,191,9)" rx="2" ry="2" />
<text x="1043.39" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::Executor (2 samples, 0.01%)</title><rect x="792.5" y="1861" width="0.1" height="15.0" fill="rgb(229,154,10)" rx="2" ry="2" />
<text x="795.47" y="1871.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (3 samples, 0.01%)</title><rect x="1265.1" y="1909" width="0.3" height="15.0" fill="rgb(211,205,21)" rx="2" ry="2" />
<text x="1268.15" y="1919.5" ></text>
</g>
<g >
<title>outlined init with copy of SwiftFusion._AnyDerivativeBox (17 samples, 0.07%)</title><rect x="1408.6" y="1813" width="1.2" height="15.0" fill="rgb(213,84,44)" rx="2" ry="2" />
<text x="1411.60" y="1823.5" ></text>
</g>
<g >
<title>swift_retain (15 samples, 0.06%)</title><rect x="1055.9" y="1941" width="1.1" height="15.0" fill="rgb(221,194,45)" rx="2" ry="2" />
<text x="1058.92" y="1951.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;int, std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt;, std::allocator&lt;std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;int&gt;, std::hash&lt;int&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::~_Hashtable (2 samples, 0.01%)</title><rect x="1186.9" y="1845" width="0.2" height="15.0" fill="rgb(237,223,47)" rx="2" ry="2" />
<text x="1189.93" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (296 samples, 1.14%)</title><rect x="1150.3" y="1925" width="20.3" height="15.0" fill="rgb(213,214,39)" rx="2" ry="2" />
<text x="1153.29" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (387 samples, 1.49%)</title><rect x="862.1" y="1909" width="26.6" height="15.0" fill="rgb(209,146,48)" rx="2" ry="2" />
<text x="865.09" y="1919.5" >p..</text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (13 samples, 0.05%)</title><rect x="158.5" y="1813" width="0.9" height="15.0" fill="rgb(250,19,32)" rx="2" ry="2" />
<text x="161.47" y="1823.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="394.8" y="1941" width="0.2" height="15.0" fill="rgb(241,160,47)" rx="2" ry="2" />
<text x="397.77" y="1951.5" ></text>
</g>
<g >
<title>__pthread_once_slow (3 samples, 0.01%)</title><rect x="1495.1" y="2037" width="0.2" height="15.0" fill="rgb(247,205,8)" rx="2" ry="2" />
<text x="1498.06" y="2047.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (30 samples, 0.12%)</title><rect x="1086.4" y="1829" width="2.0" height="15.0" fill="rgb(252,80,10)" rx="2" ry="2" />
<text x="1089.37" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (2 samples, 0.01%)</title><rect x="759.2" y="1797" width="0.1" height="15.0" fill="rgb(251,33,12)" rx="2" ry="2" />
<text x="762.20" y="1807.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="236.3" y="1845" width="0.2" height="15.0" fill="rgb(214,35,29)" rx="2" ry="2" />
<text x="239.34" y="1855.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="1110.6" y="1957" width="0.2" height="15.0" fill="rgb(239,21,54)" rx="2" ry="2" />
<text x="1113.63" y="1967.5" ></text>
</g>
<g >
<title>_int_free (11 samples, 0.04%)</title><rect x="175.4" y="1925" width="0.8" height="15.0" fill="rgb(224,92,46)" rx="2" ry="2" />
<text x="178.44" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1157" width="0.9" height="15.0" fill="rgb(233,152,9)" rx="2" ry="2" />
<text x="24.27" y="1167.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (55 samples, 0.21%)</title><rect x="871.8" y="1733" width="3.8" height="15.0" fill="rgb(238,193,14)" rx="2" ry="2" />
<text x="874.78" y="1743.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (33 samples, 0.13%)</title><rect x="1441.6" y="1813" width="2.3" height="15.0" fill="rgb(245,88,8)" rx="2" ry="2" />
<text x="1444.59" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (6 samples, 0.02%)</title><rect x="1269.3" y="1733" width="0.4" height="15.0" fill="rgb(249,99,2)" rx="2" ry="2" />
<text x="1272.27" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (42 samples, 0.16%)</title><rect x="1536.8" y="1957" width="2.9" height="15.0" fill="rgb(217,195,12)" rx="2" ry="2" />
<text x="1539.78" y="1967.5" ></text>
</g>
<g >
<title>static TensorFlow._RawTFEager.reshape&lt;A, B where A: TensorFlow.TensorFlowScalar, B: TensorFlow.TensorFlowIndex&gt;(_: TensorFlow.Tensor&lt;A&gt;, shape: TensorFlow.Tensor&lt;B&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (549 samples, 2.12%)</title><rect x="492.8" y="1941" width="37.7" height="15.0" fill="rgb(251,134,26)" rx="2" ry="2" />
<text x="495.79" y="1951.5" >sta..</text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (26 samples, 0.10%)</title><rect x="972.1" y="1877" width="1.8" height="15.0" fill="rgb(208,202,20)" rx="2" ry="2" />
<text x="975.07" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CopyFromInternal (3 samples, 0.01%)</title><rect x="129.2" y="1733" width="0.2" height="15.0" fill="rgb(220,143,26)" rx="2" ry="2" />
<text x="132.18" y="1743.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (4 samples, 0.02%)</title><rect x="455.0" y="1861" width="0.3" height="15.0" fill="rgb(249,227,10)" rx="2" ry="2" />
<text x="457.98" y="1871.5" ></text>
</g>
<g >
<title>TFE_Execute (62 samples, 0.24%)</title><rect x="1136.1" y="1893" width="4.2" height="15.0" fill="rgb(251,141,8)" rx="2" ry="2" />
<text x="1139.07" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (2 samples, 0.01%)</title><rect x="1468.3" y="1893" width="0.1" height="15.0" fill="rgb(230,50,52)" rx="2" ry="2" />
<text x="1471.26" y="1903.5" ></text>
</g>
<g >
<title>__posix_memalign (2 samples, 0.01%)</title><rect x="117.2" y="1893" width="0.2" height="15.0" fill="rgb(224,49,44)" rx="2" ry="2" />
<text x="120.22" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (2 samples, 0.01%)</title><rect x="757.2" y="1733" width="0.1" height="15.0" fill="rgb(246,155,45)" rx="2" ry="2" />
<text x="760.21" y="1743.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="494.3" y="1845" width="0.1" height="15.0" fill="rgb(212,115,9)" rx="2" ry="2" />
<text x="497.30" y="1855.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace_aux (40 samples, 0.15%)</title><rect x="1715.7" y="2053" width="2.7" height="15.0" fill="rgb(241,53,26)" rx="2" ry="2" />
<text x="1718.70" y="2063.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (6 samples, 0.02%)</title><rect x="1097.1" y="1925" width="0.4" height="15.0" fill="rgb(205,21,52)" rx="2" ry="2" />
<text x="1100.09" y="1935.5" ></text>
</g>
<g >
<title>Eigen::ThreadPoolDevice::parallelFor (8 samples, 0.03%)</title><rect x="1235.7" y="1717" width="0.5" height="15.0" fill="rgb(210,156,22)" rx="2" ry="2" />
<text x="1238.66" y="1727.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="947.4" y="1877" width="0.1" height="15.0" fill="rgb(209,102,14)" rx="2" ry="2" />
<text x="950.39" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(handle: TensorFlow.TensorHandle&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="117.8" y="1829" width="0.2" height="15.0" fill="rgb(253,141,19)" rx="2" ry="2" />
<text x="120.84" y="1839.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of Swift.String.init(cString: Swift.UnsafePointer&lt;Swift.Int8&gt;) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="767.3" y="1845" width="0.1" height="15.0" fill="rgb(208,68,51)" rx="2" ry="2" />
<text x="770.31" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::UnsafeAddDim (2 samples, 0.01%)</title><rect x="277.3" y="1669" width="0.1" height="15.0" fill="rgb(241,119,48)" rx="2" ry="2" />
<text x="280.31" y="1679.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (15 samples, 0.06%)</title><rect x="1153.7" y="1797" width="1.1" height="15.0" fill="rgb(249,80,30)" rx="2" ry="2" />
<text x="1156.73" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (2 samples, 0.01%)</title><rect x="1226.5" y="1893" width="0.2" height="15.0" fill="rgb(240,79,4)" rx="2" ry="2" />
<text x="1229.52" y="1903.5" ></text>
</g>
<g >
<title>farmhashcc::Fingerprint128 (3 samples, 0.01%)</title><rect x="740.8" y="1765" width="0.2" height="15.0" fill="rgb(216,164,10)" rx="2" ry="2" />
<text x="743.78" y="1775.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="624.5" y="1861" width="0.2" height="15.0" fill="rgb(237,2,13)" rx="2" ry="2" />
<text x="627.55" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_tensor (11 samples, 0.04%)</title><rect x="152.3" y="1685" width="0.7" height="15.0" fill="rgb(205,19,17)" rx="2" ry="2" />
<text x="155.28" y="1695.5" ></text>
</g>
<g >
<title>swift_retain (4 samples, 0.02%)</title><rect x="1050.8" y="1893" width="0.2" height="15.0" fill="rgb(213,15,1)" rx="2" ry="2" />
<text x="1053.77" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="1789.7" y="2005" width="0.3" height="15.0" fill="rgb(212,223,21)" rx="2" ry="2" />
<text x="1792.66" y="2015.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (26 samples, 0.10%)</title><rect x="635.3" y="1765" width="1.8" height="15.0" fill="rgb(249,72,42)" rx="2" ry="2" />
<text x="638.27" y="1775.5" ></text>
</g>
<g >
<title>__pthread_once (3 samples, 0.01%)</title><rect x="1597.8" y="2053" width="0.2" height="15.0" fill="rgb(244,150,53)" rx="2" ry="2" />
<text x="1600.75" y="2063.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrBool (20 samples, 0.08%)</title><rect x="161.8" y="1893" width="1.3" height="15.0" fill="rgb(206,77,25)" rx="2" ry="2" />
<text x="164.76" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::input (2 samples, 0.01%)</title><rect x="1197.9" y="1733" width="0.1" height="15.0" fill="rgb(246,205,26)" rx="2" ry="2" />
<text x="1200.86" y="1743.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1282.5" y="1845" width="0.1" height="15.0" fill="rgb(249,91,13)" rx="2" ry="2" />
<text x="1285.47" y="1855.5" ></text>
</g>
<g >
<title>InitialAllocationPool (123 samples, 0.47%)</title><rect x="1527.8" y="2021" width="8.5" height="15.0" fill="rgb(211,133,25)" rx="2" ry="2" />
<text x="1530.85" y="2031.5" ></text>
</g>
<g >
<title>__swift_destroy_boxed_opaque_existential_1 (25 samples, 0.10%)</title><rect x="1427.6" y="1861" width="1.7" height="15.0" fill="rgb(213,79,41)" rx="2" ry="2" />
<text x="1430.57" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (15 samples, 0.06%)</title><rect x="638.7" y="1733" width="1.0" height="15.0" fill="rgb(217,113,4)" rx="2" ry="2" />
<text x="641.71" y="1743.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (10 samples, 0.04%)</title><rect x="293.9" y="1909" width="0.7" height="15.0" fill="rgb(253,177,25)" rx="2" ry="2" />
<text x="296.94" y="1919.5" ></text>
</g>
<g >
<title>TFE_NewOp (27 samples, 0.10%)</title><rect x="1127.4" y="1925" width="1.9" height="15.0" fill="rgb(221,76,11)" rx="2" ry="2" />
<text x="1130.41" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CheckTypeAndIsAligned (2 samples, 0.01%)</title><rect x="1021.3" y="1669" width="0.1" height="15.0" fill="rgb(253,97,27)" rx="2" ry="2" />
<text x="1024.28" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1589" width="0.9" height="15.0" fill="rgb(246,36,37)" rx="2" ry="2" />
<text x="24.27" y="1599.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input (2 samples, 0.01%)</title><rect x="753.1" y="1669" width="0.1" height="15.0" fill="rgb(221,221,27)" rx="2" ry="2" />
<text x="756.08" y="1679.5" ></text>
</g>
<g >
<title>swift_release (6 samples, 0.02%)</title><rect x="723.5" y="1877" width="0.4" height="15.0" fill="rgb(217,125,2)" rx="2" ry="2" />
<text x="726.53" y="1887.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.FixedWidthInteger in Swift (2 samples, 0.01%)</title><rect x="1033.2" y="1893" width="0.2" height="15.0" fill="rgb(249,194,37)" rx="2" ry="2" />
<text x="1036.24" y="1903.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (4 samples, 0.02%)</title><rect x="1002.9" y="1861" width="0.2" height="15.0" fill="rgb(246,5,11)" rx="2" ry="2" />
<text x="1005.86" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (3 samples, 0.01%)</title><rect x="409.8" y="1893" width="0.2" height="15.0" fill="rgb(216,126,14)" rx="2" ry="2" />
<text x="412.76" y="1903.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (2 samples, 0.01%)</title><rect x="106.2" y="1877" width="0.2" height="15.0" fill="rgb(246,177,15)" rx="2" ry="2" />
<text x="109.23" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (77 samples, 0.30%)</title><rect x="1207.3" y="1925" width="5.3" height="15.0" fill="rgb(253,13,14)" rx="2" ry="2" />
<text x="1210.27" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="197" width="0.9" height="15.0" fill="rgb(229,161,29)" rx="2" ry="2" />
<text x="24.27" y="207.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="157.2" y="1877" width="0.2" height="15.0" fill="rgb(224,8,29)" rx="2" ry="2" />
<text x="160.23" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (29 samples, 0.11%)</title><rect x="588.4" y="1813" width="2.0" height="15.0" fill="rgb(206,138,19)" rx="2" ry="2" />
<text x="591.40" y="1823.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (4 samples, 0.02%)</title><rect x="243.4" y="1877" width="0.2" height="15.0" fill="rgb(210,171,24)" rx="2" ry="2" />
<text x="246.35" y="1887.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="821.3" y="1701" width="0.1" height="15.0" fill="rgb(243,145,32)" rx="2" ry="2" />
<text x="824.27" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (133 samples, 0.51%)</title><rect x="1072.2" y="1845" width="9.2" height="15.0" fill="rgb(247,96,33)" rx="2" ry="2" />
<text x="1075.21" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (8 samples, 0.03%)</title><rect x="802.0" y="1877" width="0.6" height="15.0" fill="rgb(221,65,49)" rx="2" ry="2" />
<text x="805.02" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (10 samples, 0.04%)</title><rect x="1159.5" y="1781" width="0.7" height="15.0" fill="rgb(240,83,45)" rx="2" ry="2" />
<text x="1162.50" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (28 samples, 0.11%)</title><rect x="369.7" y="1893" width="1.9" height="15.0" fill="rgb(247,85,19)" rx="2" ry="2" />
<text x="372.68" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (14 samples, 0.05%)</title><rect x="669.9" y="1861" width="1.0" height="15.0" fill="rgb(208,228,21)" rx="2" ry="2" />
<text x="672.91" y="1871.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (3 samples, 0.01%)</title><rect x="1448.7" y="1781" width="0.2" height="15.0" fill="rgb(227,119,24)" rx="2" ry="2" />
<text x="1451.74" y="1791.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int, @unowned Swift.Int) -&gt; (@unowned Swift.Int, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int, @in_guaranteed Swift.Int) -&gt; (@out Swift.Int, @error @owned Swift.Error) (2 samples, 0.01%)</title><rect x="98.5" y="1877" width="0.2" height="15.0" fill="rgb(229,74,21)" rx="2" ry="2" />
<text x="101.53" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (3 samples, 0.01%)</title><rect x="105.5" y="1845" width="0.2" height="15.0" fill="rgb(225,150,41)" rx="2" ry="2" />
<text x="108.47" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (8 samples, 0.03%)</title><rect x="874.4" y="1637" width="0.5" height="15.0" fill="rgb(227,94,2)" rx="2" ry="2" />
<text x="877.40" y="1647.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::TensorShapeBase (2 samples, 0.01%)</title><rect x="967.4" y="1701" width="0.1" height="15.0" fill="rgb(254,160,17)" rx="2" ry="2" />
<text x="970.39" y="1711.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (105 samples, 0.41%)</title><rect x="222.0" y="1957" width="7.2" height="15.0" fill="rgb(227,170,10)" rx="2" ry="2" />
<text x="224.98" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (42 samples, 0.16%)</title><rect x="1536.8" y="1973" width="2.9" height="15.0" fill="rgb(210,159,53)" rx="2" ry="2" />
<text x="1539.78" y="1983.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="971.3" y="1845" width="0.1" height="15.0" fill="rgb(240,87,40)" rx="2" ry="2" />
<text x="974.31" y="1855.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (35 samples, 0.14%)</title><rect x="500.4" y="1893" width="2.4" height="15.0" fill="rgb(228,136,23)" rx="2" ry="2" />
<text x="503.42" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (12 samples, 0.05%)</title><rect x="222.5" y="1861" width="0.8" height="15.0" fill="rgb(229,114,7)" rx="2" ry="2" />
<text x="225.53" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::LocalTensorHandleData::NumDims (3 samples, 0.01%)</title><rect x="40.9" y="1861" width="0.2" height="15.0" fill="rgb(212,4,44)" rx="2" ry="2" />
<text x="43.93" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (36 samples, 0.14%)</title><rect x="731.5" y="1845" width="2.5" height="15.0" fill="rgb(229,222,34)" rx="2" ry="2" />
<text x="734.50" y="1855.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (26 samples, 0.10%)</title><rect x="1441.7" y="1781" width="1.7" height="15.0" fill="rgb(223,204,12)" rx="2" ry="2" />
<text x="1444.66" y="1791.5" ></text>
</g>
<g >
<title>swift_release (8 samples, 0.03%)</title><rect x="1487.5" y="1893" width="0.6" height="15.0" fill="rgb(233,6,49)" rx="2" ry="2" />
<text x="1490.50" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (56 samples, 0.22%)</title><rect x="1448.0" y="1861" width="3.9" height="15.0" fill="rgb(217,136,22)" rx="2" ry="2" />
<text x="1451.05" y="1871.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (5 samples, 0.02%)</title><rect x="73.9" y="1893" width="0.3" height="15.0" fill="rgb(215,14,51)" rx="2" ry="2" />
<text x="76.85" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (4 samples, 0.02%)</title><rect x="542.8" y="1717" width="0.3" height="15.0" fill="rgb(214,209,48)" rx="2" ry="2" />
<text x="545.82" y="1727.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (11 samples, 0.04%)</title><rect x="552.9" y="1877" width="0.8" height="15.0" fill="rgb(226,163,14)" rx="2" ry="2" />
<text x="555.93" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="597" width="0.9" height="15.0" fill="rgb(233,66,0)" rx="2" ry="2" />
<text x="24.27" y="607.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (114 samples, 0.44%)</title><rect x="1231.6" y="1877" width="7.8" height="15.0" fill="rgb(246,117,24)" rx="2" ry="2" />
<text x="1234.61" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::tensor&lt;double, 2ul&gt; (8 samples, 0.03%)</title><rect x="322.5" y="1685" width="0.5" height="15.0" fill="rgb(244,175,17)" rx="2" ry="2" />
<text x="325.46" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (3 samples, 0.01%)</title><rect x="664.7" y="1813" width="0.2" height="15.0" fill="rgb(238,130,18)" rx="2" ry="2" />
<text x="667.69" y="1823.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="655.7" y="1877" width="0.1" height="15.0" fill="rgb(223,157,46)" rx="2" ry="2" />
<text x="658.69" y="1887.5" ></text>
</g>
<g >
<title>[libswiftTensorFlow.so] (3 samples, 0.01%)</title><rect x="20.9" y="2037" width="0.2" height="15.0" fill="rgb(253,67,29)" rx="2" ry="2" />
<text x="23.86" y="2047.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (30 samples, 0.12%)</title><rect x="102.0" y="1893" width="2.1" height="15.0" fill="rgb(224,219,31)" rx="2" ry="2" />
<text x="105.03" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::UnaryOp&lt;Eigen::ThreadPoolDevice, tensorflow::functor::neg&lt;double&gt; &gt;::Compute (2 samples, 0.01%)</title><rect x="1454.6" y="1733" width="0.1" height="15.0" fill="rgb(208,177,10)" rx="2" ry="2" />
<text x="1457.58" y="1743.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;int, std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt;, std::allocator&lt;std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;int&gt;, std::hash&lt;int&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::~_Hashtable (3 samples, 0.01%)</title><rect x="574.7" y="1797" width="0.2" height="15.0" fill="rgb(225,151,25)" rx="2" ry="2" />
<text x="577.72" y="1807.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (3 samples, 0.01%)</title><rect x="339.7" y="1877" width="0.2" height="15.0" fill="rgb(242,152,35)" rx="2" ry="2" />
<text x="342.72" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (11 samples, 0.04%)</title><rect x="549.6" y="1813" width="0.8" height="15.0" fill="rgb(247,226,46)" rx="2" ry="2" />
<text x="552.63" y="1823.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (2 samples, 0.01%)</title><rect x="904.6" y="1861" width="0.2" height="15.0" fill="rgb(241,66,11)" rx="2" ry="2" />
<text x="907.64" y="1871.5" ></text>
</g>
<g >
<title>type metadata accessor for TensorFlow._ExecutionContext (2 samples, 0.01%)</title><rect x="995.0" y="1925" width="0.2" height="15.0" fill="rgb(218,63,4)" rx="2" ry="2" />
<text x="998.02" y="1935.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (3 samples, 0.01%)</title><rect x="478.0" y="1765" width="0.2" height="15.0" fill="rgb(236,104,5)" rx="2" ry="2" />
<text x="481.01" y="1775.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="1035.6" y="1765" width="0.3" height="15.0" fill="rgb(207,200,49)" rx="2" ry="2" />
<text x="1038.65" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1125" width="0.9" height="15.0" fill="rgb(211,119,21)" rx="2" ry="2" />
<text x="24.27" y="1135.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow._AnyTensorHandle._cTensorHandle.getter : Swift.OpaquePointer (4 samples, 0.02%)</title><rect x="565.9" y="1877" width="0.3" height="15.0" fill="rgb(236,118,40)" rx="2" ry="2" />
<text x="568.92" y="1887.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (19 samples, 0.07%)</title><rect x="528.0" y="1845" width="1.3" height="15.0" fill="rgb(249,191,12)" rx="2" ry="2" />
<text x="530.98" y="1855.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Int&gt; of Swift.__RawDictionaryStorage.find&lt;A where A: Swift.Hashable&gt;(A) -&gt; (bucket: Swift._HashTable.Bucket, found: Swift.Bool) (3 samples, 0.01%)</title><rect x="1223.3" y="1957" width="0.2" height="15.0" fill="rgb(214,57,12)" rx="2" ry="2" />
<text x="1226.29" y="1967.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (12 samples, 0.05%)</title><rect x="224.6" y="1909" width="0.8" height="15.0" fill="rgb(236,123,17)" rx="2" ry="2" />
<text x="227.59" y="1919.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="252.7" y="1909" width="0.1" height="15.0" fill="rgb(238,143,44)" rx="2" ry="2" />
<text x="255.70" y="1919.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (4 samples, 0.02%)</title><rect x="647.1" y="1765" width="0.3" height="15.0" fill="rgb(254,106,26)" rx="2" ry="2" />
<text x="650.09" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (116 samples, 0.45%)</title><rect x="1017.8" y="1797" width="8.0" height="15.0" fill="rgb(227,4,17)" rx="2" ry="2" />
<text x="1020.84" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(handle: TensorFlow.TensorHandle&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="588.3" y="1829" width="0.1" height="15.0" fill="rgb(241,40,40)" rx="2" ry="2" />
<text x="591.26" y="1839.5" ></text>
</g>
<g >
<title>swift_retain (7 samples, 0.03%)</title><rect x="97.8" y="1845" width="0.5" height="15.0" fill="rgb(217,190,41)" rx="2" ry="2" />
<text x="100.77" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1702.1" y="2037" width="0.1" height="15.0" fill="rgb(245,134,7)" rx="2" ry="2" />
<text x="1705.09" y="2047.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Double&gt; of TensorFlow.Tensor.reshaped(to: TensorFlow.TensorShape) -&gt; TensorFlow.Tensor&lt;A&gt; (31 samples, 0.12%)</title><rect x="1432.9" y="1941" width="2.1" height="15.0" fill="rgb(234,34,1)" rx="2" ry="2" />
<text x="1435.86" y="1951.5" ></text>
</g>
<g >
<title>Eigen::internal::TensorExecutor&lt;Eigen::TensorAssignOp&lt;Eigen::TensorMap&lt;Eigen::Tensor&lt;double, 1, 1, long&gt;, 16, Eigen::MakePointer&gt;, Eigen::TensorCwiseBinaryOp&lt;Eigen::internal::scalar_sum_op&lt;double, double&gt;, Eigen::TensorMap&lt;Eigen::Tensor&lt;double const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const, Eigen::TensorMap&lt;Eigen::Tensor&lt;double const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const&gt; const&gt; const, Eigen::ThreadPoolDevice, true, (10 samples, 0.04%)</title><rect x="1235.5" y="1733" width="0.7" height="15.0" fill="rgb(231,109,13)" rx="2" ry="2" />
<text x="1238.52" y="1743.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int, @unowned Swift.Int) -&gt; (@unowned Swift.Int, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int, @in_guaranteed Swift.Int) -&gt; (@out Swift.Int, @error @owned Swift.Error) (2 samples, 0.01%)</title><rect x="125.5" y="1797" width="0.1" height="15.0" fill="rgb(248,111,36)" rx="2" ry="2" />
<text x="128.47" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (212 samples, 0.82%)</title><rect x="536.7" y="1845" width="14.6" height="15.0" fill="rgb(248,82,40)" rx="2" ry="2" />
<text x="539.71" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="405" width="0.9" height="15.0" fill="rgb(239,44,53)" rx="2" ry="2" />
<text x="24.27" y="415.5" ></text>
</g>
<g >
<title>TensorFlow.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (91 samples, 0.35%)</title><rect x="493.8" y="1925" width="6.3" height="15.0" fill="rgb(205,229,54)" rx="2" ry="2" />
<text x="496.82" y="1935.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (7 samples, 0.03%)</title><rect x="1252.0" y="1845" width="0.4" height="15.0" fill="rgb(243,30,37)" rx="2" ry="2" />
<text x="1254.95" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::FillDimsAndValidateCompatibleShape&lt;long long, 1ul&gt; (2 samples, 0.01%)</title><rect x="1470.2" y="1701" width="0.1" height="15.0" fill="rgb(206,139,37)" rx="2" ry="2" />
<text x="1473.18" y="1711.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (15 samples, 0.06%)</title><rect x="1069.6" y="1893" width="1.0" height="15.0" fill="rgb(251,10,28)" rx="2" ry="2" />
<text x="1072.60" y="1903.5" ></text>
</g>
<g >
<title>TF_DeleteTensor (3 samples, 0.01%)</title><rect x="414.3" y="1909" width="0.2" height="15.0" fill="rgb(219,210,7)" rx="2" ry="2" />
<text x="417.29" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="1643.0" y="2021" width="0.3" height="15.0" fill="rgb(219,122,35)" rx="2" ry="2" />
<text x="1646.05" y="2031.5" ></text>
</g>
<g >
<title>swift_release (5 samples, 0.02%)</title><rect x="1107.3" y="1845" width="0.4" height="15.0" fill="rgb(251,217,8)" rx="2" ry="2" />
<text x="1110.34" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (4 samples, 0.02%)</title><rect x="1439.1" y="1893" width="0.3" height="15.0" fill="rgb(251,172,27)" rx="2" ry="2" />
<text x="1442.11" y="1903.5" ></text>
</g>
<g >
<title>swift_getAssociatedConformanceWitness (2 samples, 0.01%)</title><rect x="447.8" y="1909" width="0.1" height="15.0" fill="rgb(216,39,40)" rx="2" ry="2" />
<text x="450.77" y="1919.5" ></text>
</g>
<g >
<title>Eigen::internal::TensorExecutor&lt;Eigen::TensorAssignOp&lt;Eigen::TensorMap&lt;Eigen::Tensor&lt;int, 1, 1, long&gt;, 16, Eigen::MakePointer&gt;, Eigen::TensorCwiseBinaryOp&lt;Eigen::internal::scalar_difference_op&lt;int, int&gt;, Eigen::TensorMap&lt;Eigen::Tensor&lt;int const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const, Eigen::TensorMap&lt;Eigen::Tensor&lt;int const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const&gt; const&gt; const, Eigen::ThreadPoolDevice, true, (10 samples, 0.04%)</title><rect x="749.2" y="1685" width="0.7" height="15.0" fill="rgb(235,183,34)" rx="2" ry="2" />
<text x="752.23" y="1695.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="227.4" y="1877" width="0.1" height="15.0" fill="rgb(210,169,46)" rx="2" ry="2" />
<text x="230.41" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1700.4" y="2037" width="0.2" height="15.0" fill="rgb(219,69,49)" rx="2" ry="2" />
<text x="1703.37" y="2047.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (16 samples, 0.06%)</title><rect x="423.1" y="1893" width="1.1" height="15.0" fill="rgb(232,14,10)" rx="2" ry="2" />
<text x="426.09" y="1903.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="452.4" y="1877" width="0.2" height="15.0" fill="rgb(241,198,38)" rx="2" ry="2" />
<text x="455.44" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (32 samples, 0.12%)</title><rect x="495.1" y="1861" width="2.2" height="15.0" fill="rgb(245,191,8)" rx="2" ry="2" />
<text x="498.05" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (3 samples, 0.01%)</title><rect x="71.7" y="1781" width="0.2" height="15.0" fill="rgb(238,87,41)" rx="2" ry="2" />
<text x="74.65" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::ConcatCPU&lt;double&gt; (2 samples, 0.01%)</title><rect x="1269.5" y="1701" width="0.1" height="15.0" fill="rgb(247,44,15)" rx="2" ry="2" />
<text x="1272.48" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1111.3" y="1861" width="0.3" height="15.0" fill="rgb(252,209,26)" rx="2" ry="2" />
<text x="1114.32" y="1871.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="1179.0" y="1925" width="0.2" height="15.0" fill="rgb(212,203,3)" rx="2" ry="2" />
<text x="1181.96" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (7 samples, 0.03%)</title><rect x="1218.1" y="1893" width="0.4" height="15.0" fill="rgb(233,35,26)" rx="2" ry="2" />
<text x="1221.07" y="1903.5" ></text>
</g>
<g >
<title>__tls_get_addr (4 samples, 0.02%)</title><rect x="141.2" y="1877" width="0.3" height="15.0" fill="rgb(251,5,19)" rx="2" ry="2" />
<text x="144.21" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorDataType.init(__C.TF_DataType) -&gt; TensorFlow.TensorDataType (4 samples, 0.02%)</title><rect x="661.6" y="1925" width="0.3" height="15.0" fill="rgb(220,155,8)" rx="2" ry="2" />
<text x="664.60" y="1935.5" ></text>
</g>
<g >
<title>__tls_get_addr@plt (2 samples, 0.01%)</title><rect x="417.2" y="1893" width="0.1" height="15.0" fill="rgb(239,89,54)" rx="2" ry="2" />
<text x="420.18" y="1903.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (6 samples, 0.02%)</title><rect x="1262.3" y="1813" width="0.4" height="15.0" fill="rgb(208,187,15)" rx="2" ry="2" />
<text x="1265.33" y="1823.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="446.3" y="1909" width="0.2" height="15.0" fill="rgb(229,144,52)" rx="2" ry="2" />
<text x="449.25" y="1919.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1160.5" y="1781" width="0.1" height="15.0" fill="rgb(222,67,43)" rx="2" ry="2" />
<text x="1163.47" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::ReductionOp&lt;Eigen::ThreadPoolDevice, double, int, Eigen::internal::SumReducer&lt;double&gt; &gt;::Compute (43 samples, 0.17%)</title><rect x="151.7" y="1717" width="3.0" height="15.0" fill="rgb(211,63,36)" rx="2" ry="2" />
<text x="154.73" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::set_output (4 samples, 0.02%)</title><rect x="687.9" y="1685" width="0.2" height="15.0" fill="rgb(248,47,23)" rx="2" ry="2" />
<text x="690.85" y="1695.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (2 samples, 0.01%)</title><rect x="1471.6" y="1845" width="0.2" height="15.0" fill="rgb(225,21,53)" rx="2" ry="2" />
<text x="1474.62" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::input (2 samples, 0.01%)</title><rect x="368.5" y="1733" width="0.2" height="15.0" fill="rgb(243,213,34)" rx="2" ry="2" />
<text x="371.52" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (26 samples, 0.10%)</title><rect x="895.6" y="1845" width="1.8" height="15.0" fill="rgb(227,143,7)" rx="2" ry="2" />
<text x="898.64" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::Buffer&lt;double&gt;::~Buffer (3 samples, 0.01%)</title><rect x="226.5" y="1781" width="0.2" height="15.0" fill="rgb(252,204,41)" rx="2" ry="2" />
<text x="229.51" y="1791.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (13 samples, 0.05%)</title><rect x="270.9" y="1877" width="0.9" height="15.0" fill="rgb(239,224,3)" rx="2" ry="2" />
<text x="273.91" y="1887.5" ></text>
</g>
<g >
<title>swift_once (2 samples, 0.01%)</title><rect x="992.5" y="1893" width="0.1" height="15.0" fill="rgb(220,190,45)" rx="2" ry="2" />
<text x="995.48" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (5 samples, 0.02%)</title><rect x="1439.9" y="1813" width="0.3" height="15.0" fill="rgb(227,140,4)" rx="2" ry="2" />
<text x="1442.87" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::ExplicitVectorMatrixOptimization&lt;double&gt; (32 samples, 0.12%)</title><rect x="320.8" y="1701" width="2.2" height="15.0" fill="rgb(225,45,46)" rx="2" ry="2" />
<text x="323.81" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (7 samples, 0.03%)</title><rect x="241.4" y="1813" width="0.4" height="15.0" fill="rgb(225,117,46)" rx="2" ry="2" />
<text x="244.36" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::SetAttrValue (4 samples, 0.02%)</title><rect x="162.8" y="1861" width="0.3" height="15.0" fill="rgb(217,183,3)" rx="2" ry="2" />
<text x="165.80" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (5 samples, 0.02%)</title><rect x="330.8" y="1877" width="0.4" height="15.0" fill="rgb(244,35,21)" rx="2" ry="2" />
<text x="333.85" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="261" width="0.9" height="15.0" fill="rgb(224,155,31)" rx="2" ry="2" />
<text x="24.27" y="271.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (2 samples, 0.01%)</title><rect x="1434.3" y="1765" width="0.1" height="15.0" fill="rgb(213,99,11)" rx="2" ry="2" />
<text x="1437.30" y="1775.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (6 samples, 0.02%)</title><rect x="111.0" y="1765" width="0.4" height="15.0" fill="rgb(251,192,25)" rx="2" ry="2" />
<text x="113.97" y="1775.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.UnsafeBufferPointer&lt;Swift.Int8&gt;&gt; of Swift._copyCollectionToContiguousArray&lt;A where A: Swift.Collection&gt;(A) -&gt; Swift.ContiguousArray&lt;A.Element&gt; (2 samples, 0.01%)</title><rect x="457.1" y="1893" width="0.2" height="15.0" fill="rgb(210,110,1)" rx="2" ry="2" />
<text x="460.11" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.BidirectionalCollection.last.getter : A.Element? (10 samples, 0.04%)</title><rect x="1201.6" y="1861" width="0.7" height="15.0" fill="rgb(219,227,31)" rx="2" ry="2" />
<text x="1204.64" y="1871.5" ></text>
</g>
<g >
<title>getCache (2 samples, 0.01%)</title><rect x="1089.7" y="1845" width="0.2" height="15.0" fill="rgb(235,28,50)" rx="2" ry="2" />
<text x="1092.74" y="1855.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (11 samples, 0.04%)</title><rect x="823.3" y="1685" width="0.7" height="15.0" fill="rgb(251,185,41)" rx="2" ry="2" />
<text x="826.26" y="1695.5" ></text>
</g>
<g >
<title>swift_once (2 samples, 0.01%)</title><rect x="824.9" y="1669" width="0.1" height="15.0" fill="rgb(209,155,35)" rx="2" ry="2" />
<text x="827.91" y="1679.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (3 samples, 0.01%)</title><rect x="1434.4" y="1829" width="0.2" height="15.0" fill="rgb(252,52,31)" rx="2" ry="2" />
<text x="1437.44" y="1839.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="546.7" y="1733" width="0.2" height="15.0" fill="rgb(253,124,24)" rx="2" ry="2" />
<text x="549.74" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::InternalSerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="1452.4" y="1765" width="0.1" height="15.0" fill="rgb(217,0,2)" rx="2" ry="2" />
<text x="1455.38" y="1775.5" ></text>
</g>
<g >
<title>swift_retain (7 samples, 0.03%)</title><rect x="1209.6" y="1797" width="0.5" height="15.0" fill="rgb(247,75,48)" rx="2" ry="2" />
<text x="1212.61" y="1807.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="106.8" y="1893" width="0.2" height="15.0" fill="rgb(238,21,42)" rx="2" ry="2" />
<text x="109.85" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (17 samples, 0.07%)</title><rect x="674.2" y="1845" width="1.2" height="15.0" fill="rgb(224,101,16)" rx="2" ry="2" />
<text x="677.24" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (164 samples, 0.63%)</title><rect x="915.6" y="1749" width="11.3" height="15.0" fill="rgb(228,140,33)" rx="2" ry="2" />
<text x="918.64" y="1759.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (2 samples, 0.01%)</title><rect x="263.1" y="1877" width="0.1" height="15.0" fill="rgb(224,160,1)" rx="2" ry="2" />
<text x="266.08" y="1887.5" ></text>
</g>
<g >
<title>static Swift.Array._allocateUninitialized(Swift.Int) -&gt; ([A], Swift.UnsafeMutablePointer&lt;A&gt;) (2 samples, 0.01%)</title><rect x="1282.1" y="1813" width="0.1" height="15.0" fill="rgb(215,98,0)" rx="2" ry="2" />
<text x="1285.06" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (265 samples, 1.02%)</title><rect x="536.4" y="1925" width="18.2" height="15.0" fill="rgb(222,80,3)" rx="2" ry="2" />
<text x="539.43" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorValue (5 samples, 0.02%)</title><rect x="577.4" y="1733" width="0.3" height="15.0" fill="rgb(222,14,49)" rx="2" ry="2" />
<text x="580.40" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (3 samples, 0.01%)</title><rect x="502.6" y="1861" width="0.2" height="15.0" fill="rgb(221,3,44)" rx="2" ry="2" />
<text x="505.62" y="1871.5" ></text>
</g>
<g >
<title>memset@plt (3 samples, 0.01%)</title><rect x="117.6" y="1893" width="0.2" height="15.0" fill="rgb(219,24,8)" rx="2" ry="2" />
<text x="120.57" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow._ShapedArrayProtocol.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A.Scalar&gt;) throws -&gt; A1) throws -&gt; A1 in conformance TensorFlow.ShapedArray&lt;A&gt; : TensorFlow._ShapedArrayProtocol in TensorFlow (31 samples, 0.12%)</title><rect x="395.2" y="1925" width="2.1" height="15.0" fill="rgb(245,148,36)" rx="2" ry="2" />
<text x="398.18" y="1935.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (8 samples, 0.03%)</title><rect x="1089.4" y="1861" width="0.5" height="15.0" fill="rgb(251,141,11)" rx="2" ry="2" />
<text x="1092.40" y="1871.5" ></text>
</g>
<g >
<title>unlink_chunk.isra.0 (106 samples, 0.41%)</title><rect x="1782.4" y="2053" width="7.3" height="15.0" fill="rgb(222,65,40)" rx="2" ry="2" />
<text x="1785.37" y="2063.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input_or_allocate_output (27 samples, 0.10%)</title><rect x="365.9" y="1717" width="1.9" height="15.0" fill="rgb(224,199,21)" rx="2" ry="2" />
<text x="368.90" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::clear_value (2 samples, 0.01%)</title><rect x="865.0" y="1813" width="0.2" height="15.0" fill="rgb(238,52,23)" rx="2" ry="2" />
<text x="868.05" y="1823.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (17 samples, 0.07%)</title><rect x="545.7" y="1749" width="1.2" height="15.0" fill="rgb(219,124,6)" rx="2" ry="2" />
<text x="548.71" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="677" width="0.9" height="15.0" fill="rgb(235,191,12)" rx="2" ry="2" />
<text x="24.27" y="687.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (11 samples, 0.04%)</title><rect x="1143.1" y="1829" width="0.7" height="15.0" fill="rgb(253,97,21)" rx="2" ry="2" />
<text x="1146.08" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (117 samples, 0.45%)</title><rect x="255.0" y="1877" width="8.1" height="15.0" fill="rgb(237,198,26)" rx="2" ry="2" />
<text x="258.04" y="1887.5" ></text>
</g>
<g >
<title>TF_ManagedBuffer::~TF_ManagedBuffer (2 samples, 0.01%)</title><rect x="20.7" y="2037" width="0.2" height="15.0" fill="rgb(237,0,7)" rx="2" ry="2" />
<text x="23.72" y="2047.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="400.9" y="1861" width="0.1" height="15.0" fill="rgb(230,200,24)" rx="2" ry="2" />
<text x="403.89" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="1715.5" y="2021" width="0.2" height="15.0" fill="rgb(219,128,27)" rx="2" ry="2" />
<text x="1718.49" y="2031.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="946.9" y="1861" width="0.1" height="15.0" fill="rgb(211,132,19)" rx="2" ry="2" />
<text x="949.91" y="1871.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (5 samples, 0.02%)</title><rect x="380.9" y="1861" width="0.3" height="15.0" fill="rgb(247,127,1)" rx="2" ry="2" />
<text x="383.89" y="1871.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (5 samples, 0.02%)</title><rect x="1471.8" y="1925" width="0.4" height="15.0" fill="rgb(234,142,51)" rx="2" ry="2" />
<text x="1474.83" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (56 samples, 0.22%)</title><rect x="1249.2" y="1941" width="3.9" height="15.0" fill="rgb(244,77,39)" rx="2" ry="2" />
<text x="1252.20" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::IsLocal (2 samples, 0.01%)</title><rect x="876.8" y="1797" width="0.1" height="15.0" fill="rgb(243,52,12)" rx="2" ry="2" />
<text x="879.80" y="1807.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="399.9" y="1845" width="0.1" height="15.0" fill="rgb(252,20,20)" rx="2" ry="2" />
<text x="402.86" y="1855.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (7 samples, 0.03%)</title><rect x="1494.5" y="2005" width="0.5" height="15.0" fill="rgb(225,60,21)" rx="2" ry="2" />
<text x="1497.51" y="2015.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::AllocateRaw (4 samples, 0.02%)</title><rect x="152.7" y="1653" width="0.3" height="15.0" fill="rgb(254,29,11)" rx="2" ry="2" />
<text x="155.69" y="1663.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (31 samples, 0.12%)</title><rect x="1145.8" y="1957" width="2.2" height="15.0" fill="rgb(247,165,4)" rx="2" ry="2" />
<text x="1148.83" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (16 samples, 0.06%)</title><rect x="910.3" y="1845" width="1.1" height="15.0" fill="rgb(239,14,52)" rx="2" ry="2" />
<text x="913.34" y="1855.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (16 samples, 0.06%)</title><rect x="126.5" y="1797" width="1.1" height="15.0" fill="rgb(221,83,15)" rx="2" ry="2" />
<text x="129.50" y="1807.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of Swift.String.init(cString: Swift.UnsafePointer&lt;Swift.Int8&gt;) -&gt; Swift.String (5 samples, 0.02%)</title><rect x="768.9" y="1861" width="0.3" height="15.0" fill="rgb(240,71,24)" rx="2" ry="2" />
<text x="771.89" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (2 samples, 0.01%)</title><rect x="971.4" y="1845" width="0.2" height="15.0" fill="rgb(247,155,2)" rx="2" ry="2" />
<text x="974.45" y="1855.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::~_Hashtable (6 samples, 0.02%)</title><rect x="169.5" y="1845" width="0.4" height="15.0" fill="rgb(220,119,33)" rx="2" ry="2" />
<text x="172.53" y="1855.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="712.8" y="1893" width="0.1" height="15.0" fill="rgb(230,8,12)" rx="2" ry="2" />
<text x="715.80" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.CTensorTensorBuffer.__deallocating_deinit (6 samples, 0.02%)</title><rect x="414.2" y="1941" width="0.4" height="15.0" fill="rgb(240,200,39)" rx="2" ry="2" />
<text x="417.22" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (57 samples, 0.22%)</title><rect x="1136.3" y="1861" width="4.0" height="15.0" fill="rgb(229,149,47)" rx="2" ry="2" />
<text x="1139.34" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (4 samples, 0.02%)</title><rect x="709.8" y="1829" width="0.3" height="15.0" fill="rgb(248,215,51)" rx="2" ry="2" />
<text x="712.85" y="1839.5" ></text>
</g>
<g >
<title>TFE_TensorHandleNumDims (20 samples, 0.08%)</title><rect x="998.0" y="1861" width="1.4" height="15.0" fill="rgb(226,62,50)" rx="2" ry="2" />
<text x="1001.05" y="1871.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;tensorflow::Fprint128, std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt;, std::allocator&lt;std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;tensorflow::Fprint128&gt;, tensorflow::Fprint128Hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (5 samples, 0.02%)</title><rect x="1073.4" y="1813" width="0.3" height="15.0" fill="rgb(229,168,47)" rx="2" ry="2" />
<text x="1076.38" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::FillDimsAndValidateCompatibleShape&lt;0ul&gt; (3 samples, 0.01%)</title><rect x="154.0" y="1701" width="0.2" height="15.0" fill="rgb(232,213,54)" rx="2" ry="2" />
<text x="157.00" y="1711.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="144.4" y="1877" width="0.2" height="15.0" fill="rgb(230,57,53)" rx="2" ry="2" />
<text x="147.44" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="502.5" y="1845" width="0.1" height="15.0" fill="rgb(241,134,11)" rx="2" ry="2" />
<text x="505.48" y="1855.5" ></text>
</g>
<g >
<title>partial apply forwarder for AD__$s11SwiftFusion5Pose2V7inverseACyF__pullback_src_0_wrt_0 (5 samples, 0.02%)</title><rect x="1292.5" y="1813" width="0.3" height="15.0" fill="rgb(220,128,47)" rx="2" ry="2" />
<text x="1295.50" y="1823.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char const*&gt; (2 samples, 0.01%)</title><rect x="383.6" y="1877" width="0.1" height="15.0" fill="rgb(250,209,39)" rx="2" ry="2" />
<text x="386.57" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (28 samples, 0.11%)</title><rect x="751.1" y="1653" width="1.9" height="15.0" fill="rgb(212,136,14)" rx="2" ry="2" />
<text x="754.09" y="1663.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (12 samples, 0.05%)</title><rect x="1454.2" y="1925" width="0.8" height="15.0" fill="rgb(214,38,27)" rx="2" ry="2" />
<text x="1457.17" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (42 samples, 0.16%)</title><rect x="1536.8" y="2005" width="2.9" height="15.0" fill="rgb(245,162,4)" rx="2" ry="2" />
<text x="1539.78" y="2015.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="1006.2" y="1877" width="0.2" height="15.0" fill="rgb(242,228,1)" rx="2" ry="2" />
<text x="1009.16" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for SwiftFusion._AnyDerivativeBox._isEqual(to: SwiftFusion._AnyDerivativeBox) -&gt; Swift.Bool in conformance SwiftFusion._ConcreteDerivativeBox&lt;A&gt; : SwiftFusion._AnyDerivativeBox in SwiftFusion (129 samples, 0.50%)</title><rect x="1527.8" y="2037" width="8.9" height="15.0" fill="rgb(243,47,0)" rx="2" ry="2" />
<text x="1530.85" y="2047.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (11 samples, 0.04%)</title><rect x="473.7" y="1797" width="0.7" height="15.0" fill="rgb(238,40,23)" rx="2" ry="2" />
<text x="476.68" y="1807.5" ></text>
</g>
<g >
<title>static Swift.UnsafeMutablePointer.allocate(capacity: Swift.Int) -&gt; Swift.UnsafeMutablePointer&lt;A&gt; (2 samples, 0.01%)</title><rect x="982.2" y="1893" width="0.1" height="15.0" fill="rgb(218,48,54)" rx="2" ry="2" />
<text x="985.17" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (18 samples, 0.07%)</title><rect x="600.4" y="1877" width="1.3" height="15.0" fill="rgb(218,152,51)" rx="2" ry="2" />
<text x="603.42" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (4 samples, 0.02%)</title><rect x="248.9" y="1765" width="0.3" height="15.0" fill="rgb(225,44,54)" rx="2" ry="2" />
<text x="251.92" y="1775.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="48.8" y="1877" width="0.1" height="15.0" fill="rgb(236,98,18)" rx="2" ry="2" />
<text x="51.77" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (5 samples, 0.02%)</title><rect x="1473.6" y="1973" width="0.4" height="15.0" fill="rgb(226,149,15)" rx="2" ry="2" />
<text x="1476.62" y="1983.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::InputDevice (2 samples, 0.01%)</title><rect x="369.3" y="1829" width="0.2" height="15.0" fill="rgb(243,147,25)" rx="2" ry="2" />
<text x="372.34" y="1839.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (2 samples, 0.01%)</title><rect x="1263.9" y="1877" width="0.1" height="15.0" fill="rgb(216,23,39)" rx="2" ry="2" />
<text x="1266.91" y="1887.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (51 samples, 0.20%)</title><rect x="1435.5" y="1893" width="3.5" height="15.0" fill="rgb(246,60,17)" rx="2" ry="2" />
<text x="1438.54" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (95 samples, 0.37%)</title><rect x="245.2" y="1829" width="6.5" height="15.0" fill="rgb(207,100,5)" rx="2" ry="2" />
<text x="248.21" y="1839.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="379.1" y="1909" width="0.1" height="15.0" fill="rgb(250,4,52)" rx="2" ry="2" />
<text x="382.10" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (65 samples, 0.25%)</title><rect x="1102.0" y="1813" width="4.4" height="15.0" fill="rgb(254,16,23)" rx="2" ry="2" />
<text x="1104.97" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (77 samples, 0.30%)</title><rect x="109.5" y="1829" width="5.3" height="15.0" fill="rgb(211,133,20)" rx="2" ry="2" />
<text x="112.53" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="1263.9" y="1845" width="0.1" height="15.0" fill="rgb(223,118,13)" rx="2" ry="2" />
<text x="1266.91" y="1855.5" ></text>
</g>
<g >
<title>static (extension in Swift):Swift.Array.DifferentiableView&lt;A where A: Swift.AdditiveArithmetic, A: Swift.Differentiable&gt;.+ infix([A].DifferentiableView, [A].DifferentiableView) -&gt; [A].DifferentiableView (2 samples, 0.01%)</title><rect x="1282.3" y="1845" width="0.1" height="15.0" fill="rgb(232,61,35)" rx="2" ry="2" />
<text x="1285.26" y="1855.5" ></text>
</g>
<g >
<title>static Swift.UnsafeMutablePointer.allocate(capacity: Swift.Int) -&gt; Swift.UnsafeMutablePointer&lt;A&gt; (2 samples, 0.01%)</title><rect x="1084.7" y="1893" width="0.2" height="15.0" fill="rgb(211,183,2)" rx="2" ry="2" />
<text x="1087.72" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (3 samples, 0.01%)</title><rect x="1441.1" y="1829" width="0.2" height="15.0" fill="rgb(216,80,7)" rx="2" ry="2" />
<text x="1444.11" y="1839.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="239.4" y="1877" width="0.2" height="15.0" fill="rgb(241,169,34)" rx="2" ry="2" />
<text x="242.36" y="1887.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="692.7" y="1845" width="0.1" height="15.0" fill="rgb(228,223,7)" rx="2" ry="2" />
<text x="695.66" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (24 samples, 0.09%)</title><rect x="76.1" y="1845" width="1.6" height="15.0" fill="rgb(251,87,42)" rx="2" ry="2" />
<text x="79.05" y="1855.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="261.9" y="1861" width="0.1" height="15.0" fill="rgb(225,227,39)" rx="2" ry="2" />
<text x="264.91" y="1871.5" ></text>
</g>
<g >
<title>TFE_NewOp (55 samples, 0.21%)</title><rect x="1217.1" y="1925" width="3.8" height="15.0" fill="rgb(235,56,20)" rx="2" ry="2" />
<text x="1220.10" y="1935.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (7 samples, 0.03%)</title><rect x="559.1" y="1861" width="0.5" height="15.0" fill="rgb(217,108,43)" rx="2" ry="2" />
<text x="562.11" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="1789.7" y="1957" width="0.3" height="15.0" fill="rgb(247,170,11)" rx="2" ry="2" />
<text x="1792.66" y="1967.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (10 samples, 0.04%)</title><rect x="990.1" y="1797" width="0.7" height="15.0" fill="rgb(209,135,44)" rx="2" ry="2" />
<text x="993.14" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (60 samples, 0.23%)</title><rect x="773.8" y="1797" width="4.2" height="15.0" fill="rgb(221,89,8)" rx="2" ry="2" />
<text x="776.84" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (78 samples, 0.30%)</title><rect x="784.2" y="1909" width="5.4" height="15.0" fill="rgb(227,165,6)" rx="2" ry="2" />
<text x="787.22" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::gtl::FindPtrOrNull&lt;tensorflow::gtl::FlatMap&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::unordered_map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, unsigned int, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned int&gt; &gt; &gt; const*, tensorflow::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, void&gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt; &gt; (2 samples, 0.01%)</title><rect x="1146.7" y="1877" width="0.2" height="15.0" fill="rgb(218,169,16)" rx="2" ry="2" />
<text x="1149.72" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::~OpKernelContext (7 samples, 0.03%)</title><rect x="756.2" y="1701" width="0.5" height="15.0" fill="rgb(232,194,17)" rx="2" ry="2" />
<text x="759.24" y="1711.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int) -&gt; (@unowned Swift.Int64, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int) -&gt; (@out Swift.Int64, @error @owned Swift.Error) (9 samples, 0.03%)</title><rect x="539.0" y="1765" width="0.6" height="15.0" fill="rgb(237,200,34)" rx="2" ry="2" />
<text x="541.98" y="1775.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="1475.9" y="1861" width="0.2" height="15.0" fill="rgb(242,209,0)" rx="2" ry="2" />
<text x="1478.89" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (2 samples, 0.01%)</title><rect x="478.1" y="1749" width="0.1" height="15.0" fill="rgb(226,185,39)" rx="2" ry="2" />
<text x="481.08" y="1759.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="1203.5" y="1877" width="0.2" height="15.0" fill="rgb(215,51,9)" rx="2" ry="2" />
<text x="1206.49" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (7 samples, 0.03%)</title><rect x="1039.2" y="1861" width="0.5" height="15.0" fill="rgb(206,215,31)" rx="2" ry="2" />
<text x="1042.22" y="1871.5" ></text>
</g>
<g >
<title>swift_checkMetadataState (2 samples, 0.01%)</title><rect x="554.2" y="1893" width="0.1" height="15.0" fill="rgb(222,182,11)" rx="2" ry="2" />
<text x="557.17" y="1903.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.BinaryInteger in Swift (3 samples, 0.01%)</title><rect x="938.0" y="1893" width="0.2" height="15.0" fill="rgb(216,81,3)" rx="2" ry="2" />
<text x="940.98" y="1903.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (3 samples, 0.01%)</title><rect x="930.6" y="1845" width="0.2" height="15.0" fill="rgb(224,214,25)" rx="2" ry="2" />
<text x="933.55" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (6 samples, 0.02%)</title><rect x="291.4" y="1861" width="0.4" height="15.0" fill="rgb(224,15,50)" rx="2" ry="2" />
<text x="294.40" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (5 samples, 0.02%)</title><rect x="348.0" y="1861" width="0.3" height="15.0" fill="rgb(248,66,15)" rx="2" ry="2" />
<text x="350.96" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_: A, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="658.1" y="1925" width="0.1" height="15.0" fill="rgb(254,74,24)" rx="2" ry="2" />
<text x="661.09" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::BuildCacheKeyForDevice (17 samples, 0.07%)</title><rect x="433.6" y="1813" width="1.2" height="15.0" fill="rgb(239,203,31)" rx="2" ry="2" />
<text x="436.61" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (11 samples, 0.04%)</title><rect x="1124.4" y="1845" width="0.7" height="15.0" fill="rgb(213,71,17)" rx="2" ry="2" />
<text x="1127.38" y="1855.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (4 samples, 0.02%)</title><rect x="1112.5" y="1909" width="0.3" height="15.0" fill="rgb(240,94,41)" rx="2" ry="2" />
<text x="1115.49" y="1919.5" ></text>
</g>
<g >
<title>Eigen::internal::GetTensorExecutorTilingContext&lt;Eigen::TensorEvaluator&lt;Eigen::TensorAssignOp&lt;Eigen::TensorMap&lt;Eigen::Tensor&lt;unsigned long long, 2, 1, long&gt;, 16, Eigen::MakePointer&gt;, Eigen::TensorShufflingOp&lt;Eigen::array&lt;int, 2ul&gt; const, Eigen::TensorMap&lt;Eigen::Tensor&lt;unsigned long long const, 2, 1, long&gt;, 16, Eigen::MakePointer&gt; const&gt; const&gt; const, Eigen::ThreadPoolDevice&gt;, Eigen::internal::TensorBlockMapper&lt;2, 1, long&gt;, false&gt; (4 samples, 0.02%)</title><rect x="923.8" y="1589" width="0.3" height="15.0" fill="rgb(243,7,36)" rx="2" ry="2" />
<text x="926.82" y="1599.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[3] = Dead&gt; of generic specialization &lt;Swift.Double&gt; of TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (3 samples, 0.01%)</title><rect x="1432.7" y="1941" width="0.2" height="15.0" fill="rgb(228,92,32)" rx="2" ry="2" />
<text x="1435.65" y="1951.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (13 samples, 0.05%)</title><rect x="283.7" y="1781" width="0.9" height="15.0" fill="rgb(235,121,2)" rx="2" ry="2" />
<text x="286.70" y="1791.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="1090.5" y="1925" width="0.1" height="15.0" fill="rgb(251,44,37)" rx="2" ry="2" />
<text x="1093.50" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (3 samples, 0.01%)</title><rect x="1437.3" y="1813" width="0.2" height="15.0" fill="rgb(236,23,21)" rx="2" ry="2" />
<text x="1440.33" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorHandle (3 samples, 0.01%)</title><rect x="247.5" y="1701" width="0.3" height="15.0" fill="rgb(254,110,20)" rx="2" ry="2" />
<text x="250.54" y="1711.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (475 samples, 1.83%)</title><rect x="1180.2" y="1941" width="32.6" height="15.0" fill="rgb(219,130,50)" rx="2" ry="2" />
<text x="1183.19" y="1951.5" >Te..</text>
</g>
<g >
<title>globalinit_026_72A91DB659E042102E1F2C5E8E5AE772_func7 (3 samples, 0.01%)</title><rect x="1495.1" y="2021" width="0.2" height="15.0" fill="rgb(225,102,39)" rx="2" ry="2" />
<text x="1498.06" y="2031.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (10 samples, 0.04%)</title><rect x="496.2" y="1845" width="0.7" height="15.0" fill="rgb(205,25,40)" rx="2" ry="2" />
<text x="499.22" y="1855.5" ></text>
</g>
<g >
<title>Swift.ContiguousArray._createNewBuffer(bufferIsUnique: Swift.Bool, minimumCapacity: Swift.Int, growForAppend: Swift.Bool) -&gt; () (2 samples, 0.01%)</title><rect x="471.8" y="1781" width="0.1" height="15.0" fill="rgb(249,211,50)" rx="2" ry="2" />
<text x="474.75" y="1791.5" ></text>
</g>
<g >
<title>Swift.Range.init(uncheckedBounds: (lower: A, upper: A)) -&gt; Swift.Range&lt;A&gt; (3 samples, 0.01%)</title><rect x="50.3" y="1893" width="0.3" height="15.0" fill="rgb(230,150,32)" rx="2" ry="2" />
<text x="53.35" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="490.2" y="1909" width="0.2" height="15.0" fill="rgb(251,2,47)" rx="2" ry="2" />
<text x="493.24" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (25 samples, 0.10%)</title><rect x="351.6" y="1893" width="1.7" height="15.0" fill="rgb(234,171,21)" rx="2" ry="2" />
<text x="354.61" y="1903.5" ></text>
</g>
<g >
<title>operator new (4 samples, 0.02%)</title><rect x="992.2" y="1893" width="0.3" height="15.0" fill="rgb(251,91,22)" rx="2" ry="2" />
<text x="995.21" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::cpu_allocator (4 samples, 0.02%)</title><rect x="816.5" y="1749" width="0.2" height="15.0" fill="rgb(214,6,1)" rx="2" ry="2" />
<text x="819.45" y="1759.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (5 samples, 0.02%)</title><rect x="833.4" y="1701" width="0.4" height="15.0" fill="rgb(222,203,34)" rx="2" ry="2" />
<text x="836.43" y="1711.5" ></text>
</g>
<g >
<title>swift_release (6 samples, 0.02%)</title><rect x="980.2" y="1829" width="0.4" height="15.0" fill="rgb(234,207,48)" rx="2" ry="2" />
<text x="983.18" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (2 samples, 0.01%)</title><rect x="58.9" y="1893" width="0.1" height="15.0" fill="rgb(214,86,6)" rx="2" ry="2" />
<text x="61.87" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (45 samples, 0.17%)</title><rect x="1086.3" y="1877" width="3.1" height="15.0" fill="rgb(222,41,38)" rx="2" ry="2" />
<text x="1089.30" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow._RuntimeConfig.printsDebugLog.unsafeMutableAddressor : Swift.Bool (2 samples, 0.01%)</title><rect x="613.5" y="1893" width="0.1" height="15.0" fill="rgb(211,139,13)" rx="2" ry="2" />
<text x="616.48" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (4 samples, 0.02%)</title><rect x="1491.4" y="1845" width="0.3" height="15.0" fill="rgb(221,221,33)" rx="2" ry="2" />
<text x="1494.42" y="1855.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type __C.TF_Code and conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (3 samples, 0.01%)</title><rect x="567.6" y="1893" width="0.2" height="15.0" fill="rgb(225,80,54)" rx="2" ry="2" />
<text x="570.64" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (20 samples, 0.08%)</title><rect x="1203.9" y="1909" width="1.4" height="15.0" fill="rgb(251,48,41)" rx="2" ry="2" />
<text x="1206.91" y="1919.5" ></text>
</g>
<g >
<title>implicit closure #2 (Swift.Int, Swift.Int) -&gt; Swift.Int in implicit closure #1 (Swift.Int.Type) -&gt; (Swift.Int, Swift.Int) -&gt; Swift.Int in TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (2 samples, 0.01%)</title><rect x="481.0" y="1701" width="0.2" height="15.0" fill="rgb(250,18,16)" rx="2" ry="2" />
<text x="484.03" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::shaped&lt;double, 1ul&gt; (2 samples, 0.01%)</title><rect x="276.8" y="1701" width="0.2" height="15.0" fill="rgb(210,173,9)" rx="2" ry="2" />
<text x="279.82" y="1711.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (3 samples, 0.01%)</title><rect x="1091.3" y="1861" width="0.2" height="15.0" fill="rgb(230,51,18)" rx="2" ry="2" />
<text x="1094.32" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (3 samples, 0.01%)</title><rect x="1442.6" y="1701" width="0.2" height="15.0" fill="rgb(230,53,54)" rx="2" ry="2" />
<text x="1445.62" y="1711.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static (extension in SwiftFusion):Swift.Array&lt;A where A == TensorFlow.Tensor&lt;Swift.Double&gt;&gt;.+ infix([TensorFlow.Tensor&lt;Swift.Double&gt;], [TensorFlow.Tensor&lt;Swift.Double&gt;]) -&gt; [TensorFlow.Tensor&lt;Swift.Double&gt;] (254 samples, 0.98%)</title><rect x="1130.6" y="1973" width="17.4" height="15.0" fill="rgb(213,81,42)" rx="2" ry="2" />
<text x="1133.57" y="1983.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.BidirectionalCollection.last.getter : A.Element? (2 samples, 0.01%)</title><rect x="1239.9" y="1861" width="0.1" height="15.0" fill="rgb(235,18,7)" rx="2" ry="2" />
<text x="1242.85" y="1871.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="704.9" y="1845" width="0.1" height="15.0" fill="rgb(242,13,40)" rx="2" ry="2" />
<text x="707.90" y="1855.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="1003.3" y="1877" width="0.2" height="15.0" fill="rgb(245,96,48)" rx="2" ry="2" />
<text x="1006.34" y="1887.5" ></text>
</g>
<g >
<title>swift_allocObject (2 samples, 0.01%)</title><rect x="341.8" y="1861" width="0.2" height="15.0" fill="rgb(249,217,28)" rx="2" ry="2" />
<text x="344.85" y="1871.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="165.7" y="1973" width="0.2" height="15.0" fill="rgb(235,124,53)" rx="2" ry="2" />
<text x="168.68" y="1983.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (5 samples, 0.02%)</title><rect x="1264.5" y="1765" width="0.4" height="15.0" fill="rgb(218,96,52)" rx="2" ry="2" />
<text x="1267.53" y="1775.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="1109.9" y="1925" width="0.1" height="15.0" fill="rgb(230,35,37)" rx="2" ry="2" />
<text x="1112.88" y="1935.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (28 samples, 0.11%)</title><rect x="1702.3" y="2021" width="1.9" height="15.0" fill="rgb(251,226,30)" rx="2" ry="2" />
<text x="1705.30" y="2031.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (2 samples, 0.01%)</title><rect x="394.0" y="1877" width="0.2" height="15.0" fill="rgb(231,160,52)" rx="2" ry="2" />
<text x="397.02" y="1887.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1129.5" y="1941" width="0.2" height="15.0" fill="rgb(247,144,10)" rx="2" ry="2" />
<text x="1132.54" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (28 samples, 0.11%)</title><rect x="1195.6" y="1717" width="1.9" height="15.0" fill="rgb(229,44,4)" rx="2" ry="2" />
<text x="1198.59" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (6 samples, 0.02%)</title><rect x="152.6" y="1669" width="0.4" height="15.0" fill="rgb(226,40,18)" rx="2" ry="2" />
<text x="155.55" y="1679.5" ></text>
</g>
<g >
<title>TF_ManagedBuffer::~TF_ManagedBuffer (2 samples, 0.01%)</title><rect x="1460.8" y="1829" width="0.2" height="15.0" fill="rgb(226,88,27)" rx="2" ry="2" />
<text x="1463.83" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::TensorInterface::NumElements (2 samples, 0.01%)</title><rect x="548.3" y="1797" width="0.1" height="15.0" fill="rgb(206,179,40)" rx="2" ry="2" />
<text x="551.25" y="1807.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="265.9" y="1909" width="0.1" height="15.0" fill="rgb(246,221,30)" rx="2" ry="2" />
<text x="268.90" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (85 samples, 0.33%)</title><rect x="1074.7" y="1797" width="5.8" height="15.0" fill="rgb(206,11,54)" rx="2" ry="2" />
<text x="1077.69" y="1807.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1240.4" y="1877" width="0.1" height="15.0" fill="rgb(243,2,38)" rx="2" ry="2" />
<text x="1243.40" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for SwiftFusion._AnyDerivativeBox._adding(SwiftFusion._AnyDerivativeBox) -&gt; SwiftFusion._AnyDerivativeBox in conformance SwiftFusion._ConcreteDerivativeBox&lt;A&gt; : SwiftFusion._AnyDerivativeBox in SwiftFusion (5 samples, 0.02%)</title><rect x="1328.7" y="1845" width="0.4" height="15.0" fill="rgb(216,35,16)" rx="2" ry="2" />
<text x="1331.73" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (7 samples, 0.03%)</title><rect x="911.0" y="1829" width="0.4" height="15.0" fill="rgb(245,211,49)" rx="2" ry="2" />
<text x="913.96" y="1839.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="669.4" y="1861" width="0.2" height="15.0" fill="rgb(216,194,7)" rx="2" ry="2" />
<text x="672.43" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (22 samples, 0.08%)</title><rect x="1449.1" y="1765" width="1.5" height="15.0" fill="rgb(233,227,54)" rx="2" ry="2" />
<text x="1452.08" y="1775.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (3 samples, 0.01%)</title><rect x="1132.8" y="1909" width="0.2" height="15.0" fill="rgb(208,50,13)" rx="2" ry="2" />
<text x="1135.77" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (14 samples, 0.05%)</title><rect x="966.2" y="1685" width="1.0" height="15.0" fill="rgb(244,195,27)" rx="2" ry="2" />
<text x="969.23" y="1695.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (11 samples, 0.04%)</title><rect x="543.9" y="1781" width="0.7" height="15.0" fill="rgb(216,28,0)" rx="2" ry="2" />
<text x="546.86" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (30 samples, 0.12%)</title><rect x="1137.9" y="1765" width="2.1" height="15.0" fill="rgb(222,69,19)" rx="2" ry="2" />
<text x="1140.92" y="1775.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="574.4" y="1797" width="0.1" height="15.0" fill="rgb(234,185,29)" rx="2" ry="2" />
<text x="577.37" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (5 samples, 0.02%)</title><rect x="1138.6" y="1701" width="0.4" height="15.0" fill="rgb(252,228,13)" rx="2" ry="2" />
<text x="1141.61" y="1711.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (4 samples, 0.02%)</title><rect x="645.1" y="1701" width="0.3" height="15.0" fill="rgb(252,30,34)" rx="2" ry="2" />
<text x="648.10" y="1711.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Int&gt; of Swift.__RawDictionaryStorage.find&lt;A where A: Swift.Hashable&gt;(_: A, hashValue: Swift.Int) -&gt; (bucket: Swift._HashTable.Bucket, found: Swift.Bool) (3 samples, 0.01%)</title><rect x="1065.9" y="1941" width="0.2" height="15.0" fill="rgb(222,74,50)" rx="2" ry="2" />
<text x="1068.89" y="1951.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (2 samples, 0.01%)</title><rect x="1492.6" y="1925" width="0.1" height="15.0" fill="rgb(236,74,38)" rx="2" ry="2" />
<text x="1495.59" y="1935.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (9 samples, 0.03%)</title><rect x="765.8" y="1845" width="0.6" height="15.0" fill="rgb(233,70,29)" rx="2" ry="2" />
<text x="768.80" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (3 samples, 0.01%)</title><rect x="75.7" y="1925" width="0.2" height="15.0" fill="rgb(216,171,31)" rx="2" ry="2" />
<text x="78.71" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (21 samples, 0.08%)</title><rect x="545.6" y="1765" width="1.5" height="15.0" fill="rgb(228,200,34)" rx="2" ry="2" />
<text x="548.64" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (4 samples, 0.02%)</title><rect x="1471.8" y="1909" width="0.3" height="15.0" fill="rgb(205,37,36)" rx="2" ry="2" />
<text x="1474.83" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (11 samples, 0.04%)</title><rect x="259.3" y="1813" width="0.8" height="15.0" fill="rgb(216,150,0)" rx="2" ry="2" />
<text x="262.30" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input_or_allocate_output (14 samples, 0.05%)</title><rect x="1236.4" y="1733" width="1.0" height="15.0" fill="rgb(206,119,41)" rx="2" ry="2" />
<text x="1239.42" y="1743.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="53.2" y="1909" width="0.1" height="15.0" fill="rgb(220,35,47)" rx="2" ry="2" />
<text x="56.16" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (43 samples, 0.17%)</title><rect x="1137.1" y="1829" width="3.0" height="15.0" fill="rgb(209,56,11)" rx="2" ry="2" />
<text x="1140.10" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow._RawTFEager.matrixDiag&lt;A where A: TensorFlow.TensorFlowScalar&gt;(diagonal: TensorFlow.Tensor&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (12 samples, 0.05%)</title><rect x="1261.3" y="1909" width="0.8" height="15.0" fill="rgb(221,175,42)" rx="2" ry="2" />
<text x="1264.30" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1557" width="0.9" height="15.0" fill="rgb(225,142,5)" rx="2" ry="2" />
<text x="24.27" y="1567.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (21 samples, 0.08%)</title><rect x="523.2" y="1797" width="1.5" height="15.0" fill="rgb(207,185,44)" rx="2" ry="2" />
<text x="526.24" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (63 samples, 0.24%)</title><rect x="947.7" y="1909" width="4.4" height="15.0" fill="rgb(222,61,5)" rx="2" ry="2" />
<text x="950.74" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (52 samples, 0.20%)</title><rect x="696.3" y="1845" width="3.6" height="15.0" fill="rgb(231,100,42)" rx="2" ry="2" />
<text x="699.31" y="1855.5" ></text>
</g>
<g >
<title>getCache (4 samples, 0.02%)</title><rect x="887.0" y="1813" width="0.2" height="15.0" fill="rgb(215,175,10)" rx="2" ry="2" />
<text x="889.97" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.init([Swift.Int]) -&gt; TensorFlow.TensorShape (2 samples, 0.01%)</title><rect x="656.0" y="1877" width="0.1" height="15.0" fill="rgb(251,87,49)" rx="2" ry="2" />
<text x="658.96" y="1887.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="448.0" y="1909" width="0.2" height="15.0" fill="rgb(233,168,29)" rx="2" ry="2" />
<text x="451.04" y="1919.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (4 samples, 0.02%)</title><rect x="80.7" y="1909" width="0.3" height="15.0" fill="rgb(211,100,0)" rx="2" ry="2" />
<text x="83.73" y="1919.5" ></text>
</g>
<g >
<title>TF_ManagedBuffer::~TF_ManagedBuffer (4 samples, 0.02%)</title><rect x="56.5" y="1813" width="0.2" height="15.0" fill="rgb(224,31,24)" rx="2" ry="2" />
<text x="59.46" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (75 samples, 0.29%)</title><rect x="1233.7" y="1797" width="5.1" height="15.0" fill="rgb(248,7,49)" rx="2" ry="2" />
<text x="1236.67" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (24 samples, 0.09%)</title><rect x="1213.7" y="1909" width="1.7" height="15.0" fill="rgb(224,76,23)" rx="2" ry="2" />
<text x="1216.74" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (24 samples, 0.09%)</title><rect x="740.3" y="1781" width="1.6" height="15.0" fill="rgb(225,133,14)" rx="2" ry="2" />
<text x="743.30" y="1791.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.Comparable.&lt; infix(A, A) -&gt; Swift.Bool in conformance Swift.Int : Swift.Comparable in Swift (2 samples, 0.01%)</title><rect x="466.8" y="1877" width="0.1" height="15.0" fill="rgb(231,228,42)" rx="2" ry="2" />
<text x="469.81" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (17 samples, 0.07%)</title><rect x="1143.1" y="1877" width="1.1" height="15.0" fill="rgb(249,30,26)" rx="2" ry="2" />
<text x="1146.08" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (7 samples, 0.03%)</title><rect x="549.8" y="1797" width="0.5" height="15.0" fill="rgb(208,148,28)" rx="2" ry="2" />
<text x="552.84" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::GetCachedKernel (3 samples, 0.01%)</title><rect x="1190.8" y="1829" width="0.3" height="15.0" fill="rgb(216,17,22)" rx="2" ry="2" />
<text x="1193.85" y="1839.5" ></text>
</g>
<g >
<title>swift_release (5 samples, 0.02%)</title><rect x="657.3" y="1893" width="0.4" height="15.0" fill="rgb(230,41,18)" rx="2" ry="2" />
<text x="660.34" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::AllocateRaw (5 samples, 0.02%)</title><rect x="874.6" y="1621" width="0.3" height="15.0" fill="rgb(229,54,28)" rx="2" ry="2" />
<text x="877.60" y="1631.5" ></text>
</g>
<g >
<title>tensorflow::ThreadPoolDevice::GetAllocator (2 samples, 0.01%)</title><rect x="579.9" y="1669" width="0.2" height="15.0" fill="rgb(251,151,27)" rx="2" ry="2" />
<text x="582.94" y="1679.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (11 samples, 0.04%)</title><rect x="528.0" y="1829" width="0.8" height="15.0" fill="rgb(224,54,30)" rx="2" ry="2" />
<text x="531.05" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (102 samples, 0.39%)</title><rect x="961.6" y="1781" width="7.0" height="15.0" fill="rgb(220,115,13)" rx="2" ry="2" />
<text x="964.62" y="1791.5" ></text>
</g>
<g >
<title>__swift_memcpy40_8 (41 samples, 0.16%)</title><rect x="1284.9" y="1861" width="2.8" height="15.0" fill="rgb(215,57,44)" rx="2" ry="2" />
<text x="1287.88" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (11 samples, 0.04%)</title><rect x="198.3" y="1877" width="0.7" height="15.0" fill="rgb(230,41,38)" rx="2" ry="2" />
<text x="201.26" y="1887.5" ></text>
</g>
<g >
<title>swift_retain (5 samples, 0.02%)</title><rect x="487.4" y="1845" width="0.3" height="15.0" fill="rgb(244,192,26)" rx="2" ry="2" />
<text x="490.36" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerOpRewriteRegistry::RunRewrite (2 samples, 0.01%)</title><rect x="72.4" y="1845" width="0.1" height="15.0" fill="rgb(221,6,21)" rx="2" ry="2" />
<text x="75.41" y="1855.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="834.2" y="1717" width="0.1" height="15.0" fill="rgb(249,165,29)" rx="2" ry="2" />
<text x="837.19" y="1727.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (10 samples, 0.04%)</title><rect x="837.8" y="1765" width="0.6" height="15.0" fill="rgb(224,165,24)" rx="2" ry="2" />
<text x="840.76" y="1775.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="802.6" y="1877" width="0.2" height="15.0" fill="rgb(210,93,36)" rx="2" ry="2" />
<text x="805.64" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (2 samples, 0.01%)</title><rect x="563.7" y="1877" width="0.1" height="15.0" fill="rgb(221,113,30)" rx="2" ry="2" />
<text x="566.65" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (6 samples, 0.02%)</title><rect x="978.0" y="1781" width="0.4" height="15.0" fill="rgb(241,215,4)" rx="2" ry="2" />
<text x="980.98" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (27 samples, 0.10%)</title><rect x="1118.3" y="1765" width="1.8" height="15.0" fill="rgb(234,64,2)" rx="2" ry="2" />
<text x="1121.26" y="1775.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (3 samples, 0.01%)</title><rect x="116.1" y="1845" width="0.2" height="15.0" fill="rgb(243,23,28)" rx="2" ry="2" />
<text x="119.13" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (10 samples, 0.04%)</title><rect x="1145.1" y="1957" width="0.7" height="15.0" fill="rgb(214,164,47)" rx="2" ry="2" />
<text x="1148.14" y="1967.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.SignedInteger in Swift (2 samples, 0.01%)</title><rect x="87.0" y="1893" width="0.1" height="15.0" fill="rgb(242,78,42)" rx="2" ry="2" />
<text x="89.98" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CopyFromInternal (2 samples, 0.01%)</title><rect x="1493.6" y="1765" width="0.1" height="15.0" fill="rgb(214,204,54)" rx="2" ry="2" />
<text x="1496.55" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.rank.getter : Swift.Int (47 samples, 0.18%)</title><rect x="658.4" y="1925" width="3.2" height="15.0" fill="rgb(231,174,3)" rx="2" ry="2" />
<text x="661.37" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::InputDevice (3 samples, 0.01%)</title><rect x="969.7" y="1813" width="0.2" height="15.0" fill="rgb(207,136,13)" rx="2" ry="2" />
<text x="972.73" y="1823.5" ></text>
</g>
<g >
<title>merged Swift.ClosedRange.init(uncheckedBounds: (lower: A, upper: A)) -&gt; Swift.ClosedRange&lt;A&gt; (2 samples, 0.01%)</title><rect x="46.1" y="1861" width="0.1" height="15.0" fill="rgb(229,40,28)" rx="2" ry="2" />
<text x="49.09" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::NodeDef (2 samples, 0.01%)</title><rect x="497.8" y="1845" width="0.1" height="15.0" fill="rgb(205,160,1)" rx="2" ry="2" />
<text x="500.80" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (2 samples, 0.01%)</title><rect x="1473.0" y="1893" width="0.1" height="15.0" fill="rgb(209,100,20)" rx="2" ry="2" />
<text x="1476.00" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (12 samples, 0.05%)</title><rect x="1264.1" y="1845" width="0.8" height="15.0" fill="rgb(235,77,41)" rx="2" ry="2" />
<text x="1267.12" y="1855.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.BidirectionalCollection.last.getter : A.Element? (2 samples, 0.01%)</title><rect x="115.4" y="1829" width="0.1" height="15.0" fill="rgb(242,119,18)" rx="2" ry="2" />
<text x="118.37" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (33 samples, 0.13%)</title><rect x="552.2" y="1909" width="2.3" height="15.0" fill="rgb(243,175,25)" rx="2" ry="2" />
<text x="555.24" y="1919.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_rlock (4 samples, 0.02%)</title><rect x="1217.7" y="1893" width="0.3" height="15.0" fill="rgb(246,44,11)" rx="2" ry="2" />
<text x="1220.72" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (4 samples, 0.02%)</title><rect x="319.2" y="1749" width="0.2" height="15.0" fill="rgb(220,12,13)" rx="2" ry="2" />
<text x="322.16" y="1759.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int, @unowned Swift.Int) -&gt; (@unowned Swift.Int, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int, @in_guaranteed Swift.Int) -&gt; (@out Swift.Int, @error @owned Swift.Error) (3 samples, 0.01%)</title><rect x="254.4" y="1861" width="0.2" height="15.0" fill="rgb(251,223,10)" rx="2" ry="2" />
<text x="257.42" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (3 samples, 0.01%)</title><rect x="1434.7" y="1829" width="0.2" height="15.0" fill="rgb(225,73,44)" rx="2" ry="2" />
<text x="1437.71" y="1839.5" ></text>
</g>
<g >
<title>google::protobuf::RepeatedPtrField&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::RepeatedPtrField (2 samples, 0.01%)</title><rect x="1220.3" y="1893" width="0.2" height="15.0" fill="rgb(249,6,5)" rx="2" ry="2" />
<text x="1223.33" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::AddDim (3 samples, 0.01%)</title><rect x="516.2" y="1701" width="0.2" height="15.0" fill="rgb(213,188,42)" rx="2" ry="2" />
<text x="519.22" y="1711.5" ></text>
</g>
<g >
<title>protocol witness for Swift.Collection.subscript.read : (A.Index) -&gt; A.Element in conformance [A : B].Keys : Swift.Collection in Swift with unmangled suffix &quot;.resume.0&quot; (4 samples, 0.02%)</title><rect x="236.3" y="1861" width="0.2" height="15.0" fill="rgb(251,119,53)" rx="2" ry="2" />
<text x="239.27" y="1871.5" ></text>
</g>
<g >
<title>swift_once (4 samples, 0.02%)</title><rect x="671.5" y="1845" width="0.3" height="15.0" fill="rgb(251,74,28)" rx="2" ry="2" />
<text x="674.49" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (6 samples, 0.02%)</title><rect x="103.3" y="1845" width="0.4" height="15.0" fill="rgb(207,3,35)" rx="2" ry="2" />
<text x="106.27" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::Executor (3 samples, 0.01%)</title><rect x="1094.7" y="1877" width="0.2" height="15.0" fill="rgb(217,150,14)" rx="2" ry="2" />
<text x="1097.69" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (2 samples, 0.01%)</title><rect x="1494.5" y="1957" width="0.2" height="15.0" fill="rgb(222,83,49)" rx="2" ry="2" />
<text x="1497.51" y="1967.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (65 samples, 0.25%)</title><rect x="449.1" y="1925" width="4.5" height="15.0" fill="rgb(218,43,11)" rx="2" ry="2" />
<text x="452.14" y="1935.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="413.7" y="1941" width="0.2" height="15.0" fill="rgb(244,223,52)" rx="2" ry="2" />
<text x="416.74" y="1951.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="548.5" y="1813" width="0.1" height="15.0" fill="rgb(249,66,19)" rx="2" ry="2" />
<text x="551.46" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::functor::FillFunctor&lt;Eigen::ThreadPoolDevice, double&gt;::operator (7 samples, 0.03%)</title><rect x="277.5" y="1701" width="0.5" height="15.0" fill="rgb(217,33,24)" rx="2" ry="2" />
<text x="280.51" y="1711.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Double&gt; of TensorFlow.matmul&lt;A where A: Swift.Numeric, A: TensorFlow.TensorFlowScalar&gt;(_: TensorFlow.Tensor&lt;A&gt;, transposed: Swift.Bool, _: TensorFlow.Tensor&lt;A&gt;, transposed: Swift.Bool) -&gt; TensorFlow.Tensor&lt;A&gt; (808 samples, 3.12%)</title><rect x="295.2" y="1941" width="55.6" height="15.0" fill="rgb(215,148,0)" rx="2" ry="2" />
<text x="298.25" y="1951.5" >gener..</text>
</g>
<g >
<title>swift_slowDealloc (2 samples, 0.01%)</title><rect x="1260.8" y="1973" width="0.2" height="15.0" fill="rgb(244,197,48)" rx="2" ry="2" />
<text x="1263.82" y="1983.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int, @unowned Swift.Int) -&gt; (@unowned Swift.Int, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int, @in_guaranteed Swift.Int) -&gt; (@out Swift.Int, @error @owned Swift.Error) (4 samples, 0.02%)</title><rect x="552.7" y="1877" width="0.2" height="15.0" fill="rgb(220,163,19)" rx="2" ry="2" />
<text x="555.65" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (341 samples, 1.32%)</title><rect x="605.8" y="1925" width="23.4" height="15.0" fill="rgb(246,195,30)" rx="2" ry="2" />
<text x="608.78" y="1935.5" >T..</text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (378 samples, 1.46%)</title><rect x="735.2" y="1829" width="26.0" height="15.0" fill="rgb(253,219,25)" rx="2" ry="2" />
<text x="738.21" y="1839.5" >t..</text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (2 samples, 0.01%)</title><rect x="1265.8" y="1893" width="0.2" height="15.0" fill="rgb(213,191,29)" rx="2" ry="2" />
<text x="1268.84" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (6 samples, 0.02%)</title><rect x="1443.9" y="1845" width="0.4" height="15.0" fill="rgb(206,127,38)" rx="2" ry="2" />
<text x="1446.86" y="1855.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Exploded&gt; of SwiftFusion.GaussianFactorGraph.atr([TensorFlow.Tensor&lt;Swift.Double&gt;]) -&gt; SwiftFusion.VectorValues (7,283 samples, 28.12%)</title><rect x="599.9" y="1973" width="500.6" height="15.0" fill="rgb(209,140,1)" rx="2" ry="2" />
<text x="602.87" y="1983.5" >function signature specialization &lt;Arg[1] = Exploded&gt; of SwiftFusion..</text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (2 samples, 0.01%)</title><rect x="281.4" y="1861" width="0.2" height="15.0" fill="rgb(223,43,10)" rx="2" ry="2" />
<text x="284.43" y="1871.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="850.6" y="1877" width="0.2" height="15.0" fill="rgb(222,66,18)" rx="2" ry="2" />
<text x="853.61" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.internalConsistencyCheck(_: Swift.Bool, _: Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="721.6" y="1861" width="0.1" height="15.0" fill="rgb(253,72,13)" rx="2" ry="2" />
<text x="724.60" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="1008.1" y="1909" width="0.2" height="15.0" fill="rgb(240,216,11)" rx="2" ry="2" />
<text x="1011.08" y="1919.5" ></text>
</g>
<g >
<title>Eigen::internal::InnerMostDimReducer&lt;Eigen::TensorReductionEvaluatorBase&lt;Eigen::TensorReductionOp&lt;Eigen::internal::SumReducer&lt;double&gt;, Eigen::IndexList&lt;Eigen::type2index&lt;0l&gt;&gt; const, Eigen::TensorMap&lt;Eigen::Tensor&lt;double const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const, Eigen::MakePointer&gt; const, Eigen::ThreadPoolDevice&gt;, Eigen::internal::SumReducer&lt;double&gt;, true, true&gt;::reduce (2 samples, 0.01%)</title><rect x="152.1" y="1701" width="0.1" height="15.0" fill="rgb(240,7,48)" rx="2" ry="2" />
<text x="155.07" y="1711.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="133.3" y="1813" width="0.1" height="15.0" fill="rgb(232,89,3)" rx="2" ry="2" />
<text x="136.31" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(handle: TensorFlow.TensorHandle&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="696.4" y="1813" width="0.2" height="15.0" fill="rgb(233,74,11)" rx="2" ry="2" />
<text x="699.44" y="1823.5" ></text>
</g>
<g >
<title>swift_endAccess (3 samples, 0.01%)</title><rect x="628.3" y="1893" width="0.2" height="15.0" fill="rgb(241,51,24)" rx="2" ry="2" />
<text x="631.26" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (9 samples, 0.03%)</title><rect x="763.7" y="1829" width="0.6" height="15.0" fill="rgb(242,221,17)" rx="2" ry="2" />
<text x="766.67" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::get_allocator (2 samples, 0.01%)</title><rect x="323.6" y="1653" width="0.2" height="15.0" fill="rgb(215,229,27)" rx="2" ry="2" />
<text x="326.63" y="1663.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="983.4" y="1877" width="0.1" height="15.0" fill="rgb(245,131,21)" rx="2" ry="2" />
<text x="986.41" y="1887.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (4 samples, 0.02%)</title><rect x="718.4" y="1797" width="0.3" height="15.0" fill="rgb(245,104,48)" rx="2" ry="2" />
<text x="721.44" y="1807.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (6 samples, 0.02%)</title><rect x="865.6" y="1813" width="0.4" height="15.0" fill="rgb(248,14,10)" rx="2" ry="2" />
<text x="868.60" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (245 samples, 0.95%)</title><rect x="269.0" y="1909" width="16.8" height="15.0" fill="rgb(212,63,46)" rx="2" ry="2" />
<text x="271.99" y="1919.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="587.4" y="1893" width="0.1" height="15.0" fill="rgb(233,144,11)" rx="2" ry="2" />
<text x="590.36" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (18 samples, 0.07%)</title><rect x="415.5" y="1877" width="1.3" height="15.0" fill="rgb(240,108,30)" rx="2" ry="2" />
<text x="418.53" y="1887.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int and conformance Swift.Int : Swift.FixedWidthInteger in Swift (2 samples, 0.01%)</title><rect x="339.5" y="1909" width="0.1" height="15.0" fill="rgb(213,53,45)" rx="2" ry="2" />
<text x="342.51" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (34 samples, 0.13%)</title><rect x="111.7" y="1765" width="2.4" height="15.0" fill="rgb(209,197,46)" rx="2" ry="2" />
<text x="114.73" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::TensorShape::AsEigenDSizesWithPadding&lt;2, long&gt; (3 samples, 0.01%)</title><rect x="925.7" y="1605" width="0.2" height="15.0" fill="rgb(246,200,51)" rx="2" ry="2" />
<text x="928.74" y="1615.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::shaped&lt;double, 1ul&gt; (5 samples, 0.02%)</title><rect x="322.1" y="1685" width="0.4" height="15.0" fill="rgb(227,88,4)" rx="2" ry="2" />
<text x="325.12" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (246 samples, 0.95%)</title><rect x="742.0" y="1781" width="16.9" height="15.0" fill="rgb(219,192,48)" rx="2" ry="2" />
<text x="745.02" y="1791.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (6 samples, 0.02%)</title><rect x="781.3" y="1813" width="0.4" height="15.0" fill="rgb(231,119,45)" rx="2" ry="2" />
<text x="784.26" y="1823.5" ></text>
</g>
<g >
<title>pod_copy (6 samples, 0.02%)</title><rect x="1369.3" y="1797" width="0.4" height="15.0" fill="rgb(241,89,47)" rx="2" ry="2" />
<text x="1372.28" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (16 samples, 0.06%)</title><rect x="1047.3" y="1861" width="1.1" height="15.0" fill="rgb(230,41,30)" rx="2" ry="2" />
<text x="1050.26" y="1871.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="593.3" y="1861" width="0.1" height="15.0" fill="rgb(231,120,47)" rx="2" ry="2" />
<text x="596.28" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::input (2 samples, 0.01%)</title><rect x="917.3" y="1701" width="0.1" height="15.0" fill="rgb(242,186,32)" rx="2" ry="2" />
<text x="920.29" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (177 samples, 0.68%)</title><rect x="431.1" y="1861" width="12.1" height="15.0" fill="rgb(214,75,41)" rx="2" ry="2" />
<text x="434.06" y="1871.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Int&gt; of Swift.__RawDictionaryStorage.find&lt;A where A: Swift.Hashable&gt;(_: A, hashValue: Swift.Int) -&gt; (bucket: Swift._HashTable.Bucket, found: Swift.Bool) (3 samples, 0.01%)</title><rect x="1223.5" y="1957" width="0.2" height="15.0" fill="rgb(224,70,12)" rx="2" ry="2" />
<text x="1226.50" y="1967.5" ></text>
</g>
<g >
<title>swift_getWitnessTable (5 samples, 0.02%)</title><rect x="1780.4" y="2053" width="0.3" height="15.0" fill="rgb(250,215,7)" rx="2" ry="2" />
<text x="1783.38" y="2063.5" ></text>
</g>
<g >
<title>Eigen::internal::TensorExecutor&lt;Eigen::TensorAssignOp&lt;Eigen::TensorMap&lt;Eigen::Tensor&lt;int, 1, 1, long&gt;, 16, Eigen::MakePointer&gt;, Eigen::TensorCwiseBinaryOp&lt;Eigen::internal::scalar_difference_op&lt;int, int&gt;, Eigen::TensorMap&lt;Eigen::Tensor&lt;int const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const, Eigen::TensorMap&lt;Eigen::Tensor&lt;int const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const&gt; const&gt; const, Eigen::ThreadPoolDevice, true, (2 samples, 0.01%)</title><rect x="747.5" y="1701" width="0.2" height="15.0" fill="rgb(206,66,43)" rx="2" ry="2" />
<text x="750.51" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::~TensorHandle (2 samples, 0.01%)</title><rect x="194.9" y="1845" width="0.1" height="15.0" fill="rgb(223,83,11)" rx="2" ry="2" />
<text x="197.89" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (24 samples, 0.09%)</title><rect x="1244.2" y="1813" width="1.6" height="15.0" fill="rgb(232,108,46)" rx="2" ry="2" />
<text x="1247.18" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (94 samples, 0.36%)</title><rect x="319.0" y="1765" width="6.5" height="15.0" fill="rgb(222,27,10)" rx="2" ry="2" />
<text x="322.03" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (62 samples, 0.24%)</title><rect x="577.7" y="1749" width="4.3" height="15.0" fill="rgb(250,179,15)" rx="2" ry="2" />
<text x="580.74" y="1759.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of Swift.String.init(cString: Swift.UnsafePointer&lt;Swift.Int8&gt;) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="446.6" y="1909" width="0.1" height="15.0" fill="rgb(217,23,20)" rx="2" ry="2" />
<text x="449.60" y="1919.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="886.6" y="1829" width="0.1" height="15.0" fill="rgb(208,153,7)" rx="2" ry="2" />
<text x="889.56" y="1839.5" ></text>
</g>
<g >
<title>__tls_get_addr@plt (2 samples, 0.01%)</title><rect x="1604.3" y="2053" width="0.1" height="15.0" fill="rgb(225,225,46)" rx="2" ry="2" />
<text x="1607.28" y="2063.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="859.3" y="1861" width="0.2" height="15.0" fill="rgb(240,71,11)" rx="2" ry="2" />
<text x="862.34" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (132 samples, 0.51%)</title><rect x="715.1" y="1893" width="9.1" height="15.0" fill="rgb(214,163,19)" rx="2" ry="2" />
<text x="718.14" y="1903.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="23.2" y="1957" width="0.3" height="15.0" fill="rgb(227,117,1)" rx="2" ry="2" />
<text x="26.20" y="1967.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (4 samples, 0.02%)</title><rect x="842.6" y="1765" width="0.3" height="15.0" fill="rgb(220,50,25)" rx="2" ry="2" />
<text x="845.64" y="1775.5" ></text>
</g>
<g >
<title>__swift_destroy_boxed_opaque_existential_1 (16 samples, 0.06%)</title><rect x="1456.0" y="1925" width="1.1" height="15.0" fill="rgb(232,217,47)" rx="2" ry="2" />
<text x="1459.02" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_: A, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (377 samples, 1.46%)</title><rect x="632.1" y="1909" width="25.9" height="15.0" fill="rgb(235,1,37)" rx="2" ry="2" />
<text x="635.11" y="1919.5" >T..</text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (2 samples, 0.01%)</title><rect x="1454.6" y="1749" width="0.1" height="15.0" fill="rgb(205,139,34)" rx="2" ry="2" />
<text x="1457.58" y="1759.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (56 samples, 0.22%)</title><rect x="587.8" y="1877" width="3.9" height="15.0" fill="rgb(224,85,11)" rx="2" ry="2" />
<text x="590.85" y="1887.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="713.5" y="1877" width="0.2" height="15.0" fill="rgb(245,59,53)" rx="2" ry="2" />
<text x="716.49" y="1887.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Int&gt; of Swift.__RawDictionaryStorage.find&lt;A where A: Swift.Hashable&gt;(A) -&gt; (bucket: Swift._HashTable.Bucket, found: Swift.Bool) (2 samples, 0.01%)</title><rect x="1065.8" y="1941" width="0.1" height="15.0" fill="rgb(253,5,13)" rx="2" ry="2" />
<text x="1068.75" y="1951.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.count.getter : Swift.Int (19 samples, 0.07%)</title><rect x="398.7" y="1861" width="1.3" height="15.0" fill="rgb(227,92,37)" rx="2" ry="2" />
<text x="401.69" y="1871.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="443.9" y="1845" width="0.2" height="15.0" fill="rgb(234,39,16)" rx="2" ry="2" />
<text x="446.92" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(handle: TensorFlow.TensorHandle&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="549.3" y="1829" width="0.1" height="15.0" fill="rgb(215,159,54)" rx="2" ry="2" />
<text x="552.29" y="1839.5" ></text>
</g>
<g >
<title>initializeWithCopy value witness for TensorFlow.Tensor (192 samples, 0.74%)</title><rect x="1545.1" y="2021" width="13.2" height="15.0" fill="rgb(239,164,13)" rx="2" ry="2" />
<text x="1548.10" y="2031.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (3 samples, 0.01%)</title><rect x="1447.6" y="1845" width="0.2" height="15.0" fill="rgb(236,136,45)" rx="2" ry="2" />
<text x="1450.64" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.internalConsistencyCheck(_: Swift.Bool, _: Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (3 samples, 0.01%)</title><rect x="106.4" y="1877" width="0.2" height="15.0" fill="rgb(209,211,47)" rx="2" ry="2" />
<text x="109.36" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for SwiftFusion._AnyDifferentiableBox._typeErasedBase.getter : Any in conformance SwiftFusion._ConcreteDifferentiableBox&lt;A&gt; : SwiftFusion._AnyDifferentiableBox in SwiftFusion (2 samples, 0.01%)</title><rect x="1261.2" y="1925" width="0.1" height="15.0" fill="rgb(241,81,11)" rx="2" ry="2" />
<text x="1264.16" y="1935.5" ></text>
</g>
<g >
<title>(extension in SwiftFusion):SwiftFusion.G2OReader.read(fromG2O: Foundation.URL) throws -&gt; () (6 samples, 0.02%)</title><rect x="39.8" y="1989" width="0.4" height="15.0" fill="rgb(224,42,16)" rx="2" ry="2" />
<text x="42.76" y="1999.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (171 samples, 0.66%)</title><rect x="314.9" y="1829" width="11.8" height="15.0" fill="rgb(241,215,39)" rx="2" ry="2" />
<text x="317.90" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::BuildCacheKeyForDevice (19 samples, 0.07%)</title><rect x="1016.4" y="1781" width="1.3" height="15.0" fill="rgb(209,84,20)" rx="2" ry="2" />
<text x="1019.40" y="1791.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (7 samples, 0.03%)</title><rect x="702.7" y="1813" width="0.5" height="15.0" fill="rgb(243,133,54)" rx="2" ry="2" />
<text x="705.70" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (128 samples, 0.49%)</title><rect x="510.0" y="1829" width="8.8" height="15.0" fill="rgb(230,9,54)" rx="2" ry="2" />
<text x="513.04" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (2 samples, 0.01%)</title><rect x="1455.6" y="1893" width="0.1" height="15.0" fill="rgb(247,127,50)" rx="2" ry="2" />
<text x="1458.61" y="1903.5" ></text>
</g>
<g >
<title>outlined init with copy of SwiftFusion._AD__$s11SwiftFusion4Rot2V1moiyA2C_ACtFZ_bb0__PB__src_0_wrt_0_1 (3 samples, 0.01%)</title><rect x="1291.7" y="1781" width="0.2" height="15.0" fill="rgb(231,178,44)" rx="2" ry="2" />
<text x="1294.68" y="1791.5" ></text>
</g>
<g >
<title>Eigen::internal::generic_product_impl_base&lt;Eigen::Map&lt;Eigen::Matrix&lt;double, -1, -1, 1, -1, -1&gt; const, 0, Eigen::Stride&lt;0, 0&gt; &gt;, Eigen::Map&lt;Eigen::Matrix&lt;double, -1, 1, 0, -1, 1&gt; const, 0, Eigen::Stride&lt;0, 0&gt; &gt;, Eigen::internal::generic_product_impl&lt;Eigen::Map&lt;Eigen::Matrix&lt;double, -1, -1, 1, -1, -1&gt; const, 0, Eigen::Stride&lt;0, 0&gt; &gt;, Eigen::Map&lt;Eigen::Matrix&lt;double, -1, 1, 0, -1, 1&gt; const, 0, Eigen::Stride&lt;0, 0&gt; &gt;, Eigen::DenseShape, Eigen::DenseShape, 7&gt; &gt;::evalTo&lt;Eigen::Map&lt;Eigen::Matrix&lt;double, -1, 1, 0, -1, 1&gt;, 0, Eigen::Stride&lt;0, 0&gt; &gt; &gt; (15 samples, 0.06%)</title><rect x="321.0" y="1685" width="1.1" height="15.0" fill="rgb(230,220,23)" rx="2" ry="2" />
<text x="324.02" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::LocalTensorHandleData::NumDims (3 samples, 0.01%)</title><rect x="393.2" y="1845" width="0.2" height="15.0" fill="rgb(205,101,24)" rx="2" ry="2" />
<text x="396.19" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (6 samples, 0.02%)</title><rect x="61.1" y="1893" width="0.4" height="15.0" fill="rgb(228,89,52)" rx="2" ry="2" />
<text x="64.07" y="1903.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.ShapedArray&lt;A where A: TensorFlow._TensorFlowDataTypeCompatible&gt;.init(owning: Swift.OpaquePointer) -&gt; TensorFlow.ShapedArray&lt;A&gt; (87 samples, 0.34%)</title><rect x="44.4" y="1893" width="5.9" height="15.0" fill="rgb(229,83,7)" rx="2" ry="2" />
<text x="47.37" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (78 samples, 0.30%)</title><rect x="1215.9" y="1941" width="5.4" height="15.0" fill="rgb(235,227,42)" rx="2" ry="2" />
<text x="1218.94" y="1951.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (11 samples, 0.04%)</title><rect x="708.0" y="1861" width="0.7" height="15.0" fill="rgb(213,28,45)" rx="2" ry="2" />
<text x="710.99" y="1871.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::initializeWithCopy (2 samples, 0.01%)</title><rect x="535.5" y="1877" width="0.1" height="15.0" fill="rgb(247,19,50)" rx="2" ry="2" />
<text x="538.47" y="1887.5" ></text>
</g>
<g >
<title>swift::TargetMetadata&lt;swift::InProcess&gt;::isCanonicalStaticallySpecializedGenericMetadata (2 samples, 0.01%)</title><rect x="264.9" y="1877" width="0.1" height="15.0" fill="rgb(229,118,10)" rx="2" ry="2" />
<text x="267.87" y="1887.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="1212.7" y="1925" width="0.1" height="15.0" fill="rgb(218,109,46)" rx="2" ry="2" />
<text x="1215.70" y="1935.5" ></text>
</g>
<g >
<title>swift_retain (7 samples, 0.03%)</title><rect x="672.1" y="1861" width="0.5" height="15.0" fill="rgb(217,1,17)" rx="2" ry="2" />
<text x="675.11" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::IsRemote (6 samples, 0.02%)</title><rect x="1234.1" y="1765" width="0.4" height="15.0" fill="rgb(249,71,18)" rx="2" ry="2" />
<text x="1237.08" y="1775.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (7 samples, 0.03%)</title><rect x="343.1" y="1829" width="0.5" height="15.0" fill="rgb(213,213,34)" rx="2" ry="2" />
<text x="346.08" y="1839.5" ></text>
</g>
<g >
<title>swift_retain (4 samples, 0.02%)</title><rect x="265.6" y="1893" width="0.2" height="15.0" fill="rgb(249,32,31)" rx="2" ry="2" />
<text x="268.55" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (435 samples, 1.68%)</title><rect x="1008.6" y="1909" width="29.9" height="15.0" fill="rgb(225,218,54)" rx="2" ry="2" />
<text x="1011.57" y="1919.5" >Te..</text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (2 samples, 0.01%)</title><rect x="725.1" y="1893" width="0.1" height="15.0" fill="rgb(249,190,7)" rx="2" ry="2" />
<text x="728.11" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::InternalSerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="1248.6" y="1829" width="0.1" height="15.0" fill="rgb(216,18,33)" rx="2" ry="2" />
<text x="1251.58" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow._RawTFEager.reshape&lt;A where A: TensorFlow.TensorFlowScalar&gt;(_: TensorFlow.Tensor&lt;A&gt;, shape: [Swift.Int64]) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="1255.0" y="1973" width="0.2" height="15.0" fill="rgb(210,36,45)" rx="2" ry="2" />
<text x="1258.04" y="1983.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (7 samples, 0.03%)</title><rect x="133.4" y="1813" width="0.5" height="15.0" fill="rgb(211,7,31)" rx="2" ry="2" />
<text x="136.45" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (5 samples, 0.02%)</title><rect x="1455.6" y="1941" width="0.4" height="15.0" fill="rgb(238,170,19)" rx="2" ry="2" />
<text x="1458.61" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (10 samples, 0.04%)</title><rect x="1447.3" y="1861" width="0.7" height="15.0" fill="rgb(209,170,0)" rx="2" ry="2" />
<text x="1450.29" y="1871.5" ></text>
</g>
<g >
<title>operator delete (2 samples, 0.01%)</title><rect x="870.7" y="1749" width="0.1" height="15.0" fill="rgb(241,0,46)" rx="2" ry="2" />
<text x="873.69" y="1759.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (3 samples, 0.01%)</title><rect x="306.7" y="1813" width="0.2" height="15.0" fill="rgb(226,95,47)" rx="2" ry="2" />
<text x="309.72" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (49 samples, 0.19%)</title><rect x="168.4" y="1877" width="3.3" height="15.0" fill="rgb(212,78,33)" rx="2" ry="2" />
<text x="171.36" y="1887.5" ></text>
</g>
<g >
<title>swift_deallocClassInstance (2 samples, 0.01%)</title><rect x="1212.4" y="1909" width="0.2" height="15.0" fill="rgb(205,187,11)" rx="2" ry="2" />
<text x="1215.43" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1525" width="0.9" height="15.0" fill="rgb(224,153,18)" rx="2" ry="2" />
<text x="24.27" y="1535.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::~OpKernelContext (2 samples, 0.01%)</title><rect x="873.4" y="1701" width="0.2" height="15.0" fill="rgb(219,31,10)" rx="2" ry="2" />
<text x="876.43" y="1711.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;tensorflow::Fprint128, std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt;, std::allocator&lt;std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;tensorflow::Fprint128&gt;, tensorflow::Fprint128Hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (2 samples, 0.01%)</title><rect x="574.9" y="1797" width="0.2" height="15.0" fill="rgb(253,58,6)" rx="2" ry="2" />
<text x="577.92" y="1807.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1468.0" y="1941" width="0.1" height="15.0" fill="rgb(219,101,22)" rx="2" ry="2" />
<text x="1470.98" y="1951.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (32 samples, 0.12%)</title><rect x="310.4" y="1877" width="2.2" height="15.0" fill="rgb(216,83,30)" rx="2" ry="2" />
<text x="313.37" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (4 samples, 0.02%)</title><rect x="529.6" y="1861" width="0.2" height="15.0" fill="rgb(215,40,27)" rx="2" ry="2" />
<text x="532.56" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (2 samples, 0.01%)</title><rect x="1086.6" y="1781" width="0.1" height="15.0" fill="rgb(245,61,48)" rx="2" ry="2" />
<text x="1089.58" y="1791.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (4 samples, 0.02%)</title><rect x="1435.7" y="1877" width="0.3" height="15.0" fill="rgb(239,122,47)" rx="2" ry="2" />
<text x="1438.75" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (4 samples, 0.02%)</title><rect x="1492.2" y="1957" width="0.3" height="15.0" fill="rgb(214,38,40)" rx="2" ry="2" />
<text x="1495.18" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (3 samples, 0.01%)</title><rect x="1135.9" y="1877" width="0.2" height="15.0" fill="rgb(230,124,18)" rx="2" ry="2" />
<text x="1138.86" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::BuildCacheKeyForDevice (13 samples, 0.05%)</title><rect x="683.9" y="1765" width="0.9" height="15.0" fill="rgb(213,225,53)" rx="2" ry="2" />
<text x="686.87" y="1775.5" ></text>
</g>
<g >
<title>swift_retain (5 samples, 0.02%)</title><rect x="935.5" y="1813" width="0.3" height="15.0" fill="rgb(230,152,2)" rx="2" ry="2" />
<text x="938.50" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for Swift._ExpressibleByBuiltinIntegerLiteral.init(_builtinIntegerLiteral: Builtin.IntLiteral) -&gt; A in conformance Swift.Int : Swift._ExpressibleByBuiltinIntegerLiteral in Swift (2 samples, 0.01%)</title><rect x="1183.6" y="1893" width="0.2" height="15.0" fill="rgb(227,212,45)" rx="2" ry="2" />
<text x="1186.63" y="1903.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (4 samples, 0.02%)</title><rect x="748.0" y="1701" width="0.3" height="15.0" fill="rgb(254,178,47)" rx="2" ry="2" />
<text x="751.00" y="1711.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="118.9" y="1765" width="0.2" height="15.0" fill="rgb(206,41,18)" rx="2" ry="2" />
<text x="121.94" y="1775.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;tensorflow::Fprint128, std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt;, std::allocator&lt;std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;tensorflow::Fprint128&gt;, tensorflow::Fprint128Hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (15 samples, 0.06%)</title><rect x="739.3" y="1781" width="1.0" height="15.0" fill="rgb(244,225,40)" rx="2" ry="2" />
<text x="742.27" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (21 samples, 0.08%)</title><rect x="117.8" y="1845" width="1.5" height="15.0" fill="rgb(231,144,16)" rx="2" ry="2" />
<text x="120.84" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (11 samples, 0.04%)</title><rect x="1220.1" y="1909" width="0.8" height="15.0" fill="rgb(240,177,6)" rx="2" ry="2" />
<text x="1223.13" y="1919.5" ></text>
</g>
<g >
<title>TFE_NewContext (3 samples, 0.01%)</title><rect x="1495.1" y="1973" width="0.2" height="15.0" fill="rgb(214,196,47)" rx="2" ry="2" />
<text x="1498.06" y="1983.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::SetDeviceName (2 samples, 0.01%)</title><rect x="347.8" y="1861" width="0.1" height="15.0" fill="rgb(236,167,30)" rx="2" ry="2" />
<text x="350.76" y="1871.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="1027.5" y="1829" width="0.1" height="15.0" fill="rgb(213,138,28)" rx="2" ry="2" />
<text x="1030.47" y="1839.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="827.1" y="1717" width="0.1" height="15.0" fill="rgb(226,218,15)" rx="2" ry="2" />
<text x="830.11" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (78 samples, 0.30%)</title><rect x="1233.5" y="1813" width="5.4" height="15.0" fill="rgb(234,43,26)" rx="2" ry="2" />
<text x="1236.53" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (2 samples, 0.01%)</title><rect x="326.5" y="1813" width="0.2" height="15.0" fill="rgb(224,182,14)" rx="2" ry="2" />
<text x="329.52" y="1823.5" ></text>
</g>
<g >
<title>swift_getAssociatedConformanceWitness (3 samples, 0.01%)</title><rect x="1163.8" y="1797" width="0.2" height="15.0" fill="rgb(239,181,44)" rx="2" ry="2" />
<text x="1166.77" y="1807.5" ></text>
</g>
<g >
<title>swift_release (7 samples, 0.03%)</title><rect x="860.6" y="1877" width="0.5" height="15.0" fill="rgb(219,44,49)" rx="2" ry="2" />
<text x="863.58" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::ByteSizeLong (3 samples, 0.01%)</title><rect x="984.9" y="1829" width="0.2" height="15.0" fill="rgb(220,74,51)" rx="2" ry="2" />
<text x="987.85" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (363 samples, 1.40%)</title><rect x="907.5" y="1877" width="24.9" height="15.0" fill="rgb(239,108,13)" rx="2" ry="2" />
<text x="910.46" y="1887.5" >T..</text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::num_outputs (5 samples, 0.02%)</title><rect x="970.0" y="1813" width="0.3" height="15.0" fill="rgb(251,138,23)" rx="2" ry="2" />
<text x="973.01" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::BuildCacheKeyForDevice (9 samples, 0.03%)</title><rect x="914.5" y="1765" width="0.6" height="15.0" fill="rgb(219,176,34)" rx="2" ry="2" />
<text x="917.47" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="771.8" y="1877" width="0.2" height="15.0" fill="rgb(252,220,38)" rx="2" ry="2" />
<text x="774.85" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::AllocateRaw (3 samples, 0.01%)</title><rect x="579.7" y="1653" width="0.2" height="15.0" fill="rgb(250,88,53)" rx="2" ry="2" />
<text x="582.73" y="1663.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (4 samples, 0.02%)</title><rect x="418.8" y="1909" width="0.2" height="15.0" fill="rgb(241,136,22)" rx="2" ry="2" />
<text x="421.76" y="1919.5" ></text>
</g>
<g >
<title>swift_allocObject (4 samples, 0.02%)</title><rect x="1159.2" y="1765" width="0.3" height="15.0" fill="rgb(206,201,11)" rx="2" ry="2" />
<text x="1162.23" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (9 samples, 0.03%)</title><rect x="1039.2" y="1877" width="0.6" height="15.0" fill="rgb(225,214,18)" rx="2" ry="2" />
<text x="1042.22" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (72 samples, 0.28%)</title><rect x="1019.6" y="1733" width="5.0" height="15.0" fill="rgb(247,129,15)" rx="2" ry="2" />
<text x="1022.63" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (58 samples, 0.22%)</title><rect x="1092.6" y="1925" width="4.0" height="15.0" fill="rgb(215,162,37)" rx="2" ry="2" />
<text x="1095.63" y="1935.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (27 samples, 0.10%)</title><rect x="1004.2" y="1893" width="1.8" height="15.0" fill="rgb(206,29,0)" rx="2" ry="2" />
<text x="1007.17" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (7 samples, 0.03%)</title><rect x="1451.3" y="1813" width="0.5" height="15.0" fill="rgb(242,205,39)" rx="2" ry="2" />
<text x="1454.28" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::FillDimsAndValidateCompatibleShape&lt;1ul&gt; (2 samples, 0.01%)</title><rect x="322.3" y="1669" width="0.2" height="15.0" fill="rgb(229,188,48)" rx="2" ry="2" />
<text x="325.33" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1029" width="0.9" height="15.0" fill="rgb(245,120,52)" rx="2" ry="2" />
<text x="24.27" y="1039.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (27 samples, 0.10%)</title><rect x="978.0" y="1797" width="1.8" height="15.0" fill="rgb(230,20,25)" rx="2" ry="2" />
<text x="980.98" y="1807.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeMutableRawPointer) -&gt; () in (extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (16 samples, 0.06%)</title><rect x="260.7" y="1861" width="1.1" height="15.0" fill="rgb(211,107,23)" rx="2" ry="2" />
<text x="263.74" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (11 samples, 0.04%)</title><rect x="21.3" y="69" width="0.8" height="15.0" fill="rgb(223,135,52)" rx="2" ry="2" />
<text x="24.34" y="79.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int) -&gt; (@unowned Swift.Int64, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int) -&gt; (@out Swift.Int64, @error @owned Swift.Error) (7 samples, 0.03%)</title><rect x="127.0" y="1781" width="0.5" height="15.0" fill="rgb(252,122,18)" rx="2" ry="2" />
<text x="129.98" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::get_allocator (2 samples, 0.01%)</title><rect x="1196.3" y="1669" width="0.1" height="15.0" fill="rgb(217,29,47)" rx="2" ry="2" />
<text x="1199.28" y="1679.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="1175.9" y="1829" width="0.2" height="15.0" fill="rgb(244,199,2)" rx="2" ry="2" />
<text x="1178.93" y="1839.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (6 samples, 0.02%)</title><rect x="526.6" y="1877" width="0.4" height="15.0" fill="rgb(209,12,8)" rx="2" ry="2" />
<text x="529.60" y="1887.5" ></text>
</g>
<g >
<title>SwiftFusion._ConcreteDerivativeBox._unboxed&lt;A where A1: Swift.Differentiable, A1 == A1.Swift.Differentiable.TangentVector&gt;(to: A1.Type) -&gt; A1? (5 samples, 0.02%)</title><rect x="1397.5" y="1813" width="0.3" height="15.0" fill="rgb(236,82,17)" rx="2" ry="2" />
<text x="1400.46" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (4 samples, 0.02%)</title><rect x="1103.4" y="1765" width="0.3" height="15.0" fill="rgb(246,104,45)" rx="2" ry="2" />
<text x="1106.42" y="1775.5" ></text>
</g>
<g >
<title>TFE_TensorHandleNumDims (2 samples, 0.01%)</title><rect x="1463.4" y="1877" width="0.1" height="15.0" fill="rgb(234,168,41)" rx="2" ry="2" />
<text x="1466.38" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (16 samples, 0.06%)</title><rect x="1134.6" y="1909" width="1.1" height="15.0" fill="rgb(237,207,43)" rx="2" ry="2" />
<text x="1137.62" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (15 samples, 0.06%)</title><rect x="989.8" y="1845" width="1.0" height="15.0" fill="rgb(245,174,24)" rx="2" ry="2" />
<text x="992.80" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle._cTensorHandle.getter : Swift.OpaquePointer (2 samples, 0.01%)</title><rect x="105.9" y="1893" width="0.1" height="15.0" fill="rgb(235,103,33)" rx="2" ry="2" />
<text x="108.88" y="1903.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="831.4" y="1765" width="0.1" height="15.0" fill="rgb(246,51,43)" rx="2" ry="2" />
<text x="834.37" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::Dim (3 samples, 0.01%)</title><rect x="233.1" y="1781" width="0.2" height="15.0" fill="rgb(249,108,28)" rx="2" ry="2" />
<text x="236.11" y="1791.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="884.3" y="1749" width="0.1" height="15.0" fill="rgb(226,217,41)" rx="2" ry="2" />
<text x="887.29" y="1759.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (6 samples, 0.02%)</title><rect x="960.7" y="1765" width="0.4" height="15.0" fill="rgb(247,221,52)" rx="2" ry="2" />
<text x="963.73" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="533" width="0.9" height="15.0" fill="rgb(237,92,20)" rx="2" ry="2" />
<text x="24.27" y="543.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (12 samples, 0.05%)</title><rect x="60.7" y="1909" width="0.8" height="15.0" fill="rgb(253,16,8)" rx="2" ry="2" />
<text x="63.66" y="1919.5" ></text>
</g>
<g >
<title>SwiftFusion.CGLS.optimize(gfg: SwiftFusion.GaussianFactorGraph, initial: inout SwiftFusion.VectorValues) -&gt; () (17,761 samples, 68.58%)</title><rect x="40.2" y="1989" width="1220.8" height="15.0" fill="rgb(215,133,1)" rx="2" ry="2" />
<text x="43.17" y="1999.5" >SwiftFusion.CGLS.optimize(gfg: SwiftFusion.GaussianFactorGraph, initial: inout SwiftFusion.VectorValues) -&gt; ()</text>
</g>
<g >
<title>Swift.Array.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (282 samples, 1.09%)</title><rect x="632.6" y="1877" width="19.4" height="15.0" fill="rgb(240,12,27)" rx="2" ry="2" />
<text x="635.59" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (162 samples, 0.63%)</title><rect x="745.9" y="1717" width="11.2" height="15.0" fill="rgb(224,126,38)" rx="2" ry="2" />
<text x="748.93" y="1727.5" ></text>
</g>
<g >
<title>protocol witness for Swift.BinaryInteger.init&lt;A where A1: Swift.BinaryInteger&gt;(truncatingIfNeeded: A1) -&gt; A in conformance Swift.Int32 : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="1135.2" y="1893" width="0.2" height="15.0" fill="rgb(223,210,4)" rx="2" ry="2" />
<text x="1138.24" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1381" width="0.9" height="15.0" fill="rgb(210,143,35)" rx="2" ry="2" />
<text x="24.27" y="1391.5" ></text>
</g>
<g >
<title>swift_once@plt (2 samples, 0.01%)</title><rect x="616.1" y="1877" width="0.1" height="15.0" fill="rgb(221,40,36)" rx="2" ry="2" />
<text x="619.09" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (54 samples, 0.21%)</title><rect x="513.9" y="1749" width="3.7" height="15.0" fill="rgb(233,228,44)" rx="2" ry="2" />
<text x="516.89" y="1759.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (35 samples, 0.14%)</title><rect x="728.6" y="1861" width="2.4" height="15.0" fill="rgb(217,103,5)" rx="2" ry="2" />
<text x="731.61" y="1871.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_runlock (2 samples, 0.01%)</title><rect x="868.6" y="1781" width="0.1" height="15.0" fill="rgb(239,111,39)" rx="2" ry="2" />
<text x="871.55" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="629" width="0.9" height="15.0" fill="rgb(226,151,44)" rx="2" ry="2" />
<text x="24.27" y="639.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorHandle (5 samples, 0.02%)</title><rect x="517.6" y="1733" width="0.3" height="15.0" fill="rgb(220,68,34)" rx="2" ry="2" />
<text x="520.60" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (12 samples, 0.05%)</title><rect x="21.3" y="133" width="0.8" height="15.0" fill="rgb(212,195,17)" rx="2" ry="2" />
<text x="24.27" y="143.5" ></text>
</g>
<g >
<title>Swift.Array.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (253 samples, 0.98%)</title><rect x="1150.6" y="1909" width="17.4" height="15.0" fill="rgb(222,130,23)" rx="2" ry="2" />
<text x="1153.57" y="1919.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1036.7" y="1845" width="0.2" height="15.0" fill="rgb(242,159,34)" rx="2" ry="2" />
<text x="1039.75" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="1132.1" y="1893" width="0.2" height="15.0" fill="rgb(218,136,3)" rx="2" ry="2" />
<text x="1135.15" y="1903.5" ></text>
</g>
<g >
<title>__posix_memalign (2 samples, 0.01%)</title><rect x="1206.7" y="1925" width="0.1" height="15.0" fill="rgb(206,37,24)" rx="2" ry="2" />
<text x="1209.66" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (5 samples, 0.02%)</title><rect x="1034.0" y="1765" width="0.3" height="15.0" fill="rgb(249,70,53)" rx="2" ry="2" />
<text x="1037.00" y="1775.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (5 samples, 0.02%)</title><rect x="301.2" y="1845" width="0.4" height="15.0" fill="rgb(225,30,39)" rx="2" ry="2" />
<text x="304.23" y="1855.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (16 samples, 0.06%)</title><rect x="340.0" y="1893" width="1.1" height="15.0" fill="rgb(250,61,47)" rx="2" ry="2" />
<text x="342.99" y="1903.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="524.1" y="1765" width="0.3" height="15.0" fill="rgb(207,134,49)" rx="2" ry="2" />
<text x="527.13" y="1775.5" ></text>
</g>
<g >
<title>swift_beginAccess (3 samples, 0.01%)</title><rect x="1488.9" y="1909" width="0.3" height="15.0" fill="rgb(235,1,7)" rx="2" ry="2" />
<text x="1491.95" y="1919.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (21 samples, 0.08%)</title><rect x="807.7" y="1781" width="1.4" height="15.0" fill="rgb(253,90,37)" rx="2" ry="2" />
<text x="810.66" y="1791.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1227.5" y="1941" width="0.1" height="15.0" fill="rgb(216,178,12)" rx="2" ry="2" />
<text x="1230.48" y="1951.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (4 samples, 0.02%)</title><rect x="831.1" y="1765" width="0.3" height="15.0" fill="rgb(247,119,39)" rx="2" ry="2" />
<text x="834.09" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (17 samples, 0.07%)</title><rect x="91.4" y="1781" width="1.2" height="15.0" fill="rgb(254,59,32)" rx="2" ry="2" />
<text x="94.45" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (30 samples, 0.12%)</title><rect x="449.5" y="1829" width="2.0" height="15.0" fill="rgb(215,80,51)" rx="2" ry="2" />
<text x="452.48" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (47 samples, 0.18%)</title><rect x="1441.5" y="1893" width="3.2" height="15.0" fill="rgb(213,170,20)" rx="2" ry="2" />
<text x="1444.52" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1213.3" y="1893" width="0.1" height="15.0" fill="rgb(216,177,41)" rx="2" ry="2" />
<text x="1216.25" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (2 samples, 0.01%)</title><rect x="438.4" y="1749" width="0.2" height="15.0" fill="rgb(213,164,31)" rx="2" ry="2" />
<text x="441.42" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () (32 samples, 0.12%)</title><rect x="938.3" y="1893" width="2.1" height="15.0" fill="rgb(228,40,49)" rx="2" ry="2" />
<text x="941.25" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (2 samples, 0.01%)</title><rect x="171.9" y="1925" width="0.2" height="15.0" fill="rgb(232,191,13)" rx="2" ry="2" />
<text x="174.94" y="1935.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (2 samples, 0.01%)</title><rect x="1170.5" y="1909" width="0.1" height="15.0" fill="rgb(210,79,42)" rx="2" ry="2" />
<text x="1173.50" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () (33 samples, 0.13%)</title><rect x="592.6" y="1909" width="2.3" height="15.0" fill="rgb(231,214,50)" rx="2" ry="2" />
<text x="595.59" y="1919.5" ></text>
</g>
<g >
<title>swift_release (5 samples, 0.02%)</title><rect x="1171.5" y="1925" width="0.3" height="15.0" fill="rgb(253,87,53)" rx="2" ry="2" />
<text x="1174.46" y="1935.5" ></text>
</g>
<g >
<title>swift_endAccess (4 samples, 0.02%)</title><rect x="621.0" y="1877" width="0.2" height="15.0" fill="rgb(245,32,28)" rx="2" ry="2" />
<text x="623.98" y="1887.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="824.0" y="1685" width="0.2" height="15.0" fill="rgb(214,152,41)" rx="2" ry="2" />
<text x="827.01" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="29.0" y="1989" width="0.1" height="15.0" fill="rgb(234,100,25)" rx="2" ry="2" />
<text x="31.97" y="1999.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (3 samples, 0.01%)</title><rect x="1241.5" y="1893" width="0.2" height="15.0" fill="rgb(222,195,48)" rx="2" ry="2" />
<text x="1244.50" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (30 samples, 0.12%)</title><rect x="1224.0" y="1909" width="2.0" height="15.0" fill="rgb(247,122,7)" rx="2" ry="2" />
<text x="1226.98" y="1919.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static (extension in SwiftFusion):Swift.Array&lt;A where A == TensorFlow.Tensor&lt;Swift.Double&gt;&gt;.* infix(Swift.Double, [TensorFlow.Tensor&lt;Swift.Double&gt;]) -&gt; [TensorFlow.Tensor&lt;Swift.Double&gt;] (437 samples, 1.69%)</title><rect x="1100.5" y="1973" width="30.1" height="15.0" fill="rgb(207,133,33)" rx="2" ry="2" />
<text x="1103.53" y="1983.5" >fu..</text>
</g>
<g >
<title>outlined init with copy of SwiftFusion._AD__$s11SwiftFusion4Rot2V8unrotateyAA7Vector2VAFF_bb0__PB__src_0_wrt_0_1 (3 samples, 0.01%)</title><rect x="1292.6" y="1781" width="0.2" height="15.0" fill="rgb(227,201,47)" rx="2" ry="2" />
<text x="1295.57" y="1791.5" ></text>
</g>
<g >
<title>swift::MetadataCacheKey::compareWitnessTables (19 samples, 0.07%)</title><rect x="1719.7" y="2053" width="1.3" height="15.0" fill="rgb(244,136,30)" rx="2" ry="2" />
<text x="1722.69" y="2063.5" ></text>
</g>
<g >
<title>getCache (8 samples, 0.03%)</title><rect x="852.0" y="1893" width="0.5" height="15.0" fill="rgb(247,21,11)" rx="2" ry="2" />
<text x="854.99" y="1903.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (68 samples, 0.26%)</title><rect x="1307.9" y="1845" width="4.7" height="15.0" fill="rgb(246,210,8)" rx="2" ry="2" />
<text x="1310.90" y="1855.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (2 samples, 0.01%)</title><rect x="41.2" y="1877" width="0.1" height="15.0" fill="rgb(250,27,17)" rx="2" ry="2" />
<text x="44.21" y="1887.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.UnsafeBufferPointer&lt;Swift.Int8&gt;&gt; of Swift._copyCollectionToContiguousArray&lt;A where A: Swift.Collection&gt;(A) -&gt; Swift.ContiguousArray&lt;A.Element&gt; (3 samples, 0.01%)</title><rect x="454.4" y="1893" width="0.2" height="15.0" fill="rgb(212,99,34)" rx="2" ry="2" />
<text x="457.36" y="1903.5" ></text>
</g>
<g >
<title>malloc@plt (2 samples, 0.01%)</title><rect x="1162.7" y="1797" width="0.2" height="15.0" fill="rgb(218,106,27)" rx="2" ry="2" />
<text x="1165.74" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::AllocateRaw (2 samples, 0.01%)</title><rect x="246.6" y="1749" width="0.1" height="15.0" fill="rgb(237,211,22)" rx="2" ry="2" />
<text x="249.58" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (104 samples, 0.40%)</title><rect x="1018.5" y="1765" width="7.1" height="15.0" fill="rgb(253,65,43)" rx="2" ry="2" />
<text x="1021.46" y="1775.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (2 samples, 0.01%)</title><rect x="144.0" y="1861" width="0.2" height="15.0" fill="rgb(229,8,24)" rx="2" ry="2" />
<text x="147.03" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (10 samples, 0.04%)</title><rect x="878.2" y="1829" width="0.7" height="15.0" fill="rgb(248,26,7)" rx="2" ry="2" />
<text x="881.18" y="1839.5" ></text>
</g>
<g >
<title>static Swift._DictionaryStorage.resize(original: Swift.__RawDictionaryStorage, capacity: Swift.Int, move: Swift.Bool) -&gt; Swift._DictionaryStorage&lt;A, B&gt; (4 samples, 0.02%)</title><rect x="1052.3" y="1909" width="0.3" height="15.0" fill="rgb(207,165,21)" rx="2" ry="2" />
<text x="1055.28" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (15 samples, 0.06%)</title><rect x="1264.0" y="1877" width="1.1" height="15.0" fill="rgb(237,166,21)" rx="2" ry="2" />
<text x="1267.05" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (27 samples, 0.10%)</title><rect x="1015.9" y="1797" width="1.8" height="15.0" fill="rgb(209,109,5)" rx="2" ry="2" />
<text x="1018.85" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::DeallocateRaw (2 samples, 0.01%)</title><rect x="171.0" y="1813" width="0.1" height="15.0" fill="rgb(205,54,24)" rx="2" ry="2" />
<text x="173.97" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::get_allocator (3 samples, 0.01%)</title><rect x="919.8" y="1637" width="0.2" height="15.0" fill="rgb(241,203,39)" rx="2" ry="2" />
<text x="922.83" y="1647.5" ></text>
</g>
<g >
<title>__tls_get_addr (6 samples, 0.02%)</title><rect x="614.8" y="1877" width="0.4" height="15.0" fill="rgb(232,131,38)" rx="2" ry="2" />
<text x="617.79" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow._RuntimeConfig.printsDebugLog.unsafeMutableAddressor : Swift.Bool (3 samples, 0.01%)</title><rect x="241.9" y="1893" width="0.2" height="15.0" fill="rgb(218,150,17)" rx="2" ry="2" />
<text x="244.91" y="1903.5" ></text>
</g>
<g >
<title>Swift.Array.subscript.modify : (Swift.Int) -&gt; A (4 samples, 0.02%)</title><rect x="179.6" y="1893" width="0.2" height="15.0" fill="rgb(213,28,35)" rx="2" ry="2" />
<text x="182.57" y="1903.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (6 samples, 0.02%)</title><rect x="1214.4" y="1861" width="0.4" height="15.0" fill="rgb(228,124,22)" rx="2" ry="2" />
<text x="1217.35" y="1871.5" ></text>
</g>
<g >
<title>memset@plt (5 samples, 0.02%)</title><rect x="1483.9" y="1909" width="0.3" height="15.0" fill="rgb(215,65,14)" rx="2" ry="2" />
<text x="1486.86" y="1919.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (24 samples, 0.09%)</title><rect x="588.7" y="1781" width="1.7" height="15.0" fill="rgb(208,17,51)" rx="2" ry="2" />
<text x="591.74" y="1791.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (6 samples, 0.02%)</title><rect x="1233.0" y="1797" width="0.5" height="15.0" fill="rgb(214,217,5)" rx="2" ry="2" />
<text x="1236.05" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::ByteSizeLong (2 samples, 0.01%)</title><rect x="902.6" y="1797" width="0.2" height="15.0" fill="rgb(207,49,34)" rx="2" ry="2" />
<text x="905.65" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (14 samples, 0.05%)</title><rect x="950.9" y="1893" width="1.0" height="15.0" fill="rgb(245,71,38)" rx="2" ry="2" />
<text x="953.90" y="1903.5" ></text>
</g>
<g >
<title>l__swift5_reflection_descriptor.515 (7 samples, 0.03%)</title><rect x="1643.3" y="2053" width="0.4" height="15.0" fill="rgb(249,17,54)" rx="2" ry="2" />
<text x="1646.25" y="2063.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (8 samples, 0.03%)</title><rect x="767.4" y="1845" width="0.6" height="15.0" fill="rgb(226,166,50)" rx="2" ry="2" />
<text x="770.45" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (8 samples, 0.03%)</title><rect x="591.1" y="1845" width="0.5" height="15.0" fill="rgb(229,110,38)" rx="2" ry="2" />
<text x="594.08" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (11 samples, 0.04%)</title><rect x="642.8" y="1749" width="0.7" height="15.0" fill="rgb(219,122,51)" rx="2" ry="2" />
<text x="645.76" y="1759.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (58 samples, 0.22%)</title><rect x="138.4" y="1909" width="4.0" height="15.0" fill="rgb(231,22,51)" rx="2" ry="2" />
<text x="141.39" y="1919.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (3 samples, 0.01%)</title><rect x="503.6" y="1877" width="0.2" height="15.0" fill="rgb(221,145,19)" rx="2" ry="2" />
<text x="506.58" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (5 samples, 0.02%)</title><rect x="1493.0" y="1989" width="0.3" height="15.0" fill="rgb(251,16,8)" rx="2" ry="2" />
<text x="1496.00" y="1999.5" ></text>
</g>
<g >
<title>Eigen::TensorEvaluator&lt;Eigen::TensorAssignOp&lt;Eigen::TensorMap&lt;Eigen::Tensor&lt;unsigned long long, 2, 1, long&gt;, 16, Eigen::MakePointer&gt;, Eigen::TensorShufflingOp&lt;Eigen::array&lt;int, 2ul&gt; const, Eigen::TensorMap&lt;Eigen::Tensor&lt;unsigned long long const, 2, 1, long&gt;, 16, Eigen::MakePointer&gt; const&gt; const&gt; const, Eigen::ThreadPoolDevice&gt;::evalBlock (20 samples, 0.08%)</title><rect x="922.4" y="1589" width="1.4" height="15.0" fill="rgb(215,218,16)" rx="2" ry="2" />
<text x="925.44" y="1599.5" ></text>
</g>
<g >
<title>tensorflow::TransposeCpuOp::DoTranspose (69 samples, 0.27%)</title><rect x="921.3" y="1685" width="4.8" height="15.0" fill="rgb(207,77,12)" rx="2" ry="2" />
<text x="924.34" y="1695.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="332.1" y="1877" width="0.1" height="15.0" fill="rgb(233,68,35)" rx="2" ry="2" />
<text x="335.09" y="1887.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int64) -&gt; (@unowned Swift.Int32, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int64) -&gt; (@out Swift.Int32, @error @owned Swift.Error) (3 samples, 0.01%)</title><rect x="1433.0" y="1877" width="0.2" height="15.0" fill="rgb(254,186,39)" rx="2" ry="2" />
<text x="1436.00" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input_or_allocate_output (8 samples, 0.03%)</title><rect x="1138.6" y="1733" width="0.6" height="15.0" fill="rgb(212,205,46)" rx="2" ry="2" />
<text x="1141.61" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.shape.getter : TensorFlow.TensorShape (140 samples, 0.54%)</title><rect x="230.0" y="1925" width="9.6" height="15.0" fill="rgb(228,114,53)" rx="2" ry="2" />
<text x="233.02" y="1935.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="221.8" y="1957" width="0.2" height="15.0" fill="rgb(213,191,14)" rx="2" ry="2" />
<text x="224.84" y="1967.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (3 samples, 0.01%)</title><rect x="1270.6" y="1925" width="0.2" height="15.0" fill="rgb(244,186,4)" rx="2" ry="2" />
<text x="1273.58" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (15 samples, 0.06%)</title><rect x="1449.5" y="1733" width="1.0" height="15.0" fill="rgb(208,219,4)" rx="2" ry="2" />
<text x="1452.49" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (16 samples, 0.06%)</title><rect x="709.7" y="1845" width="1.1" height="15.0" fill="rgb(223,135,1)" rx="2" ry="2" />
<text x="712.71" y="1855.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::OpaqueExistentialBox&lt;1u&gt; &gt;::initializeWithTake (30 samples, 0.12%)</title><rect x="1417.3" y="1845" width="2.1" height="15.0" fill="rgb(248,185,33)" rx="2" ry="2" />
<text x="1420.33" y="1855.5" ></text>
</g>
<g >
<title>std::_Function_handler&lt;void (2 samples, 0.01%)</title><rect x="1076.8" y="1685" width="0.2" height="15.0" fill="rgb(220,204,44)" rx="2" ry="2" />
<text x="1079.82" y="1695.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (32 samples, 0.12%)</title><rect x="907.7" y="1861" width="2.2" height="15.0" fill="rgb(213,19,4)" rx="2" ry="2" />
<text x="910.66" y="1871.5" ></text>
</g>
<g >
<title>swift_release (6 samples, 0.02%)</title><rect x="1166.4" y="1829" width="0.4" height="15.0" fill="rgb(205,5,33)" rx="2" ry="2" />
<text x="1169.38" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (2 samples, 0.01%)</title><rect x="604.8" y="1941" width="0.1" height="15.0" fill="rgb(220,188,17)" rx="2" ry="2" />
<text x="607.75" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (10 samples, 0.04%)</title><rect x="384.7" y="1877" width="0.7" height="15.0" fill="rgb(238,165,20)" rx="2" ry="2" />
<text x="387.67" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::gtl::FindPtrOrNull&lt;tensorflow::gtl::FlatMap&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::unordered_map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, unsigned int, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned int&gt; &gt; &gt; const*, tensorflow::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, void&gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt; &gt; (2 samples, 0.01%)</title><rect x="495.9" y="1829" width="0.2" height="15.0" fill="rgb(239,194,15)" rx="2" ry="2" />
<text x="498.95" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (102 samples, 0.39%)</title><rect x="1044.2" y="1925" width="7.0" height="15.0" fill="rgb(235,179,2)" rx="2" ry="2" />
<text x="1047.24" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (59 samples, 0.23%)</title><rect x="761.3" y="1861" width="4.1" height="15.0" fill="rgb(246,146,35)" rx="2" ry="2" />
<text x="764.33" y="1871.5" ></text>
</g>
<g >
<title>initializeWithCopy value witness for SwiftFusion.AnyDerivative (67 samples, 0.26%)</title><rect x="1318.0" y="1845" width="4.6" height="15.0" fill="rgb(242,18,7)" rx="2" ry="2" />
<text x="1321.00" y="1855.5" ></text>
</g>
<g >
<title>type metadata accessor for TensorFlow._ExecutionContext (2 samples, 0.01%)</title><rect x="391.0" y="1957" width="0.1" height="15.0" fill="rgb(249,162,48)" rx="2" ry="2" />
<text x="393.99" y="1967.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="158.6" y="1765" width="0.1" height="15.0" fill="rgb(253,91,21)" rx="2" ry="2" />
<text x="161.60" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (4 samples, 0.02%)</title><rect x="920.0" y="1637" width="0.3" height="15.0" fill="rgb(242,149,47)" rx="2" ry="2" />
<text x="923.04" y="1647.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (112 samples, 0.43%)</title><rect x="88.3" y="1813" width="7.7" height="15.0" fill="rgb(233,101,42)" rx="2" ry="2" />
<text x="91.29" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (42 samples, 0.16%)</title><rect x="422.2" y="1941" width="2.9" height="15.0" fill="rgb(227,108,32)" rx="2" ry="2" />
<text x="425.20" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorValue (3 samples, 0.01%)</title><rect x="513.7" y="1733" width="0.2" height="15.0" fill="rgb(225,121,14)" rx="2" ry="2" />
<text x="516.68" y="1743.5" ></text>
</g>
<g >
<title>Swift._allocateUninitializedArray&lt;A&gt;(Builtin.Word) -&gt; ([A], Builtin.RawPointer) (2 samples, 0.01%)</title><rect x="452.6" y="1877" width="0.1" height="15.0" fill="rgb(251,159,30)" rx="2" ry="2" />
<text x="455.58" y="1887.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;tensorflow::Fprint128, std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt;, std::allocator&lt;std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;tensorflow::Fprint128&gt;, tensorflow::Fprint128Hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (3 samples, 0.01%)</title><rect x="959.6" y="1797" width="0.2" height="15.0" fill="rgb(241,5,0)" rx="2" ry="2" />
<text x="962.63" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::Allocator::AllocateRaw (3 samples, 0.01%)</title><rect x="1077.4" y="1653" width="0.2" height="15.0" fill="rgb(230,53,4)" rx="2" ry="2" />
<text x="1080.37" y="1663.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (6 samples, 0.02%)</title><rect x="1184.9" y="1845" width="0.4" height="15.0" fill="rgb(243,172,20)" rx="2" ry="2" />
<text x="1187.87" y="1855.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (10 samples, 0.04%)</title><rect x="127.6" y="1797" width="0.7" height="15.0" fill="rgb(238,194,13)" rx="2" ry="2" />
<text x="130.60" y="1807.5" ></text>
</g>
<g >
<title>getCache (4 samples, 0.02%)</title><rect x="1211.8" y="1861" width="0.3" height="15.0" fill="rgb(235,19,22)" rx="2" ry="2" />
<text x="1214.81" y="1871.5" ></text>
</g>
<g >
<title>Swift._copyCollectionToContiguousArray&lt;A where A: Swift.Collection&gt;(A) -&gt; Swift.ContiguousArray&lt;A.Element&gt; (9 samples, 0.03%)</title><rect x="395.7" y="1781" width="0.7" height="15.0" fill="rgb(227,49,17)" rx="2" ry="2" />
<text x="398.73" y="1791.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (5 samples, 0.02%)</title><rect x="285.0" y="1845" width="0.3" height="15.0" fill="rgb(239,179,38)" rx="2" ry="2" />
<text x="288.00" y="1855.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (3 samples, 0.01%)</title><rect x="423.8" y="1845" width="0.3" height="15.0" fill="rgb(245,155,10)" rx="2" ry="2" />
<text x="426.85" y="1855.5" ></text>
</g>
<g >
<title>swift_endAccess (2 samples, 0.01%)</title><rect x="1209.3" y="1797" width="0.1" height="15.0" fill="rgb(247,174,29)" rx="2" ry="2" />
<text x="1212.27" y="1807.5" ></text>
</g>
<g >
<title>TFE_TensorHandleNumDims (5 samples, 0.02%)</title><rect x="40.9" y="1893" width="0.3" height="15.0" fill="rgb(227,184,4)" rx="2" ry="2" />
<text x="43.86" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1573" width="0.9" height="15.0" fill="rgb(254,129,34)" rx="2" ry="2" />
<text x="24.27" y="1583.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (7 samples, 0.03%)</title><rect x="1148.2" y="1925" width="0.4" height="15.0" fill="rgb(243,77,8)" rx="2" ry="2" />
<text x="1151.16" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (140 samples, 0.54%)</title><rect x="360.0" y="1861" width="9.6" height="15.0" fill="rgb(249,122,14)" rx="2" ry="2" />
<text x="362.99" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (79 samples, 0.31%)</title><rect x="1233.5" y="1829" width="5.4" height="15.0" fill="rgb(236,132,49)" rx="2" ry="2" />
<text x="1236.46" y="1839.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (31 samples, 0.12%)</title><rect x="900.9" y="1877" width="2.2" height="15.0" fill="rgb(254,96,18)" rx="2" ry="2" />
<text x="903.93" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (3 samples, 0.01%)</title><rect x="1447.3" y="1813" width="0.2" height="15.0" fill="rgb(226,134,16)" rx="2" ry="2" />
<text x="1450.29" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (139 samples, 0.54%)</title><rect x="107.6" y="1893" width="9.6" height="15.0" fill="rgb(248,23,9)" rx="2" ry="2" />
<text x="110.60" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="385.4" y="1893" width="0.1" height="15.0" fill="rgb(207,190,9)" rx="2" ry="2" />
<text x="388.36" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (3 samples, 0.01%)</title><rect x="291.5" y="1845" width="0.2" height="15.0" fill="rgb(217,70,34)" rx="2" ry="2" />
<text x="294.53" y="1855.5" ></text>
</g>
<g >
<title>__malloc_usable_size (2 samples, 0.01%)</title><rect x="1044.6" y="1861" width="0.1" height="15.0" fill="rgb(248,224,49)" rx="2" ry="2" />
<text x="1047.58" y="1871.5" ></text>
</g>
<g >
<title>TFE_Execute (102 samples, 0.39%)</title><rect x="148.4" y="1861" width="7.0" height="15.0" fill="rgb(222,151,46)" rx="2" ry="2" />
<text x="151.43" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (5 samples, 0.02%)</title><rect x="1493.3" y="1941" width="0.4" height="15.0" fill="rgb(220,135,15)" rx="2" ry="2" />
<text x="1496.34" y="1951.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (4 samples, 0.02%)</title><rect x="956.7" y="1813" width="0.2" height="15.0" fill="rgb(230,210,51)" rx="2" ry="2" />
<text x="959.67" y="1823.5" ></text>
</g>
<g >
<title>reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (33 samples, 0.13%)</title><rect x="1441.6" y="1829" width="2.3" height="15.0" fill="rgb(213,58,24)" rx="2" ry="2" />
<text x="1444.59" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (2 samples, 0.01%)</title><rect x="1434.3" y="1749" width="0.1" height="15.0" fill="rgb(223,129,22)" rx="2" ry="2" />
<text x="1437.30" y="1759.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (5 samples, 0.02%)</title><rect x="67.8" y="1797" width="0.3" height="15.0" fill="rgb(244,25,12)" rx="2" ry="2" />
<text x="70.81" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (2 samples, 0.01%)</title><rect x="155.0" y="1749" width="0.1" height="15.0" fill="rgb(208,219,40)" rx="2" ry="2" />
<text x="157.96" y="1759.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (3 samples, 0.01%)</title><rect x="1165.6" y="1797" width="0.2" height="15.0" fill="rgb(207,33,22)" rx="2" ry="2" />
<text x="1168.62" y="1807.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (3 samples, 0.01%)</title><rect x="629.4" y="1925" width="0.2" height="15.0" fill="rgb(215,98,25)" rx="2" ry="2" />
<text x="632.43" y="1935.5" ></text>
</g>
<g >
<title>swift_endAccess (2 samples, 0.01%)</title><rect x="376.3" y="1781" width="0.1" height="15.0" fill="rgb(242,196,54)" rx="2" ry="2" />
<text x="379.28" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (9 samples, 0.03%)</title><rect x="513.3" y="1749" width="0.6" height="15.0" fill="rgb(221,9,12)" rx="2" ry="2" />
<text x="516.27" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::RefCountIsOne (2 samples, 0.01%)</title><rect x="71.3" y="1717" width="0.1" height="15.0" fill="rgb(226,27,42)" rx="2" ry="2" />
<text x="74.31" y="1727.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (6 samples, 0.02%)</title><rect x="1246.6" y="1877" width="0.4" height="15.0" fill="rgb(233,4,41)" rx="2" ry="2" />
<text x="1249.59" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::RecomputeNumElements (4 samples, 0.02%)</title><rect x="516.8" y="1685" width="0.2" height="15.0" fill="rgb(232,115,37)" rx="2" ry="2" />
<text x="519.77" y="1695.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (2 samples, 0.01%)</title><rect x="1472.2" y="1925" width="0.1" height="15.0" fill="rgb(218,218,14)" rx="2" ry="2" />
<text x="1475.17" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="565" width="0.9" height="15.0" fill="rgb(218,171,32)" rx="2" ry="2" />
<text x="24.27" y="575.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @escaping @callee_guaranteed (@in_guaranteed SwiftFusion.Vector3) -&gt; (@out SwiftFusion.AnyDerivative) to @escaping @callee_guaranteed (@unowned SwiftFusion.Vector3) -&gt; (@out SwiftFusion.AnyDerivative) (4 samples, 0.02%)</title><rect x="1294.3" y="1845" width="0.3" height="15.0" fill="rgb(230,51,54)" rx="2" ry="2" />
<text x="1297.29" y="1855.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="694.5" y="1861" width="0.1" height="15.0" fill="rgb(221,172,33)" rx="2" ry="2" />
<text x="697.45" y="1871.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="935.0" y="1749" width="0.2" height="15.0" fill="rgb(221,13,16)" rx="2" ry="2" />
<text x="937.95" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (5 samples, 0.02%)</title><rect x="1493.3" y="1893" width="0.4" height="15.0" fill="rgb(208,89,19)" rx="2" ry="2" />
<text x="1496.34" y="1903.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="584.1" y="1829" width="0.2" height="15.0" fill="rgb(209,56,11)" rx="2" ry="2" />
<text x="587.13" y="1839.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="288.9" y="1909" width="0.2" height="15.0" fill="rgb(229,114,6)" rx="2" ry="2" />
<text x="291.85" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (8 samples, 0.03%)</title><rect x="72.9" y="1893" width="0.5" height="15.0" fill="rgb(248,120,45)" rx="2" ry="2" />
<text x="75.89" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (3 samples, 0.01%)</title><rect x="363.8" y="1765" width="0.2" height="15.0" fill="rgb(225,39,4)" rx="2" ry="2" />
<text x="366.84" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="148.4" y="1797" width="0.4" height="15.0" fill="rgb(246,178,53)" rx="2" ry="2" />
<text x="151.43" y="1807.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (78 samples, 0.30%)</title><rect x="1101.4" y="1829" width="5.3" height="15.0" fill="rgb(230,99,43)" rx="2" ry="2" />
<text x="1104.36" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (281 samples, 1.09%)</title><rect x="166.9" y="1941" width="19.3" height="15.0" fill="rgb(209,47,31)" rx="2" ry="2" />
<text x="169.92" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1111.3" y="1797" width="0.3" height="15.0" fill="rgb(206,72,6)" rx="2" ry="2" />
<text x="1114.32" y="1807.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="886.4" y="1813" width="0.2" height="15.0" fill="rgb(208,24,2)" rx="2" ry="2" />
<text x="889.36" y="1823.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (13 samples, 0.05%)</title><rect x="898.7" y="1893" width="0.9" height="15.0" fill="rgb(241,43,20)" rx="2" ry="2" />
<text x="901.73" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (3 samples, 0.01%)</title><rect x="949.9" y="1845" width="0.2" height="15.0" fill="rgb(241,57,16)" rx="2" ry="2" />
<text x="952.94" y="1855.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="472.9" y="1733" width="0.2" height="15.0" fill="rgb(225,17,38)" rx="2" ry="2" />
<text x="475.92" y="1743.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (2 samples, 0.01%)</title><rect x="1701.7" y="2021" width="0.2" height="15.0" fill="rgb(246,108,21)" rx="2" ry="2" />
<text x="1704.75" y="2031.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (12 samples, 0.05%)</title><rect x="1146.3" y="1909" width="0.8" height="15.0" fill="rgb(253,137,54)" rx="2" ry="2" />
<text x="1149.31" y="1919.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="537.8" y="1797" width="0.1" height="15.0" fill="rgb(251,12,32)" rx="2" ry="2" />
<text x="540.81" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (24 samples, 0.09%)</title><rect x="818.9" y="1717" width="1.6" height="15.0" fill="rgb(210,104,45)" rx="2" ry="2" />
<text x="821.86" y="1727.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="699.2" y="1813" width="0.3" height="15.0" fill="rgb(217,41,21)" rx="2" ry="2" />
<text x="702.19" y="1823.5" ></text>
</g>
<g >
<title>__malloc_usable_size (2 samples, 0.01%)</title><rect x="708.1" y="1845" width="0.1" height="15.0" fill="rgb(210,220,21)" rx="2" ry="2" />
<text x="711.06" y="1855.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (18 samples, 0.07%)</title><rect x="593.6" y="1893" width="1.3" height="15.0" fill="rgb(215,80,16)" rx="2" ry="2" />
<text x="596.62" y="1903.5" ></text>
</g>
<g >
<title>swift_release (6 samples, 0.02%)</title><rect x="1035.2" y="1765" width="0.4" height="15.0" fill="rgb(251,215,0)" rx="2" ry="2" />
<text x="1038.17" y="1775.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (23 samples, 0.09%)</title><rect x="697.1" y="1765" width="1.6" height="15.0" fill="rgb(211,166,6)" rx="2" ry="2" />
<text x="700.13" y="1775.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (3 samples, 0.01%)</title><rect x="983.1" y="1877" width="0.2" height="15.0" fill="rgb(244,192,15)" rx="2" ry="2" />
<text x="986.06" y="1887.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.SignedInteger in Swift (2 samples, 0.01%)</title><rect x="772.6" y="1877" width="0.1" height="15.0" fill="rgb(254,33,7)" rx="2" ry="2" />
<text x="775.60" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (2 samples, 0.01%)</title><rect x="1027.3" y="1813" width="0.2" height="15.0" fill="rgb(212,101,34)" rx="2" ry="2" />
<text x="1030.33" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (30 samples, 0.12%)</title><rect x="1268.5" y="1925" width="2.1" height="15.0" fill="rgb(237,36,6)" rx="2" ry="2" />
<text x="1271.52" y="1935.5" ></text>
</g>
<g >
<title>memcpy@plt (2 samples, 0.01%)</title><rect x="594.4" y="1845" width="0.1" height="15.0" fill="rgb(221,37,49)" rx="2" ry="2" />
<text x="597.38" y="1855.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (2 samples, 0.01%)</title><rect x="936.9" y="1813" width="0.2" height="15.0" fill="rgb(234,174,15)" rx="2" ry="2" />
<text x="939.94" y="1823.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="132.8" y="1797" width="0.2" height="15.0" fill="rgb(246,3,26)" rx="2" ry="2" />
<text x="135.83" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (22 samples, 0.08%)</title><rect x="443.5" y="1893" width="1.5" height="15.0" fill="rgb(214,112,53)" rx="2" ry="2" />
<text x="446.50" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (32 samples, 0.12%)</title><rect x="779.8" y="1845" width="2.1" height="15.0" fill="rgb(227,83,26)" rx="2" ry="2" />
<text x="782.75" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::ReshapeOp::Compute (3 samples, 0.01%)</title><rect x="1493.5" y="1781" width="0.2" height="15.0" fill="rgb(218,155,2)" rx="2" ry="2" />
<text x="1496.48" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (119 samples, 0.46%)</title><rect x="1231.4" y="1909" width="8.2" height="15.0" fill="rgb(213,84,11)" rx="2" ry="2" />
<text x="1234.40" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.CTensorTensorBuffer.init(owning: Swift.OpaquePointer, count: Swift.Int) -&gt; TensorFlow.CTensorTensorBuffer&lt;A&gt; (16 samples, 0.06%)</title><rect x="46.4" y="1861" width="1.1" height="15.0" fill="rgb(241,75,22)" rx="2" ry="2" />
<text x="49.43" y="1871.5" ></text>
</g>
<g >
<title>TFE_Execute (7 samples, 0.03%)</title><rect x="1264.4" y="1813" width="0.5" height="15.0" fill="rgb(243,145,0)" rx="2" ry="2" />
<text x="1267.39" y="1823.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="78.5" y="1909" width="0.2" height="15.0" fill="rgb(230,229,1)" rx="2" ry="2" />
<text x="81.53" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (2 samples, 0.01%)</title><rect x="1264.9" y="1813" width="0.2" height="15.0" fill="rgb(240,161,7)" rx="2" ry="2" />
<text x="1267.94" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (8 samples, 0.03%)</title><rect x="1262.9" y="1797" width="0.5" height="15.0" fill="rgb(245,184,54)" rx="2" ry="2" />
<text x="1265.88" y="1807.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="289.9" y="1861" width="0.1" height="15.0" fill="rgb(252,104,15)" rx="2" ry="2" />
<text x="292.88" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (15 samples, 0.06%)</title><rect x="955.9" y="1861" width="1.0" height="15.0" fill="rgb(206,14,33)" rx="2" ry="2" />
<text x="958.91" y="1871.5" ></text>
</g>
<g >
<title>swift_isUniquelyReferenced_nonNull_native (8 samples, 0.03%)</title><rect x="1420.2" y="1861" width="0.6" height="15.0" fill="rgb(216,103,15)" rx="2" ry="2" />
<text x="1423.21" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (132 samples, 0.51%)</title><rect x="509.8" y="1845" width="9.1" height="15.0" fill="rgb(241,193,25)" rx="2" ry="2" />
<text x="512.83" y="1855.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="354.3" y="1893" width="0.1" height="15.0" fill="rgb(230,72,29)" rx="2" ry="2" />
<text x="357.29" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.internalConsistencyCheck(_: Swift.Bool, _: Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="1122.9" y="1893" width="0.1" height="15.0" fill="rgb(212,189,53)" rx="2" ry="2" />
<text x="1125.87" y="1903.5" ></text>
</g>
<g >
<title>swift_deallocClassInstance (2 samples, 0.01%)</title><rect x="700.8" y="1861" width="0.1" height="15.0" fill="rgb(226,194,28)" rx="2" ry="2" />
<text x="703.77" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (6 samples, 0.02%)</title><rect x="258.9" y="1813" width="0.4" height="15.0" fill="rgb(206,131,4)" rx="2" ry="2" />
<text x="261.89" y="1823.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (2 samples, 0.01%)</title><rect x="937.1" y="1861" width="0.1" height="15.0" fill="rgb(237,159,25)" rx="2" ry="2" />
<text x="940.08" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.internalConsistencyCheck(_: Swift.Bool, _: Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="1204.8" y="1893" width="0.1" height="15.0" fill="rgb(236,22,1)" rx="2" ry="2" />
<text x="1207.80" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (63 samples, 0.24%)</title><rect x="55.3" y="1925" width="4.3" height="15.0" fill="rgb(209,129,7)" rx="2" ry="2" />
<text x="58.30" y="1935.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="1210.8" y="1861" width="0.3" height="15.0" fill="rgb(206,113,10)" rx="2" ry="2" />
<text x="1213.85" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (12 samples, 0.05%)</title><rect x="271.0" y="1861" width="0.8" height="15.0" fill="rgb(236,160,49)" rx="2" ry="2" />
<text x="273.98" y="1871.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (7 samples, 0.03%)</title><rect x="1313.6" y="1845" width="0.5" height="15.0" fill="rgb(227,40,48)" rx="2" ry="2" />
<text x="1316.61" y="1855.5" ></text>
</g>
<g >
<title>__swift_instantiateGenericMetadata (2 samples, 0.01%)</title><rect x="591.1" y="1829" width="0.1" height="15.0" fill="rgb(226,98,17)" rx="2" ry="2" />
<text x="594.08" y="1839.5" ></text>
</g>
<g >
<title>destroy value witness for SwiftFusion.AnyDerivative (25 samples, 0.10%)</title><rect x="1287.7" y="1861" width="1.7" height="15.0" fill="rgb(208,146,3)" rx="2" ry="2" />
<text x="1290.69" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (74 samples, 0.29%)</title><rect x="500.1" y="1925" width="5.1" height="15.0" fill="rgb(245,33,46)" rx="2" ry="2" />
<text x="503.07" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle._cTensorHandle.getter : Swift.OpaquePointer (5 samples, 0.02%)</title><rect x="857.7" y="1877" width="0.3" height="15.0" fill="rgb(205,216,5)" rx="2" ry="2" />
<text x="860.69" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (11 samples, 0.04%)</title><rect x="1253.3" y="1941" width="0.7" height="15.0" fill="rgb(226,8,45)" rx="2" ry="2" />
<text x="1256.26" y="1951.5" ></text>
</g>
<g >
<title>swift_endAccess (2 samples, 0.01%)</title><rect x="1487.4" y="1893" width="0.1" height="15.0" fill="rgb(217,7,29)" rx="2" ry="2" />
<text x="1490.36" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (6 samples, 0.02%)</title><rect x="601.7" y="1909" width="0.4" height="15.0" fill="rgb(246,212,21)" rx="2" ry="2" />
<text x="604.73" y="1919.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="764.8" y="1829" width="0.1" height="15.0" fill="rgb(220,46,2)" rx="2" ry="2" />
<text x="767.77" y="1839.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.02%)</title><rect x="1478.4" y="1829" width="0.2" height="15.0" fill="rgb(245,151,28)" rx="2" ry="2" />
<text x="1481.36" y="1839.5" ></text>
</g>
<g >
<title>static Swift.Hasher._hash(seed: Swift.Int, _: Swift.UInt64) -&gt; Swift.Int (2 samples, 0.01%)</title><rect x="1452.9" y="1925" width="0.2" height="15.0" fill="rgb(241,53,20)" rx="2" ry="2" />
<text x="1455.93" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (57 samples, 0.22%)</title><rect x="1086.2" y="1909" width="3.9" height="15.0" fill="rgb(241,56,20)" rx="2" ry="2" />
<text x="1089.17" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (9 samples, 0.03%)</title><rect x="452.6" y="1893" width="0.6" height="15.0" fill="rgb(205,114,1)" rx="2" ry="2" />
<text x="455.58" y="1903.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (4 samples, 0.02%)</title><rect x="359.2" y="1845" width="0.3" height="15.0" fill="rgb(250,218,21)" rx="2" ry="2" />
<text x="362.24" y="1855.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (4 samples, 0.02%)</title><rect x="605.3" y="1941" width="0.3" height="15.0" fill="rgb(228,209,51)" rx="2" ry="2" />
<text x="608.30" y="1951.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (38 samples, 0.15%)</title><rect x="102.0" y="1909" width="2.6" height="15.0" fill="rgb(224,79,53)" rx="2" ry="2" />
<text x="104.97" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (8 samples, 0.03%)</title><rect x="1116.8" y="1829" width="0.6" height="15.0" fill="rgb(234,29,31)" rx="2" ry="2" />
<text x="1119.82" y="1839.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (3 samples, 0.01%)</title><rect x="1434.7" y="1861" width="0.2" height="15.0" fill="rgb(226,117,1)" rx="2" ry="2" />
<text x="1437.71" y="1871.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Double&gt; of TensorFlow.matmul&lt;A where A: Swift.Numeric, A: TensorFlow.TensorFlowScalar&gt;(_: TensorFlow.Tensor&lt;A&gt;, transposed: Swift.Bool, _: TensorFlow.Tensor&lt;A&gt;, transposed: Swift.Bool) -&gt; TensorFlow.Tensor&lt;A&gt; (822 samples, 3.17%)</title><rect x="995.2" y="1941" width="56.5" height="15.0" fill="rgb(215,222,11)" rx="2" ry="2" />
<text x="998.16" y="1951.5" >gener..</text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="741" width="0.9" height="15.0" fill="rgb(212,182,27)" rx="2" ry="2" />
<text x="24.27" y="751.5" ></text>
</g>
<g >
<title>TFE_DeleteTensorHandle (3 samples, 0.01%)</title><rect x="1458.9" y="1877" width="0.2" height="15.0" fill="rgb(207,150,41)" rx="2" ry="2" />
<text x="1461.91" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="412.9" y="1925" width="0.2" height="15.0" fill="rgb(251,125,27)" rx="2" ry="2" />
<text x="415.92" y="1935.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (20 samples, 0.08%)</title><rect x="623.7" y="1877" width="1.4" height="15.0" fill="rgb(241,172,28)" rx="2" ry="2" />
<text x="626.72" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::ClearError (4 samples, 0.02%)</title><rect x="1081.4" y="1845" width="0.2" height="15.0" fill="rgb(233,65,11)" rx="2" ry="2" />
<text x="1084.35" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (22 samples, 0.08%)</title><rect x="938.9" y="1861" width="1.5" height="15.0" fill="rgb(248,135,0)" rx="2" ry="2" />
<text x="941.94" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (2 samples, 0.01%)</title><rect x="283.6" y="1781" width="0.1" height="15.0" fill="rgb(243,149,14)" rx="2" ry="2" />
<text x="286.56" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (178 samples, 0.69%)</title><rect x="745.0" y="1733" width="12.2" height="15.0" fill="rgb(252,72,22)" rx="2" ry="2" />
<text x="747.97" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::LocalTensorHandleData::TensorValue (5 samples, 0.02%)</title><rect x="1192.9" y="1749" width="0.4" height="15.0" fill="rgb(217,170,52)" rx="2" ry="2" />
<text x="1195.91" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (4 samples, 0.02%)</title><rect x="1492.6" y="1941" width="0.3" height="15.0" fill="rgb(234,136,4)" rx="2" ry="2" />
<text x="1495.59" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (4 samples, 0.02%)</title><rect x="1454.6" y="1797" width="0.3" height="15.0" fill="rgb(226,18,19)" rx="2" ry="2" />
<text x="1457.58" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (3 samples, 0.01%)</title><rect x="1168.9" y="1877" width="0.2" height="15.0" fill="rgb(226,117,13)" rx="2" ry="2" />
<text x="1171.85" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow._RuntimeConfig.printsDebugLog.unsafeMutableAddressor : Swift.Bool (2 samples, 0.01%)</title><rect x="173.2" y="1909" width="0.2" height="15.0" fill="rgb(243,98,43)" rx="2" ry="2" />
<text x="176.24" y="1919.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (5 samples, 0.02%)</title><rect x="681.2" y="1797" width="0.3" height="15.0" fill="rgb(235,67,1)" rx="2" ry="2" />
<text x="684.19" y="1807.5" ></text>
</g>
<g >
<title>swift::metadataimpl::FixedSizeBufferValueWitnesses&lt;swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;, true, 8ul, 8ul, false&gt;::storeEnumTagSinglePayload (2 samples, 0.01%)</title><rect x="653.6" y="1845" width="0.2" height="15.0" fill="rgb(205,181,0)" rx="2" ry="2" />
<text x="656.62" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (2 samples, 0.01%)</title><rect x="1461.1" y="1925" width="0.1" height="15.0" fill="rgb(248,115,25)" rx="2" ry="2" />
<text x="1464.11" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (11 samples, 0.04%)</title><rect x="1714.7" y="2037" width="0.7" height="15.0" fill="rgb(218,215,10)" rx="2" ry="2" />
<text x="1717.67" y="2047.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::shaped&lt;int, 1ul&gt; (19 samples, 0.07%)</title><rect x="754.6" y="1685" width="1.3" height="15.0" fill="rgb(206,205,7)" rx="2" ry="2" />
<text x="757.59" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (13 samples, 0.05%)</title><rect x="142.7" y="1877" width="0.9" height="15.0" fill="rgb(228,29,46)" rx="2" ry="2" />
<text x="145.73" y="1887.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (6 samples, 0.02%)</title><rect x="511.8" y="1765" width="0.4" height="15.0" fill="rgb(240,154,7)" rx="2" ry="2" />
<text x="514.76" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (3 samples, 0.01%)</title><rect x="1264.7" y="1749" width="0.2" height="15.0" fill="rgb(207,174,5)" rx="2" ry="2" />
<text x="1267.67" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (30 samples, 0.12%)</title><rect x="487.7" y="1909" width="2.1" height="15.0" fill="rgb(211,45,28)" rx="2" ry="2" />
<text x="490.70" y="1919.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (47 samples, 0.18%)</title><rect x="715.8" y="1877" width="3.2" height="15.0" fill="rgb(224,164,5)" rx="2" ry="2" />
<text x="718.76" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (14 samples, 0.05%)</title><rect x="429.4" y="1877" width="1.0" height="15.0" fill="rgb(241,145,12)" rx="2" ry="2" />
<text x="432.41" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::RecomputeNumElements (2 samples, 0.01%)</title><rect x="516.4" y="1701" width="0.2" height="15.0" fill="rgb(248,168,14)" rx="2" ry="2" />
<text x="519.43" y="1711.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;int, std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt;, std::allocator&lt;std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;int&gt;, std::hash&lt;int&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::~_Hashtable (2 samples, 0.01%)</title><rect x="361.6" y="1813" width="0.1" height="15.0" fill="rgb(233,25,12)" rx="2" ry="2" />
<text x="364.57" y="1823.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="155.9" y="1845" width="0.2" height="15.0" fill="rgb(217,64,13)" rx="2" ry="2" />
<text x="158.92" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (12 samples, 0.05%)</title><rect x="1434.1" y="1893" width="0.8" height="15.0" fill="rgb(206,109,44)" rx="2" ry="2" />
<text x="1437.10" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (23 samples, 0.09%)</title><rect x="1445.7" y="1861" width="1.6" height="15.0" fill="rgb(246,104,15)" rx="2" ry="2" />
<text x="1448.71" y="1871.5" ></text>
</g>
<g >
<title>swift_once (3 samples, 0.01%)</title><rect x="417.3" y="1893" width="0.2" height="15.0" fill="rgb(207,47,46)" rx="2" ry="2" />
<text x="420.32" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::NumDims (15 samples, 0.06%)</title><rect x="998.4" y="1845" width="1.0" height="15.0" fill="rgb(223,92,5)" rx="2" ry="2" />
<text x="1001.39" y="1855.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (2 samples, 0.01%)</title><rect x="65.9" y="1845" width="0.1" height="15.0" fill="rgb(246,146,30)" rx="2" ry="2" />
<text x="68.88" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (74 samples, 0.29%)</title><rect x="512.9" y="1765" width="5.0" height="15.0" fill="rgb(247,174,29)" rx="2" ry="2" />
<text x="515.86" y="1775.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (2 samples, 0.01%)</title><rect x="713.3" y="1877" width="0.1" height="15.0" fill="rgb(234,131,36)" rx="2" ry="2" />
<text x="716.28" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CheckType (2 samples, 0.01%)</title><rect x="1198.4" y="1717" width="0.1" height="15.0" fill="rgb(207,227,2)" rx="2" ry="2" />
<text x="1201.41" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (8 samples, 0.03%)</title><rect x="1126.2" y="1909" width="0.5" height="15.0" fill="rgb(235,97,10)" rx="2" ry="2" />
<text x="1129.17" y="1919.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="1049.2" y="1893" width="0.2" height="15.0" fill="rgb(219,57,45)" rx="2" ry="2" />
<text x="1052.19" y="1903.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (3 samples, 0.01%)</title><rect x="160.3" y="1877" width="0.2" height="15.0" fill="rgb(247,218,53)" rx="2" ry="2" />
<text x="163.25" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.makeHostCopy() -&gt; TensorFlow.ShapedArray&lt;A&gt; (132 samples, 0.51%)</title><rect x="44.3" y="1925" width="9.1" height="15.0" fill="rgb(228,19,12)" rx="2" ry="2" />
<text x="47.30" y="1935.5" ></text>
</g>
<g >
<title>__swift_instantiateGenericMetadata (13 samples, 0.05%)</title><rect x="1400.0" y="1813" width="0.9" height="15.0" fill="rgb(217,120,19)" rx="2" ry="2" />
<text x="1403.00" y="1823.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (59 samples, 0.23%)</title><rect x="1484.9" y="1909" width="4.0" height="15.0" fill="rgb(228,103,4)" rx="2" ry="2" />
<text x="1487.89" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::SetDeviceName (2 samples, 0.01%)</title><rect x="1128.6" y="1893" width="0.1" height="15.0" fill="rgb(226,135,10)" rx="2" ry="2" />
<text x="1131.57" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="325" width="0.9" height="15.0" fill="rgb(225,111,9)" rx="2" ry="2" />
<text x="24.27" y="335.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (54 samples, 0.21%)</title><rect x="1207.3" y="1877" width="3.8" height="15.0" fill="rgb(224,212,19)" rx="2" ry="2" />
<text x="1210.34" y="1887.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="547.7" y="1797" width="0.1" height="15.0" fill="rgb(224,6,20)" rx="2" ry="2" />
<text x="550.70" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (55 samples, 0.21%)</title><rect x="600.4" y="1941" width="3.7" height="15.0" fill="rgb(243,151,13)" rx="2" ry="2" />
<text x="603.35" y="1951.5" ></text>
</g>
<g >
<title>type metadata accessor for Swift.Optional (17 samples, 0.07%)</title><rect x="1414.9" y="1813" width="1.1" height="15.0" fill="rgb(221,112,51)" rx="2" ry="2" />
<text x="1417.85" y="1823.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="928.4" y="1829" width="0.1" height="15.0" fill="rgb(222,22,4)" rx="2" ry="2" />
<text x="931.35" y="1839.5" ></text>
</g>
<g >
<title>swift_release@plt (23 samples, 0.09%)</title><rect x="219.2" y="1941" width="1.5" height="15.0" fill="rgb(223,2,27)" rx="2" ry="2" />
<text x="222.16" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (16 samples, 0.06%)</title><rect x="104.8" y="1877" width="1.1" height="15.0" fill="rgb(229,144,3)" rx="2" ry="2" />
<text x="107.78" y="1887.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int) -&gt; (@unowned Swift.Int64, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int) -&gt; (@out Swift.Int64, @error @owned Swift.Error) (5 samples, 0.02%)</title><rect x="89.2" y="1781" width="0.3" height="15.0" fill="rgb(228,142,51)" rx="2" ry="2" />
<text x="92.18" y="1791.5" ></text>
</g>
<g >
<title>swift_retain (6 samples, 0.02%)</title><rect x="994.5" y="1925" width="0.5" height="15.0" fill="rgb(242,35,14)" rx="2" ry="2" />
<text x="997.54" y="1935.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.String._uncheckedFromUTF8(_: Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;, asciiPreScanResult: Swift.Bool) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="1205.1" y="1877" width="0.2" height="15.0" fill="rgb(209,32,40)" rx="2" ry="2" />
<text x="1208.14" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1493" width="0.9" height="15.0" fill="rgb(228,227,37)" rx="2" ry="2" />
<text x="24.27" y="1503.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (3 samples, 0.01%)</title><rect x="542.2" y="1749" width="0.2" height="15.0" fill="rgb(230,22,35)" rx="2" ry="2" />
<text x="545.21" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (12 samples, 0.05%)</title><rect x="508.7" y="1861" width="0.9" height="15.0" fill="rgb(217,43,52)" rx="2" ry="2" />
<text x="511.73" y="1871.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (4 samples, 0.02%)</title><rect x="82.9" y="1845" width="0.3" height="15.0" fill="rgb(219,121,15)" rx="2" ry="2" />
<text x="85.93" y="1855.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="775.9" y="1749" width="0.2" height="15.0" fill="rgb(241,2,36)" rx="2" ry="2" />
<text x="778.90" y="1759.5" ></text>
</g>
<g >
<title>swift_retain (4 samples, 0.02%)</title><rect x="929.2" y="1829" width="0.3" height="15.0" fill="rgb(239,215,39)" rx="2" ry="2" />
<text x="932.25" y="1839.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (25 samples, 0.10%)</title><rect x="1124.2" y="1925" width="1.8" height="15.0" fill="rgb(244,174,25)" rx="2" ry="2" />
<text x="1127.24" y="1935.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (5 samples, 0.02%)</title><rect x="572.6" y="1829" width="0.3" height="15.0" fill="rgb(208,207,31)" rx="2" ry="2" />
<text x="575.59" y="1839.5" ></text>
</g>
<g >
<title>TFE_DeleteTensorHandle (2 samples, 0.01%)</title><rect x="1494.7" y="1893" width="0.1" height="15.0" fill="rgb(244,134,54)" rx="2" ry="2" />
<text x="1497.65" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (5 samples, 0.02%)</title><rect x="135.3" y="1877" width="0.3" height="15.0" fill="rgb(233,193,16)" rx="2" ry="2" />
<text x="138.30" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::SetDeviceName (3 samples, 0.01%)</title><rect x="796.0" y="1845" width="0.2" height="15.0" fill="rgb(212,222,50)" rx="2" ry="2" />
<text x="799.04" y="1855.5" ></text>
</g>
<g >
<title>TFE_Execute (145 samples, 0.56%)</title><rect x="359.6" y="1877" width="10.0" height="15.0" fill="rgb(228,165,2)" rx="2" ry="2" />
<text x="362.65" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (8 samples, 0.03%)</title><rect x="268.2" y="1893" width="0.5" height="15.0" fill="rgb(213,100,31)" rx="2" ry="2" />
<text x="271.16" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (3 samples, 0.01%)</title><rect x="1448.7" y="1797" width="0.2" height="15.0" fill="rgb(220,68,26)" rx="2" ry="2" />
<text x="1451.74" y="1807.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="776.5" y="1733" width="0.2" height="15.0" fill="rgb(217,12,42)" rx="2" ry="2" />
<text x="779.52" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (2 samples, 0.01%)</title><rect x="288.6" y="1893" width="0.1" height="15.0" fill="rgb(223,31,6)" rx="2" ry="2" />
<text x="291.58" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (5 samples, 0.02%)</title><rect x="370.6" y="1861" width="0.3" height="15.0" fill="rgb(253,126,15)" rx="2" ry="2" />
<text x="373.58" y="1871.5" ></text>
</g>
<g >
<title>Swift.Hasher._finalize() -&gt; Swift.Int (2 samples, 0.01%)</title><rect x="1052.1" y="1893" width="0.2" height="15.0" fill="rgb(214,87,22)" rx="2" ry="2" />
<text x="1055.14" y="1903.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (4 samples, 0.02%)</title><rect x="352.9" y="1829" width="0.3" height="15.0" fill="rgb(232,187,14)" rx="2" ry="2" />
<text x="355.91" y="1839.5" ></text>
</g>
<g >
<title>swift_isUniquelyReferenced_nonNull_native (2 samples, 0.01%)</title><rect x="1041.2" y="1877" width="0.2" height="15.0" fill="rgb(247,104,54)" rx="2" ry="2" />
<text x="1044.21" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::OpNameToAttrTypeMap (2 samples, 0.01%)</title><rect x="894.2" y="1845" width="0.1" height="15.0" fill="rgb(209,17,1)" rx="2" ry="2" />
<text x="897.19" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorHandle (2 samples, 0.01%)</title><rect x="1454.7" y="1749" width="0.2" height="15.0" fill="rgb(237,21,31)" rx="2" ry="2" />
<text x="1457.72" y="1759.5" ></text>
</g>
<g >
<title>Eigen::TensorReductionEvaluatorBase&lt;Eigen::TensorReductionOp&lt;Eigen::internal::SumReducer&lt;double&gt;, Eigen::IndexList&lt;Eigen::type2index&lt;0l&gt;&gt; const, Eigen::TensorMap&lt;Eigen::Tensor&lt;double const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const, Eigen::MakePointer&gt; const, Eigen::ThreadPoolDevice&gt;::TensorReductionEvaluatorBase (2 samples, 0.01%)</title><rect x="578.7" y="1701" width="0.1" height="15.0" fill="rgb(225,24,31)" rx="2" ry="2" />
<text x="581.70" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::LocalTensorHandleData::TensorValue (2 samples, 0.01%)</title><rect x="1192.4" y="1765" width="0.2" height="15.0" fill="rgb(235,61,42)" rx="2" ry="2" />
<text x="1195.43" y="1775.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (102 samples, 0.39%)</title><rect x="1215.8" y="1957" width="7.0" height="15.0" fill="rgb(249,46,42)" rx="2" ry="2" />
<text x="1218.80" y="1967.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="136.4" y="1909" width="0.1" height="15.0" fill="rgb(217,228,0)" rx="2" ry="2" />
<text x="139.40" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (13 samples, 0.05%)</title><rect x="247.9" y="1749" width="0.9" height="15.0" fill="rgb(242,161,14)" rx="2" ry="2" />
<text x="250.89" y="1759.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (3 samples, 0.01%)</title><rect x="1146.0" y="1925" width="0.2" height="15.0" fill="rgb(216,165,2)" rx="2" ry="2" />
<text x="1149.03" y="1935.5" ></text>
</g>
<g >
<title>swift_release (8 samples, 0.03%)</title><rect x="1210.3" y="1861" width="0.5" height="15.0" fill="rgb(224,50,28)" rx="2" ry="2" />
<text x="1213.30" y="1871.5" ></text>
</g>
<g >
<title>generic specialization &lt;TensorFlow.Tensor&lt;Swift.Double&gt;&gt; of Swift.Array._createNewBuffer(bufferIsUnique: Swift.Bool, minimumCapacity: Swift.Int, growForAppend: Swift.Bool) -&gt; () (2 samples, 0.01%)</title><rect x="389.1" y="1957" width="0.2" height="15.0" fill="rgb(223,66,22)" rx="2" ry="2" />
<text x="392.14" y="1967.5" ></text>
</g>
<g >
<title>swift_beginAccess (3 samples, 0.01%)</title><rect x="803.0" y="1893" width="0.2" height="15.0" fill="rgb(242,187,16)" rx="2" ry="2" />
<text x="805.98" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (2 samples, 0.01%)</title><rect x="1460.8" y="1845" width="0.2" height="15.0" fill="rgb(232,144,51)" rx="2" ry="2" />
<text x="1463.83" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (81 samples, 0.31%)</title><rect x="1115.9" y="1877" width="5.6" height="15.0" fill="rgb(220,92,11)" rx="2" ry="2" />
<text x="1118.93" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (7 samples, 0.03%)</title><rect x="405.2" y="1877" width="0.4" height="15.0" fill="rgb(214,219,42)" rx="2" ry="2" />
<text x="408.15" y="1887.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (2 samples, 0.01%)</title><rect x="561.6" y="1797" width="0.1" height="15.0" fill="rgb(223,169,12)" rx="2" ry="2" />
<text x="564.59" y="1807.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="370.3" y="1861" width="0.1" height="15.0" fill="rgb(224,4,15)" rx="2" ry="2" />
<text x="373.30" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="724.3" y="1893" width="0.2" height="15.0" fill="rgb(219,48,51)" rx="2" ry="2" />
<text x="727.28" y="1903.5" ></text>
</g>
<g >
<title>__tls_get_addr (4 samples, 0.02%)</title><rect x="750.4" y="1669" width="0.3" height="15.0" fill="rgb(217,79,22)" rx="2" ry="2" />
<text x="753.40" y="1679.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (23 samples, 0.09%)</title><rect x="428.8" y="1893" width="1.6" height="15.0" fill="rgb(242,200,52)" rx="2" ry="2" />
<text x="431.80" y="1903.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="177.9" y="1909" width="0.2" height="15.0" fill="rgb(231,207,42)" rx="2" ry="2" />
<text x="180.92" y="1919.5" ></text>
</g>
<g >
<title>TF_DeleteTensor (2 samples, 0.01%)</title><rect x="128.8" y="1797" width="0.2" height="15.0" fill="rgb(222,87,7)" rx="2" ry="2" />
<text x="131.84" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (67 samples, 0.26%)</title><rect x="558.9" y="1925" width="4.6" height="15.0" fill="rgb(218,74,54)" rx="2" ry="2" />
<text x="561.91" y="1935.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int) -&gt; (@unowned Swift.Int64, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int) -&gt; (@out Swift.Int64, @error @owned Swift.Error) (4 samples, 0.02%)</title><rect x="1442.0" y="1733" width="0.3" height="15.0" fill="rgb(245,23,31)" rx="2" ry="2" />
<text x="1445.00" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (23 samples, 0.09%)</title><rect x="1028.9" y="1877" width="1.6" height="15.0" fill="rgb(223,86,27)" rx="2" ry="2" />
<text x="1031.91" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (7 samples, 0.03%)</title><rect x="1121.8" y="1893" width="0.5" height="15.0" fill="rgb(215,51,26)" rx="2" ry="2" />
<text x="1124.77" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (18 samples, 0.07%)</title><rect x="542.6" y="1781" width="1.3" height="15.0" fill="rgb(233,128,22)" rx="2" ry="2" />
<text x="545.62" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (65 samples, 0.25%)</title><rect x="1476.4" y="1861" width="4.4" height="15.0" fill="rgb(239,55,37)" rx="2" ry="2" />
<text x="1479.37" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (117 samples, 0.45%)</title><rect x="1072.6" y="1829" width="8.1" height="15.0" fill="rgb(205,106,54)" rx="2" ry="2" />
<text x="1075.63" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (30 samples, 0.12%)</title><rect x="1086.4" y="1813" width="2.0" height="15.0" fill="rgb(221,82,13)" rx="2" ry="2" />
<text x="1089.37" y="1823.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.BidirectionalCollection.last.getter : A.Element? (6 samples, 0.02%)</title><rect x="878.4" y="1813" width="0.4" height="15.0" fill="rgb(250,28,13)" rx="2" ry="2" />
<text x="881.38" y="1823.5" ></text>
</g>
<g >
<title>__swift_destroy_boxed_opaque_existential_1 (33 samples, 0.13%)</title><rect x="1282.6" y="1861" width="2.3" height="15.0" fill="rgb(210,46,8)" rx="2" ry="2" />
<text x="1285.61" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow._RawTFEager.sum&lt;A, B where A: Swift.Numeric, A: TensorFlow.TensorFlowScalar, B: TensorFlow.TensorFlowIndex&gt;(_: TensorFlow.Tensor&lt;A&gt;, reductionIndices: TensorFlow.Tensor&lt;B&gt;, keepDims: Swift.Bool) -&gt; TensorFlow.Tensor&lt;A&gt; (3 samples, 0.01%)</title><rect x="599.0" y="1957" width="0.2" height="15.0" fill="rgb(208,43,3)" rx="2" ry="2" />
<text x="601.98" y="1967.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (3 samples, 0.01%)</title><rect x="892.0" y="1845" width="0.2" height="15.0" fill="rgb(233,131,27)" rx="2" ry="2" />
<text x="894.99" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle._tfeTensorHandle.getter : TensorFlow.TFETensorHandle (2 samples, 0.01%)</title><rect x="503.1" y="1845" width="0.1" height="15.0" fill="rgb(239,89,8)" rx="2" ry="2" />
<text x="506.10" y="1855.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::~_Hashtable (6 samples, 0.02%)</title><rect x="665.4" y="1797" width="0.4" height="15.0" fill="rgb(237,63,49)" rx="2" ry="2" />
<text x="668.38" y="1807.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (24 samples, 0.09%)</title><rect x="938.8" y="1877" width="1.6" height="15.0" fill="rgb(219,84,13)" rx="2" ry="2" />
<text x="941.80" y="1887.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (5 samples, 0.02%)</title><rect x="1175.9" y="1861" width="0.3" height="15.0" fill="rgb(231,56,20)" rx="2" ry="2" />
<text x="1178.86" y="1871.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (10 samples, 0.04%)</title><rect x="595.2" y="1893" width="0.7" height="15.0" fill="rgb(218,44,34)" rx="2" ry="2" />
<text x="598.20" y="1903.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.FixedWidthInteger in Swift (2 samples, 0.01%)</title><rect x="467.2" y="1893" width="0.2" height="15.0" fill="rgb(223,68,36)" rx="2" ry="2" />
<text x="470.22" y="1903.5" ></text>
</g>
<g >
<title>l__swift5_reflection_descriptor.173 (3 samples, 0.01%)</title><rect x="1643.0" y="2053" width="0.3" height="15.0" fill="rgb(235,3,8)" rx="2" ry="2" />
<text x="1646.05" y="2063.5" ></text>
</g>
<g >
<title>__pthread_getspecific (2 samples, 0.01%)</title><rect x="1158.1" y="1701" width="0.1" height="15.0" fill="rgb(207,106,46)" rx="2" ry="2" />
<text x="1161.06" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (5 samples, 0.02%)</title><rect x="1491.4" y="1893" width="0.3" height="15.0" fill="rgb(210,196,41)" rx="2" ry="2" />
<text x="1494.35" y="1903.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="695.2" y="1877" width="0.2" height="15.0" fill="rgb(243,114,33)" rx="2" ry="2" />
<text x="698.21" y="1887.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="342.2" y="1877" width="0.1" height="15.0" fill="rgb(210,65,49)" rx="2" ry="2" />
<text x="345.19" y="1887.5" ></text>
</g>
<g >
<title>TF_ManagedBuffer::~TF_ManagedBuffer (2 samples, 0.01%)</title><rect x="415.9" y="1829" width="0.1" height="15.0" fill="rgb(247,142,28)" rx="2" ry="2" />
<text x="418.87" y="1839.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (5 samples, 0.02%)</title><rect x="992.6" y="1909" width="0.4" height="15.0" fill="rgb(207,26,32)" rx="2" ry="2" />
<text x="995.62" y="1919.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (2 samples, 0.01%)</title><rect x="129.9" y="1733" width="0.2" height="15.0" fill="rgb(250,111,52)" rx="2" ry="2" />
<text x="132.94" y="1743.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int) -&gt; (@unowned Swift.Int64, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int) -&gt; (@out Swift.Int64, @error @owned Swift.Error) (4 samples, 0.02%)</title><rect x="1442.0" y="1717" width="0.3" height="15.0" fill="rgb(221,19,39)" rx="2" ry="2" />
<text x="1445.00" y="1727.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (11 samples, 0.04%)</title><rect x="1165.5" y="1829" width="0.7" height="15.0" fill="rgb(250,152,49)" rx="2" ry="2" />
<text x="1168.48" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (3 samples, 0.01%)</title><rect x="1471.6" y="1861" width="0.2" height="15.0" fill="rgb(243,95,8)" rx="2" ry="2" />
<text x="1474.56" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (6 samples, 0.02%)</title><rect x="1005.5" y="1845" width="0.4" height="15.0" fill="rgb(238,99,17)" rx="2" ry="2" />
<text x="1008.47" y="1855.5" ></text>
</g>
<g >
<title>outlined init with copy of SwiftFusion.AnyDerivative (31 samples, 0.12%)</title><rect x="1325.1" y="1845" width="2.1" height="15.0" fill="rgb(228,70,22)" rx="2" ry="2" />
<text x="1328.08" y="1855.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (128 samples, 0.49%)</title><rect x="87.7" y="1829" width="8.8" height="15.0" fill="rgb(220,115,10)" rx="2" ry="2" />
<text x="90.67" y="1839.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (5 samples, 0.02%)</title><rect x="740.4" y="1765" width="0.4" height="15.0" fill="rgb(223,46,41)" rx="2" ry="2" />
<text x="743.43" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (15 samples, 0.06%)</title><rect x="73.6" y="1909" width="1.0" height="15.0" fill="rgb(222,60,28)" rx="2" ry="2" />
<text x="76.58" y="1919.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of Swift.String.init(cString: Swift.UnsafePointer&lt;Swift.Int8&gt;) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="478.8" y="1781" width="0.2" height="15.0" fill="rgb(238,219,37)" rx="2" ry="2" />
<text x="481.83" y="1791.5" ></text>
</g>
<g >
<title>swift_beginAccess (2 samples, 0.01%)</title><rect x="328.0" y="1845" width="0.2" height="15.0" fill="rgb(223,83,54)" rx="2" ry="2" />
<text x="331.03" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="1455.7" y="1909" width="0.2" height="15.0" fill="rgb(211,119,39)" rx="2" ry="2" />
<text x="1458.75" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="857.2" y="1829" width="0.2" height="15.0" fill="rgb(209,145,36)" rx="2" ry="2" />
<text x="860.21" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (51 samples, 0.20%)</title><rect x="719.7" y="1877" width="3.6" height="15.0" fill="rgb(213,175,40)" rx="2" ry="2" />
<text x="722.75" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="901" width="0.9" height="15.0" fill="rgb(253,214,27)" rx="2" ry="2" />
<text x="24.27" y="911.5" ></text>
</g>
<g >
<title>tensorflow::allocate_tensor (2 samples, 0.01%)</title><rect x="474.8" y="1781" width="0.1" height="15.0" fill="rgb(229,187,22)" rx="2" ry="2" />
<text x="477.78" y="1791.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (10 samples, 0.04%)</title><rect x="1102.2" y="1797" width="0.7" height="15.0" fill="rgb(218,97,46)" rx="2" ry="2" />
<text x="1105.25" y="1807.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (22 samples, 0.08%)</title><rect x="909.9" y="1861" width="1.5" height="15.0" fill="rgb(216,11,42)" rx="2" ry="2" />
<text x="912.93" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (2 samples, 0.01%)</title><rect x="1264.3" y="1813" width="0.1" height="15.0" fill="rgb(253,70,28)" rx="2" ry="2" />
<text x="1267.25" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (27 samples, 0.10%)</title><rect x="1244.0" y="1829" width="1.8" height="15.0" fill="rgb(241,83,1)" rx="2" ry="2" />
<text x="1246.98" y="1839.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (4 samples, 0.02%)</title><rect x="330.4" y="1861" width="0.3" height="15.0" fill="rgb(214,90,52)" rx="2" ry="2" />
<text x="333.44" y="1871.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="971.9" y="1861" width="0.2" height="15.0" fill="rgb(239,128,17)" rx="2" ry="2" />
<text x="974.93" y="1871.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::initializeWithCopy (3 samples, 0.01%)</title><rect x="1247.2" y="1925" width="0.2" height="15.0" fill="rgb(236,228,41)" rx="2" ry="2" />
<text x="1250.21" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (2 samples, 0.01%)</title><rect x="517.5" y="1733" width="0.1" height="15.0" fill="rgb(213,3,41)" rx="2" ry="2" />
<text x="520.46" y="1743.5" ></text>
</g>
<g >
<title>protocol witness for Swift.BinaryInteger.bitWidth.getter : Swift.Int in conformance Swift.Int : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="974.7" y="1877" width="0.2" height="15.0" fill="rgb(248,94,10)" rx="2" ry="2" />
<text x="977.75" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (3 samples, 0.01%)</title><rect x="245.5" y="1797" width="0.2" height="15.0" fill="rgb(207,34,10)" rx="2" ry="2" />
<text x="248.48" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (43 samples, 0.17%)</title><rect x="142.4" y="1925" width="2.9" height="15.0" fill="rgb(208,144,2)" rx="2" ry="2" />
<text x="145.38" y="1935.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="644.0" y="1749" width="0.1" height="15.0" fill="rgb(224,97,49)" rx="2" ry="2" />
<text x="647.00" y="1759.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="447.4" y="1909" width="0.2" height="15.0" fill="rgb(230,103,39)" rx="2" ry="2" />
<text x="450.42" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (5 samples, 0.02%)</title><rect x="1455.6" y="1925" width="0.4" height="15.0" fill="rgb(231,105,48)" rx="2" ry="2" />
<text x="1458.61" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (13 samples, 0.05%)</title><rect x="1439.8" y="1893" width="0.9" height="15.0" fill="rgb(215,189,43)" rx="2" ry="2" />
<text x="1442.80" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (9 samples, 0.03%)</title><rect x="1027.0" y="1845" width="0.6" height="15.0" fill="rgb(206,25,43)" rx="2" ry="2" />
<text x="1029.99" y="1855.5" ></text>
</g>
<g >
<title>TF_ManagedBuffer::~TF_ManagedBuffer (5 samples, 0.02%)</title><rect x="241.5" y="1797" width="0.3" height="15.0" fill="rgb(227,131,1)" rx="2" ry="2" />
<text x="244.50" y="1807.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (25 samples, 0.10%)</title><rect x="255.4" y="1861" width="1.7" height="15.0" fill="rgb(221,222,15)" rx="2" ry="2" />
<text x="258.38" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (422 samples, 1.63%)</title><rect x="425.2" y="1957" width="29.0" height="15.0" fill="rgb(218,18,4)" rx="2" ry="2" />
<text x="428.15" y="1967.5" >pr..</text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (35 samples, 0.14%)</title><rect x="933.0" y="1813" width="2.4" height="15.0" fill="rgb(234,222,3)" rx="2" ry="2" />
<text x="936.03" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (3 samples, 0.01%)</title><rect x="118.3" y="1765" width="0.2" height="15.0" fill="rgb(224,22,48)" rx="2" ry="2" />
<text x="121.32" y="1775.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (3 samples, 0.01%)</title><rect x="933.4" y="1765" width="0.2" height="15.0" fill="rgb(216,161,36)" rx="2" ry="2" />
<text x="936.37" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::cpu_allocator (4 samples, 0.02%)</title><rect x="90.1" y="1781" width="0.2" height="15.0" fill="rgb(230,105,4)" rx="2" ry="2" />
<text x="93.07" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="981" width="0.9" height="15.0" fill="rgb(232,103,39)" rx="2" ry="2" />
<text x="24.27" y="991.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorHandle (2 samples, 0.01%)</title><rect x="542.3" y="1717" width="0.1" height="15.0" fill="rgb(254,52,33)" rx="2" ry="2" />
<text x="545.27" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::input (2 samples, 0.01%)</title><rect x="875.1" y="1685" width="0.1" height="15.0" fill="rgb(208,187,48)" rx="2" ry="2" />
<text x="878.08" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (19 samples, 0.07%)</title><rect x="1131.0" y="1909" width="1.3" height="15.0" fill="rgb(205,11,52)" rx="2" ry="2" />
<text x="1133.98" y="1919.5" ></text>
</g>
<g >
<title>Swift.Array.count.getter : Swift.Int (2 samples, 0.01%)</title><rect x="670.3" y="1813" width="0.1" height="15.0" fill="rgb(233,180,1)" rx="2" ry="2" />
<text x="673.26" y="1823.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (2 samples, 0.01%)</title><rect x="727.7" y="1877" width="0.2" height="15.0" fill="rgb(242,200,26)" rx="2" ry="2" />
<text x="730.72" y="1887.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (33 samples, 0.13%)</title><rect x="1441.6" y="1845" width="2.3" height="15.0" fill="rgb(239,18,41)" rx="2" ry="2" />
<text x="1444.59" y="1855.5" ></text>
</g>
<g >
<title>swift_release (8 samples, 0.03%)</title><rect x="650.5" y="1797" width="0.6" height="15.0" fill="rgb(233,84,50)" rx="2" ry="2" />
<text x="653.53" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input_to_output_with_shape (9 samples, 0.03%)</title><rect x="753.2" y="1669" width="0.6" height="15.0" fill="rgb(217,158,4)" rx="2" ry="2" />
<text x="756.22" y="1679.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (2 samples, 0.01%)</title><rect x="692.5" y="1829" width="0.2" height="15.0" fill="rgb(215,138,28)" rx="2" ry="2" />
<text x="695.53" y="1839.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (8 samples, 0.03%)</title><rect x="591.1" y="1861" width="0.5" height="15.0" fill="rgb(239,74,4)" rx="2" ry="2" />
<text x="594.08" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (16 samples, 0.06%)</title><rect x="520.5" y="1877" width="1.1" height="15.0" fill="rgb(225,118,14)" rx="2" ry="2" />
<text x="523.49" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (3 samples, 0.01%)</title><rect x="392.7" y="1893" width="0.2" height="15.0" fill="rgb(224,81,34)" rx="2" ry="2" />
<text x="395.71" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (6 samples, 0.02%)</title><rect x="1454.4" y="1829" width="0.5" height="15.0" fill="rgb(214,57,5)" rx="2" ry="2" />
<text x="1457.44" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::NodeDef (4 samples, 0.02%)</title><rect x="1220.6" y="1893" width="0.3" height="15.0" fill="rgb(237,23,31)" rx="2" ry="2" />
<text x="1223.61" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for Swift.BinaryInteger.init&lt;A where A1: Swift.BinaryInteger&gt;(truncatingIfNeeded: A1) -&gt; A in conformance Swift.Int : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="297.6" y="1845" width="0.1" height="15.0" fill="rgb(221,124,48)" rx="2" ry="2" />
<text x="300.58" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1637" width="0.9" height="15.0" fill="rgb(216,160,27)" rx="2" ry="2" />
<text x="24.27" y="1647.5" ></text>
</g>
<g >
<title>tensorflow::CancellationManager::CancellationManager (2 samples, 0.01%)</title><rect x="514.8" y="1717" width="0.1" height="15.0" fill="rgb(246,24,43)" rx="2" ry="2" />
<text x="517.78" y="1727.5" ></text>
</g>
<g >
<title>static TensorFlow.ThreadLocalStorage.get(for: TensorFlow.ThreadLocalStorage.Key) -&gt; Swift.UnsafeMutableRawPointer? (3 samples, 0.01%)</title><rect x="624.7" y="1861" width="0.2" height="15.0" fill="rgb(252,130,43)" rx="2" ry="2" />
<text x="627.69" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (136 samples, 0.53%)</title><rect x="360.2" y="1845" width="9.3" height="15.0" fill="rgb(205,51,30)" rx="2" ry="2" />
<text x="363.20" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (4 samples, 0.02%)</title><rect x="1125.4" y="1893" width="0.3" height="15.0" fill="rgb(208,193,28)" rx="2" ry="2" />
<text x="1128.41" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (16 samples, 0.06%)</title><rect x="85.3" y="1877" width="1.1" height="15.0" fill="rgb(207,57,31)" rx="2" ry="2" />
<text x="88.33" y="1887.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (2 samples, 0.01%)</title><rect x="1044.7" y="1861" width="0.2" height="15.0" fill="rgb(236,92,8)" rx="2" ry="2" />
<text x="1047.72" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::shaped&lt;double, 1ul&gt; (3 samples, 0.01%)</title><rect x="1237.4" y="1733" width="0.3" height="15.0" fill="rgb(205,68,13)" rx="2" ry="2" />
<text x="1240.45" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (83 samples, 0.32%)</title><rect x="512.4" y="1797" width="5.7" height="15.0" fill="rgb(224,55,52)" rx="2" ry="2" />
<text x="515.38" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (52 samples, 0.20%)</title><rect x="600.4" y="1925" width="3.6" height="15.0" fill="rgb(235,145,3)" rx="2" ry="2" />
<text x="603.42" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (38 samples, 0.15%)</title><rect x="1436.2" y="1877" width="2.6" height="15.0" fill="rgb(212,152,50)" rx="2" ry="2" />
<text x="1439.16" y="1887.5" ></text>
</g>
<g >
<title>swift_retain (4 samples, 0.02%)</title><rect x="1166.8" y="1829" width="0.3" height="15.0" fill="rgb(239,135,54)" rx="2" ry="2" />
<text x="1169.79" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (9 samples, 0.03%)</title><rect x="1184.7" y="1877" width="0.6" height="15.0" fill="rgb(243,85,51)" rx="2" ry="2" />
<text x="1187.73" y="1887.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (2 samples, 0.01%)</title><rect x="161.6" y="1893" width="0.2" height="15.0" fill="rgb(234,14,44)" rx="2" ry="2" />
<text x="164.63" y="1903.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (14 samples, 0.05%)</title><rect x="1090.8" y="1909" width="1.0" height="15.0" fill="rgb(244,170,35)" rx="2" ry="2" />
<text x="1093.84" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::TF_TensorToTensor (2 samples, 0.01%)</title><rect x="541.9" y="1765" width="0.2" height="15.0" fill="rgb(215,107,35)" rx="2" ry="2" />
<text x="544.93" y="1775.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (3 samples, 0.01%)</title><rect x="386.8" y="1909" width="0.2" height="15.0" fill="rgb(254,198,12)" rx="2" ry="2" />
<text x="389.80" y="1919.5" ></text>
</g>
<g >
<title>TF_AllocateTensor (6 samples, 0.02%)</title><rect x="246.4" y="1781" width="0.5" height="15.0" fill="rgb(237,163,11)" rx="2" ry="2" />
<text x="249.44" y="1791.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (2 samples, 0.01%)</title><rect x="102.2" y="1877" width="0.1" height="15.0" fill="rgb(220,221,14)" rx="2" ry="2" />
<text x="105.17" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1221" width="0.9" height="15.0" fill="rgb(209,68,34)" rx="2" ry="2" />
<text x="24.27" y="1231.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (10 samples, 0.04%)</title><rect x="147.5" y="1861" width="0.7" height="15.0" fill="rgb(243,146,24)" rx="2" ry="2" />
<text x="150.54" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (131 samples, 0.51%)</title><rect x="867.6" y="1797" width="9.0" height="15.0" fill="rgb(223,94,8)" rx="2" ry="2" />
<text x="870.59" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (5 samples, 0.02%)</title><rect x="227.8" y="1861" width="0.4" height="15.0" fill="rgb(230,23,30)" rx="2" ry="2" />
<text x="230.82" y="1871.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (2 samples, 0.01%)</title><rect x="1464.8" y="1829" width="0.2" height="15.0" fill="rgb(239,89,42)" rx="2" ry="2" />
<text x="1467.82" y="1839.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (2 samples, 0.01%)</title><rect x="251.0" y="1797" width="0.2" height="15.0" fill="rgb(225,99,8)" rx="2" ry="2" />
<text x="254.05" y="1807.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1067.3" y="1893" width="0.2" height="15.0" fill="rgb(228,140,4)" rx="2" ry="2" />
<text x="1070.33" y="1903.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="698.0" y="1733" width="0.2" height="15.0" fill="rgb(236,99,0)" rx="2" ry="2" />
<text x="701.03" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.init(arrayLiteral: Swift.Int...) -&gt; TensorFlow.TensorShape (6 samples, 0.02%)</title><rect x="136.1" y="1925" width="0.4" height="15.0" fill="rgb(221,82,6)" rx="2" ry="2" />
<text x="139.13" y="1935.5" ></text>
</g>
<g >
<title>std::_Function_handler&lt;void (3 samples, 0.01%)</title><rect x="1195.1" y="1701" width="0.2" height="15.0" fill="rgb(249,209,48)" rx="2" ry="2" />
<text x="1198.11" y="1711.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.rank.getter : Swift.Int (134 samples, 0.52%)</title><rect x="295.7" y="1925" width="9.2" height="15.0" fill="rgb(211,64,42)" rx="2" ry="2" />
<text x="298.66" y="1935.5" ></text>
</g>
<g >
<title>swift_endAccess (2 samples, 0.01%)</title><rect x="589.9" y="1765" width="0.1" height="15.0" fill="rgb(205,64,18)" rx="2" ry="2" />
<text x="592.91" y="1775.5" ></text>
</g>
<g >
<title>swift_retain (4 samples, 0.02%)</title><rect x="59.3" y="1893" width="0.3" height="15.0" fill="rgb(205,223,52)" rx="2" ry="2" />
<text x="62.28" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (8 samples, 0.03%)</title><rect x="1441.0" y="1893" width="0.5" height="15.0" fill="rgb(230,64,32)" rx="2" ry="2" />
<text x="1443.97" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (50 samples, 0.19%)</title><rect x="1234.9" y="1765" width="3.4" height="15.0" fill="rgb(247,145,26)" rx="2" ry="2" />
<text x="1237.91" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_: A, deviceAndPrecisionLike: TensorFlow.Tensor&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="164.5" y="1973" width="0.2" height="15.0" fill="rgb(240,98,14)" rx="2" ry="2" />
<text x="167.51" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="1789.7" y="2053" width="0.3" height="15.0" fill="rgb(222,51,11)" rx="2" ry="2" />
<text x="1792.66" y="2063.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (5 samples, 0.02%)</title><rect x="1119.0" y="1717" width="0.4" height="15.0" fill="rgb(253,85,26)" rx="2" ry="2" />
<text x="1122.02" y="1727.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="197.7" y="1893" width="0.1" height="15.0" fill="rgb(235,73,13)" rx="2" ry="2" />
<text x="200.71" y="1903.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="379.5" y="1925" width="0.2" height="15.0" fill="rgb(247,58,41)" rx="2" ry="2" />
<text x="382.51" y="1935.5" ></text>
</g>
<g >
<title>outlined init with copy of SwiftFusion._AD__$s11SwiftFusion4Rot2V1moiyA2C_ACtFZ_bb0__PB__src_0_wrt_0_1 (2 samples, 0.01%)</title><rect x="1292.9" y="1813" width="0.2" height="15.0" fill="rgb(207,96,28)" rx="2" ry="2" />
<text x="1295.92" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (16 samples, 0.06%)</title><rect x="1251.4" y="1877" width="1.1" height="15.0" fill="rgb(251,49,32)" rx="2" ry="2" />
<text x="1254.40" y="1887.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (3 samples, 0.01%)</title><rect x="1248.0" y="1909" width="0.2" height="15.0" fill="rgb(246,207,43)" rx="2" ry="2" />
<text x="1251.03" y="1919.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (3 samples, 0.01%)</title><rect x="1001.1" y="1845" width="0.2" height="15.0" fill="rgb(223,83,41)" rx="2" ry="2" />
<text x="1004.14" y="1855.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_unlock (2 samples, 0.01%)</title><rect x="432.5" y="1829" width="0.1" height="15.0" fill="rgb(207,175,12)" rx="2" ry="2" />
<text x="435.51" y="1839.5" ></text>
</g>
<g >
<title>swift_retain (8 samples, 0.03%)</title><rect x="847.2" y="1813" width="0.5" height="15.0" fill="rgb(231,223,5)" rx="2" ry="2" />
<text x="850.18" y="1823.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1145.7" y="1941" width="0.1" height="15.0" fill="rgb(227,13,26)" rx="2" ry="2" />
<text x="1148.69" y="1951.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (5 samples, 0.02%)</title><rect x="653.8" y="1845" width="0.3" height="15.0" fill="rgb(226,40,24)" rx="2" ry="2" />
<text x="656.76" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (3 samples, 0.01%)</title><rect x="334.4" y="1781" width="0.2" height="15.0" fill="rgb(205,89,54)" rx="2" ry="2" />
<text x="337.35" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (2 samples, 0.01%)</title><rect x="500.8" y="1861" width="0.2" height="15.0" fill="rgb(236,45,51)" rx="2" ry="2" />
<text x="503.83" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow._RawTFEager.sum&lt;A where A: Swift.Numeric, A: TensorFlow.TensorFlowScalar&gt;(_: TensorFlow.Tensor&lt;A&gt;, reductionIndices: [Swift.Int64], keepDims: Swift.Bool) -&gt; TensorFlow.Tensor&lt;A&gt; (595 samples, 2.30%)</title><rect x="122.7" y="1957" width="40.9" height="15.0" fill="rgb(216,29,49)" rx="2" ry="2" />
<text x="125.72" y="1967.5" >sta..</text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (9 samples, 0.03%)</title><rect x="139.9" y="1813" width="0.6" height="15.0" fill="rgb(237,226,1)" rx="2" ry="2" />
<text x="142.91" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (2 samples, 0.01%)</title><rect x="1270.3" y="1813" width="0.1" height="15.0" fill="rgb(207,50,42)" rx="2" ry="2" />
<text x="1273.30" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input (4 samples, 0.02%)</title><rect x="753.6" y="1653" width="0.2" height="15.0" fill="rgb(217,5,33)" rx="2" ry="2" />
<text x="756.56" y="1663.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (11 samples, 0.04%)</title><rect x="869.0" y="1781" width="0.8" height="15.0" fill="rgb(213,144,18)" rx="2" ry="2" />
<text x="872.04" y="1791.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (6 samples, 0.02%)</title><rect x="1471.8" y="1957" width="0.4" height="15.0" fill="rgb(254,77,13)" rx="2" ry="2" />
<text x="1474.76" y="1967.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (13 samples, 0.05%)</title><rect x="1439.8" y="1909" width="0.9" height="15.0" fill="rgb(243,35,32)" rx="2" ry="2" />
<text x="1442.80" y="1919.5" ></text>
</g>
<g >
<title>swift_getAssociatedConformanceWitness (2 samples, 0.01%)</title><rect x="546.6" y="1733" width="0.1" height="15.0" fill="rgb(237,31,50)" rx="2" ry="2" />
<text x="549.61" y="1743.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (12 samples, 0.05%)</title><rect x="1066.3" y="1909" width="0.8" height="15.0" fill="rgb(245,175,3)" rx="2" ry="2" />
<text x="1069.30" y="1919.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (16 samples, 0.06%)</title><rect x="181.0" y="1909" width="1.1" height="15.0" fill="rgb(217,212,32)" rx="2" ry="2" />
<text x="184.01" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (109 samples, 0.42%)</title><rect x="318.5" y="1797" width="7.5" height="15.0" fill="rgb(246,214,3)" rx="2" ry="2" />
<text x="321.48" y="1807.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;tensorflow::Fprint128, std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt;, std::allocator&lt;std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;tensorflow::Fprint128&gt;, tensorflow::Fprint128Hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (6 samples, 0.02%)</title><rect x="683.0" y="1781" width="0.4" height="15.0" fill="rgb(208,30,17)" rx="2" ry="2" />
<text x="685.97" y="1791.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (5 samples, 0.02%)</title><rect x="914.1" y="1765" width="0.3" height="15.0" fill="rgb(248,126,21)" rx="2" ry="2" />
<text x="917.06" y="1775.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="381.6" y="1925" width="0.3" height="15.0" fill="rgb(238,195,2)" rx="2" ry="2" />
<text x="384.64" y="1935.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (8 samples, 0.03%)</title><rect x="472.4" y="1733" width="0.5" height="15.0" fill="rgb(217,226,17)" rx="2" ry="2" />
<text x="475.37" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::OutputDevice (2 samples, 0.01%)</title><rect x="441.6" y="1797" width="0.2" height="15.0" fill="rgb(244,185,3)" rx="2" ry="2" />
<text x="444.65" y="1807.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (3 samples, 0.01%)</title><rect x="147.9" y="1829" width="0.2" height="15.0" fill="rgb(251,42,1)" rx="2" ry="2" />
<text x="150.88" y="1839.5" ></text>
</g>
<g >
<title>__swift_instantiateGenericMetadata (14 samples, 0.05%)</title><rect x="1350.8" y="1797" width="1.0" height="15.0" fill="rgb(248,66,18)" rx="2" ry="2" />
<text x="1353.79" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input (4 samples, 0.02%)</title><rect x="440.5" y="1717" width="0.3" height="15.0" fill="rgb(221,67,48)" rx="2" ry="2" />
<text x="443.55" y="1727.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () (3 samples, 0.01%)</title><rect x="1270.6" y="1909" width="0.2" height="15.0" fill="rgb(217,71,5)" rx="2" ry="2" />
<text x="1273.58" y="1919.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (2 samples, 0.01%)</title><rect x="268.4" y="1877" width="0.2" height="15.0" fill="rgb(250,127,27)" rx="2" ry="2" />
<text x="271.44" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (2 samples, 0.01%)</title><rect x="1494.5" y="1909" width="0.2" height="15.0" fill="rgb(241,194,39)" rx="2" ry="2" />
<text x="1497.51" y="1919.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (6 samples, 0.02%)</title><rect x="993.3" y="1909" width="0.4" height="15.0" fill="rgb(240,29,18)" rx="2" ry="2" />
<text x="996.31" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::GetCachedKernel (3 samples, 0.01%)</title><rect x="111.5" y="1797" width="0.2" height="15.0" fill="rgb(220,201,22)" rx="2" ry="2" />
<text x="114.45" y="1807.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="1471.6" y="1813" width="0.2" height="15.0" fill="rgb(213,74,38)" rx="2" ry="2" />
<text x="1474.62" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="277" width="0.9" height="15.0" fill="rgb(240,95,9)" rx="2" ry="2" />
<text x="24.27" y="287.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (3 samples, 0.01%)</title><rect x="160.3" y="1893" width="0.2" height="15.0" fill="rgb(216,121,26)" rx="2" ry="2" />
<text x="163.25" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::gtl::FindPtrOrNull&lt;tensorflow::gtl::FlatMap&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::unordered_map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, unsigned int, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned int&gt; &gt; &gt; const*, tensorflow::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, void&gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt; &gt; (4 samples, 0.02%)</title><rect x="102.9" y="1829" width="0.2" height="15.0" fill="rgb(220,172,39)" rx="2" ry="2" />
<text x="105.86" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::Global (2 samples, 0.01%)</title><rect x="496.9" y="1845" width="0.1" height="15.0" fill="rgb(250,57,11)" rx="2" ry="2" />
<text x="499.91" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (24 samples, 0.09%)</title><rect x="1449.0" y="1829" width="1.7" height="15.0" fill="rgb(226,27,30)" rx="2" ry="2" />
<text x="1452.01" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (3 samples, 0.01%)</title><rect x="1124.7" y="1797" width="0.2" height="15.0" fill="rgb(230,214,25)" rx="2" ry="2" />
<text x="1127.66" y="1807.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="343.3" y="1813" width="0.1" height="15.0" fill="rgb(207,176,3)" rx="2" ry="2" />
<text x="346.29" y="1823.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="376.8" y="1813" width="0.1" height="15.0" fill="rgb(247,60,37)" rx="2" ry="2" />
<text x="379.76" y="1823.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (16 samples, 0.06%)</title><rect x="476.3" y="1733" width="1.1" height="15.0" fill="rgb(253,197,36)" rx="2" ry="2" />
<text x="479.29" y="1743.5" ></text>
</g>
<g >
<title>__malloc_usable_size (2 samples, 0.01%)</title><rect x="421.0" y="1941" width="0.2" height="15.0" fill="rgb(222,22,22)" rx="2" ry="2" />
<text x="424.03" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (660 samples, 2.55%)</title><rect x="805.4" y="1893" width="45.4" height="15.0" fill="rgb(237,27,10)" rx="2" ry="2" />
<text x="808.39" y="1903.5" >Tens..</text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (2 samples, 0.01%)</title><rect x="1492.6" y="1861" width="0.1" height="15.0" fill="rgb(225,183,29)" rx="2" ry="2" />
<text x="1495.59" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (59 samples, 0.23%)</title><rect x="333.8" y="1861" width="4.1" height="15.0" fill="rgb(250,218,13)" rx="2" ry="2" />
<text x="336.81" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::input (2 samples, 0.01%)</title><rect x="1139.2" y="1733" width="0.1" height="15.0" fill="rgb(245,49,2)" rx="2" ry="2" />
<text x="1142.16" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (45 samples, 0.17%)</title><rect x="275.0" y="1749" width="3.1" height="15.0" fill="rgb(231,27,50)" rx="2" ry="2" />
<text x="277.97" y="1759.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (5 samples, 0.02%)</title><rect x="89.2" y="1733" width="0.3" height="15.0" fill="rgb(249,54,10)" rx="2" ry="2" />
<text x="92.18" y="1743.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="770.4" y="1861" width="0.1" height="15.0" fill="rgb(244,182,10)" rx="2" ry="2" />
<text x="773.40" y="1871.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1165.3" y="1813" width="0.2" height="15.0" fill="rgb(216,215,51)" rx="2" ry="2" />
<text x="1168.35" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for Swift.ExpressibleByIntegerLiteral.init(integerLiteral: A.IntegerLiteralType) -&gt; A in conformance Swift.Int32 : Swift.ExpressibleByIntegerLiteral in Swift (2 samples, 0.01%)</title><rect x="1162.9" y="1797" width="0.2" height="15.0" fill="rgb(248,7,38)" rx="2" ry="2" />
<text x="1165.94" y="1807.5" ></text>
</g>
<g >
<title>swift_retain@plt (2 samples, 0.01%)</title><rect x="826.6" y="1685" width="0.2" height="15.0" fill="rgb(250,112,10)" rx="2" ry="2" />
<text x="829.63" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CheckTypeAndIsAligned (5 samples, 0.02%)</title><rect x="322.6" y="1669" width="0.3" height="15.0" fill="rgb(234,115,24)" rx="2" ry="2" />
<text x="325.60" y="1679.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::Buffer&lt;double&gt;::~Buffer (2 samples, 0.01%)</title><rect x="223.1" y="1813" width="0.2" height="15.0" fill="rgb(252,127,54)" rx="2" ry="2" />
<text x="226.14" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (43 samples, 0.17%)</title><rect x="716.0" y="1861" width="3.0" height="15.0" fill="rgb(234,150,50)" rx="2" ry="2" />
<text x="719.03" y="1871.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.String._uncheckedFromUTF8(_: Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;, asciiPreScanResult: Swift.Bool) -&gt; Swift.String (3 samples, 0.01%)</title><rect x="767.8" y="1829" width="0.2" height="15.0" fill="rgb(230,80,53)" rx="2" ry="2" />
<text x="770.79" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::TensorInterface::ToTensor (3 samples, 0.01%)</title><rect x="475.3" y="1749" width="0.2" height="15.0" fill="rgb(234,110,47)" rx="2" ry="2" />
<text x="478.26" y="1759.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (9 samples, 0.03%)</title><rect x="1037.1" y="1861" width="0.6" height="15.0" fill="rgb(250,116,29)" rx="2" ry="2" />
<text x="1040.09" y="1871.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Int&gt; of Swift.__RawDictionaryStorage.find&lt;A where A: Swift.Hashable&gt;(A) -&gt; (bucket: Swift._HashTable.Bucket, found: Swift.Bool) (3 samples, 0.01%)</title><rect x="350.8" y="1941" width="0.2" height="15.0" fill="rgb(228,217,40)" rx="2" ry="2" />
<text x="353.78" y="1951.5" ></text>
</g>
<g >
<title>swift_once (2 samples, 0.01%)</title><rect x="461.0" y="1925" width="0.1" height="15.0" fill="rgb(243,112,44)" rx="2" ry="2" />
<text x="463.96" y="1935.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (4 samples, 0.02%)</title><rect x="57.4" y="1909" width="0.3" height="15.0" fill="rgb(251,196,9)" rx="2" ry="2" />
<text x="60.43" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CopyFromInternal (2 samples, 0.01%)</title><rect x="818.0" y="1717" width="0.2" height="15.0" fill="rgb(230,58,5)" rx="2" ry="2" />
<text x="821.03" y="1727.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (11 samples, 0.04%)</title><rect x="1044.4" y="1877" width="0.8" height="15.0" fill="rgb(245,107,22)" rx="2" ry="2" />
<text x="1047.44" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (3 samples, 0.01%)</title><rect x="635.1" y="1765" width="0.2" height="15.0" fill="rgb(235,40,5)" rx="2" ry="2" />
<text x="638.07" y="1775.5" ></text>
</g>
<g >
<title>Eigen::ThreadPoolDevice::parallelFor (4 samples, 0.02%)</title><rect x="365.6" y="1701" width="0.2" height="15.0" fill="rgb(218,74,50)" rx="2" ry="2" />
<text x="368.56" y="1711.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (7 samples, 0.03%)</title><rect x="559.1" y="1877" width="0.5" height="15.0" fill="rgb(245,94,15)" rx="2" ry="2" />
<text x="562.11" y="1887.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.UnsafePointer&lt;Swift.Int8&gt; and conformance Swift.UnsafePointer&lt;A&gt; : Swift._Pointer in Swift (2 samples, 0.01%)</title><rect x="891.2" y="1893" width="0.1" height="15.0" fill="rgb(206,174,26)" rx="2" ry="2" />
<text x="894.17" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (17 samples, 0.07%)</title><rect x="585.2" y="1877" width="1.1" height="15.0" fill="rgb(253,144,39)" rx="2" ry="2" />
<text x="588.16" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (2 samples, 0.01%)</title><rect x="1493.0" y="1941" width="0.1" height="15.0" fill="rgb(252,8,49)" rx="2" ry="2" />
<text x="1496.00" y="1951.5" ></text>
</g>
<g >
<title>Eigen::internal::TensorExecutor&lt;Eigen::TensorAssignOp&lt;Eigen::TensorMap&lt;Eigen::Tensor&lt;double, 1, 1, long&gt;, 16, Eigen::MakePointer&gt;, Eigen::TensorCwiseUnaryOp&lt;Eigen::internal::scalar_right&lt;double, double, Eigen::internal::scalar_product_op&lt;double, double&gt;, true&gt;, Eigen::TensorMap&lt;Eigen::Tensor&lt;double const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const&gt; const&gt; const, Eigen::ThreadPoolDevice, true, (11 samples, 0.04%)</title><rect x="1194.6" y="1733" width="0.7" height="15.0" fill="rgb(208,154,53)" rx="2" ry="2" />
<text x="1197.56" y="1743.5" ></text>
</g>
<g >
<title>TFE_NewTensorHandle (5 samples, 0.02%)</title><rect x="1437.2" y="1845" width="0.3" height="15.0" fill="rgb(205,221,16)" rx="2" ry="2" />
<text x="1440.19" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::AllocateRaw (5 samples, 0.02%)</title><rect x="1022.4" y="1637" width="0.3" height="15.0" fill="rgb(233,74,7)" rx="2" ry="2" />
<text x="1025.38" y="1647.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (2 samples, 0.01%)</title><rect x="199.3" y="1877" width="0.1" height="15.0" fill="rgb(248,53,2)" rx="2" ry="2" />
<text x="202.29" y="1887.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (25 samples, 0.10%)</title><rect x="1413.1" y="1813" width="1.8" height="15.0" fill="rgb(247,140,13)" rx="2" ry="2" />
<text x="1416.13" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (2 samples, 0.01%)</title><rect x="1128.8" y="1861" width="0.1" height="15.0" fill="rgb(247,15,21)" rx="2" ry="2" />
<text x="1131.78" y="1871.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (4 samples, 0.02%)</title><rect x="138.7" y="1861" width="0.2" height="15.0" fill="rgb(245,83,22)" rx="2" ry="2" />
<text x="141.67" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1204.9" y="1893" width="0.2" height="15.0" fill="rgb(250,147,38)" rx="2" ry="2" />
<text x="1207.94" y="1903.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int and conformance Swift.Int : Swift.SignedInteger in Swift (2 samples, 0.01%)</title><rect x="158.1" y="1893" width="0.1" height="15.0" fill="rgb(247,36,34)" rx="2" ry="2" />
<text x="161.05" y="1903.5" ></text>
</g>
<g >
<title>getCache (3 samples, 0.01%)</title><rect x="395.4" y="1813" width="0.2" height="15.0" fill="rgb(252,11,2)" rx="2" ry="2" />
<text x="398.39" y="1823.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="802.8" y="1877" width="0.1" height="15.0" fill="rgb(215,179,27)" rx="2" ry="2" />
<text x="805.78" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle._cTensorHandle.getter : Swift.OpaquePointer (2 samples, 0.01%)</title><rect x="52.5" y="1909" width="0.2" height="15.0" fill="rgb(210,125,4)" rx="2" ry="2" />
<text x="55.55" y="1919.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="566.1" y="1845" width="0.1" height="15.0" fill="rgb(235,91,52)" rx="2" ry="2" />
<text x="569.06" y="1855.5" ></text>
</g>
<g >
<title>TFE_NewOp (49 samples, 0.19%)</title><rect x="708.7" y="1877" width="3.4" height="15.0" fill="rgb(241,90,22)" rx="2" ry="2" />
<text x="711.75" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (10 samples, 0.04%)</title><rect x="1175.6" y="1877" width="0.7" height="15.0" fill="rgb(226,185,42)" rx="2" ry="2" />
<text x="1178.59" y="1887.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="380.0" y="1877" width="0.1" height="15.0" fill="rgb(238,174,24)" rx="2" ry="2" />
<text x="382.99" y="1887.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="1129.7" y="1941" width="0.1" height="15.0" fill="rgb(231,45,7)" rx="2" ry="2" />
<text x="1132.67" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrBool (27 samples, 0.10%)</title><rect x="596.1" y="1877" width="1.8" height="15.0" fill="rgb(237,144,7)" rx="2" ry="2" />
<text x="599.09" y="1887.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int) -&gt; (@unowned Swift.Int64, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int) -&gt; (@out Swift.Int64, @error @owned Swift.Error) (7 samples, 0.03%)</title><rect x="127.0" y="1765" width="0.5" height="15.0" fill="rgb(236,150,22)" rx="2" ry="2" />
<text x="129.98" y="1775.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (22 samples, 0.08%)</title><rect x="454.6" y="1925" width="1.5" height="15.0" fill="rgb(244,137,3)" rx="2" ry="2" />
<text x="457.57" y="1935.5" ></text>
</g>
<g >
<title>std::_Hash_bytes (3 samples, 0.01%)</title><rect x="896.3" y="1797" width="0.2" height="15.0" fill="rgb(233,10,37)" rx="2" ry="2" />
<text x="899.32" y="1807.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (10 samples, 0.04%)</title><rect x="1107.9" y="1893" width="0.7" height="15.0" fill="rgb(249,92,12)" rx="2" ry="2" />
<text x="1110.89" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (19 samples, 0.07%)</title><rect x="21.1" y="1941" width="1.3" height="15.0" fill="rgb(212,137,21)" rx="2" ry="2" />
<text x="24.13" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (6 samples, 0.02%)</title><rect x="1137.4" y="1781" width="0.5" height="15.0" fill="rgb(221,197,44)" rx="2" ry="2" />
<text x="1140.44" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (9 samples, 0.03%)</title><rect x="424.4" y="1925" width="0.6" height="15.0" fill="rgb(233,79,50)" rx="2" ry="2" />
<text x="427.40" y="1935.5" ></text>
</g>
<g >
<title>TFE_Execute (140 samples, 0.54%)</title><rect x="1072.0" y="1877" width="9.6" height="15.0" fill="rgb(209,224,2)" rx="2" ry="2" />
<text x="1075.01" y="1887.5" ></text>
</g>
<g >
<title>swift_release@plt (3 samples, 0.01%)</title><rect x="1488.1" y="1893" width="0.2" height="15.0" fill="rgb(233,170,26)" rx="2" ry="2" />
<text x="1491.05" y="1903.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.UnsafeBufferPointer&lt;Swift.Int8&gt;&gt; of Swift._copyCollectionToContiguousArray&lt;A where A: Swift.Collection&gt;(A) -&gt; Swift.ContiguousArray&lt;A.Element&gt; (2 samples, 0.01%)</title><rect x="160.3" y="1861" width="0.1" height="15.0" fill="rgb(238,65,21)" rx="2" ry="2" />
<text x="163.25" y="1871.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.String._uncheckedFromUTF8(_: Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;, asciiPreScanResult: Swift.Bool) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="544.3" y="1749" width="0.2" height="15.0" fill="rgb(219,153,47)" rx="2" ry="2" />
<text x="547.34" y="1759.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup._tensorHandleCount.getter : Swift.Int32 (3 samples, 0.01%)</title><rect x="1267.7" y="1845" width="0.2" height="15.0" fill="rgb(252,177,40)" rx="2" ry="2" />
<text x="1270.69" y="1855.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (10 samples, 0.04%)</title><rect x="176.2" y="1925" width="0.7" height="15.0" fill="rgb(214,79,1)" rx="2" ry="2" />
<text x="179.20" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (38 samples, 0.15%)</title><rect x="1704.4" y="2037" width="2.6" height="15.0" fill="rgb(210,220,15)" rx="2" ry="2" />
<text x="1707.43" y="2047.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (18 samples, 0.07%)</title><rect x="1081.7" y="1877" width="1.2" height="15.0" fill="rgb(208,85,4)" rx="2" ry="2" />
<text x="1084.70" y="1887.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (7 samples, 0.03%)</title><rect x="406.6" y="1877" width="0.5" height="15.0" fill="rgb(230,50,42)" rx="2" ry="2" />
<text x="409.59" y="1887.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (14 samples, 0.05%)</title><rect x="508.7" y="1877" width="0.9" height="15.0" fill="rgb(249,210,7)" rx="2" ry="2" />
<text x="511.66" y="1887.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int64) -&gt; (@unowned Swift.Int32, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int64) -&gt; (@out Swift.Int32, @error @owned Swift.Error) (51 samples, 0.20%)</title><rect x="532.4" y="1909" width="3.6" height="15.0" fill="rgb(225,127,31)" rx="2" ry="2" />
<text x="535.45" y="1919.5" ></text>
</g>
<g >
<title>swift_release (5 samples, 0.02%)</title><rect x="1167.1" y="1845" width="0.4" height="15.0" fill="rgb(248,200,45)" rx="2" ry="2" />
<text x="1170.13" y="1855.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="642.1" y="1685" width="0.3" height="15.0" fill="rgb(250,73,1)" rx="2" ry="2" />
<text x="645.15" y="1695.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1480.1" y="1813" width="0.2" height="15.0" fill="rgb(220,21,42)" rx="2" ry="2" />
<text x="1483.15" y="1823.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (4 samples, 0.02%)</title><rect x="1700.4" y="2021" width="0.2" height="15.0" fill="rgb(229,35,50)" rx="2" ry="2" />
<text x="1703.37" y="2031.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (6 samples, 0.02%)</title><rect x="933.6" y="1749" width="0.5" height="15.0" fill="rgb(253,96,22)" rx="2" ry="2" />
<text x="936.65" y="1759.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (226 samples, 0.87%)</title><rect x="536.7" y="1893" width="15.5" height="15.0" fill="rgb(232,201,39)" rx="2" ry="2" />
<text x="539.71" y="1903.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow._AnyTensorHandle._cTensorHandle.getter : Swift.OpaquePointer (3 samples, 0.01%)</title><rect x="675.5" y="1861" width="0.2" height="15.0" fill="rgb(246,41,13)" rx="2" ry="2" />
<text x="678.48" y="1871.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (3 samples, 0.01%)</title><rect x="314.0" y="1829" width="0.2" height="15.0" fill="rgb(208,131,21)" rx="2" ry="2" />
<text x="317.01" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (6 samples, 0.02%)</title><rect x="461.6" y="1925" width="0.4" height="15.0" fill="rgb(239,9,4)" rx="2" ry="2" />
<text x="464.58" y="1935.5" ></text>
</g>
<g >
<title>__strlen_avx2 (3 samples, 0.01%)</title><rect x="290.2" y="1877" width="0.2" height="15.0" fill="rgb(225,148,23)" rx="2" ry="2" />
<text x="293.23" y="1887.5" ></text>
</g>
<g >
<title>operator new@plt (2 samples, 0.01%)</title><rect x="1137.3" y="1781" width="0.1" height="15.0" fill="rgb(231,27,35)" rx="2" ry="2" />
<text x="1140.30" y="1791.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (6 samples, 0.02%)</title><rect x="523.7" y="1765" width="0.4" height="15.0" fill="rgb(233,198,53)" rx="2" ry="2" />
<text x="526.72" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (60 samples, 0.23%)</title><rect x="1136.2" y="1877" width="4.1" height="15.0" fill="rgb(219,50,10)" rx="2" ry="2" />
<text x="1139.20" y="1887.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int) -&gt; (@unowned Swift.Int64, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int) -&gt; (@out Swift.Int64, @error @owned Swift.Error) (14 samples, 0.05%)</title><rect x="472.2" y="1765" width="0.9" height="15.0" fill="rgb(246,45,32)" rx="2" ry="2" />
<text x="475.17" y="1775.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="170.7" y="1813" width="0.2" height="15.0" fill="rgb(246,181,52)" rx="2" ry="2" />
<text x="173.70" y="1823.5" ></text>
</g>
<g >
<title>getCache (2 samples, 0.01%)</title><rect x="1282.1" y="1797" width="0.1" height="15.0" fill="rgb(239,157,32)" rx="2" ry="2" />
<text x="1285.06" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol._tensorHandleCount.getter : Swift.Int32 in conformance &lt;A where A: TensorFlow.TensorGroup&gt; [A] : TensorFlow.TensorArrayProtocol in TensorFlow (2 samples, 0.01%)</title><rect x="1491.1" y="1941" width="0.2" height="15.0" fill="rgb(226,91,20)" rx="2" ry="2" />
<text x="1494.15" y="1951.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (6 samples, 0.02%)</title><rect x="1472.9" y="1957" width="0.4" height="15.0" fill="rgb(234,198,25)" rx="2" ry="2" />
<text x="1475.86" y="1967.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (5 samples, 0.02%)</title><rect x="622.5" y="1861" width="0.3" height="15.0" fill="rgb(225,26,36)" rx="2" ry="2" />
<text x="625.49" y="1871.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (2 samples, 0.01%)</title><rect x="1493.0" y="1957" width="0.1" height="15.0" fill="rgb(230,149,17)" rx="2" ry="2" />
<text x="1496.00" y="1967.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (14 samples, 0.05%)</title><rect x="944.8" y="1797" width="1.0" height="15.0" fill="rgb(206,83,31)" rx="2" ry="2" />
<text x="947.85" y="1807.5" ></text>
</g>
<g >
<title>SwiftFusion.BetweenFactor.errorVector(SwiftFusion.Values) -&gt; SwiftFusion.Vector3 (4 samples, 0.02%)</title><rect x="1261.0" y="1941" width="0.3" height="15.0" fill="rgb(220,11,17)" rx="2" ry="2" />
<text x="1264.02" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1715.6" y="1957" width="0.1" height="15.0" fill="rgb(245,104,25)" rx="2" ry="2" />
<text x="1718.56" y="1967.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (73 samples, 0.28%)</title><rect x="1207.3" y="1909" width="5.0" height="15.0" fill="rgb(211,178,47)" rx="2" ry="2" />
<text x="1210.27" y="1919.5" ></text>
</g>
<g >
<title>outlined destroy of SwiftFusion.AnyDerivative (4 samples, 0.02%)</title><rect x="1324.8" y="1845" width="0.3" height="15.0" fill="rgb(233,173,23)" rx="2" ry="2" />
<text x="1327.81" y="1855.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (3 samples, 0.01%)</title><rect x="110.6" y="1781" width="0.2" height="15.0" fill="rgb(245,171,3)" rx="2" ry="2" />
<text x="113.56" y="1791.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (5 samples, 0.02%)</title><rect x="1040.8" y="1877" width="0.3" height="15.0" fill="rgb(233,118,3)" rx="2" ry="2" />
<text x="1043.80" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (5 samples, 0.02%)</title><rect x="1111.6" y="1893" width="0.3" height="15.0" fill="rgb(207,93,29)" rx="2" ry="2" />
<text x="1114.60" y="1903.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (4 samples, 0.02%)</title><rect x="502.1" y="1829" width="0.3" height="15.0" fill="rgb(220,25,24)" rx="2" ry="2" />
<text x="505.13" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (3 samples, 0.01%)</title><rect x="696.9" y="1765" width="0.2" height="15.0" fill="rgb(228,216,40)" rx="2" ry="2" />
<text x="699.93" y="1775.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="934.1" y="1749" width="0.2" height="15.0" fill="rgb(250,82,30)" rx="2" ry="2" />
<text x="937.06" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1317" width="0.9" height="15.0" fill="rgb(244,148,7)" rx="2" ry="2" />
<text x="24.27" y="1327.5" ></text>
</g>
<g >
<title>swift_beginAccess (134 samples, 0.52%)</title><rect x="1721.0" y="2053" width="9.2" height="15.0" fill="rgb(213,153,30)" rx="2" ry="2" />
<text x="1723.99" y="2063.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (26 samples, 0.10%)</title><rect x="475.9" y="1749" width="1.8" height="15.0" fill="rgb(237,24,43)" rx="2" ry="2" />
<text x="478.88" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.scalars.getter : [A] (181 samples, 0.70%)</title><rect x="41.9" y="1957" width="12.4" height="15.0" fill="rgb(232,117,46)" rx="2" ry="2" />
<text x="44.89" y="1967.5" ></text>
</g>
<g >
<title>nominal type descriptor for Swift.Int64 (3 samples, 0.01%)</title><rect x="1701.9" y="2053" width="0.2" height="15.0" fill="rgb(226,201,30)" rx="2" ry="2" />
<text x="1704.88" y="2063.5" ></text>
</g>
<g >
<title>__strlen_avx2 (5 samples, 0.02%)</title><rect x="722.1" y="1861" width="0.3" height="15.0" fill="rgb(217,177,28)" rx="2" ry="2" />
<text x="725.08" y="1871.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::SwiftRetainableBox&gt;::initializeWithCopy (2 samples, 0.01%)</title><rect x="481.8" y="1733" width="0.1" height="15.0" fill="rgb(211,21,37)" rx="2" ry="2" />
<text x="484.79" y="1743.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (37 samples, 0.14%)</title><rect x="266.4" y="1925" width="2.6" height="15.0" fill="rgb(227,6,10)" rx="2" ry="2" />
<text x="269.45" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (2 samples, 0.01%)</title><rect x="649.8" y="1765" width="0.2" height="15.0" fill="rgb(227,69,25)" rx="2" ry="2" />
<text x="652.84" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (5 samples, 0.02%)</title><rect x="278.1" y="1749" width="0.3" height="15.0" fill="rgb(241,180,50)" rx="2" ry="2" />
<text x="281.06" y="1759.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (248 samples, 0.96%)</title><rect x="1474.0" y="1989" width="17.1" height="15.0" fill="rgb(236,49,8)" rx="2" ry="2" />
<text x="1477.03" y="1999.5" ></text>
</g>
<g >
<title>swift_retain (5 samples, 0.02%)</title><rect x="77.2" y="1797" width="0.4" height="15.0" fill="rgb(217,182,17)" rx="2" ry="2" />
<text x="80.22" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (16 samples, 0.06%)</title><rect x="600.6" y="1861" width="1.1" height="15.0" fill="rgb(217,31,16)" rx="2" ry="2" />
<text x="603.56" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (78 samples, 0.30%)</title><rect x="1115.9" y="1861" width="5.4" height="15.0" fill="rgb(233,131,50)" rx="2" ry="2" />
<text x="1118.93" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="913.0" y="1781" width="0.2" height="15.0" fill="rgb(215,101,8)" rx="2" ry="2" />
<text x="916.03" y="1791.5" ></text>
</g>
<g >
<title>swift_checkMetadataState (2 samples, 0.01%)</title><rect x="1169.7" y="1893" width="0.1" height="15.0" fill="rgb(214,222,32)" rx="2" ry="2" />
<text x="1172.68" y="1903.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (2 samples, 0.01%)</title><rect x="1446.5" y="1749" width="0.1" height="15.0" fill="rgb(218,130,12)" rx="2" ry="2" />
<text x="1449.47" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (12 samples, 0.05%)</title><rect x="1539.7" y="2021" width="0.8" height="15.0" fill="rgb(254,120,38)" rx="2" ry="2" />
<text x="1542.67" y="2031.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::TensorShapeBase (2 samples, 0.01%)</title><rect x="967.7" y="1717" width="0.1" height="15.0" fill="rgb(252,155,1)" rx="2" ry="2" />
<text x="970.67" y="1727.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.String._uncheckedFromUTF8(_: Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;, asciiPreScanResult: Swift.Bool) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="62.1" y="1893" width="0.1" height="15.0" fill="rgb(213,227,28)" rx="2" ry="2" />
<text x="65.10" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.rank.getter : Swift.Int (3 samples, 0.01%)</title><rect x="1463.4" y="1893" width="0.2" height="15.0" fill="rgb(217,109,3)" rx="2" ry="2" />
<text x="1466.38" y="1903.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (4 samples, 0.02%)</title><rect x="701.5" y="1861" width="0.3" height="15.0" fill="rgb(219,189,43)" rx="2" ry="2" />
<text x="704.53" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (99 samples, 0.38%)</title><rect x="621.2" y="1893" width="6.9" height="15.0" fill="rgb(225,220,52)" rx="2" ry="2" />
<text x="624.25" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (41 samples, 0.16%)</title><rect x="282.9" y="1893" width="2.8" height="15.0" fill="rgb(226,28,47)" rx="2" ry="2" />
<text x="285.87" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (2 samples, 0.01%)</title><rect x="1433.1" y="1845" width="0.1" height="15.0" fill="rgb(236,146,52)" rx="2" ry="2" />
<text x="1436.07" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (15 samples, 0.06%)</title><rect x="247.9" y="1765" width="1.0" height="15.0" fill="rgb(253,159,42)" rx="2" ry="2" />
<text x="250.89" y="1775.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (3 samples, 0.01%)</title><rect x="1226.9" y="1909" width="0.2" height="15.0" fill="rgb(227,108,14)" rx="2" ry="2" />
<text x="1229.93" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (6 samples, 0.02%)</title><rect x="1264.5" y="1797" width="0.4" height="15.0" fill="rgb(235,221,35)" rx="2" ry="2" />
<text x="1267.46" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="1160.6" y="1797" width="0.1" height="15.0" fill="rgb(218,125,49)" rx="2" ry="2" />
<text x="1163.60" y="1807.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.FixedWidthInteger in Swift (2 samples, 0.01%)</title><rect x="932.5" y="1877" width="0.2" height="15.0" fill="rgb(253,157,51)" rx="2" ry="2" />
<text x="935.55" y="1887.5" ></text>
</g>
<g >
<title>swift_once (4 samples, 0.02%)</title><rect x="499.2" y="1877" width="0.3" height="15.0" fill="rgb(254,191,7)" rx="2" ry="2" />
<text x="502.25" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (2 samples, 0.01%)</title><rect x="1101.6" y="1797" width="0.2" height="15.0" fill="rgb(212,218,27)" rx="2" ry="2" />
<text x="1104.63" y="1807.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1292.6" y="1765" width="0.2" height="15.0" fill="rgb(243,43,18)" rx="2" ry="2" />
<text x="1295.64" y="1775.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (4 samples, 0.02%)</title><rect x="1112.8" y="1909" width="0.2" height="15.0" fill="rgb(231,100,10)" rx="2" ry="2" />
<text x="1115.77" y="1919.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::~_Hashtable (2 samples, 0.01%)</title><rect x="195.5" y="1813" width="0.2" height="15.0" fill="rgb(224,128,42)" rx="2" ry="2" />
<text x="198.51" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::TensorShapeBase (2 samples, 0.01%)</title><rect x="542.4" y="1765" width="0.1" height="15.0" fill="rgb(254,42,6)" rx="2" ry="2" />
<text x="545.41" y="1775.5" ></text>
</g>
<g >
<title>implicit closure #1 (Swift.UnsafeBufferPointer&lt;A.Scalar&gt;) -&gt; [A.Scalar] in (extension in TensorFlow):TensorFlow._ShapedArrayProtocol.scalars.getter : [A.Scalar] (2 samples, 0.01%)</title><rect x="1461.8" y="1813" width="0.1" height="15.0" fill="rgb(248,5,47)" rx="2" ry="2" />
<text x="1464.80" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::cpu_allocator_base (2 samples, 0.01%)</title><rect x="246.7" y="1765" width="0.2" height="15.0" fill="rgb(212,1,39)" rx="2" ry="2" />
<text x="249.72" y="1775.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="259.0" y="1797" width="0.2" height="15.0" fill="rgb(250,184,31)" rx="2" ry="2" />
<text x="262.02" y="1807.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (3 samples, 0.01%)</title><rect x="1433.2" y="1829" width="0.2" height="15.0" fill="rgb(218,48,47)" rx="2" ry="2" />
<text x="1436.20" y="1839.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Character&gt; of Swift.Array.count.getter : Swift.Int (4 samples, 0.02%)</title><rect x="648.1" y="1781" width="0.3" height="15.0" fill="rgb(244,145,19)" rx="2" ry="2" />
<text x="651.12" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="24.6" y="1957" width="0.3" height="15.0" fill="rgb(239,186,10)" rx="2" ry="2" />
<text x="27.57" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrBool (26 samples, 0.10%)</title><rect x="342.4" y="1877" width="1.8" height="15.0" fill="rgb(214,210,35)" rx="2" ry="2" />
<text x="345.40" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (30 samples, 0.12%)</title><rect x="883.7" y="1781" width="2.1" height="15.0" fill="rgb(242,112,28)" rx="2" ry="2" />
<text x="886.74" y="1791.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (6 samples, 0.02%)</title><rect x="670.1" y="1845" width="0.4" height="15.0" fill="rgb(238,67,20)" rx="2" ry="2" />
<text x="673.05" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (22 samples, 0.08%)</title><rect x="878.1" y="1845" width="1.5" height="15.0" fill="rgb(227,165,2)" rx="2" ry="2" />
<text x="881.11" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (6 samples, 0.02%)</title><rect x="1261.6" y="1861" width="0.4" height="15.0" fill="rgb(235,42,49)" rx="2" ry="2" />
<text x="1264.57" y="1871.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="137.0" y="1925" width="0.2" height="15.0" fill="rgb(209,215,31)" rx="2" ry="2" />
<text x="140.02" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.scalars.getter : [A] (277 samples, 1.07%)</title><rect x="395.0" y="1957" width="19.0" height="15.0" fill="rgb(246,194,18)" rx="2" ry="2" />
<text x="397.98" y="1967.5" ></text>
</g>
<g >
<title>TensorFlow._RuntimeConfig.printsDebugLog.unsafeMutableAddressor : Swift.Bool (2 samples, 0.01%)</title><rect x="666.9" y="1877" width="0.1" height="15.0" fill="rgb(220,123,36)" rx="2" ry="2" />
<text x="669.89" y="1887.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="339.2" y="1893" width="0.2" height="15.0" fill="rgb(246,193,45)" rx="2" ry="2" />
<text x="342.24" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (46 samples, 0.18%)</title><rect x="1173.5" y="1909" width="3.1" height="15.0" fill="rgb(219,92,14)" rx="2" ry="2" />
<text x="1176.46" y="1919.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="415.5" y="1861" width="0.2" height="15.0" fill="rgb(237,135,48)" rx="2" ry="2" />
<text x="418.53" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="597.7" y="1861" width="0.1" height="15.0" fill="rgb(233,200,29)" rx="2" ry="2" />
<text x="600.67" y="1871.5" ></text>
</g>
<g >
<title>perf_5.2 (5 samples, 0.02%)</title><rect x="1789.7" y="2069" width="0.3" height="15.0" fill="rgb(243,32,23)" rx="2" ry="2" />
<text x="1792.66" y="2079.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (3 samples, 0.01%)</title><rect x="1436.8" y="1861" width="0.3" height="15.0" fill="rgb(231,139,17)" rx="2" ry="2" />
<text x="1439.85" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (2 samples, 0.01%)</title><rect x="1148.3" y="1829" width="0.1" height="15.0" fill="rgb(241,55,54)" rx="2" ry="2" />
<text x="1151.30" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (11 samples, 0.04%)</title><rect x="1225.2" y="1893" width="0.8" height="15.0" fill="rgb(230,178,16)" rx="2" ry="2" />
<text x="1228.21" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (34 samples, 0.13%)</title><rect x="81.1" y="1909" width="2.4" height="15.0" fill="rgb(242,7,37)" rx="2" ry="2" />
<text x="84.14" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="1789.7" y="2021" width="0.3" height="15.0" fill="rgb(232,99,14)" rx="2" ry="2" />
<text x="1792.66" y="2031.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.rank.getter : Swift.Int (45 samples, 0.17%)</title><rect x="658.4" y="1909" width="3.1" height="15.0" fill="rgb(205,18,13)" rx="2" ry="2" />
<text x="661.43" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::gtl::FindPtrOrNull&lt;tensorflow::gtl::FlatMap&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::unordered_map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, unsigned int, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned int&gt; &gt; &gt; const*, tensorflow::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, void&gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt; &gt; (4 samples, 0.02%)</title><rect x="384.0" y="1861" width="0.3" height="15.0" fill="rgb(235,194,9)" rx="2" ry="2" />
<text x="387.05" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (2 samples, 0.01%)</title><rect x="1269.1" y="1797" width="0.1" height="15.0" fill="rgb(222,47,7)" rx="2" ry="2" />
<text x="1272.07" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (4 samples, 0.02%)</title><rect x="602.8" y="1893" width="0.3" height="15.0" fill="rgb(207,140,22)" rx="2" ry="2" />
<text x="605.83" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (2 samples, 0.01%)</title><rect x="629.2" y="1925" width="0.2" height="15.0" fill="rgb(206,135,9)" rx="2" ry="2" />
<text x="632.22" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::ShouldStoreGraphs (2 samples, 0.01%)</title><rect x="1200.3" y="1845" width="0.1" height="15.0" fill="rgb(214,117,17)" rx="2" ry="2" />
<text x="1203.26" y="1855.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (6 samples, 0.02%)</title><rect x="1177.4" y="1909" width="0.4" height="15.0" fill="rgb(253,213,22)" rx="2" ry="2" />
<text x="1180.38" y="1919.5" ></text>
</g>
<g >
<title>swift_deallocClassInstance (3 samples, 0.01%)</title><rect x="887.6" y="1861" width="0.2" height="15.0" fill="rgb(237,84,26)" rx="2" ry="2" />
<text x="890.59" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (45 samples, 0.17%)</title><rect x="1468.7" y="1941" width="3.1" height="15.0" fill="rgb(238,219,36)" rx="2" ry="2" />
<text x="1471.67" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(copyingFromCTensor: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (2 samples, 0.01%)</title><rect x="1263.2" y="1749" width="0.1" height="15.0" fill="rgb(251,60,38)" rx="2" ry="2" />
<text x="1266.16" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (6 samples, 0.02%)</title><rect x="1086.9" y="1781" width="0.4" height="15.0" fill="rgb(253,24,4)" rx="2" ry="2" />
<text x="1089.85" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (24 samples, 0.09%)</title><rect x="564.0" y="1861" width="1.6" height="15.0" fill="rgb(211,159,2)" rx="2" ry="2" />
<text x="566.99" y="1871.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="1105.9" y="1797" width="0.1" height="15.0" fill="rgb(235,39,50)" rx="2" ry="2" />
<text x="1108.89" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (2 samples, 0.01%)</title><rect x="1054.0" y="1941" width="0.1" height="15.0" fill="rgb(218,182,41)" rx="2" ry="2" />
<text x="1057.00" y="1951.5" ></text>
</g>
<g >
<title>AD__$s11SwiftFusion4Rot2V1moiyA2C_ACtFZ__pullback_src_0_wrt_0_1 (2 samples, 0.01%)</title><rect x="1292.2" y="1765" width="0.1" height="15.0" fill="rgb(206,186,45)" rx="2" ry="2" />
<text x="1295.16" y="1775.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.BinaryInteger.isSigned.getter : Swift.Bool in conformance Swift.Int : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="770.0" y="1861" width="0.1" height="15.0" fill="rgb(222,204,51)" rx="2" ry="2" />
<text x="772.99" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (9 samples, 0.03%)</title><rect x="481.2" y="1733" width="0.6" height="15.0" fill="rgb(254,59,45)" rx="2" ry="2" />
<text x="484.17" y="1743.5" ></text>
</g>
<g >
<title>__libc_start_main (21,173 samples, 81.76%)</title><rect x="39.8" y="2037" width="1455.3" height="15.0" fill="rgb(254,19,51)" rx="2" ry="2" />
<text x="42.76" y="2047.5" >__libc_start_main</text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (3 samples, 0.01%)</title><rect x="1446.1" y="1797" width="0.2" height="15.0" fill="rgb(232,188,27)" rx="2" ry="2" />
<text x="1449.12" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (59 samples, 0.23%)</title><rect x="577.9" y="1733" width="4.0" height="15.0" fill="rgb(207,23,18)" rx="2" ry="2" />
<text x="580.88" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (30 samples, 0.12%)</title><rect x="858.0" y="1877" width="2.1" height="15.0" fill="rgb(234,10,52)" rx="2" ry="2" />
<text x="861.04" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () (35 samples, 0.14%)</title><rect x="701.3" y="1893" width="2.4" height="15.0" fill="rgb(247,80,35)" rx="2" ry="2" />
<text x="704.32" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (393 samples, 1.52%)</title><rect x="734.3" y="1861" width="27.0" height="15.0" fill="rgb(253,85,45)" rx="2" ry="2" />
<text x="737.32" y="1871.5" >T..</text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (5 samples, 0.02%)</title><rect x="1249.4" y="1925" width="0.4" height="15.0" fill="rgb(224,81,11)" rx="2" ry="2" />
<text x="1252.41" y="1935.5" ></text>
</g>
<g >
<title>Eigen::ThreadPoolDevice::parallelFor (6 samples, 0.02%)</title><rect x="1194.9" y="1717" width="0.4" height="15.0" fill="rgb(211,146,3)" rx="2" ry="2" />
<text x="1197.90" y="1727.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (4 samples, 0.02%)</title><rect x="131.6" y="1733" width="0.3" height="15.0" fill="rgb(250,180,36)" rx="2" ry="2" />
<text x="134.59" y="1743.5" ></text>
</g>
<g >
<title>protocol witness for Swift.BinaryInteger.bitWidth.getter : Swift.Int in conformance Swift.Int32 : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="394.4" y="1893" width="0.2" height="15.0" fill="rgb(240,191,6)" rx="2" ry="2" />
<text x="397.43" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="22.7" y="1925" width="0.4" height="15.0" fill="rgb(240,130,9)" rx="2" ry="2" />
<text x="25.72" y="1935.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.UnsafeBufferPointer&lt;Swift.Int8&gt;&gt; of Swift._copyCollectionToContiguousArray&lt;A where A: Swift.Collection&gt;(A) -&gt; Swift.ContiguousArray&lt;A.Element&gt; (2 samples, 0.01%)</title><rect x="938.5" y="1845" width="0.1" height="15.0" fill="rgb(238,33,37)" rx="2" ry="2" />
<text x="941.46" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (39 samples, 0.15%)</title><rect x="1207.6" y="1845" width="2.7" height="15.0" fill="rgb(241,31,11)" rx="2" ry="2" />
<text x="1210.62" y="1855.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (5 samples, 0.02%)</title><rect x="1247.9" y="1925" width="0.3" height="15.0" fill="rgb(214,112,10)" rx="2" ry="2" />
<text x="1250.90" y="1935.5" ></text>
</g>
<g >
<title>getCache (74 samples, 0.29%)</title><rect x="1402.7" y="1813" width="5.1" height="15.0" fill="rgb(252,172,9)" rx="2" ry="2" />
<text x="1405.68" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (22 samples, 0.08%)</title><rect x="194.8" y="1861" width="1.5" height="15.0" fill="rgb(243,76,29)" rx="2" ry="2" />
<text x="197.76" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (13 samples, 0.05%)</title><rect x="1251.5" y="1861" width="0.9" height="15.0" fill="rgb(249,188,37)" rx="2" ry="2" />
<text x="1254.54" y="1871.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (5 samples, 0.02%)</title><rect x="338.5" y="1877" width="0.4" height="15.0" fill="rgb(218,163,21)" rx="2" ry="2" />
<text x="341.55" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::~TensorHandle (2 samples, 0.01%)</title><rect x="1460.8" y="1861" width="0.2" height="15.0" fill="rgb(211,89,50)" rx="2" ry="2" />
<text x="1463.83" y="1871.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (3 samples, 0.01%)</title><rect x="1037.8" y="1877" width="0.2" height="15.0" fill="rgb(211,183,13)" rx="2" ry="2" />
<text x="1040.78" y="1887.5" ></text>
</g>
<g >
<title>swift_release (10 samples, 0.04%)</title><rect x="1490.4" y="1957" width="0.7" height="15.0" fill="rgb(207,13,14)" rx="2" ry="2" />
<text x="1493.39" y="1967.5" ></text>
</g>
<g >
<title>swift_arrayInitWithCopy (2 samples, 0.01%)</title><rect x="1461.8" y="1749" width="0.1" height="15.0" fill="rgb(205,104,34)" rx="2" ry="2" />
<text x="1464.80" y="1759.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (3 samples, 0.01%)</title><rect x="81.9" y="1877" width="0.2" height="15.0" fill="rgb(222,100,54)" rx="2" ry="2" />
<text x="84.90" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (31 samples, 0.12%)</title><rect x="60.5" y="1957" width="2.1" height="15.0" fill="rgb(227,7,22)" rx="2" ry="2" />
<text x="63.45" y="1967.5" ></text>
</g>
<g >
<title>_int_free (38 samples, 0.15%)</title><rect x="29.1" y="2021" width="2.6" height="15.0" fill="rgb(224,127,27)" rx="2" ry="2" />
<text x="32.11" y="2031.5" ></text>
</g>
<g >
<title>protocol witness for Swift.Collection.subscript.read : (A.Index) -&gt; A.Element in conformance [A] : Swift.Collection in Swift (3 samples, 0.01%)</title><rect x="98.7" y="1877" width="0.2" height="15.0" fill="rgb(227,72,10)" rx="2" ry="2" />
<text x="101.67" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (8 samples, 0.03%)</title><rect x="1460.8" y="1941" width="0.6" height="15.0" fill="rgb(229,22,17)" rx="2" ry="2" />
<text x="1463.83" y="1951.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="837.2" y="1765" width="0.1" height="15.0" fill="rgb(240,166,51)" rx="2" ry="2" />
<text x="840.21" y="1775.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="280.5" y="1845" width="0.2" height="15.0" fill="rgb(230,159,20)" rx="2" ry="2" />
<text x="283.54" y="1855.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="467.7" y="1925" width="0.1" height="15.0" fill="rgb(238,24,2)" rx="2" ry="2" />
<text x="470.70" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (236 samples, 0.91%)</title><rect x="62.7" y="1941" width="16.2" height="15.0" fill="rgb(237,45,1)" rx="2" ry="2" />
<text x="65.72" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (9 samples, 0.03%)</title><rect x="1132.6" y="1925" width="0.6" height="15.0" fill="rgb(205,217,40)" rx="2" ry="2" />
<text x="1135.63" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::TensorInterface::ToTensor (4 samples, 0.02%)</title><rect x="247.1" y="1733" width="0.3" height="15.0" fill="rgb(211,123,44)" rx="2" ry="2" />
<text x="250.13" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorHandle (7 samples, 0.03%)</title><rect x="926.4" y="1717" width="0.4" height="15.0" fill="rgb(220,77,29)" rx="2" ry="2" />
<text x="929.36" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (9 samples, 0.03%)</title><rect x="1066.5" y="1877" width="0.6" height="15.0" fill="rgb(222,79,20)" rx="2" ry="2" />
<text x="1069.51" y="1887.5" ></text>
</g>
<g >
<title>_int_malloc (10 samples, 0.04%)</title><rect x="31.7" y="2021" width="0.7" height="15.0" fill="rgb(223,99,40)" rx="2" ry="2" />
<text x="34.72" y="2031.5" ></text>
</g>
<g >
<title>swift_retain (6 samples, 0.02%)</title><rect x="1088.8" y="1845" width="0.5" height="15.0" fill="rgb(237,189,9)" rx="2" ry="2" />
<text x="1091.85" y="1855.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="712.2" y="1877" width="0.2" height="15.0" fill="rgb(223,7,43)" rx="2" ry="2" />
<text x="715.18" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="1434.0" y="1861" width="0.1" height="15.0" fill="rgb(235,196,3)" rx="2" ry="2" />
<text x="1436.96" y="1871.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="768.8" y="1861" width="0.1" height="15.0" fill="rgb(253,98,17)" rx="2" ry="2" />
<text x="771.75" y="1871.5" ></text>
</g>
<g >
<title>swift_beginAccess (3 samples, 0.01%)</title><rect x="603.4" y="1893" width="0.3" height="15.0" fill="rgb(236,86,27)" rx="2" ry="2" />
<text x="606.45" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (18 samples, 0.07%)</title><rect x="342.6" y="1861" width="1.2" height="15.0" fill="rgb(240,48,19)" rx="2" ry="2" />
<text x="345.60" y="1871.5" ></text>
</g>
<g >
<title>value witness table for Swift.UInt32.SIMD32Storage (16 samples, 0.06%)</title><rect x="1700.6" y="2037" width="1.1" height="15.0" fill="rgb(219,167,49)" rx="2" ry="2" />
<text x="1703.65" y="2047.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (17 samples, 0.07%)</title><rect x="966.0" y="1701" width="1.2" height="15.0" fill="rgb(211,192,35)" rx="2" ry="2" />
<text x="969.02" y="1711.5" ></text>
</g>
<g >
<title>Swift.Array.init&lt;A where A == A1.Element, A1: Swift.Sequence&gt;(A1) -&gt; [A] (13 samples, 0.05%)</title><rect x="42.6" y="1797" width="0.9" height="15.0" fill="rgb(240,156,20)" rx="2" ry="2" />
<text x="45.58" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::DataTypeSize (2 samples, 0.01%)</title><rect x="483.7" y="1797" width="0.2" height="15.0" fill="rgb(229,75,19)" rx="2" ry="2" />
<text x="486.71" y="1807.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="480.1" y="1781" width="0.1" height="15.0" fill="rgb(221,106,15)" rx="2" ry="2" />
<text x="483.07" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::OpKernelContext (2 samples, 0.01%)</title><rect x="514.9" y="1717" width="0.2" height="15.0" fill="rgb(251,18,5)" rx="2" ry="2" />
<text x="517.92" y="1727.5" ></text>
</g>
<g >
<title>swift_getAssociatedConformanceWitness (2 samples, 0.01%)</title><rect x="483.2" y="1797" width="0.2" height="15.0" fill="rgb(213,143,27)" rx="2" ry="2" />
<text x="486.23" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (36 samples, 0.14%)</title><rect x="716.4" y="1845" width="2.5" height="15.0" fill="rgb(218,2,13)" rx="2" ry="2" />
<text x="719.45" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (23 samples, 0.09%)</title><rect x="983.5" y="1861" width="1.6" height="15.0" fill="rgb(247,95,24)" rx="2" ry="2" />
<text x="986.55" y="1871.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (157 samples, 0.61%)</title><rect x="87.5" y="1893" width="10.8" height="15.0" fill="rgb(233,113,24)" rx="2" ry="2" />
<text x="90.46" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::ThreadPoolDevice::GetAllocator (2 samples, 0.01%)</title><rect x="71.0" y="1685" width="0.2" height="15.0" fill="rgb(238,66,5)" rx="2" ry="2" />
<text x="74.04" y="1695.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (464 samples, 1.79%)</title><rect x="906.3" y="1909" width="31.9" height="15.0" fill="rgb(235,84,15)" rx="2" ry="2" />
<text x="909.29" y="1919.5" >pr..</text>
</g>
<g >
<title>swift_once (5 samples, 0.02%)</title><rect x="174.1" y="1909" width="0.3" height="15.0" fill="rgb(240,153,46)" rx="2" ry="2" />
<text x="177.07" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (11 samples, 0.04%)</title><rect x="21.3" y="53" width="0.8" height="15.0" fill="rgb(210,147,49)" rx="2" ry="2" />
<text x="24.34" y="63.5" ></text>
</g>
<g >
<title>swift_bridgeObjectRelease (2 samples, 0.01%)</title><rect x="1098.9" y="1957" width="0.1" height="15.0" fill="rgb(238,220,30)" rx="2" ry="2" />
<text x="1101.88" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::DoTranspose&lt;Eigen::ThreadPoolDevice&gt; (66 samples, 0.25%)</title><rect x="921.5" y="1669" width="4.5" height="15.0" fill="rgb(250,104,39)" rx="2" ry="2" />
<text x="924.48" y="1679.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="1216.6" y="1893" width="0.2" height="15.0" fill="rgb(236,114,40)" rx="2" ry="2" />
<text x="1219.62" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (254 samples, 0.98%)</title><rect x="569.7" y="1893" width="17.5" height="15.0" fill="rgb(243,136,46)" rx="2" ry="2" />
<text x="572.70" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166 samples, 0.64%)</title><rect x="21.1" y="2037" width="11.4" height="15.0" fill="rgb(213,162,49)" rx="2" ry="2" />
<text x="24.07" y="2047.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (2 samples, 0.01%)</title><rect x="79.4" y="1925" width="0.1" height="15.0" fill="rgb(230,121,39)" rx="2" ry="2" />
<text x="82.35" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (5 samples, 0.02%)</title><rect x="1472.4" y="1893" width="0.4" height="15.0" fill="rgb(233,174,23)" rx="2" ry="2" />
<text x="1475.45" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="1715.5" y="1973" width="0.2" height="15.0" fill="rgb(216,110,8)" rx="2" ry="2" />
<text x="1718.49" y="1983.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (6 samples, 0.02%)</title><rect x="1493.3" y="1957" width="0.5" height="15.0" fill="rgb(210,93,50)" rx="2" ry="2" />
<text x="1496.34" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (13 samples, 0.05%)</title><rect x="340.1" y="1877" width="0.9" height="15.0" fill="rgb(237,3,13)" rx="2" ry="2" />
<text x="343.13" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.CTensorTensorBuffer.deinit (5 samples, 0.02%)</title><rect x="414.3" y="1925" width="0.3" height="15.0" fill="rgb(243,217,8)" rx="2" ry="2" />
<text x="417.29" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::NumDims (4 samples, 0.02%)</title><rect x="659.1" y="1845" width="0.2" height="15.0" fill="rgb(223,227,19)" rx="2" ry="2" />
<text x="662.05" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (40 samples, 0.15%)</title><rect x="226.1" y="1893" width="2.7" height="15.0" fill="rgb(212,204,23)" rx="2" ry="2" />
<text x="229.10" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (6 samples, 0.02%)</title><rect x="1081.8" y="1861" width="0.4" height="15.0" fill="rgb(245,219,6)" rx="2" ry="2" />
<text x="1084.77" y="1871.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (6 samples, 0.02%)</title><rect x="1126.2" y="1877" width="0.4" height="15.0" fill="rgb(247,43,48)" rx="2" ry="2" />
<text x="1129.24" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::clear_value (2 samples, 0.01%)</title><rect x="529.4" y="1861" width="0.2" height="15.0" fill="rgb(249,123,10)" rx="2" ry="2" />
<text x="532.42" y="1871.5" ></text>
</g>
<g >
<title>TFE_DeleteTensorHandle (26 samples, 0.10%)</title><rect x="194.6" y="1893" width="1.7" height="15.0" fill="rgb(223,192,44)" rx="2" ry="2" />
<text x="197.55" y="1903.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="743.0" y="1749" width="0.2" height="15.0" fill="rgb(228,150,27)" rx="2" ry="2" />
<text x="746.05" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::FillDimsAndValidateCompatibleShape&lt;0ul&gt; (2 samples, 0.01%)</title><rect x="581.1" y="1685" width="0.1" height="15.0" fill="rgb(234,25,40)" rx="2" ry="2" />
<text x="584.11" y="1695.5" ></text>
</g>
<g >
<title>Swift._ContiguousArrayStorage.__deallocating_deinit (2 samples, 0.01%)</title><rect x="993.1" y="1893" width="0.1" height="15.0" fill="rgb(209,216,9)" rx="2" ry="2" />
<text x="996.10" y="1903.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="931.0" y="1845" width="0.1" height="15.0" fill="rgb(240,207,5)" rx="2" ry="2" />
<text x="933.96" y="1855.5" ></text>
</g>
<g >
<title>_mid_memalign (2 samples, 0.01%)</title><rect x="440.3" y="1653" width="0.1" height="15.0" fill="rgb(205,33,6)" rx="2" ry="2" />
<text x="443.27" y="1663.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.Hasher._hash(seed: Swift.Int, _: Swift.UInt) -&gt; Swift.Int (3 samples, 0.01%)</title><rect x="350.8" y="1925" width="0.2" height="15.0" fill="rgb(225,90,25)" rx="2" ry="2" />
<text x="353.78" y="1935.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="372.5" y="1877" width="0.1" height="15.0" fill="rgb(238,135,1)" rx="2" ry="2" />
<text x="375.50" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (161 samples, 0.62%)</title><rect x="866.8" y="1813" width="11.1" height="15.0" fill="rgb(248,161,23)" rx="2" ry="2" />
<text x="869.84" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow._ShapedArrayProtocol.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A.Scalar&gt;) throws -&gt; A1) throws -&gt; A1 in conformance TensorFlow.ShapedArray&lt;A&gt; : TensorFlow._ShapedArrayProtocol in TensorFlow (3 samples, 0.01%)</title><rect x="1461.7" y="1925" width="0.2" height="15.0" fill="rgb(205,205,43)" rx="2" ry="2" />
<text x="1464.73" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::SetAttrValue (2 samples, 0.01%)</title><rect x="340.9" y="1861" width="0.1" height="15.0" fill="rgb(216,162,27)" rx="2" ry="2" />
<text x="343.88" y="1871.5" ></text>
</g>
<g >
<title>getCache (148 samples, 0.57%)</title><rect x="1358.4" y="1797" width="10.2" height="15.0" fill="rgb(221,50,52)" rx="2" ry="2" />
<text x="1361.42" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::num_outputs (6 samples, 0.02%)</title><rect x="877.4" y="1797" width="0.4" height="15.0" fill="rgb(252,92,0)" rx="2" ry="2" />
<text x="880.42" y="1807.5" ></text>
</g>
<g >
<title>Swift.Array.subscript.read : (Swift.Int) -&gt; A (2 samples, 0.01%)</title><rect x="473.2" y="1765" width="0.1" height="15.0" fill="rgb(212,114,0)" rx="2" ry="2" />
<text x="476.20" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (13 samples, 0.05%)</title><rect x="711.0" y="1829" width="0.9" height="15.0" fill="rgb(237,202,5)" rx="2" ry="2" />
<text x="714.02" y="1839.5" ></text>
</g>
<g >
<title>SwiftFusion._ConcreteDerivativeBox._unboxed&lt;A where A1: Swift.Differentiable, A1 == A1.Swift.Differentiable.TangentVector&gt;(to: A1.Type) -&gt; A1? (28 samples, 0.11%)</title><rect x="18.8" y="2037" width="1.9" height="15.0" fill="rgb(242,170,6)" rx="2" ry="2" />
<text x="21.80" y="2047.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1 in TensorFlow.ShapedArray.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (24 samples, 0.09%)</title><rect x="42.2" y="1861" width="1.6" height="15.0" fill="rgb(232,229,0)" rx="2" ry="2" />
<text x="45.17" y="1871.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="200.5" y="1925" width="0.1" height="15.0" fill="rgb(229,142,53)" rx="2" ry="2" />
<text x="203.46" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (77 samples, 0.30%)</title><rect x="707.5" y="1893" width="5.3" height="15.0" fill="rgb(243,4,40)" rx="2" ry="2" />
<text x="710.51" y="1903.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (5 samples, 0.02%)</title><rect x="286.4" y="1893" width="0.4" height="15.0" fill="rgb(253,40,32)" rx="2" ry="2" />
<text x="289.45" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input_to_output_with_shape (3 samples, 0.01%)</title><rect x="1139.0" y="1717" width="0.2" height="15.0" fill="rgb(226,183,14)" rx="2" ry="2" />
<text x="1141.95" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (6 samples, 0.02%)</title><rect x="1450.0" y="1685" width="0.4" height="15.0" fill="rgb(234,163,9)" rx="2" ry="2" />
<text x="1452.97" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_tensor (7 samples, 0.03%)</title><rect x="1236.8" y="1685" width="0.4" height="15.0" fill="rgb(227,106,20)" rx="2" ry="2" />
<text x="1239.76" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (2 samples, 0.01%)</title><rect x="1460.8" y="1909" width="0.2" height="15.0" fill="rgb(252,103,29)" rx="2" ry="2" />
<text x="1463.83" y="1919.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):Swift.Array&lt;A where A: TensorFlow.TensorGroup&gt;._tensorHandleCount.getter : Swift.Int32 (8 samples, 0.03%)</title><rect x="1266.8" y="1877" width="0.5" height="15.0" fill="rgb(227,138,21)" rx="2" ry="2" />
<text x="1269.80" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (4 samples, 0.02%)</title><rect x="1448.7" y="1813" width="0.2" height="15.0" fill="rgb(234,77,53)" rx="2" ry="2" />
<text x="1451.67" y="1823.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (4 samples, 0.02%)</title><rect x="430.0" y="1845" width="0.2" height="15.0" fill="rgb(207,35,3)" rx="2" ry="2" />
<text x="432.96" y="1855.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (3 samples, 0.01%)</title><rect x="675.9" y="1861" width="0.2" height="15.0" fill="rgb(254,10,54)" rx="2" ry="2" />
<text x="678.89" y="1871.5" ></text>
</g>
<g >
<title>TFE_NewOp (76 samples, 0.29%)</title><rect x="892.7" y="1877" width="5.3" height="15.0" fill="rgb(229,43,48)" rx="2" ry="2" />
<text x="895.75" y="1887.5" ></text>
</g>
<g >
<title>swift_deallocClassInstance (2 samples, 0.01%)</title><rect x="803.3" y="1893" width="0.1" height="15.0" fill="rgb(214,147,40)" rx="2" ry="2" />
<text x="806.26" y="1903.5" ></text>
</g>
<g >
<title>reabstraction thunk helper &lt;A where A: TensorFlow._ShapedArrayProtocol&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A.TensorFlow._ShapedArrayProtocol.Scalar&gt;) -&gt; (@owned [A.TensorFlow._ShapedArrayProtocol.Scalar], @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A.TensorFlow._ShapedArrayProtocol.Scalar&gt;) -&gt; (@out [A.TensorFlow._ShapedArrayProtocol.Scalar], @error @owned Swift.Error) (25 samples, 0.10%)</title><rect x="395.4" y="1829" width="1.7" height="15.0" fill="rgb(216,172,43)" rx="2" ry="2" />
<text x="398.39" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="24.6" y="1973" width="0.3" height="15.0" fill="rgb(209,52,12)" rx="2" ry="2" />
<text x="27.57" y="1983.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (60 samples, 0.23%)</title><rect x="1004.0" y="1909" width="4.1" height="15.0" fill="rgb(222,121,35)" rx="2" ry="2" />
<text x="1006.96" y="1919.5" ></text>
</g>
<g >
<title>reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (142 samples, 0.55%)</title><rect x="125.2" y="1877" width="9.8" height="15.0" fill="rgb(224,125,52)" rx="2" ry="2" />
<text x="128.20" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (24 samples, 0.09%)</title><rect x="842.0" y="1797" width="1.7" height="15.0" fill="rgb(235,196,42)" rx="2" ry="2" />
<text x="845.02" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (79 samples, 0.31%)</title><rect x="870.9" y="1749" width="5.4" height="15.0" fill="rgb(233,123,2)" rx="2" ry="2" />
<text x="873.89" y="1759.5" ></text>
</g>
<g >
<title>__tls_get_addr@plt (5 samples, 0.02%)</title><rect x="1358.1" y="1797" width="0.3" height="15.0" fill="rgb(254,11,40)" rx="2" ry="2" />
<text x="1361.08" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (2 samples, 0.01%)</title><rect x="1446.7" y="1813" width="0.2" height="15.0" fill="rgb(218,28,51)" rx="2" ry="2" />
<text x="1449.74" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="613" width="0.9" height="15.0" fill="rgb(208,162,28)" rx="2" ry="2" />
<text x="24.27" y="623.5" ></text>
</g>
<g >
<title>operator delete (2 samples, 0.01%)</title><rect x="748.3" y="1701" width="0.1" height="15.0" fill="rgb(239,92,29)" rx="2" ry="2" />
<text x="751.27" y="1711.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="530.5" y="1941" width="0.2" height="15.0" fill="rgb(248,75,38)" rx="2" ry="2" />
<text x="533.52" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorValue (7 samples, 0.03%)</title><rect x="1192.8" y="1765" width="0.5" height="15.0" fill="rgb(250,79,41)" rx="2" ry="2" />
<text x="1195.77" y="1775.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="950.8" y="1877" width="0.1" height="15.0" fill="rgb(247,89,47)" rx="2" ry="2" />
<text x="953.76" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CheckType (2 samples, 0.01%)</title><rect x="754.3" y="1685" width="0.2" height="15.0" fill="rgb(234,206,47)" rx="2" ry="2" />
<text x="757.32" y="1695.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.02%)</title><rect x="1589.1" y="1957" width="0.3" height="15.0" fill="rgb(238,174,33)" rx="2" ry="2" />
<text x="1592.09" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="565.6" y="1861" width="0.2" height="15.0" fill="rgb(232,7,12)" rx="2" ry="2" />
<text x="568.64" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="772.0" y="1877" width="0.1" height="15.0" fill="rgb(237,81,25)" rx="2" ry="2" />
<text x="774.98" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::shaped&lt;double, 0ul&gt; (3 samples, 0.01%)</title><rect x="581.0" y="1701" width="0.2" height="15.0" fill="rgb(215,135,46)" rx="2" ry="2" />
<text x="584.04" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::DeviceOrHostCPU (4 samples, 0.02%)</title><rect x="968.7" y="1797" width="0.3" height="15.0" fill="rgb(231,155,30)" rx="2" ry="2" />
<text x="971.70" y="1807.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (2 samples, 0.01%)</title><rect x="62.6" y="1941" width="0.1" height="15.0" fill="rgb(217,141,48)" rx="2" ry="2" />
<text x="65.58" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (18 samples, 0.07%)</title><rect x="970.5" y="1861" width="1.2" height="15.0" fill="rgb(225,162,1)" rx="2" ry="2" />
<text x="973.49" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::XlaCpuDeviceFactory::CreateDevices (3 samples, 0.01%)</title><rect x="1495.1" y="1941" width="0.2" height="15.0" fill="rgb(254,66,1)" rx="2" ry="2" />
<text x="1498.06" y="1951.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="676.3" y="1877" width="0.1" height="15.0" fill="rgb(237,85,43)" rx="2" ry="2" />
<text x="679.31" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (11 samples, 0.04%)</title><rect x="990.1" y="1829" width="0.7" height="15.0" fill="rgb(219,19,33)" rx="2" ry="2" />
<text x="993.08" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::GetCachedKernel (7 samples, 0.03%)</title><rect x="684.8" y="1781" width="0.4" height="15.0" fill="rgb(207,72,40)" rx="2" ry="2" />
<text x="687.76" y="1791.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (2 samples, 0.01%)</title><rect x="1267.7" y="1829" width="0.1" height="15.0" fill="rgb(210,129,38)" rx="2" ry="2" />
<text x="1270.69" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(handle: TensorFlow.TensorHandle&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (3 samples, 0.01%)</title><rect x="773.6" y="1813" width="0.2" height="15.0" fill="rgb(235,51,54)" rx="2" ry="2" />
<text x="776.56" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (8 samples, 0.03%)</title><rect x="1089.4" y="1877" width="0.5" height="15.0" fill="rgb(242,132,7)" rx="2" ry="2" />
<text x="1092.40" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::NumDims (3 samples, 0.01%)</title><rect x="659.1" y="1829" width="0.2" height="15.0" fill="rgb(227,216,12)" rx="2" ry="2" />
<text x="662.12" y="1839.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrBool (20 samples, 0.08%)</title><rect x="705.3" y="1877" width="1.4" height="15.0" fill="rgb(237,19,54)" rx="2" ry="2" />
<text x="708.31" y="1887.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):Swift.Array&lt;A where A: TensorFlow.TensorGroup&gt;._tensorHandleCount.getter : Swift.Int32 (2 samples, 0.01%)</title><rect x="1491.1" y="1925" width="0.2" height="15.0" fill="rgb(223,151,41)" rx="2" ry="2" />
<text x="1494.15" y="1935.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (5 samples, 0.02%)</title><rect x="380.0" y="1909" width="0.3" height="15.0" fill="rgb(209,194,49)" rx="2" ry="2" />
<text x="382.99" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="523.4" y="1765" width="0.2" height="15.0" fill="rgb(210,225,23)" rx="2" ry="2" />
<text x="526.44" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (15 samples, 0.06%)</title><rect x="118.0" y="1813" width="1.1" height="15.0" fill="rgb(222,62,39)" rx="2" ry="2" />
<text x="121.05" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (5 samples, 0.02%)</title><rect x="306.7" y="1845" width="0.3" height="15.0" fill="rgb(222,37,40)" rx="2" ry="2" />
<text x="309.66" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(copyingFromCTensor: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (26 samples, 0.10%)</title><rect x="1103.2" y="1797" width="1.8" height="15.0" fill="rgb(211,32,19)" rx="2" ry="2" />
<text x="1106.21" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUpSlow (2 samples, 0.01%)</title><rect x="1495.1" y="1861" width="0.2" height="15.0" fill="rgb(248,3,22)" rx="2" ry="2" />
<text x="1498.13" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="1715.5" y="2005" width="0.2" height="15.0" fill="rgb(223,223,19)" rx="2" ry="2" />
<text x="1718.49" y="2015.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::input (4 samples, 0.02%)</title><rect x="1119.4" y="1733" width="0.3" height="15.0" fill="rgb(216,30,7)" rx="2" ry="2" />
<text x="1122.43" y="1743.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (10 samples, 0.04%)</title><rect x="1586.7" y="2037" width="0.7" height="15.0" fill="rgb(209,164,20)" rx="2" ry="2" />
<text x="1589.69" y="2047.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (24 samples, 0.09%)</title><rect x="1086.8" y="1797" width="1.6" height="15.0" fill="rgb(209,202,32)" rx="2" ry="2" />
<text x="1089.78" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (3 samples, 0.01%)</title><rect x="1149.4" y="1957" width="0.2" height="15.0" fill="rgb(228,71,27)" rx="2" ry="2" />
<text x="1152.40" y="1967.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (4 samples, 0.02%)</title><rect x="1484.6" y="1893" width="0.3" height="15.0" fill="rgb(221,82,16)" rx="2" ry="2" />
<text x="1487.62" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (14 samples, 0.05%)</title><rect x="240.9" y="1877" width="0.9" height="15.0" fill="rgb(241,9,17)" rx="2" ry="2" />
<text x="243.88" y="1887.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="1088.6" y="1845" width="0.2" height="15.0" fill="rgb(253,186,17)" rx="2" ry="2" />
<text x="1091.57" y="1855.5" ></text>
</g>
<g >
<title>__C.TF_Code.rawValue.getter : Swift.UInt32 (2 samples, 0.01%)</title><rect x="1067.8" y="1877" width="0.2" height="15.0" fill="rgb(251,62,8)" rx="2" ry="2" />
<text x="1070.81" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (58 samples, 0.22%)</title><rect x="167.7" y="1893" width="4.0" height="15.0" fill="rgb(239,181,45)" rx="2" ry="2" />
<text x="170.74" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (8 samples, 0.03%)</title><rect x="1047.8" y="1829" width="0.6" height="15.0" fill="rgb(232,204,33)" rx="2" ry="2" />
<text x="1050.81" y="1839.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_rlock (3 samples, 0.01%)</title><rect x="989.8" y="1829" width="0.2" height="15.0" fill="rgb(222,146,48)" rx="2" ry="2" />
<text x="992.80" y="1839.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int64) -&gt; (@unowned Swift.Int32, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int64) -&gt; (@out Swift.Int32, @error @owned Swift.Error) (3 samples, 0.01%)</title><rect x="532.2" y="1925" width="0.2" height="15.0" fill="rgb(210,226,9)" rx="2" ry="2" />
<text x="535.24" y="1935.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="1032.4" y="1877" width="0.2" height="15.0" fill="rgb(232,160,31)" rx="2" ry="2" />
<text x="1035.42" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (9 samples, 0.03%)</title><rect x="1095.0" y="1861" width="0.7" height="15.0" fill="rgb(213,99,3)" rx="2" ry="2" />
<text x="1098.03" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (3 samples, 0.01%)</title><rect x="83.5" y="1909" width="0.3" height="15.0" fill="rgb(228,33,37)" rx="2" ry="2" />
<text x="86.55" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (97 samples, 0.37%)</title><rect x="66.2" y="1909" width="6.6" height="15.0" fill="rgb(206,196,19)" rx="2" ry="2" />
<text x="69.16" y="1919.5" ></text>
</g>
<g >
<title>swift_beginAccess (3 samples, 0.01%)</title><rect x="185.4" y="1925" width="0.2" height="15.0" fill="rgb(225,122,24)" rx="2" ry="2" />
<text x="188.41" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::Dim (2 samples, 0.01%)</title><rect x="233.9" y="1813" width="0.2" height="15.0" fill="rgb(222,181,22)" rx="2" ry="2" />
<text x="236.93" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::TF_TensorToTensor (3 samples, 0.01%)</title><rect x="475.3" y="1765" width="0.2" height="15.0" fill="rgb(238,162,7)" rx="2" ry="2" />
<text x="478.26" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::LocalTensorHandleData::Dim (2 samples, 0.01%)</title><rect x="233.0" y="1781" width="0.1" height="15.0" fill="rgb(218,80,45)" rx="2" ry="2" />
<text x="235.97" y="1791.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="723.3" y="1877" width="0.1" height="15.0" fill="rgb(211,59,27)" rx="2" ry="2" />
<text x="726.25" y="1887.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="159.2" y="1765" width="0.1" height="15.0" fill="rgb(251,133,53)" rx="2" ry="2" />
<text x="162.15" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (95 samples, 0.37%)</title><rect x="272.2" y="1813" width="6.5" height="15.0" fill="rgb(206,81,31)" rx="2" ry="2" />
<text x="275.15" y="1823.5" ></text>
</g>
<g >
<title>static TensorFlow._RawTFEager.reshape&lt;A, B where A: TensorFlow.TensorFlowScalar, B: TensorFlow.TensorFlowIndex&gt;(_: TensorFlow.Tensor&lt;A&gt;, shape: TensorFlow.Tensor&lt;B&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (299 samples, 1.15%)</title><rect x="101.6" y="1941" width="20.6" height="15.0" fill="rgb(245,39,47)" rx="2" ry="2" />
<text x="104.62" y="1951.5" ></text>
</g>
<g >
<title>TFE_Execute (172 samples, 0.66%)</title><rect x="866.2" y="1845" width="11.8" height="15.0" fill="rgb(222,149,33)" rx="2" ry="2" />
<text x="869.22" y="1855.5" ></text>
</g>
<g >
<title>_int_malloc (9 samples, 0.03%)</title><rect x="28.3" y="2005" width="0.6" height="15.0" fill="rgb(219,190,19)" rx="2" ry="2" />
<text x="31.28" y="2015.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (14 samples, 0.05%)</title><rect x="880.0" y="1861" width="0.9" height="15.0" fill="rgb(214,201,48)" rx="2" ry="2" />
<text x="882.96" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (6 samples, 0.02%)</title><rect x="1202.9" y="1877" width="0.5" height="15.0" fill="rgb(228,18,8)" rx="2" ry="2" />
<text x="1205.94" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::ByteSizeLong (4 samples, 0.02%)</title><rect x="787.9" y="1797" width="0.2" height="15.0" fill="rgb(253,214,34)" rx="2" ry="2" />
<text x="790.86" y="1807.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (5 samples, 0.02%)</title><rect x="1473.6" y="1941" width="0.4" height="15.0" fill="rgb(233,6,18)" rx="2" ry="2" />
<text x="1476.62" y="1951.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (10 samples, 0.04%)</title><rect x="990.1" y="1813" width="0.7" height="15.0" fill="rgb(244,203,14)" rx="2" ry="2" />
<text x="993.14" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::InternalSerializeWithCachedSizesToArray (3 samples, 0.01%)</title><rect x="702.9" y="1781" width="0.2" height="15.0" fill="rgb(235,159,26)" rx="2" ry="2" />
<text x="705.91" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::LocalTensorHandleData::TensorValue (2 samples, 0.01%)</title><rect x="577.6" y="1717" width="0.1" height="15.0" fill="rgb(210,76,53)" rx="2" ry="2" />
<text x="580.60" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (4 samples, 0.02%)</title><rect x="1434.2" y="1797" width="0.2" height="15.0" fill="rgb(206,28,49)" rx="2" ry="2" />
<text x="1437.16" y="1807.5" ></text>
</g>
<g >
<title>swift_release (5 samples, 0.02%)</title><rect x="724.5" y="1893" width="0.3" height="15.0" fill="rgb(236,39,16)" rx="2" ry="2" />
<text x="727.49" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="353.2" y="1877" width="0.1" height="15.0" fill="rgb(217,16,39)" rx="2" ry="2" />
<text x="356.19" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (17 samples, 0.07%)</title><rect x="542.7" y="1749" width="1.2" height="15.0" fill="rgb(250,168,40)" rx="2" ry="2" />
<text x="545.69" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (16 samples, 0.06%)</title><rect x="1239.6" y="1909" width="1.1" height="15.0" fill="rgb(216,179,38)" rx="2" ry="2" />
<text x="1242.58" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrBool (2 samples, 0.01%)</title><rect x="706.7" y="1877" width="0.1" height="15.0" fill="rgb(247,7,21)" rx="2" ry="2" />
<text x="709.69" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (32 samples, 0.12%)</title><rect x="1157.0" y="1765" width="2.2" height="15.0" fill="rgb(237,173,10)" rx="2" ry="2" />
<text x="1160.03" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::BuildCacheKeyForDevice (4 samples, 0.02%)</title><rect x="1449.2" y="1733" width="0.3" height="15.0" fill="rgb(214,36,39)" rx="2" ry="2" />
<text x="1452.22" y="1743.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[0] = Exploded, Arg[2] = Dead&gt; of static SwiftFusion.GaussianFactorGraph.* infix(SwiftFusion.GaussianFactorGraph, SwiftFusion.VectorValues) -&gt; [TensorFlow.Tensor&lt;Swift.Double&gt;] (2,475 samples, 9.56%)</title><rect x="221.0" y="1973" width="170.1" height="15.0" fill="rgb(239,54,36)" rx="2" ry="2" />
<text x="224.01" y="1983.5" >function signature spe..</text>
</g>
<g >
<title>TFE_DeleteOp (13 samples, 0.05%)</title><rect x="147.3" y="1877" width="0.9" height="15.0" fill="rgb(210,146,16)" rx="2" ry="2" />
<text x="150.33" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (35 samples, 0.14%)</title><rect x="1093.3" y="1893" width="2.4" height="15.0" fill="rgb(214,153,50)" rx="2" ry="2" />
<text x="1096.31" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (20 samples, 0.08%)</title><rect x="1445.7" y="1845" width="1.4" height="15.0" fill="rgb(234,88,43)" rx="2" ry="2" />
<text x="1448.71" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (42 samples, 0.16%)</title><rect x="1536.8" y="2021" width="2.9" height="15.0" fill="rgb(230,7,25)" rx="2" ry="2" />
<text x="1539.78" y="2031.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorValue (3 samples, 0.01%)</title><rect x="435.8" y="1765" width="0.2" height="15.0" fill="rgb(244,86,22)" rx="2" ry="2" />
<text x="438.81" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (6 samples, 0.02%)</title><rect x="1048.4" y="1861" width="0.4" height="15.0" fill="rgb(217,71,11)" rx="2" ry="2" />
<text x="1051.43" y="1871.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="467.0" y="1877" width="0.1" height="15.0" fill="rgb(231,111,17)" rx="2" ry="2" />
<text x="470.01" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, Swift.Int64) -&gt; () (9 samples, 0.03%)</title><rect x="1472.2" y="1941" width="0.6" height="15.0" fill="rgb(251,11,17)" rx="2" ry="2" />
<text x="1475.17" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::AddDim (2 samples, 0.01%)</title><rect x="113.4" y="1701" width="0.2" height="15.0" fill="rgb(206,213,28)" rx="2" ry="2" />
<text x="116.44" y="1711.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (44 samples, 0.17%)</title><rect x="982.7" y="1925" width="3.0" height="15.0" fill="rgb(206,60,51)" rx="2" ry="2" />
<text x="985.72" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (9 samples, 0.03%)</title><rect x="67.5" y="1829" width="0.6" height="15.0" fill="rgb(227,189,1)" rx="2" ry="2" />
<text x="70.53" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (8 samples, 0.03%)</title><rect x="61.8" y="1925" width="0.5" height="15.0" fill="rgb(208,56,37)" rx="2" ry="2" />
<text x="64.76" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (28 samples, 0.11%)</title><rect x="878.0" y="1861" width="2.0" height="15.0" fill="rgb(213,5,32)" rx="2" ry="2" />
<text x="881.04" y="1871.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="1087.6" y="1765" width="0.2" height="15.0" fill="rgb(252,136,22)" rx="2" ry="2" />
<text x="1090.61" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::TensorShapeBase (2 samples, 0.01%)</title><rect x="1025.5" y="1749" width="0.1" height="15.0" fill="rgb(242,228,43)" rx="2" ry="2" />
<text x="1028.47" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (5 samples, 0.02%)</title><rect x="1262.4" y="1765" width="0.3" height="15.0" fill="rgb(224,110,8)" rx="2" ry="2" />
<text x="1265.40" y="1775.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (4 samples, 0.02%)</title><rect x="479.6" y="1797" width="0.3" height="15.0" fill="rgb(221,131,38)" rx="2" ry="2" />
<text x="482.59" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::deallocate_buffer (3 samples, 0.01%)</title><rect x="666.5" y="1765" width="0.2" height="15.0" fill="rgb(206,159,11)" rx="2" ry="2" />
<text x="669.48" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (3 samples, 0.01%)</title><rect x="455.9" y="1893" width="0.2" height="15.0" fill="rgb(225,13,17)" rx="2" ry="2" />
<text x="458.88" y="1903.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="905.2" y="1877" width="0.3" height="15.0" fill="rgb(246,140,47)" rx="2" ry="2" />
<text x="908.19" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::InitDims (2 samples, 0.01%)</title><rect x="324.5" y="1685" width="0.2" height="15.0" fill="rgb(214,79,14)" rx="2" ry="2" />
<text x="327.53" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (104 samples, 0.40%)</title><rect x="318.8" y="1781" width="7.2" height="15.0" fill="rgb(227,152,12)" rx="2" ry="2" />
<text x="321.82" y="1791.5" ></text>
</g>
<g >
<title>swift::TargetMetadata&lt;swift::InProcess&gt;::isCanonicalStaticallySpecializedGenericMetadata (2 samples, 0.01%)</title><rect x="406.4" y="1877" width="0.1" height="15.0" fill="rgb(232,55,46)" rx="2" ry="2" />
<text x="409.39" y="1887.5" ></text>
</g>
<g >
<title>implicit closure #1 (Swift.Int) -&gt; Swift.Int64 in TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (4 samples, 0.02%)</title><rect x="1442.0" y="1701" width="0.3" height="15.0" fill="rgb(216,228,28)" rx="2" ry="2" />
<text x="1445.00" y="1711.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1179.5" y="1941" width="0.1" height="15.0" fill="rgb(224,5,17)" rx="2" ry="2" />
<text x="1182.51" y="1951.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="54.2" y="1941" width="0.1" height="15.0" fill="rgb(228,82,28)" rx="2" ry="2" />
<text x="57.20" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (3 samples, 0.01%)</title><rect x="1264.7" y="1733" width="0.2" height="15.0" fill="rgb(216,74,19)" rx="2" ry="2" />
<text x="1267.67" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (21 samples, 0.08%)</title><rect x="1145.9" y="1941" width="1.4" height="15.0" fill="rgb(208,88,40)" rx="2" ry="2" />
<text x="1148.90" y="1951.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1268.0" y="1845" width="0.2" height="15.0" fill="rgb(217,57,33)" rx="2" ry="2" />
<text x="1271.04" y="1855.5" ></text>
</g>
<g >
<title>__pthread_getspecific (2 samples, 0.01%)</title><rect x="280.4" y="1829" width="0.1" height="15.0" fill="rgb(232,38,32)" rx="2" ry="2" />
<text x="283.40" y="1839.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type [TensorFlow.Context] and conformance [A] : Swift.Collection in Swift (2 samples, 0.01%)</title><rect x="623.5" y="1877" width="0.2" height="15.0" fill="rgb(213,149,40)" rx="2" ry="2" />
<text x="626.52" y="1887.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="1109.0" y="1893" width="0.1" height="15.0" fill="rgb(212,141,43)" rx="2" ry="2" />
<text x="1111.99" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.CTensorTensorBuffer.deinit (3 samples, 0.01%)</title><rect x="54.7" y="1925" width="0.2" height="15.0" fill="rgb(248,133,2)" rx="2" ry="2" />
<text x="57.68" y="1935.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (4 samples, 0.02%)</title><rect x="249.8" y="1733" width="0.3" height="15.0" fill="rgb(233,68,1)" rx="2" ry="2" />
<text x="252.81" y="1743.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrBool (35 samples, 0.14%)</title><rect x="1041.4" y="1893" width="2.4" height="15.0" fill="rgb(240,169,12)" rx="2" ry="2" />
<text x="1044.35" y="1903.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (31 samples, 0.12%)</title><rect x="1223.9" y="1925" width="2.1" height="15.0" fill="rgb(246,218,46)" rx="2" ry="2" />
<text x="1226.91" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (45 samples, 0.17%)</title><rect x="514.1" y="1733" width="3.1" height="15.0" fill="rgb(221,125,46)" rx="2" ry="2" />
<text x="517.09" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::DeviceBase::eigen_cpu_device (2 samples, 0.01%)</title><rect x="1139.5" y="1749" width="0.1" height="15.0" fill="rgb(208,79,45)" rx="2" ry="2" />
<text x="1142.50" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (15 samples, 0.06%)</title><rect x="1449.5" y="1749" width="1.0" height="15.0" fill="rgb(221,116,3)" rx="2" ry="2" />
<text x="1452.49" y="1759.5" ></text>
</g>
<g >
<title>swift_endAccess (2 samples, 0.01%)</title><rect x="182.7" y="1909" width="0.1" height="15.0" fill="rgb(249,137,12)" rx="2" ry="2" />
<text x="185.66" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::internal::TransposeUsingEigen&lt;Eigen::ThreadPoolDevice, unsigned long long, 2&gt; (59 samples, 0.23%)</title><rect x="921.9" y="1621" width="4.0" height="15.0" fill="rgb(227,81,53)" rx="2" ry="2" />
<text x="924.89" y="1631.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (17 samples, 0.07%)</title><rect x="158.3" y="1845" width="1.2" height="15.0" fill="rgb(244,189,25)" rx="2" ry="2" />
<text x="161.33" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (11 samples, 0.04%)</title><rect x="162.0" y="1861" width="0.7" height="15.0" fill="rgb(212,104,0)" rx="2" ry="2" />
<text x="164.97" y="1871.5" ></text>
</g>
<g >
<title>swift_retain (21 samples, 0.08%)</title><rect x="626.5" y="1877" width="1.5" height="15.0" fill="rgb(230,41,24)" rx="2" ry="2" />
<text x="629.54" y="1887.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.02%)</title><rect x="23.5" y="1973" width="0.3" height="15.0" fill="rgb(236,78,22)" rx="2" ry="2" />
<text x="26.47" y="1983.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (2 samples, 0.01%)</title><rect x="1468.3" y="1925" width="0.1" height="15.0" fill="rgb(240,29,53)" rx="2" ry="2" />
<text x="1471.26" y="1935.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (4 samples, 0.02%)</title><rect x="585.9" y="1861" width="0.3" height="15.0" fill="rgb(253,136,51)" rx="2" ry="2" />
<text x="588.92" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (40 samples, 0.15%)</title><rect x="76.1" y="1925" width="2.7" height="15.0" fill="rgb(221,196,47)" rx="2" ry="2" />
<text x="79.05" y="1935.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="893.0" y="1861" width="0.1" height="15.0" fill="rgb(225,118,6)" rx="2" ry="2" />
<text x="895.95" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1445" width="0.9" height="15.0" fill="rgb(219,29,29)" rx="2" ry="2" />
<text x="24.27" y="1455.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (90 samples, 0.35%)</title><rect x="194.5" y="1941" width="6.2" height="15.0" fill="rgb(237,58,45)" rx="2" ry="2" />
<text x="197.48" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(handle: TensorFlow.TensorHandle&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (3 samples, 0.01%)</title><rect x="649.4" y="1797" width="0.2" height="15.0" fill="rgb(237,45,54)" rx="2" ry="2" />
<text x="652.43" y="1807.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (235 samples, 0.91%)</title><rect x="633.3" y="1797" width="16.1" height="15.0" fill="rgb(209,173,20)" rx="2" ry="2" />
<text x="636.28" y="1807.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="1458.9" y="1765" width="0.1" height="15.0" fill="rgb(228,176,41)" rx="2" ry="2" />
<text x="1461.91" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (15 samples, 0.06%)</title><rect x="1192.2" y="1781" width="1.1" height="15.0" fill="rgb(211,114,17)" rx="2" ry="2" />
<text x="1195.22" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (88 samples, 0.34%)</title><rect x="414.7" y="1941" width="6.1" height="15.0" fill="rgb(243,208,18)" rx="2" ry="2" />
<text x="417.70" y="1951.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::initializeWithCopy (2 samples, 0.01%)</title><rect x="303.4" y="1861" width="0.1" height="15.0" fill="rgb(238,212,32)" rx="2" ry="2" />
<text x="306.36" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (26 samples, 0.10%)</title><rect x="139.0" y="1861" width="1.8" height="15.0" fill="rgb(211,90,6)" rx="2" ry="2" />
<text x="142.01" y="1871.5" ></text>
</g>
<g >
<title>__tls_get_addr (25 samples, 0.10%)</title><rect x="1400.9" y="1813" width="1.7" height="15.0" fill="rgb(238,126,12)" rx="2" ry="2" />
<text x="1403.90" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (4 samples, 0.02%)</title><rect x="1434.2" y="1845" width="0.2" height="15.0" fill="rgb(239,117,6)" rx="2" ry="2" />
<text x="1437.16" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::input (2 samples, 0.01%)</title><rect x="873.3" y="1701" width="0.1" height="15.0" fill="rgb(207,130,36)" rx="2" ry="2" />
<text x="876.30" y="1711.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle._cTensorHandle.getter : Swift.OpaquePointer (3 samples, 0.01%)</title><rect x="1111.9" y="1925" width="0.2" height="15.0" fill="rgb(206,217,36)" rx="2" ry="2" />
<text x="1114.94" y="1935.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (5 samples, 0.02%)</title><rect x="62.9" y="1925" width="0.4" height="15.0" fill="rgb(223,68,1)" rx="2" ry="2" />
<text x="65.93" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::TensorInterface::ToTensor (5 samples, 0.02%)</title><rect x="258.5" y="1813" width="0.3" height="15.0" fill="rgb(212,51,28)" rx="2" ry="2" />
<text x="261.47" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (2 samples, 0.01%)</title><rect x="558.8" y="1925" width="0.1" height="15.0" fill="rgb(251,64,28)" rx="2" ry="2" />
<text x="561.77" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (2 samples, 0.01%)</title><rect x="842.5" y="1765" width="0.1" height="15.0" fill="rgb(206,116,33)" rx="2" ry="2" />
<text x="845.50" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (14 samples, 0.05%)</title><rect x="115.0" y="1877" width="0.9" height="15.0" fill="rgb(208,38,38)" rx="2" ry="2" />
<text x="117.96" y="1887.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="612.5" y="1781" width="0.1" height="15.0" fill="rgb(210,48,53)" rx="2" ry="2" />
<text x="615.45" y="1791.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="386.8" y="1893" width="0.2" height="15.0" fill="rgb(243,197,3)" rx="2" ry="2" />
<text x="389.80" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (151 samples, 0.58%)</title><rect x="573.1" y="1845" width="10.4" height="15.0" fill="rgb(206,90,42)" rx="2" ry="2" />
<text x="576.14" y="1855.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (2 samples, 0.01%)</title><rect x="592.0" y="1877" width="0.1" height="15.0" fill="rgb(206,19,31)" rx="2" ry="2" />
<text x="594.97" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::ReductionOp&lt;Eigen::ThreadPoolDevice, double, int, Eigen::internal::SumReducer&lt;double&gt; &gt;::Compute (46 samples, 0.18%)</title><rect x="578.7" y="1717" width="3.2" height="15.0" fill="rgb(216,132,34)" rx="2" ry="2" />
<text x="581.70" y="1727.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="94.4" y="1701" width="0.1" height="15.0" fill="rgb(239,199,50)" rx="2" ry="2" />
<text x="97.41" y="1711.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInputList&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(A) -&gt; () (3 samples, 0.01%)</title><rect x="1491.1" y="1957" width="0.3" height="15.0" fill="rgb(208,39,13)" rx="2" ry="2" />
<text x="1494.15" y="1967.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="450.4" y="1797" width="0.1" height="15.0" fill="rgb(207,214,5)" rx="2" ry="2" />
<text x="453.38" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (57 samples, 0.22%)</title><rect x="351.2" y="1925" width="3.9" height="15.0" fill="rgb(242,15,39)" rx="2" ry="2" />
<text x="354.19" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (23 samples, 0.09%)</title><rect x="999.8" y="1861" width="1.5" height="15.0" fill="rgb(250,172,30)" rx="2" ry="2" />
<text x="1002.77" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (2 samples, 0.01%)</title><rect x="584.4" y="1845" width="0.1" height="15.0" fill="rgb(250,106,5)" rx="2" ry="2" />
<text x="587.41" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (8 samples, 0.03%)</title><rect x="1458.8" y="1909" width="0.6" height="15.0" fill="rgb(230,222,16)" rx="2" ry="2" />
<text x="1461.84" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.array.getter : TensorFlow.ShapedArray&lt;A&gt; (15 samples, 0.06%)</title><rect x="1461.9" y="1941" width="1.1" height="15.0" fill="rgb(211,124,33)" rx="2" ry="2" />
<text x="1464.93" y="1951.5" ></text>
</g>
<g >
<title>swift::TargetMetadata&lt;swift::InProcess&gt;::isCanonicalStaticallySpecializedGenericMetadata (6 samples, 0.02%)</title><rect x="654.4" y="1861" width="0.4" height="15.0" fill="rgb(242,170,22)" rx="2" ry="2" />
<text x="657.38" y="1871.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="712.4" y="1877" width="0.1" height="15.0" fill="rgb(222,125,0)" rx="2" ry="2" />
<text x="715.39" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (2 samples, 0.01%)</title><rect x="1244.5" y="1781" width="0.1" height="15.0" fill="rgb(216,146,3)" rx="2" ry="2" />
<text x="1247.46" y="1791.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="885.3" y="1749" width="0.2" height="15.0" fill="rgb(245,30,1)" rx="2" ry="2" />
<text x="888.26" y="1759.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="801.8" y="1877" width="0.2" height="15.0" fill="rgb(251,180,25)" rx="2" ry="2" />
<text x="804.81" y="1887.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (247 samples, 0.95%)</title><rect x="1150.9" y="1861" width="17.0" height="15.0" fill="rgb(218,181,0)" rx="2" ry="2" />
<text x="1153.91" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::~TensorHandle (2 samples, 0.01%)</title><rect x="168.2" y="1877" width="0.2" height="15.0" fill="rgb(254,58,45)" rx="2" ry="2" />
<text x="171.23" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.internalConsistencyCheck(_: Swift.Bool, _: Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="585.6" y="1861" width="0.1" height="15.0" fill="rgb(220,20,1)" rx="2" ry="2" />
<text x="588.58" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::CancellationManager::~CancellationManager (2 samples, 0.01%)</title><rect x="578.4" y="1717" width="0.1" height="15.0" fill="rgb(250,53,1)" rx="2" ry="2" />
<text x="581.36" y="1727.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1140.9" y="1877" width="0.1" height="15.0" fill="rgb(224,198,13)" rx="2" ry="2" />
<text x="1143.88" y="1887.5" ></text>
</g>
<g >
<title>swift_retain (9 samples, 0.03%)</title><rect x="853.8" y="1893" width="0.7" height="15.0" fill="rgb(236,68,30)" rx="2" ry="2" />
<text x="856.85" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for Swift.Collection.subscript.read : (A.Index) -&gt; A.Element in conformance [A : B].Keys : Swift.Collection in Swift with unmangled suffix &quot;.resume.0&quot; (2 samples, 0.01%)</title><rect x="238.9" y="1877" width="0.1" height="15.0" fill="rgb(221,210,44)" rx="2" ry="2" />
<text x="241.88" y="1887.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1030.0" y="1861" width="0.1" height="15.0" fill="rgb(209,159,14)" rx="2" ry="2" />
<text x="1033.01" y="1871.5" ></text>
</g>
<g >
<title>__malloc_usable_size (3 samples, 0.01%)</title><rect x="59.8" y="1941" width="0.2" height="15.0" fill="rgb(224,40,10)" rx="2" ry="2" />
<text x="62.76" y="1951.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (2 samples, 0.01%)</title><rect x="269.4" y="1893" width="0.1" height="15.0" fill="rgb(222,58,5)" rx="2" ry="2" />
<text x="272.40" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (13 samples, 0.05%)</title><rect x="156.3" y="1877" width="0.9" height="15.0" fill="rgb(230,181,5)" rx="2" ry="2" />
<text x="159.33" y="1887.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Double&gt; of TensorFlow.Tensor.scalarized() -&gt; A (28 samples, 0.11%)</title><rect x="1461.7" y="1973" width="2.0" height="15.0" fill="rgb(254,58,25)" rx="2" ry="2" />
<text x="1464.73" y="1983.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (18 samples, 0.07%)</title><rect x="1081.7" y="1893" width="1.2" height="15.0" fill="rgb(213,138,16)" rx="2" ry="2" />
<text x="1084.70" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (20 samples, 0.08%)</title><rect x="732.6" y="1829" width="1.4" height="15.0" fill="rgb(226,107,30)" rx="2" ry="2" />
<text x="735.60" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (22 samples, 0.08%)</title><rect x="283.4" y="1845" width="1.5" height="15.0" fill="rgb(249,17,29)" rx="2" ry="2" />
<text x="286.35" y="1855.5" ></text>
</g>
<g >
<title>partial apply forwarder for AD__$s11SwiftFusion7betweenyAA5Pose2VAD_ADtF__pullback_src_0_wrt_0_1 (11 samples, 0.04%)</title><rect x="1292.8" y="1861" width="0.8" height="15.0" fill="rgb(248,66,6)" rx="2" ry="2" />
<text x="1295.85" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (221 samples, 0.85%)</title><rect x="1185.8" y="1877" width="15.2" height="15.0" fill="rgb(229,96,37)" rx="2" ry="2" />
<text x="1188.83" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (8 samples, 0.03%)</title><rect x="129.9" y="1749" width="0.5" height="15.0" fill="rgb(217,145,36)" rx="2" ry="2" />
<text x="132.87" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::NodeDef (3 samples, 0.01%)</title><rect x="1096.1" y="1877" width="0.2" height="15.0" fill="rgb(239,102,39)" rx="2" ry="2" />
<text x="1099.06" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (4 samples, 0.02%)</title><rect x="83.2" y="1893" width="0.3" height="15.0" fill="rgb(211,216,29)" rx="2" ry="2" />
<text x="86.20" y="1903.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (6 samples, 0.02%)</title><rect x="445.6" y="1893" width="0.4" height="15.0" fill="rgb(251,149,35)" rx="2" ry="2" />
<text x="448.57" y="1903.5" ></text>
</g>
<g >
<title>merged protocol witness for Swift.Sequence._copyContents(initializing: Swift.UnsafeMutableBufferPointer&lt;A.Element&gt;) -&gt; (A.Iterator, Swift.Int) in conformance Swift.UnsafeMutableBufferPointer&lt;A&gt; : Swift.Sequence in Swift (4 samples, 0.02%)</title><rect x="396.0" y="1765" width="0.3" height="15.0" fill="rgb(229,47,35)" rx="2" ry="2" />
<text x="399.01" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (11 samples, 0.04%)</title><rect x="1012.7" y="1845" width="0.7" height="15.0" fill="rgb(217,47,28)" rx="2" ry="2" />
<text x="1015.69" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::Buffer&lt;double&gt;::~Buffer (2 samples, 0.01%)</title><rect x="169.9" y="1845" width="0.2" height="15.0" fill="rgb(213,157,5)" rx="2" ry="2" />
<text x="172.94" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol._unpackTensorHandles(into: Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt;?) -&gt; () in conformance &lt;A where A: TensorFlow.TensorGroup&gt; [A] : TensorFlow.TensorArrayProtocol in TensorFlow (15 samples, 0.06%)</title><rect x="1267.4" y="1893" width="1.0" height="15.0" fill="rgb(252,73,12)" rx="2" ry="2" />
<text x="1270.42" y="1903.5" ></text>
</g>
<g >
<title>type metadata accessor for __C.TF_Code (2 samples, 0.01%)</title><rect x="932.3" y="1861" width="0.1" height="15.0" fill="rgb(217,71,17)" rx="2" ry="2" />
<text x="935.27" y="1871.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeMutableRawPointer) -&gt; () in (extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (38 samples, 0.15%)</title><rect x="479.9" y="1797" width="2.6" height="15.0" fill="rgb(228,107,15)" rx="2" ry="2" />
<text x="482.86" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::CancellationManager::~CancellationManager (2 samples, 0.01%)</title><rect x="436.3" y="1765" width="0.1" height="15.0" fill="rgb(244,155,33)" rx="2" ry="2" />
<text x="439.29" y="1775.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (7 samples, 0.03%)</title><rect x="595.2" y="1877" width="0.5" height="15.0" fill="rgb(241,182,48)" rx="2" ry="2" />
<text x="598.20" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::~OpKernelContext (2 samples, 0.01%)</title><rect x="688.3" y="1701" width="0.1" height="15.0" fill="rgb(218,129,41)" rx="2" ry="2" />
<text x="691.27" y="1711.5" ></text>
</g>
<g >
<title>std::_Hash_bytes (4 samples, 0.02%)</title><rect x="893.8" y="1845" width="0.3" height="15.0" fill="rgb(206,116,20)" rx="2" ry="2" />
<text x="896.85" y="1855.5" ></text>
</g>
<g >
<title>partial apply forwarder for closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1 in TensorFlow.ShapedArray.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (27 samples, 0.10%)</title><rect x="395.3" y="1877" width="1.8" height="15.0" fill="rgb(254,204,44)" rx="2" ry="2" />
<text x="398.25" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (3 samples, 0.01%)</title><rect x="73.1" y="1877" width="0.2" height="15.0" fill="rgb(240,87,42)" rx="2" ry="2" />
<text x="76.10" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (3 samples, 0.01%)</title><rect x="691.4" y="1829" width="0.2" height="15.0" fill="rgb(211,3,10)" rx="2" ry="2" />
<text x="694.36" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.rank.getter : Swift.Int (98 samples, 0.38%)</title><rect x="996.4" y="1877" width="6.7" height="15.0" fill="rgb(214,201,18)" rx="2" ry="2" />
<text x="999.40" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (2 samples, 0.01%)</title><rect x="329.5" y="1845" width="0.2" height="15.0" fill="rgb(214,104,52)" rx="2" ry="2" />
<text x="332.54" y="1855.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeMutableRawPointer) -&gt; () in (extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (3 samples, 0.01%)</title><rect x="1438.4" y="1861" width="0.2" height="15.0" fill="rgb(216,113,26)" rx="2" ry="2" />
<text x="1441.36" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.Equatable.== infix(A, A) -&gt; Swift.Bool in conformance __C.__swift_stdlib_UCharCategory : Swift.Equatable in __C_Synthesized (2 samples, 0.01%)</title><rect x="829.3" y="1733" width="0.1" height="15.0" fill="rgb(246,154,31)" rx="2" ry="2" />
<text x="832.31" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="24.6" y="1989" width="0.3" height="15.0" fill="rgb(207,153,50)" rx="2" ry="2" />
<text x="27.57" y="1999.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (8 samples, 0.03%)</title><rect x="1451.2" y="1845" width="0.6" height="15.0" fill="rgb(215,6,43)" rx="2" ry="2" />
<text x="1454.21" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (3 samples, 0.01%)</title><rect x="1261.7" y="1797" width="0.2" height="15.0" fill="rgb(231,24,44)" rx="2" ry="2" />
<text x="1264.71" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::Buffer&lt;double&gt;::~Buffer (5 samples, 0.02%)</title><rect x="171.4" y="1829" width="0.3" height="15.0" fill="rgb(243,207,32)" rx="2" ry="2" />
<text x="174.39" y="1839.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (12 samples, 0.05%)</title><rect x="537.1" y="1813" width="0.8" height="15.0" fill="rgb(232,141,23)" rx="2" ry="2" />
<text x="540.12" y="1823.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="768.1" y="1845" width="0.2" height="15.0" fill="rgb(209,35,28)" rx="2" ry="2" />
<text x="771.13" y="1855.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @escaping @callee_guaranteed (@in_guaranteed SwiftFusion.Vector3) -&gt; (@out SwiftFusion.AnyDerivative) to @escaping @callee_guaranteed (@unowned SwiftFusion.Vector3) -&gt; (@out SwiftFusion.AnyDerivative)partial apply forwarder with unmangled suffix &quot;.42&quot; (4 samples, 0.02%)</title><rect x="1294.3" y="1861" width="0.3" height="15.0" fill="rgb(246,71,54)" rx="2" ry="2" />
<text x="1297.29" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (3 samples, 0.01%)</title><rect x="1433.2" y="1781" width="0.2" height="15.0" fill="rgb(231,83,1)" rx="2" ry="2" />
<text x="1436.20" y="1791.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (4 samples, 0.02%)</title><rect x="1452.3" y="1797" width="0.3" height="15.0" fill="rgb(218,15,45)" rx="2" ry="2" />
<text x="1455.31" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::input (3 samples, 0.01%)</title><rect x="324.2" y="1701" width="0.2" height="15.0" fill="rgb(212,124,49)" rx="2" ry="2" />
<text x="327.18" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="1715.5" y="1989" width="0.2" height="15.0" fill="rgb(250,117,40)" rx="2" ry="2" />
<text x="1718.49" y="1999.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (63 samples, 0.24%)</title><rect x="932.8" y="1861" width="4.3" height="15.0" fill="rgb(240,72,47)" rx="2" ry="2" />
<text x="935.75" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="763.3" y="1829" width="0.2" height="15.0" fill="rgb(227,93,18)" rx="2" ry="2" />
<text x="766.32" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (21 samples, 0.08%)</title><rect x="279.3" y="1861" width="1.4" height="15.0" fill="rgb(230,0,32)" rx="2" ry="2" />
<text x="282.30" y="1871.5" ></text>
</g>
<g >
<title>closure #2 (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; () in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (11 samples, 0.04%)</title><rect x="1105.1" y="1781" width="0.8" height="15.0" fill="rgb(253,186,7)" rx="2" ry="2" />
<text x="1108.14" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::InternalSerializeWithCachedSizesToArray (3 samples, 0.01%)</title><rect x="787.7" y="1781" width="0.2" height="15.0" fill="rgb(239,184,14)" rx="2" ry="2" />
<text x="790.65" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::IsReady (11 samples, 0.04%)</title><rect x="299.2" y="1813" width="0.8" height="15.0" fill="rgb(205,177,0)" rx="2" ry="2" />
<text x="302.23" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorHandle (6 samples, 0.02%)</title><rect x="1238.4" y="1765" width="0.4" height="15.0" fill="rgb(229,160,20)" rx="2" ry="2" />
<text x="1241.41" y="1775.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (2 samples, 0.01%)</title><rect x="951.1" y="1877" width="0.1" height="15.0" fill="rgb(249,155,35)" rx="2" ry="2" />
<text x="954.10" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (8 samples, 0.03%)</title><rect x="1236.7" y="1701" width="0.5" height="15.0" fill="rgb(233,122,45)" rx="2" ry="2" />
<text x="1239.69" y="1711.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (2 samples, 0.01%)</title><rect x="80.0" y="1877" width="0.2" height="15.0" fill="rgb(228,117,42)" rx="2" ry="2" />
<text x="83.04" y="1887.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (9 samples, 0.03%)</title><rect x="1460.8" y="1973" width="0.7" height="15.0" fill="rgb(217,20,8)" rx="2" ry="2" />
<text x="1463.83" y="1983.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (23 samples, 0.09%)</title><rect x="583.6" y="1861" width="1.6" height="15.0" fill="rgb(249,184,11)" rx="2" ry="2" />
<text x="586.58" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="148.4" y="1829" width="0.4" height="15.0" fill="rgb(215,196,34)" rx="2" ry="2" />
<text x="151.43" y="1839.5" ></text>
</g>
<g >
<title>protocol witness for Swift._ExpressibleByBuiltinIntegerLiteral.init(_builtinIntegerLiteral: Builtin.IntLiteral) -&gt; A in conformance Swift.Int : Swift._ExpressibleByBuiltinIntegerLiteral in Swift (2 samples, 0.01%)</title><rect x="975.0" y="1877" width="0.2" height="15.0" fill="rgb(244,212,36)" rx="2" ry="2" />
<text x="978.02" y="1887.5" ></text>
</g>
<g >
<title>destroy value witness for Swift.IndexingIterator (2 samples, 0.01%)</title><rect x="45.8" y="1861" width="0.1" height="15.0" fill="rgb(209,157,33)" rx="2" ry="2" />
<text x="48.81" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1111.3" y="1829" width="0.3" height="15.0" fill="rgb(227,142,16)" rx="2" ry="2" />
<text x="1114.32" y="1839.5" ></text>
</g>
<g >
<title>Swift.Array.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (157 samples, 0.61%)</title><rect x="87.5" y="1909" width="10.8" height="15.0" fill="rgb(210,84,20)" rx="2" ry="2" />
<text x="90.46" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::set_output (2 samples, 0.01%)</title><rect x="688.1" y="1701" width="0.2" height="15.0" fill="rgb(205,108,13)" rx="2" ry="2" />
<text x="691.13" y="1711.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="547.1" y="1765" width="0.1" height="15.0" fill="rgb(223,114,44)" rx="2" ry="2" />
<text x="550.09" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (106 samples, 0.41%)</title><rect x="434.8" y="1829" width="7.3" height="15.0" fill="rgb(221,204,54)" rx="2" ry="2" />
<text x="437.78" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::RegisterXlaDeviceKernels (3 samples, 0.01%)</title><rect x="1495.1" y="1925" width="0.2" height="15.0" fill="rgb(222,2,7)" rx="2" ry="2" />
<text x="1498.06" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for Swift._ExpressibleByBuiltinIntegerLiteral.init(_builtinIntegerLiteral: Builtin.IntLiteral) -&gt; A in conformance Swift.Int : Swift._ExpressibleByBuiltinIntegerLiteral in Swift (2 samples, 0.01%)</title><rect x="331.7" y="1877" width="0.2" height="15.0" fill="rgb(211,185,45)" rx="2" ry="2" />
<text x="334.74" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (6 samples, 0.02%)</title><rect x="1439.8" y="1845" width="0.4" height="15.0" fill="rgb(223,145,33)" rx="2" ry="2" />
<text x="1442.80" y="1855.5" ></text>
</g>
<g >
<title>swift_once (2 samples, 0.01%)</title><rect x="242.3" y="1877" width="0.2" height="15.0" fill="rgb(205,125,33)" rx="2" ry="2" />
<text x="245.32" y="1887.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.String._uncheckedFromUTF8(_: Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;, asciiPreScanResult: Swift.Bool) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="302.2" y="1845" width="0.1" height="15.0" fill="rgb(215,160,20)" rx="2" ry="2" />
<text x="305.19" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.shape.getter : TensorFlow.TensorShape (11 samples, 0.04%)</title><rect x="1460.0" y="1925" width="0.8" height="15.0" fill="rgb(216,50,8)" rx="2" ry="2" />
<text x="1463.01" y="1935.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="859.2" y="1861" width="0.1" height="15.0" fill="rgb(208,12,21)" rx="2" ry="2" />
<text x="862.21" y="1871.5" ></text>
</g>
<g >
<title>swift_beginAccess (6 samples, 0.02%)</title><rect x="625.2" y="1877" width="0.4" height="15.0" fill="rgb(215,34,53)" rx="2" ry="2" />
<text x="628.17" y="1887.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="1206.2" y="1909" width="0.2" height="15.0" fill="rgb(207,75,43)" rx="2" ry="2" />
<text x="1209.24" y="1919.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="1207.7" y="1813" width="0.1" height="15.0" fill="rgb(250,202,9)" rx="2" ry="2" />
<text x="1210.69" y="1823.5" ></text>
</g>
<g >
<title>pod_destroy (2 samples, 0.01%)</title><rect x="1369.7" y="1797" width="0.1" height="15.0" fill="rgb(219,190,47)" rx="2" ry="2" />
<text x="1372.69" y="1807.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (20 samples, 0.08%)</title><rect x="1228.6" y="1909" width="1.4" height="15.0" fill="rgb(246,165,5)" rx="2" ry="2" />
<text x="1231.58" y="1919.5" ></text>
</g>
<g >
<title>Swift._DictionaryStorage.deinit (3 samples, 0.01%)</title><rect x="166.4" y="1957" width="0.2" height="15.0" fill="rgb(206,120,18)" rx="2" ry="2" />
<text x="169.44" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::input_dtypes (2 samples, 0.01%)</title><rect x="877.2" y="1797" width="0.2" height="15.0" fill="rgb(209,187,14)" rx="2" ry="2" />
<text x="880.21" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (14 samples, 0.05%)</title><rect x="1111.0" y="1909" width="0.9" height="15.0" fill="rgb(212,97,30)" rx="2" ry="2" />
<text x="1113.98" y="1919.5" ></text>
</g>
<g >
<title>swift_beginAccess (4 samples, 0.02%)</title><rect x="1487.1" y="1893" width="0.3" height="15.0" fill="rgb(238,98,45)" rx="2" ry="2" />
<text x="1490.09" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (20 samples, 0.08%)</title><rect x="1143.1" y="1893" width="1.4" height="15.0" fill="rgb(213,75,44)" rx="2" ry="2" />
<text x="1146.08" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (253 samples, 0.98%)</title><rect x="677.7" y="1877" width="17.4" height="15.0" fill="rgb(207,49,48)" rx="2" ry="2" />
<text x="680.75" y="1887.5" ></text>
</g>
<g >
<title>main (21,173 samples, 81.76%)</title><rect x="39.8" y="2021" width="1455.3" height="15.0" fill="rgb(235,36,5)" rx="2" ry="2" />
<text x="42.76" y="2031.5" >main</text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1085.3" y="1893" width="0.1" height="15.0" fill="rgb(205,162,36)" rx="2" ry="2" />
<text x="1088.27" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (16 samples, 0.06%)</title><rect x="461.3" y="1941" width="1.1" height="15.0" fill="rgb(236,180,30)" rx="2" ry="2" />
<text x="464.31" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.__allocating_init() -&gt; TensorFlow._ExecutionContext (3 samples, 0.01%)</title><rect x="1495.1" y="2005" width="0.2" height="15.0" fill="rgb(223,128,11)" rx="2" ry="2" />
<text x="1498.06" y="2015.5" ></text>
</g>
<g >
<title>tensorflow::gtl::FindPtrOrNull&lt;tensorflow::gtl::FlatMap&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::unordered_map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, unsigned int, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned int&gt; &gt; &gt; const*, tensorflow::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, void&gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt; &gt; (10 samples, 0.04%)</title><rect x="710.1" y="1829" width="0.7" height="15.0" fill="rgb(225,131,54)" rx="2" ry="2" />
<text x="713.12" y="1839.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (4 samples, 0.02%)</title><rect x="280.9" y="1861" width="0.3" height="15.0" fill="rgb(227,64,16)" rx="2" ry="2" />
<text x="283.95" y="1871.5" ></text>
</g>
<g >
<title>swift::metadataimpl::FixedSizeBufferValueWitnesses&lt;swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;, true, 8ul, 8ul, false&gt;::getEnumTagSinglePayload (3 samples, 0.01%)</title><rect x="49.3" y="1877" width="0.2" height="15.0" fill="rgb(240,227,36)" rx="2" ry="2" />
<text x="52.32" y="1887.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (139 samples, 0.54%)</title><rect x="663.5" y="1925" width="9.6" height="15.0" fill="rgb(239,197,30)" rx="2" ry="2" />
<text x="666.52" y="1935.5" ></text>
</g>
<g >
<title>__pthread_once (18 samples, 0.07%)</title><rect x="1349.6" y="1797" width="1.2" height="15.0" fill="rgb(243,207,19)" rx="2" ry="2" />
<text x="1352.55" y="1807.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (4 samples, 0.02%)</title><rect x="1126.4" y="1861" width="0.2" height="15.0" fill="rgb(208,125,29)" rx="2" ry="2" />
<text x="1129.37" y="1871.5" ></text>
</g>
<g >
<title>Pose2SLAMG2O (25,892 samples, 99.98%)</title><rect x="10.0" y="2069" width="1779.7" height="15.0" fill="rgb(207,4,38)" rx="2" ry="2" />
<text x="13.00" y="2079.5" >Pose2SLAMG2O</text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="334.2" y="1781" width="0.2" height="15.0" fill="rgb(229,92,25)" rx="2" ry="2" />
<text x="337.22" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (2 samples, 0.01%)</title><rect x="476.2" y="1733" width="0.1" height="15.0" fill="rgb(206,77,43)" rx="2" ry="2" />
<text x="479.15" y="1743.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (4 samples, 0.02%)</title><rect x="65.7" y="1861" width="0.3" height="15.0" fill="rgb(248,19,46)" rx="2" ry="2" />
<text x="68.74" y="1871.5" ></text>
</g>
<g >
<title>destroy value witness for Swift.IndexingIterator (2 samples, 0.01%)</title><rect x="1162.0" y="1749" width="0.1" height="15.0" fill="rgb(236,166,27)" rx="2" ry="2" />
<text x="1164.98" y="1759.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (2 samples, 0.01%)</title><rect x="1171.1" y="1925" width="0.1" height="15.0" fill="rgb(210,208,51)" rx="2" ry="2" />
<text x="1174.05" y="1935.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (10 samples, 0.04%)</title><rect x="824.4" y="1685" width="0.6" height="15.0" fill="rgb(211,140,15)" rx="2" ry="2" />
<text x="827.36" y="1695.5" ></text>
</g>
<g >
<title>TensorFlow.TensorDataType.init(__C.TF_DataType) -&gt; TensorFlow.TensorDataType (2 samples, 0.01%)</title><rect x="900.4" y="1909" width="0.1" height="15.0" fill="rgb(218,148,28)" rx="2" ry="2" />
<text x="903.38" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="148.4" y="1749" width="0.4" height="15.0" fill="rgb(248,54,43)" rx="2" ry="2" />
<text x="151.43" y="1759.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (3 samples, 0.01%)</title><rect x="537.5" y="1797" width="0.2" height="15.0" fill="rgb(237,27,12)" rx="2" ry="2" />
<text x="540.46" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (36 samples, 0.14%)</title><rect x="1033.6" y="1829" width="2.5" height="15.0" fill="rgb(237,8,11)" rx="2" ry="2" />
<text x="1036.58" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::RangeOp&lt;int&gt;::Compute (26 samples, 0.10%)</title><rect x="873.6" y="1701" width="1.8" height="15.0" fill="rgb(221,208,27)" rx="2" ry="2" />
<text x="876.57" y="1711.5" ></text>
</g>
<g >
<title>TensorFlow.ShapedArray.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (32 samples, 0.12%)</title><rect x="42.0" y="1909" width="2.2" height="15.0" fill="rgb(223,3,5)" rx="2" ry="2" />
<text x="44.96" y="1919.5" ></text>
</g>
<g >
<title>Eigen::internal::TensorExecutor&lt;Eigen::TensorAssignOp&lt;Eigen::TensorMap&lt;Eigen::Tensor&lt;double, 1, 1, long&gt;, 16, Eigen::MakePointer&gt;, Eigen::TensorCwiseBinaryOp&lt;Eigen::internal::scalar_sum_op&lt;double, double&gt;, Eigen::TensorMap&lt;Eigen::Tensor&lt;double const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const, Eigen::TensorMap&lt;Eigen::Tensor&lt;double const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const&gt; const&gt; const, Eigen::ThreadPoolDevice, true, (3 samples, 0.01%)</title><rect x="1138.3" y="1733" width="0.2" height="15.0" fill="rgb(211,119,52)" rx="2" ry="2" />
<text x="1141.33" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (9 samples, 0.03%)</title><rect x="131.5" y="1765" width="0.6" height="15.0" fill="rgb(254,196,5)" rx="2" ry="2" />
<text x="134.52" y="1775.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="376.4" y="1781" width="0.2" height="15.0" fill="rgb(234,163,0)" rx="2" ry="2" />
<text x="379.42" y="1791.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (167 samples, 0.64%)</title><rect x="1133.7" y="1957" width="11.4" height="15.0" fill="rgb(239,98,50)" rx="2" ry="2" />
<text x="1136.66" y="1967.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (2 samples, 0.01%)</title><rect x="659.5" y="1845" width="0.2" height="15.0" fill="rgb(237,22,34)" rx="2" ry="2" />
<text x="662.53" y="1855.5" ></text>
</g>
<g >
<title>TF_AllocateTensor (6 samples, 0.02%)</title><rect x="541.2" y="1797" width="0.5" height="15.0" fill="rgb(238,177,0)" rx="2" ry="2" />
<text x="544.24" y="1807.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="239.7" y="1941" width="0.1" height="15.0" fill="rgb(208,221,38)" rx="2" ry="2" />
<text x="242.71" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::tensor&lt;int, 1ul&gt; (2 samples, 0.01%)</title><rect x="920.8" y="1685" width="0.1" height="15.0" fill="rgb(215,122,29)" rx="2" ry="2" />
<text x="923.79" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (15 samples, 0.06%)</title><rect x="380.4" y="1893" width="1.0" height="15.0" fill="rgb(236,95,13)" rx="2" ry="2" />
<text x="383.41" y="1903.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1125.1" y="1861" width="0.2" height="15.0" fill="rgb(254,36,9)" rx="2" ry="2" />
<text x="1128.14" y="1871.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="782.7" y="1861" width="0.1" height="15.0" fill="rgb(206,195,1)" rx="2" ry="2" />
<text x="785.71" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (6 samples, 0.02%)</title><rect x="284.9" y="1861" width="0.4" height="15.0" fill="rgb(227,221,17)" rx="2" ry="2" />
<text x="287.94" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (21 samples, 0.08%)</title><rect x="702.0" y="1845" width="1.5" height="15.0" fill="rgb(226,93,14)" rx="2" ry="2" />
<text x="705.01" y="1855.5" ></text>
</g>
<g >
<title>TFE_NewOp (4 samples, 0.02%)</title><rect x="1433.5" y="1845" width="0.3" height="15.0" fill="rgb(214,31,37)" rx="2" ry="2" />
<text x="1436.48" y="1855.5" ></text>
</g>
<g >
<title>__swift_instantiateGenericMetadata (2 samples, 0.01%)</title><rect x="1037.3" y="1829" width="0.1" height="15.0" fill="rgb(209,74,32)" rx="2" ry="2" />
<text x="1040.30" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::NumDims (2 samples, 0.01%)</title><rect x="237.9" y="1845" width="0.2" height="15.0" fill="rgb(221,164,34)" rx="2" ry="2" />
<text x="240.92" y="1855.5" ></text>
</g>
<g >
<title>partial apply forwarder for closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1 in TensorFlow.ShapedArray.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (26 samples, 0.10%)</title><rect x="42.2" y="1877" width="1.8" height="15.0" fill="rgb(239,7,46)" rx="2" ry="2" />
<text x="45.17" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (4 samples, 0.02%)</title><rect x="1146.6" y="1893" width="0.3" height="15.0" fill="rgb(230,85,5)" rx="2" ry="2" />
<text x="1149.58" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (2 samples, 0.01%)</title><rect x="73.0" y="1877" width="0.1" height="15.0" fill="rgb(224,66,43)" rx="2" ry="2" />
<text x="75.96" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (94 samples, 0.36%)</title><rect x="961.8" y="1765" width="6.5" height="15.0" fill="rgb(217,177,14)" rx="2" ry="2" />
<text x="964.83" y="1775.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="107.1" y="1909" width="0.1" height="15.0" fill="rgb(247,64,24)" rx="2" ry="2" />
<text x="110.05" y="1919.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (8 samples, 0.03%)</title><rect x="1457.2" y="1893" width="0.5" height="15.0" fill="rgb(254,158,41)" rx="2" ry="2" />
<text x="1460.19" y="1903.5" ></text>
</g>
<g >
<title>TFE_DeleteTensorHandle (65 samples, 0.25%)</title><rect x="167.4" y="1925" width="4.5" height="15.0" fill="rgb(246,72,48)" rx="2" ry="2" />
<text x="170.40" y="1935.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (16 samples, 0.06%)</title><rect x="44.6" y="1877" width="1.1" height="15.0" fill="rgb(206,95,9)" rx="2" ry="2" />
<text x="47.57" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (5 samples, 0.02%)</title><rect x="1006.6" y="1861" width="0.3" height="15.0" fill="rgb(227,30,19)" rx="2" ry="2" />
<text x="1009.57" y="1871.5" ></text>
</g>
<g >
<title>swift_once (2 samples, 0.01%)</title><rect x="765.1" y="1845" width="0.1" height="15.0" fill="rgb(206,83,20)" rx="2" ry="2" />
<text x="768.11" y="1855.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="318.9" y="1765" width="0.1" height="15.0" fill="rgb(223,151,44)" rx="2" ry="2" />
<text x="321.89" y="1775.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (67 samples, 0.26%)</title><rect x="1003.9" y="1925" width="4.6" height="15.0" fill="rgb(252,25,12)" rx="2" ry="2" />
<text x="1006.89" y="1935.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (2 samples, 0.01%)</title><rect x="295.9" y="1877" width="0.2" height="15.0" fill="rgb(241,57,38)" rx="2" ry="2" />
<text x="298.93" y="1887.5" ></text>
</g>
<g >
<title>swift_endAccess (3 samples, 0.01%)</title><rect x="178.4" y="1909" width="0.2" height="15.0" fill="rgb(253,148,38)" rx="2" ry="2" />
<text x="181.40" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (53 samples, 0.20%)</title><rect x="559.1" y="1893" width="3.7" height="15.0" fill="rgb(208,156,40)" rx="2" ry="2" />
<text x="562.11" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (37 samples, 0.14%)</title><rect x="696.6" y="1813" width="2.5" height="15.0" fill="rgb(254,204,10)" rx="2" ry="2" />
<text x="699.58" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (92 samples, 0.36%)</title><rect x="1475.3" y="1893" width="6.4" height="15.0" fill="rgb(242,78,38)" rx="2" ry="2" />
<text x="1478.34" y="1903.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (2 samples, 0.01%)</title><rect x="794.2" y="1829" width="0.1" height="15.0" fill="rgb(226,145,21)" rx="2" ry="2" />
<text x="797.18" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (10 samples, 0.04%)</title><rect x="1121.6" y="1909" width="0.7" height="15.0" fill="rgb(240,162,44)" rx="2" ry="2" />
<text x="1124.63" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (847 samples, 3.27%)</title><rect x="725.2" y="1893" width="58.3" height="15.0" fill="rgb(212,31,6)" rx="2" ry="2" />
<text x="728.24" y="1903.5" >Tensor..</text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(copyingFromCTensor: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (2 samples, 0.01%)</title><rect x="1262.5" y="1749" width="0.2" height="15.0" fill="rgb(246,161,30)" rx="2" ry="2" />
<text x="1265.54" y="1759.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="839.8" y="1781" width="0.1" height="15.0" fill="rgb(211,174,18)" rx="2" ry="2" />
<text x="842.75" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (20 samples, 0.08%)</title><rect x="98.3" y="1909" width="1.3" height="15.0" fill="rgb(247,4,36)" rx="2" ry="2" />
<text x="101.25" y="1919.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (27 samples, 0.10%)</title><rect x="532.6" y="1877" width="1.8" height="15.0" fill="rgb(231,86,39)" rx="2" ry="2" />
<text x="535.58" y="1887.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="175.2" y="1925" width="0.2" height="15.0" fill="rgb(226,224,14)" rx="2" ry="2" />
<text x="178.24" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (3 samples, 0.01%)</title><rect x="1491.4" y="1781" width="0.2" height="15.0" fill="rgb(229,5,42)" rx="2" ry="2" />
<text x="1494.42" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (16 samples, 0.06%)</title><rect x="21.1" y="1909" width="1.1" height="15.0" fill="rgb(242,123,24)" rx="2" ry="2" />
<text x="24.13" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle._cTensorHandle.getter : Swift.OpaquePointer (6 samples, 0.02%)</title><rect x="903.1" y="1877" width="0.4" height="15.0" fill="rgb(224,168,22)" rx="2" ry="2" />
<text x="906.13" y="1887.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="242.2" y="1877" width="0.1" height="15.0" fill="rgb(233,9,34)" rx="2" ry="2" />
<text x="245.18" y="1887.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="181.6" y="1893" width="0.2" height="15.0" fill="rgb(207,85,45)" rx="2" ry="2" />
<text x="184.56" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (4 samples, 0.02%)</title><rect x="1466.4" y="1861" width="0.3" height="15.0" fill="rgb(222,72,10)" rx="2" ry="2" />
<text x="1469.40" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::DeviceFactory::AddDevices (3 samples, 0.01%)</title><rect x="1495.1" y="1957" width="0.2" height="15.0" fill="rgb(220,127,29)" rx="2" ry="2" />
<text x="1498.06" y="1967.5" ></text>
</g>
<g >
<title>TensorFlow.internalConsistencyCheck(_: Swift.Bool, _: Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (3 samples, 0.01%)</title><rect x="329.7" y="1861" width="0.3" height="15.0" fill="rgb(253,94,13)" rx="2" ry="2" />
<text x="332.75" y="1871.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (4 samples, 0.02%)</title><rect x="1048.1" y="1797" width="0.3" height="15.0" fill="rgb(227,112,25)" rx="2" ry="2" />
<text x="1051.09" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (31 samples, 0.12%)</title><rect x="1468.8" y="1877" width="2.1" height="15.0" fill="rgb(233,42,14)" rx="2" ry="2" />
<text x="1471.81" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (16 samples, 0.06%)</title><rect x="936.0" y="1829" width="1.1" height="15.0" fill="rgb(249,178,43)" rx="2" ry="2" />
<text x="938.98" y="1839.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (2 samples, 0.01%)</title><rect x="703.7" y="1893" width="0.2" height="15.0" fill="rgb(229,62,35)" rx="2" ry="2" />
<text x="706.73" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (4 samples, 0.02%)</title><rect x="1433.5" y="1861" width="0.3" height="15.0" fill="rgb(249,24,46)" rx="2" ry="2" />
<text x="1436.48" y="1871.5" ></text>
</g>
<g >
<title>swift_endAccess (2 samples, 0.01%)</title><rect x="671.8" y="1861" width="0.1" height="15.0" fill="rgb(253,117,54)" rx="2" ry="2" />
<text x="674.77" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="453" width="0.9" height="15.0" fill="rgb(235,188,37)" rx="2" ry="2" />
<text x="24.27" y="463.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="941.0" y="1893" width="0.1" height="15.0" fill="rgb(247,45,24)" rx="2" ry="2" />
<text x="944.00" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow._AnyTensorHandle._tfeTensorHandle.getter : TensorFlow.TFETensorHandle in conformance TensorFlow.TFETensorHandle : TensorFlow._AnyTensorHandle in TensorFlow (3 samples, 0.01%)</title><rect x="950.6" y="1861" width="0.2" height="15.0" fill="rgb(228,60,7)" rx="2" ry="2" />
<text x="953.55" y="1871.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (19 samples, 0.07%)</title><rect x="1230.0" y="1909" width="1.3" height="15.0" fill="rgb(247,8,20)" rx="2" ry="2" />
<text x="1233.03" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::input (3 samples, 0.01%)</title><rect x="1079.2" y="1733" width="0.2" height="15.0" fill="rgb(252,214,36)" rx="2" ry="2" />
<text x="1082.22" y="1743.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorOperation.updateAttribute(Swift.String, Swift.Bool) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TensorOperation in TensorFlow (51 samples, 0.20%)</title><rect x="341.3" y="1925" width="3.5" height="15.0" fill="rgb(218,111,37)" rx="2" ry="2" />
<text x="344.30" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (2 samples, 0.01%)</title><rect x="503.6" y="1861" width="0.2" height="15.0" fill="rgb(211,148,21)" rx="2" ry="2" />
<text x="506.65" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (3 samples, 0.01%)</title><rect x="402.8" y="1845" width="0.2" height="15.0" fill="rgb(240,14,2)" rx="2" ry="2" />
<text x="405.81" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::shaped&lt;double, 1ul&gt; (5 samples, 0.02%)</title><rect x="1078.7" y="1717" width="0.4" height="15.0" fill="rgb(236,125,13)" rx="2" ry="2" />
<text x="1081.74" y="1727.5" ></text>
</g>
<g >
<title>generic partial specialization &lt;serialized, Signature = @escaping @convention(thin) &lt;A, B where A: Swift.BinaryInteger, B == Swift.Int&gt; (@in_guaranteed A) -&gt; (@unowned Swift.Int)&gt; of Swift.numericCast&lt;A, B where A: Swift.BinaryInteger, B: Swift.BinaryInteger&gt;(A) -&gt; B (4 samples, 0.02%)</title><rect x="45.1" y="1829" width="0.2" height="15.0" fill="rgb(213,77,26)" rx="2" ry="2" />
<text x="48.05" y="1839.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_rlock (4 samples, 0.02%)</title><rect x="959.1" y="1797" width="0.3" height="15.0" fill="rgb(216,118,31)" rx="2" ry="2" />
<text x="962.15" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::IsReady (3 samples, 0.01%)</title><rect x="998.7" y="1829" width="0.2" height="15.0" fill="rgb(253,40,45)" rx="2" ry="2" />
<text x="1001.74" y="1839.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (23 samples, 0.09%)</title><rect x="398.5" y="1877" width="1.6" height="15.0" fill="rgb(209,7,23)" rx="2" ry="2" />
<text x="401.48" y="1887.5" ></text>
</g>
<g >
<title>pod_direct_initializeBufferWithCopyOfBuffer (21 samples, 0.08%)</title><rect x="1327.2" y="1845" width="1.5" height="15.0" fill="rgb(225,116,43)" rx="2" ry="2" />
<text x="1330.22" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.rank.getter : Swift.Int (19 samples, 0.07%)</title><rect x="40.6" y="1957" width="1.3" height="15.0" fill="rgb(244,84,51)" rx="2" ry="2" />
<text x="43.59" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (39 samples, 0.15%)</title><rect x="1537.0" y="1909" width="2.7" height="15.0" fill="rgb(244,59,14)" rx="2" ry="2" />
<text x="1539.99" y="1919.5" ></text>
</g>
<g >
<title>destroy value witness for TensorFlow.Tensor (34 samples, 0.13%)</title><rect x="187.1" y="1957" width="2.4" height="15.0" fill="rgb(249,157,12)" rx="2" ry="2" />
<text x="190.13" y="1967.5" ></text>
</g>
<g >
<title>std::_Function_handler&lt;void (3 samples, 0.01%)</title><rect x="749.7" y="1653" width="0.2" height="15.0" fill="rgb(231,55,11)" rx="2" ry="2" />
<text x="752.71" y="1663.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="618.2" y="1893" width="0.1" height="15.0" fill="rgb(215,229,7)" rx="2" ry="2" />
<text x="621.16" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1669" width="0.9" height="15.0" fill="rgb(226,23,21)" rx="2" ry="2" />
<text x="24.27" y="1679.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (6 samples, 0.02%)</title><rect x="226.3" y="1829" width="0.4" height="15.0" fill="rgb(217,114,44)" rx="2" ry="2" />
<text x="229.31" y="1839.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (4 samples, 0.02%)</title><rect x="888.8" y="1877" width="0.2" height="15.0" fill="rgb(227,188,13)" rx="2" ry="2" />
<text x="891.76" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (4 samples, 0.02%)</title><rect x="1491.4" y="1813" width="0.3" height="15.0" fill="rgb(239,157,29)" rx="2" ry="2" />
<text x="1494.42" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow._ThreadLocalState.deviceScopes.getter : TensorFlow.DeviceScopes (2 samples, 0.01%)</title><rect x="444.1" y="1877" width="0.2" height="15.0" fill="rgb(208,162,5)" rx="2" ry="2" />
<text x="447.12" y="1887.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (3 samples, 0.01%)</title><rect x="594.2" y="1829" width="0.2" height="15.0" fill="rgb(215,180,36)" rx="2" ry="2" />
<text x="597.17" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (33 samples, 0.13%)</title><rect x="933.1" y="1781" width="2.3" height="15.0" fill="rgb(235,52,24)" rx="2" ry="2" />
<text x="936.10" y="1791.5" ></text>
</g>
<g >
<title>getCache (2 samples, 0.01%)</title><rect x="538.8" y="1781" width="0.2" height="15.0" fill="rgb(221,167,45)" rx="2" ry="2" />
<text x="541.84" y="1791.5" ></text>
</g>
<g >
<title>swift_checkMetadataState (3 samples, 0.01%)</title><rect x="97.0" y="1813" width="0.2" height="15.0" fill="rgb(224,104,47)" rx="2" ry="2" />
<text x="100.02" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (63 samples, 0.24%)</title><rect x="1136.1" y="1909" width="4.3" height="15.0" fill="rgb(224,165,45)" rx="2" ry="2" />
<text x="1139.07" y="1919.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (31 samples, 0.12%)</title><rect x="1595.6" y="2053" width="2.2" height="15.0" fill="rgb(219,199,22)" rx="2" ry="2" />
<text x="1598.62" y="2063.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (34 samples, 0.13%)</title><rect x="266.4" y="1909" width="2.4" height="15.0" fill="rgb(206,12,33)" rx="2" ry="2" />
<text x="269.45" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::ByteSizeLong (2 samples, 0.01%)</title><rect x="1214.6" y="1845" width="0.2" height="15.0" fill="rgb(221,2,54)" rx="2" ry="2" />
<text x="1217.63" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (4 samples, 0.02%)</title><rect x="1467.6" y="1925" width="0.2" height="15.0" fill="rgb(220,10,23)" rx="2" ry="2" />
<text x="1470.57" y="1935.5" ></text>
</g>
<g >
<title>swift_once (2 samples, 0.01%)</title><rect x="899.2" y="1861" width="0.1" height="15.0" fill="rgb(251,181,13)" rx="2" ry="2" />
<text x="902.21" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (11 samples, 0.04%)</title><rect x="1248.3" y="1909" width="0.8" height="15.0" fill="rgb(225,45,47)" rx="2" ry="2" />
<text x="1251.31" y="1919.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (14 samples, 0.05%)</title><rect x="400.1" y="1877" width="0.9" height="15.0" fill="rgb(209,110,7)" rx="2" ry="2" />
<text x="403.06" y="1887.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="1051.5" y="1925" width="0.2" height="15.0" fill="rgb(228,34,46)" rx="2" ry="2" />
<text x="1054.45" y="1935.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (2 samples, 0.01%)</title><rect x="943.7" y="1829" width="0.1" height="15.0" fill="rgb(218,190,51)" rx="2" ry="2" />
<text x="946.68" y="1839.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace_aux (4 samples, 0.02%)</title><rect x="528.8" y="1829" width="0.3" height="15.0" fill="rgb(245,143,34)" rx="2" ry="2" />
<text x="531.80" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(repeating: A, shape: TensorFlow.TensorShape, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (44 samples, 0.17%)</title><rect x="1262.1" y="1909" width="3.0" height="15.0" fill="rgb(206,202,39)" rx="2" ry="2" />
<text x="1265.12" y="1919.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="878.9" y="1829" width="0.1" height="15.0" fill="rgb(211,38,33)" rx="2" ry="2" />
<text x="881.86" y="1839.5" ></text>
</g>
<g >
<title>Swift.Array.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (2 samples, 0.01%)</title><rect x="536.3" y="1925" width="0.1" height="15.0" fill="rgb(212,68,24)" rx="2" ry="2" />
<text x="539.29" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (80 samples, 0.31%)</title><rect x="109.5" y="1845" width="5.5" height="15.0" fill="rgb(206,9,42)" rx="2" ry="2" />
<text x="112.46" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (15 samples, 0.06%)</title><rect x="139.5" y="1845" width="1.0" height="15.0" fill="rgb(215,198,2)" rx="2" ry="2" />
<text x="142.49" y="1855.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (108 samples, 0.42%)</title><rect x="10.6" y="2037" width="7.4" height="15.0" fill="rgb(246,145,28)" rx="2" ry="2" />
<text x="13.62" y="2047.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="1082.7" y="1861" width="0.2" height="15.0" fill="rgb(245,60,45)" rx="2" ry="2" />
<text x="1085.73" y="1871.5" ></text>
</g>
<g >
<title>TFE_TensorHandleNumDims (5 samples, 0.02%)</title><rect x="237.7" y="1861" width="0.4" height="15.0" fill="rgb(214,167,21)" rx="2" ry="2" />
<text x="240.72" y="1871.5" ></text>
</g>
<g >
<title>swift_arrayDestroy (5 samples, 0.02%)</title><rect x="1494.7" y="1989" width="0.3" height="15.0" fill="rgb(232,67,21)" rx="2" ry="2" />
<text x="1497.65" y="1999.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (2 samples, 0.01%)</title><rect x="168.6" y="1861" width="0.1" height="15.0" fill="rgb(249,195,46)" rx="2" ry="2" />
<text x="171.57" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="882.4" y="1877" width="0.2" height="15.0" fill="rgb(219,111,19)" rx="2" ry="2" />
<text x="885.44" y="1887.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace_aux (2 samples, 0.01%)</title><rect x="788.3" y="1813" width="0.1" height="15.0" fill="rgb(208,127,39)" rx="2" ry="2" />
<text x="791.27" y="1823.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int64) -&gt; (@unowned Swift.Int32, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int64) -&gt; (@out Swift.Int32, @error @owned Swift.Error)partial apply forwarder with unmangled suffix &quot;.1&quot; (3 samples, 0.01%)</title><rect x="1433.0" y="1893" width="0.2" height="15.0" fill="rgb(234,75,6)" rx="2" ry="2" />
<text x="1436.00" y="1903.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::initializeWithCopy (3 samples, 0.01%)</title><rect x="837.3" y="1765" width="0.3" height="15.0" fill="rgb(236,205,26)" rx="2" ry="2" />
<text x="840.35" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (30 samples, 0.12%)</title><rect x="449.5" y="1845" width="2.0" height="15.0" fill="rgb(209,0,3)" rx="2" ry="2" />
<text x="452.48" y="1855.5" ></text>
</g>
<g >
<title>memset@plt (3 samples, 0.01%)</title><rect x="619.8" y="1893" width="0.2" height="15.0" fill="rgb(250,34,17)" rx="2" ry="2" />
<text x="622.81" y="1903.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (4 samples, 0.02%)</title><rect x="1249.4" y="1909" width="0.3" height="15.0" fill="rgb(232,32,9)" rx="2" ry="2" />
<text x="1252.41" y="1919.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (4 samples, 0.02%)</title><rect x="301.9" y="1845" width="0.3" height="15.0" fill="rgb(232,70,13)" rx="2" ry="2" />
<text x="304.91" y="1855.5" ></text>
</g>
<g >
<title>SwiftFusion._ConcreteDerivativeBox._unboxed&lt;A where A1: Swift.Differentiable, A1 == A1.Swift.Differentiable.TangentVector&gt;(to: A1.Type) -&gt; A1? (138 samples, 0.53%)</title><rect x="1339.4" y="1797" width="9.5" height="15.0" fill="rgb(243,136,53)" rx="2" ry="2" />
<text x="1342.45" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::ByteSizeLong (3 samples, 0.01%)</title><rect x="890.3" y="1797" width="0.2" height="15.0" fill="rgb(242,152,0)" rx="2" ry="2" />
<text x="893.34" y="1807.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="489.8" y="1909" width="0.2" height="15.0" fill="rgb(205,206,47)" rx="2" ry="2" />
<text x="492.83" y="1919.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.BidirectionalCollection.last.getter : A.Element? (2 samples, 0.01%)</title><rect x="583.9" y="1829" width="0.1" height="15.0" fill="rgb(208,81,14)" rx="2" ry="2" />
<text x="586.86" y="1839.5" ></text>
</g>
<g >
<title>storeEnumTagSinglePayload value witness for SwiftFusion.AnyDerivative (15 samples, 0.06%)</title><rect x="1416.3" y="1845" width="1.0" height="15.0" fill="rgb(205,81,8)" rx="2" ry="2" />
<text x="1419.29" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (4 samples, 0.02%)</title><rect x="1207.8" y="1813" width="0.3" height="15.0" fill="rgb(228,95,44)" rx="2" ry="2" />
<text x="1210.82" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (3 samples, 0.01%)</title><rect x="1471.6" y="1925" width="0.2" height="15.0" fill="rgb(234,1,1)" rx="2" ry="2" />
<text x="1474.56" y="1935.5" ></text>
</g>
<g >
<title>TF_DeleteTensor (2 samples, 0.01%)</title><rect x="90.3" y="1797" width="0.2" height="15.0" fill="rgb(225,135,37)" rx="2" ry="2" />
<text x="93.35" y="1807.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (8 samples, 0.03%)</title><rect x="972.5" y="1861" width="0.6" height="15.0" fill="rgb(248,209,39)" rx="2" ry="2" />
<text x="975.55" y="1871.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="1007.7" y="1893" width="0.2" height="15.0" fill="rgb(236,120,8)" rx="2" ry="2" />
<text x="1010.74" y="1903.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;int, std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt;, std::allocator&lt;std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;int&gt;, std::hash&lt;int&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::~_Hashtable (2 samples, 0.01%)</title><rect x="958.3" y="1813" width="0.1" height="15.0" fill="rgb(245,86,13)" rx="2" ry="2" />
<text x="961.25" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::OpKernelContext (5 samples, 0.02%)</title><rect x="964.6" y="1717" width="0.3" height="15.0" fill="rgb(211,20,14)" rx="2" ry="2" />
<text x="967.58" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::TensorInterface::ToTensor (4 samples, 0.02%)</title><rect x="1155.5" y="1749" width="0.3" height="15.0" fill="rgb(227,161,20)" rx="2" ry="2" />
<text x="1158.52" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="389" width="0.9" height="15.0" fill="rgb(209,216,36)" rx="2" ry="2" />
<text x="24.27" y="399.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (4 samples, 0.02%)</title><rect x="1032.1" y="1877" width="0.2" height="15.0" fill="rgb(239,12,9)" rx="2" ry="2" />
<text x="1035.07" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (39 samples, 0.15%)</title><rect x="101.9" y="1925" width="2.7" height="15.0" fill="rgb(254,159,31)" rx="2" ry="2" />
<text x="104.90" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (23 samples, 0.09%)</title><rect x="583.6" y="1877" width="1.6" height="15.0" fill="rgb(248,54,44)" rx="2" ry="2" />
<text x="586.58" y="1887.5" ></text>
</g>
<g >
<title>Swift.ContiguousArray._createNewBuffer(bufferIsUnique: Swift.Bool, minimumCapacity: Swift.Int, growForAppend: Swift.Bool) -&gt; () (3 samples, 0.01%)</title><rect x="231.5" y="1861" width="0.2" height="15.0" fill="rgb(233,5,1)" rx="2" ry="2" />
<text x="234.46" y="1871.5" ></text>
</g>
<g >
<title>swift_deallocClassInstance (2 samples, 0.01%)</title><rect x="1038.1" y="1877" width="0.2" height="15.0" fill="rgb(240,127,29)" rx="2" ry="2" />
<text x="1041.12" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::InternalSerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="1043.2" y="1813" width="0.1" height="15.0" fill="rgb(245,144,40)" rx="2" ry="2" />
<text x="1046.21" y="1823.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.ShapedArray&lt;A where A: TensorFlow._TensorFlowDataTypeCompatible&gt;.init(cTensorHandle: Swift.OpaquePointer) -&gt; TensorFlow.ShapedArray&lt;A&gt; (13 samples, 0.05%)</title><rect x="1461.9" y="1909" width="0.9" height="15.0" fill="rgb(241,122,50)" rx="2" ry="2" />
<text x="1464.93" y="1919.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1050.1" y="1893" width="0.2" height="15.0" fill="rgb(249,42,17)" rx="2" ry="2" />
<text x="1053.15" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (7 samples, 0.03%)</title><rect x="1165.6" y="1813" width="0.5" height="15.0" fill="rgb(207,7,22)" rx="2" ry="2" />
<text x="1168.62" y="1823.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (2 samples, 0.01%)</title><rect x="443.7" y="1845" width="0.1" height="15.0" fill="rgb(239,17,21)" rx="2" ry="2" />
<text x="446.71" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (14 samples, 0.05%)</title><rect x="710.9" y="1845" width="1.0" height="15.0" fill="rgb(247,185,13)" rx="2" ry="2" />
<text x="713.95" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (15 samples, 0.06%)</title><rect x="222.4" y="1893" width="1.0" height="15.0" fill="rgb(229,193,51)" rx="2" ry="2" />
<text x="225.39" y="1903.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (3 samples, 0.01%)</title><rect x="663.2" y="1925" width="0.3" height="15.0" fill="rgb(233,36,45)" rx="2" ry="2" />
<text x="666.25" y="1935.5" ></text>
</g>
<g >
<title>static Swift._DictionaryStorage.allocate(scale: Swift.Int8, age: Swift.Int32?, seed: Swift.Int?) -&gt; Swift._DictionaryStorage&lt;A, B&gt; (4 samples, 0.02%)</title><rect x="1052.0" y="1909" width="0.3" height="15.0" fill="rgb(214,58,27)" rx="2" ry="2" />
<text x="1055.00" y="1919.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (3 samples, 0.01%)</title><rect x="385.1" y="1813" width="0.2" height="15.0" fill="rgb(207,43,13)" rx="2" ry="2" />
<text x="388.08" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (3 samples, 0.01%)</title><rect x="1437.3" y="1797" width="0.2" height="15.0" fill="rgb(248,94,47)" rx="2" ry="2" />
<text x="1440.33" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow._AnyTensorHandle._tfeTensorHandle.getter : TensorFlow.TFETensorHandle in conformance TensorFlow.TFETensorHandle : TensorFlow._AnyTensorHandle in TensorFlow (5 samples, 0.02%)</title><rect x="1176.7" y="1893" width="0.3" height="15.0" fill="rgb(240,95,22)" rx="2" ry="2" />
<text x="1179.69" y="1903.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (5 samples, 0.02%)</title><rect x="681.2" y="1813" width="0.3" height="15.0" fill="rgb(226,216,38)" rx="2" ry="2" />
<text x="684.19" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (2 samples, 0.01%)</title><rect x="348.0" y="1829" width="0.2" height="15.0" fill="rgb(254,37,3)" rx="2" ry="2" />
<text x="351.03" y="1839.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="266.2" y="1909" width="0.2" height="15.0" fill="rgb(239,229,10)" rx="2" ry="2" />
<text x="269.24" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () (19 samples, 0.07%)</title><rect x="1247.8" y="1941" width="1.3" height="15.0" fill="rgb(219,36,46)" rx="2" ry="2" />
<text x="1250.76" y="1951.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="490.9" y="1925" width="0.2" height="15.0" fill="rgb(211,196,11)" rx="2" ry="2" />
<text x="493.86" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="309" width="0.9" height="15.0" fill="rgb(224,137,0)" rx="2" ry="2" />
<text x="24.27" y="319.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (344 samples, 1.33%)</title><rect x="568.5" y="1909" width="23.7" height="15.0" fill="rgb(228,226,32)" rx="2" ry="2" />
<text x="571.53" y="1919.5" >T..</text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="1466.0" y="1829" width="0.1" height="15.0" fill="rgb(243,47,24)" rx="2" ry="2" />
<text x="1468.99" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="238.1" y="1861" width="0.1" height="15.0" fill="rgb(222,158,20)" rx="2" ry="2" />
<text x="241.06" y="1871.5" ></text>
</g>
<g >
<title>Eigen::TensorCostModel&lt;Eigen::ThreadPoolDevice&gt;::numThreads (2 samples, 0.01%)</title><rect x="750.0" y="1669" width="0.1" height="15.0" fill="rgb(217,158,49)" rx="2" ry="2" />
<text x="752.99" y="1679.5" ></text>
</g>
<g >
<title>TFE_NewTensorHandle (29 samples, 0.11%)</title><rect x="637.8" y="1749" width="2.0" height="15.0" fill="rgb(246,212,32)" rx="2" ry="2" />
<text x="640.81" y="1759.5" ></text>
</g>
<g >
<title>swift_release (10 samples, 0.04%)</title><rect x="853.2" y="1893" width="0.6" height="15.0" fill="rgb(206,41,24)" rx="2" ry="2" />
<text x="856.16" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (6 samples, 0.02%)</title><rect x="197.8" y="1893" width="0.5" height="15.0" fill="rgb(251,164,34)" rx="2" ry="2" />
<text x="200.85" y="1903.5" ></text>
</g>
<g >
<title>__swift_destroy_boxed_opaque_existential_1 (3 samples, 0.01%)</title><rect x="605.1" y="1941" width="0.2" height="15.0" fill="rgb(215,198,8)" rx="2" ry="2" />
<text x="608.10" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (2 samples, 0.01%)</title><rect x="703.6" y="1877" width="0.1" height="15.0" fill="rgb(218,105,32)" rx="2" ry="2" />
<text x="706.59" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (140 samples, 0.54%)</title><rect x="916.5" y="1733" width="9.7" height="15.0" fill="rgb(229,11,17)" rx="2" ry="2" />
<text x="919.53" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (78 samples, 0.30%)</title><rect x="1475.5" y="1877" width="5.3" height="15.0" fill="rgb(231,35,21)" rx="2" ry="2" />
<text x="1478.47" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (23 samples, 0.09%)</title><rect x="1090.6" y="1941" width="1.6" height="15.0" fill="rgb(234,156,41)" rx="2" ry="2" />
<text x="1093.63" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (67 samples, 0.26%)</title><rect x="456.5" y="1941" width="4.6" height="15.0" fill="rgb(220,94,45)" rx="2" ry="2" />
<text x="459.49" y="1951.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (3 samples, 0.01%)</title><rect x="722.4" y="1861" width="0.2" height="15.0" fill="rgb(227,34,52)" rx="2" ry="2" />
<text x="725.43" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (345 samples, 1.33%)</title><rect x="468.0" y="1941" width="23.8" height="15.0" fill="rgb(223,117,26)" rx="2" ry="2" />
<text x="471.04" y="1951.5" >T..</text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (4 samples, 0.02%)</title><rect x="335.0" y="1765" width="0.2" height="15.0" fill="rgb(212,146,22)" rx="2" ry="2" />
<text x="337.97" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (14 samples, 0.05%)</title><rect x="757.3" y="1733" width="1.0" height="15.0" fill="rgb(233,7,16)" rx="2" ry="2" />
<text x="760.34" y="1743.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (71 samples, 0.27%)</title><rect x="563.5" y="1925" width="4.9" height="15.0" fill="rgb(247,13,22)" rx="2" ry="2" />
<text x="566.51" y="1935.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (277 samples, 1.07%)</title><rect x="632.9" y="1829" width="19.0" height="15.0" fill="rgb(213,155,28)" rx="2" ry="2" />
<text x="635.87" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::TF_TensorToTensor (5 samples, 0.02%)</title><rect x="247.1" y="1749" width="0.3" height="15.0" fill="rgb(252,49,44)" rx="2" ry="2" />
<text x="250.06" y="1759.5" ></text>
</g>
<g >
<title>protocol witness for Swift.ExpressibleByIntegerLiteral.init(integerLiteral: A.IntegerLiteralType) -&gt; A in conformance Swift.Int32 : Swift.ExpressibleByIntegerLiteral in Swift (2 samples, 0.01%)</title><rect x="508.4" y="1861" width="0.1" height="15.0" fill="rgb(244,188,17)" rx="2" ry="2" />
<text x="511.39" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="1005.9" y="1861" width="0.1" height="15.0" fill="rgb(219,19,6)" rx="2" ry="2" />
<text x="1008.88" y="1871.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (2 samples, 0.01%)</title><rect x="896.6" y="1781" width="0.1" height="15.0" fill="rgb(208,130,21)" rx="2" ry="2" />
<text x="899.60" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (31 samples, 0.12%)</title><rect x="1468.8" y="1909" width="2.1" height="15.0" fill="rgb(212,22,1)" rx="2" ry="2" />
<text x="1471.81" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for Swift.FixedWidthInteger.init(littleEndian: A) -&gt; A in conformance Swift.Int : Swift.FixedWidthInteger in Swift (2 samples, 0.01%)</title><rect x="86.1" y="1829" width="0.1" height="15.0" fill="rgb(238,38,15)" rx="2" ry="2" />
<text x="89.09" y="1839.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (4 samples, 0.02%)</title><rect x="1447.3" y="1845" width="0.3" height="15.0" fill="rgb(235,179,20)" rx="2" ry="2" />
<text x="1450.29" y="1855.5" ></text>
</g>
<g >
<title>type metadata accessor for Swift.Optional@plt (3 samples, 0.01%)</title><rect x="1397.3" y="1797" width="0.2" height="15.0" fill="rgb(205,155,47)" rx="2" ry="2" />
<text x="1400.25" y="1807.5" ></text>
</g>
<g >
<title>Swift._ContiguousArrayStorage.__deallocating_deinit (3 samples, 0.01%)</title><rect x="338.5" y="1861" width="0.3" height="15.0" fill="rgb(243,89,32)" rx="2" ry="2" />
<text x="341.55" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (456 samples, 1.76%)</title><rect x="906.6" y="1893" width="31.3" height="15.0" fill="rgb(227,35,24)" rx="2" ry="2" />
<text x="909.56" y="1903.5" >Te..</text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (6 samples, 0.02%)</title><rect x="1126.9" y="1909" width="0.4" height="15.0" fill="rgb(226,222,31)" rx="2" ry="2" />
<text x="1129.92" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (112 samples, 0.43%)</title><rect x="245.0" y="1909" width="7.7" height="15.0" fill="rgb(212,136,15)" rx="2" ry="2" />
<text x="248.00" y="1919.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (20 samples, 0.08%)</title><rect x="1130.9" y="1925" width="1.4" height="15.0" fill="rgb(227,121,51)" rx="2" ry="2" />
<text x="1133.91" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::gtl::FindPtrOrNull&lt;tensorflow::gtl::FlatMap&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::unordered_map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, unsigned int, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned int&gt; &gt; &gt; const*, tensorflow::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, void&gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt; &gt; (5 samples, 0.02%)</title><rect x="894.9" y="1829" width="0.3" height="15.0" fill="rgb(250,91,24)" rx="2" ry="2" />
<text x="897.88" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::ReductionHelper::out_reshape (2 samples, 0.01%)</title><rect x="153.6" y="1701" width="0.1" height="15.0" fill="rgb(245,51,14)" rx="2" ry="2" />
<text x="156.58" y="1711.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (15 samples, 0.06%)</title><rect x="891.7" y="1877" width="1.0" height="15.0" fill="rgb(247,102,12)" rx="2" ry="2" />
<text x="894.72" y="1887.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (4 samples, 0.02%)</title><rect x="1448.7" y="1829" width="0.2" height="15.0" fill="rgb(250,25,48)" rx="2" ry="2" />
<text x="1451.67" y="1839.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (4 samples, 0.02%)</title><rect x="454.3" y="1925" width="0.3" height="15.0" fill="rgb(211,143,34)" rx="2" ry="2" />
<text x="457.30" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::AllocateRaw (5 samples, 0.02%)</title><rect x="366.9" y="1637" width="0.3" height="15.0" fill="rgb(218,36,4)" rx="2" ry="2" />
<text x="369.87" y="1647.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (12 samples, 0.05%)</title><rect x="115.0" y="1861" width="0.9" height="15.0" fill="rgb(237,148,24)" rx="2" ry="2" />
<text x="118.03" y="1871.5" ></text>
</g>
<g >
<title>__swift_project_boxed_opaque_existential_1 (2 samples, 0.01%)</title><rect x="240.3" y="1941" width="0.1" height="15.0" fill="rgb(242,108,52)" rx="2" ry="2" />
<text x="243.26" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::cpu_allocator (2 samples, 0.01%)</title><rect x="128.6" y="1781" width="0.2" height="15.0" fill="rgb(251,156,18)" rx="2" ry="2" />
<text x="131.63" y="1791.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1045.0" y="1861" width="0.1" height="15.0" fill="rgb(241,100,36)" rx="2" ry="2" />
<text x="1047.99" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (10 samples, 0.04%)</title><rect x="981.0" y="1845" width="0.7" height="15.0" fill="rgb(205,154,50)" rx="2" ry="2" />
<text x="984.00" y="1855.5" ></text>
</g>
<g >
<title>swift_checkMetadataState (2 samples, 0.01%)</title><rect x="840.6" y="1781" width="0.1" height="15.0" fill="rgb(236,54,52)" rx="2" ry="2" />
<text x="843.58" y="1791.5" ></text>
</g>
<g >
<title>generic specialization &lt;serialized, Swift.Int64&gt; of Swift.ContiguousArray._createNewBuffer(bufferIsUnique: Swift.Bool, minimumCapacity: Swift.Int, growForAppend: Swift.Bool) -&gt; () (13 samples, 0.05%)</title><rect x="421.0" y="1957" width="0.9" height="15.0" fill="rgb(237,97,53)" rx="2" ry="2" />
<text x="424.03" y="1967.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="265.4" y="1893" width="0.2" height="15.0" fill="rgb(246,122,29)" rx="2" ry="2" />
<text x="268.41" y="1903.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="1096.3" y="1909" width="0.2" height="15.0" fill="rgb(228,75,49)" rx="2" ry="2" />
<text x="1099.34" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (17 samples, 0.07%)</title><rect x="692.2" y="1861" width="1.2" height="15.0" fill="rgb(215,22,9)" rx="2" ry="2" />
<text x="695.18" y="1871.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="282.0" y="1877" width="0.1" height="15.0" fill="rgb(239,124,12)" rx="2" ry="2" />
<text x="284.98" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (10 samples, 0.04%)</title><rect x="276.0" y="1701" width="0.7" height="15.0" fill="rgb(218,90,54)" rx="2" ry="2" />
<text x="279.00" y="1711.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="118.1" y="1781" width="0.2" height="15.0" fill="rgb(234,208,30)" rx="2" ry="2" />
<text x="121.12" y="1791.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (3 samples, 0.01%)</title><rect x="121.1" y="1829" width="0.2" height="15.0" fill="rgb(205,89,50)" rx="2" ry="2" />
<text x="124.14" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::allocate_tensor (2 samples, 0.01%)</title><rect x="541.4" y="1781" width="0.1" height="15.0" fill="rgb(244,108,19)" rx="2" ry="2" />
<text x="544.38" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.rank.getter : Swift.Int (35 samples, 0.14%)</title><rect x="392.4" y="1941" width="2.4" height="15.0" fill="rgb(211,157,31)" rx="2" ry="2" />
<text x="395.37" y="1951.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (4 samples, 0.02%)</title><rect x="782.4" y="1861" width="0.3" height="15.0" fill="rgb(211,93,3)" rx="2" ry="2" />
<text x="785.43" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (9 samples, 0.03%)</title><rect x="588.7" y="1765" width="0.7" height="15.0" fill="rgb(240,67,8)" rx="2" ry="2" />
<text x="591.74" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::ShouldStoreGraphs (2 samples, 0.01%)</title><rect x="1080.8" y="1829" width="0.1" height="15.0" fill="rgb(230,173,21)" rx="2" ry="2" />
<text x="1083.80" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.rank.getter : Swift.Int (10 samples, 0.04%)</title><rect x="237.7" y="1877" width="0.7" height="15.0" fill="rgb(211,29,39)" rx="2" ry="2" />
<text x="240.72" y="1887.5" ></text>
</g>
<g >
<title>type metadata accessor for TensorFlow.Tensor (3 samples, 0.01%)</title><rect x="657.8" y="1893" width="0.2" height="15.0" fill="rgb(209,75,24)" rx="2" ry="2" />
<text x="660.82" y="1903.5" ></text>
</g>
<g >
<title>Swift.Range.init(uncheckedBounds: (lower: A, upper: A)) -&gt; Swift.Range&lt;A&gt; (3 samples, 0.01%)</title><rect x="407.9" y="1893" width="0.2" height="15.0" fill="rgb(214,182,0)" rx="2" ry="2" />
<text x="410.90" y="1903.5" ></text>
</g>
<g >
<title>__swift_memcpy16_8 (2 samples, 0.01%)</title><rect x="378.7" y="1893" width="0.1" height="15.0" fill="rgb(240,191,17)" rx="2" ry="2" />
<text x="381.69" y="1903.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (2 samples, 0.01%)</title><rect x="1270.9" y="1925" width="0.1" height="15.0" fill="rgb(210,226,6)" rx="2" ry="2" />
<text x="1273.85" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for Swift.BinaryInteger.init&lt;A where A1: Swift.BinaryInteger&gt;(truncatingIfNeeded: A1) -&gt; A in conformance Swift.Int : Swift.BinaryInteger in Swift (4 samples, 0.02%)</title><rect x="997.8" y="1845" width="0.2" height="15.0" fill="rgb(251,173,0)" rx="2" ry="2" />
<text x="1000.77" y="1855.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="904.9" y="1877" width="0.2" height="15.0" fill="rgb(223,208,9)" rx="2" ry="2" />
<text x="907.91" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::allocate_tensor (2 samples, 0.01%)</title><rect x="1465.4" y="1877" width="0.1" height="15.0" fill="rgb(215,6,28)" rx="2" ry="2" />
<text x="1468.37" y="1887.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (3 samples, 0.01%)</title><rect x="385.1" y="1829" width="0.2" height="15.0" fill="rgb(231,40,1)" rx="2" ry="2" />
<text x="388.08" y="1839.5" ></text>
</g>
<g >
<title>Eigen::ThreadPoolTempl&lt;tensorflow::thread::EigenEnvironment&gt;::WorkerLoop (11 samples, 0.04%)</title><rect x="1539.7" y="1973" width="0.8" height="15.0" fill="rgb(229,62,31)" rx="2" ry="2" />
<text x="1542.74" y="1983.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="783.3" y="1877" width="0.1" height="15.0" fill="rgb(253,46,40)" rx="2" ry="2" />
<text x="786.26" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (4 samples, 0.02%)</title><rect x="249.8" y="1749" width="0.3" height="15.0" fill="rgb(232,124,46)" rx="2" ry="2" />
<text x="252.81" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (29 samples, 0.11%)</title><rect x="1041.6" y="1861" width="2.0" height="15.0" fill="rgb(207,19,29)" rx="2" ry="2" />
<text x="1044.63" y="1871.5" ></text>
</g>
<g >
<title>memset@plt (3 samples, 0.01%)</title><rect x="49.0" y="1877" width="0.2" height="15.0" fill="rgb(244,210,48)" rx="2" ry="2" />
<text x="52.04" y="1887.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (2 samples, 0.01%)</title><rect x="1457.3" y="1845" width="0.1" height="15.0" fill="rgb(230,177,28)" rx="2" ry="2" />
<text x="1460.26" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::core::RefCounted::Unref (75 samples, 0.29%)</title><rect x="607.8" y="1845" width="5.2" height="15.0" fill="rgb(254,146,19)" rx="2" ry="2" />
<text x="610.85" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.Equatable.== infix(A, A) -&gt; Swift.Bool in conformance Swift.Int : Swift.Equatable in Swift (2 samples, 0.01%)</title><rect x="284.0" y="1749" width="0.1" height="15.0" fill="rgb(225,8,22)" rx="2" ry="2" />
<text x="286.97" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::OpDef::~OpDef (8 samples, 0.03%)</title><rect x="1588.0" y="2037" width="0.5" height="15.0" fill="rgb(213,149,23)" rx="2" ry="2" />
<text x="1590.99" y="2047.5" ></text>
</g>
<g >
<title>TF_TensorData (2 samples, 0.01%)</title><rect x="634.0" y="1781" width="0.2" height="15.0" fill="rgb(211,227,49)" rx="2" ry="2" />
<text x="637.03" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (13 samples, 0.05%)</title><rect x="644.7" y="1733" width="0.9" height="15.0" fill="rgb(240,106,22)" rx="2" ry="2" />
<text x="647.69" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (5 samples, 0.02%)</title><rect x="1236.9" y="1669" width="0.3" height="15.0" fill="rgb(222,158,14)" rx="2" ry="2" />
<text x="1239.90" y="1679.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_tensor (10 samples, 0.04%)</title><rect x="874.3" y="1653" width="0.6" height="15.0" fill="rgb(241,2,26)" rx="2" ry="2" />
<text x="877.26" y="1663.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (31 samples, 0.12%)</title><rect x="1168.0" y="1909" width="2.1" height="15.0" fill="rgb(230,20,20)" rx="2" ry="2" />
<text x="1170.96" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (27 samples, 0.10%)</title><rect x="1195.7" y="1701" width="1.8" height="15.0" fill="rgb(231,137,50)" rx="2" ry="2" />
<text x="1198.66" y="1711.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (4 samples, 0.02%)</title><rect x="831.7" y="1749" width="0.3" height="15.0" fill="rgb(239,70,54)" rx="2" ry="2" />
<text x="834.71" y="1759.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.FixedWidthInteger in Swift (2 samples, 0.01%)</title><rect x="840.1" y="1781" width="0.1" height="15.0" fill="rgb(207,206,43)" rx="2" ry="2" />
<text x="843.10" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(copyingFromCTensor: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (47 samples, 0.18%)</title><rect x="541.7" y="1797" width="3.3" height="15.0" fill="rgb(232,146,35)" rx="2" ry="2" />
<text x="544.72" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (84 samples, 0.32%)</title><rect x="194.6" y="1909" width="5.7" height="15.0" fill="rgb(254,166,29)" rx="2" ry="2" />
<text x="197.55" y="1919.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (15 samples, 0.06%)</title><rect x="1189.8" y="1797" width="1.0" height="15.0" fill="rgb(240,184,30)" rx="2" ry="2" />
<text x="1192.82" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (17 samples, 0.07%)</title><rect x="1469.6" y="1765" width="1.1" height="15.0" fill="rgb(226,89,9)" rx="2" ry="2" />
<text x="1472.56" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::SetDeviceName (3 samples, 0.01%)</title><rect x="561.2" y="1845" width="0.2" height="15.0" fill="rgb(222,44,36)" rx="2" ry="2" />
<text x="564.18" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.Equatable.== infix(A, A) -&gt; Swift.Bool in conformance __C.__swift_stdlib_UNumericType : Swift.Equatable in __C_Synthesized (2 samples, 0.01%)</title><rect x="815.1" y="1749" width="0.2" height="15.0" fill="rgb(243,69,15)" rx="2" ry="2" />
<text x="818.15" y="1759.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (5 samples, 0.02%)</title><rect x="1473.6" y="1909" width="0.4" height="15.0" fill="rgb(206,113,46)" rx="2" ry="2" />
<text x="1476.62" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::InitDims (2 samples, 0.01%)</title><rect x="839.5" y="1749" width="0.1" height="15.0" fill="rgb(232,24,28)" rx="2" ry="2" />
<text x="842.48" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (9 samples, 0.03%)</title><rect x="943.6" y="1845" width="0.6" height="15.0" fill="rgb(209,201,2)" rx="2" ry="2" />
<text x="946.61" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input_or_allocate_output (7 samples, 0.03%)</title><rect x="1119.0" y="1733" width="0.4" height="15.0" fill="rgb(207,27,6)" rx="2" ry="2" />
<text x="1121.95" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__deallocating_deinit (42 samples, 0.16%)</title><rect x="226.0" y="1909" width="2.9" height="15.0" fill="rgb(210,142,46)" rx="2" ry="2" />
<text x="229.03" y="1919.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="898.7" y="1877" width="0.2" height="15.0" fill="rgb(238,67,0)" rx="2" ry="2" />
<text x="901.73" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle._cTensorHandle.getter : Swift.OpaquePointer (2 samples, 0.01%)</title><rect x="1493.1" y="1957" width="0.2" height="15.0" fill="rgb(237,194,9)" rx="2" ry="2" />
<text x="1496.14" y="1967.5" ></text>
</g>
<g >
<title>__posix_memalign (4 samples, 0.02%)</title><rect x="1196.7" y="1637" width="0.3" height="15.0" fill="rgb(222,75,39)" rx="2" ry="2" />
<text x="1199.69" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="22.7" y="1941" width="0.4" height="15.0" fill="rgb(232,4,21)" rx="2" ry="2" />
<text x="25.72" y="1951.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (17 samples, 0.07%)</title><rect x="1221.6" y="1941" width="1.2" height="15.0" fill="rgb(222,25,33)" rx="2" ry="2" />
<text x="1224.64" y="1951.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1092.9" y="1877" width="0.1" height="15.0" fill="rgb(246,33,7)" rx="2" ry="2" />
<text x="1095.90" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (8 samples, 0.03%)</title><rect x="366.7" y="1653" width="0.5" height="15.0" fill="rgb(252,187,10)" rx="2" ry="2" />
<text x="369.66" y="1663.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int) -&gt; (@unowned Swift.Int64, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int) -&gt; (@out Swift.Int64, @error @owned Swift.Error) (14 samples, 0.05%)</title><rect x="472.2" y="1781" width="0.9" height="15.0" fill="rgb(245,74,1)" rx="2" ry="2" />
<text x="475.17" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (11 samples, 0.04%)</title><rect x="106.0" y="1893" width="0.8" height="15.0" fill="rgb(229,220,43)" rx="2" ry="2" />
<text x="109.02" y="1903.5" ></text>
</g>
<g >
<title>TFE_Execute (82 samples, 0.32%)</title><rect x="109.3" y="1861" width="5.7" height="15.0" fill="rgb(252,207,33)" rx="2" ry="2" />
<text x="112.32" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="448.5" y="1925" width="0.2" height="15.0" fill="rgb(253,44,37)" rx="2" ry="2" />
<text x="451.52" y="1935.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (4 samples, 0.02%)</title><rect x="1248.5" y="1861" width="0.3" height="15.0" fill="rgb(238,34,17)" rx="2" ry="2" />
<text x="1251.51" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (7 samples, 0.03%)</title><rect x="1493.3" y="1989" width="0.5" height="15.0" fill="rgb(240,143,3)" rx="2" ry="2" />
<text x="1496.34" y="1999.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle._cTensorHandle.getter : Swift.OpaquePointer (3 samples, 0.01%)</title><rect x="143.6" y="1893" width="0.2" height="15.0" fill="rgb(248,54,54)" rx="2" ry="2" />
<text x="146.62" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () (54 samples, 0.21%)</title><rect x="526.2" y="1909" width="3.7" height="15.0" fill="rgb(228,66,13)" rx="2" ry="2" />
<text x="529.19" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (4 samples, 0.02%)</title><rect x="82.1" y="1877" width="0.3" height="15.0" fill="rgb(240,150,30)" rx="2" ry="2" />
<text x="85.10" y="1887.5" ></text>
</g>
<g >
<title>type metadata accessor for Swift.Optional (13 samples, 0.05%)</title><rect x="1396.4" y="1797" width="0.9" height="15.0" fill="rgb(232,203,49)" rx="2" ry="2" />
<text x="1399.36" y="1807.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (2 samples, 0.01%)</title><rect x="598.4" y="1925" width="0.2" height="15.0" fill="rgb(226,91,4)" rx="2" ry="2" />
<text x="601.43" y="1935.5" ></text>
</g>
<g >
<title>TFE_NewOp (33 samples, 0.13%)</title><rect x="138.9" y="1877" width="2.3" height="15.0" fill="rgb(253,143,7)" rx="2" ry="2" />
<text x="141.94" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (14 samples, 0.05%)</title><rect x="257.1" y="1861" width="1.0" height="15.0" fill="rgb(220,129,42)" rx="2" ry="2" />
<text x="260.10" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (7 samples, 0.03%)</title><rect x="1454.4" y="1893" width="0.5" height="15.0" fill="rgb(220,14,47)" rx="2" ry="2" />
<text x="1457.37" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (50 samples, 0.19%)</title><rect x="652.0" y="1877" width="3.4" height="15.0" fill="rgb(213,131,1)" rx="2" ry="2" />
<text x="654.97" y="1887.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1253.1" y="1941" width="0.1" height="15.0" fill="rgb(206,108,15)" rx="2" ry="2" />
<text x="1256.05" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (3 samples, 0.01%)</title><rect x="1143.2" y="1797" width="0.2" height="15.0" fill="rgb(250,210,18)" rx="2" ry="2" />
<text x="1146.21" y="1807.5" ></text>
</g>
<g >
<title>Eigen::ThreadPoolDevice::parallelFor (3 samples, 0.01%)</title><rect x="1118.6" y="1717" width="0.2" height="15.0" fill="rgb(229,133,2)" rx="2" ry="2" />
<text x="1121.61" y="1727.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="135.2" y="1845" width="0.1" height="15.0" fill="rgb(214,11,30)" rx="2" ry="2" />
<text x="138.16" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::TensorShapeBase (2 samples, 0.01%)</title><rect x="839.5" y="1765" width="0.1" height="15.0" fill="rgb(205,227,48)" rx="2" ry="2" />
<text x="842.48" y="1775.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (28 samples, 0.11%)</title><rect x="351.4" y="1909" width="1.9" height="15.0" fill="rgb(211,90,45)" rx="2" ry="2" />
<text x="354.40" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (14 samples, 0.05%)</title><rect x="306.1" y="1861" width="1.0" height="15.0" fill="rgb(240,147,17)" rx="2" ry="2" />
<text x="309.11" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1525.9" y="1893" width="0.2" height="15.0" fill="rgb(209,5,41)" rx="2" ry="2" />
<text x="1528.92" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1349" width="0.9" height="15.0" fill="rgb(239,142,22)" rx="2" ry="2" />
<text x="24.27" y="1359.5" ></text>
</g>
<g >
<title>partial apply forwarder for AD__$s11SwiftFusion5Pose2V1moiyA2C_ACtFZ__pullback_src_0_wrt_0_1 (13 samples, 0.05%)</title><rect x="1291.6" y="1813" width="0.9" height="15.0" fill="rgb(214,98,42)" rx="2" ry="2" />
<text x="1294.61" y="1823.5" ></text>
</g>
<g >
<title>swift_arrayDestroy (2 samples, 0.01%)</title><rect x="704.0" y="1877" width="0.1" height="15.0" fill="rgb(239,180,54)" rx="2" ry="2" />
<text x="707.01" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (242 samples, 0.93%)</title><rect x="62.6" y="1957" width="16.6" height="15.0" fill="rgb(240,132,1)" rx="2" ry="2" />
<text x="65.58" y="1967.5" ></text>
</g>
<g >
<title>std::_Hash_bytes (2 samples, 0.01%)</title><rect x="1095.2" y="1829" width="0.2" height="15.0" fill="rgb(214,36,5)" rx="2" ry="2" />
<text x="1098.24" y="1839.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (2 samples, 0.01%)</title><rect x="1702.1" y="2021" width="0.1" height="15.0" fill="rgb(229,26,49)" rx="2" ry="2" />
<text x="1705.09" y="2031.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::Executor (4 samples, 0.02%)</title><rect x="944.2" y="1845" width="0.3" height="15.0" fill="rgb(221,0,11)" rx="2" ry="2" />
<text x="947.23" y="1855.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1170.6" y="1909" width="0.2" height="15.0" fill="rgb(228,196,1)" rx="2" ry="2" />
<text x="1173.64" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="821" width="0.9" height="15.0" fill="rgb(244,50,44)" rx="2" ry="2" />
<text x="24.27" y="831.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (8 samples, 0.03%)</title><rect x="1008.8" y="1893" width="0.6" height="15.0" fill="rgb(206,191,51)" rx="2" ry="2" />
<text x="1011.84" y="1903.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (8 samples, 0.03%)</title><rect x="1594.7" y="2005" width="0.5" height="15.0" fill="rgb(205,74,1)" rx="2" ry="2" />
<text x="1597.66" y="2015.5" ></text>
</g>
<g >
<title>memcpy@plt (2 samples, 0.01%)</title><rect x="942.3" y="1861" width="0.1" height="15.0" fill="rgb(230,77,9)" rx="2" ry="2" />
<text x="945.31" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (56 samples, 0.22%)</title><rect x="774.0" y="1781" width="3.8" height="15.0" fill="rgb(219,23,20)" rx="2" ry="2" />
<text x="776.98" y="1791.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (2 samples, 0.01%)</title><rect x="544.3" y="1765" width="0.2" height="15.0" fill="rgb(253,97,38)" rx="2" ry="2" />
<text x="547.34" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::NumDims (4 samples, 0.02%)</title><rect x="393.1" y="1877" width="0.3" height="15.0" fill="rgb(217,68,29)" rx="2" ry="2" />
<text x="396.12" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (17 samples, 0.07%)</title><rect x="1161.2" y="1765" width="1.2" height="15.0" fill="rgb(250,229,14)" rx="2" ry="2" />
<text x="1164.22" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input_to_output_with_shape (2 samples, 0.01%)</title><rect x="1454.6" y="1717" width="0.1" height="15.0" fill="rgb(247,216,50)" rx="2" ry="2" />
<text x="1457.58" y="1727.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (187 samples, 0.72%)</title><rect x="107.2" y="1925" width="12.8" height="15.0" fill="rgb(243,164,3)" rx="2" ry="2" />
<text x="110.19" y="1935.5" ></text>
</g>
<g >
<title>__posix_memalign (5 samples, 0.02%)</title><rect x="752.5" y="1589" width="0.4" height="15.0" fill="rgb(223,166,46)" rx="2" ry="2" />
<text x="755.53" y="1599.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (3 samples, 0.01%)</title><rect x="1458.9" y="1845" width="0.2" height="15.0" fill="rgb(236,84,30)" rx="2" ry="2" />
<text x="1461.91" y="1855.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::destroy (2 samples, 0.01%)</title><rect x="521.9" y="1877" width="0.2" height="15.0" fill="rgb(224,36,43)" rx="2" ry="2" />
<text x="524.93" y="1887.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Int, Swift.Int&gt; of Swift._NativeDictionary._copyOrMoveAndResize(capacity: Swift.Int, moveElements: Swift.Bool) -&gt; () (11 samples, 0.04%)</title><rect x="1051.9" y="1925" width="0.7" height="15.0" fill="rgb(214,149,26)" rx="2" ry="2" />
<text x="1054.87" y="1935.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Owned To Guaranteed, Arg[3] = Dead&gt; of generic specialization &lt;Swift.Double&gt; of TensorFlow.Tensor.init(repeating: A, shape: TensorFlow.TensorShape, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (738 samples, 2.85%)</title><rect x="244.5" y="1941" width="50.7" height="15.0" fill="rgb(219,147,34)" rx="2" ry="2" />
<text x="247.45" y="1951.5" >funct..</text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (35 samples, 0.14%)</title><rect x="1033.6" y="1813" width="2.4" height="15.0" fill="rgb(230,215,36)" rx="2" ry="2" />
<text x="1036.58" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (2 samples, 0.01%)</title><rect x="1466.0" y="1845" width="0.1" height="15.0" fill="rgb(243,61,53)" rx="2" ry="2" />
<text x="1468.99" y="1855.5" ></text>
</g>
<g >
<title>TFE_Execute (3 samples, 0.01%)</title><rect x="956.9" y="1877" width="0.3" height="15.0" fill="rgb(249,37,12)" rx="2" ry="2" />
<text x="959.95" y="1887.5" ></text>
</g>
<g >
<title>Swift.Array.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (9 samples, 0.03%)</title><rect x="1262.9" y="1861" width="0.6" height="15.0" fill="rgb(247,91,50)" rx="2" ry="2" />
<text x="1265.88" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1061" width="0.9" height="15.0" fill="rgb(250,56,32)" rx="2" ry="2" />
<text x="24.27" y="1071.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (91 samples, 0.35%)</title><rect x="66.4" y="1861" width="6.3" height="15.0" fill="rgb(246,191,4)" rx="2" ry="2" />
<text x="69.43" y="1871.5" ></text>
</g>
<g >
<title>swift_retain (10 samples, 0.04%)</title><rect x="845.6" y="1797" width="0.7" height="15.0" fill="rgb(252,129,16)" rx="2" ry="2" />
<text x="848.60" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::NodeDef (2 samples, 0.01%)</title><rect x="562.3" y="1845" width="0.1" height="15.0" fill="rgb(244,208,6)" rx="2" ry="2" />
<text x="565.28" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (4 samples, 0.02%)</title><rect x="1446.3" y="1781" width="0.3" height="15.0" fill="rgb(211,5,12)" rx="2" ry="2" />
<text x="1449.33" y="1791.5" ></text>
</g>
<g >
<title>TFE_DeleteTensorHandle (41 samples, 0.16%)</title><rect x="664.0" y="1877" width="2.8" height="15.0" fill="rgb(232,16,46)" rx="2" ry="2" />
<text x="667.00" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (20 samples, 0.08%)</title><rect x="1107.8" y="1909" width="1.4" height="15.0" fill="rgb(238,121,34)" rx="2" ry="2" />
<text x="1110.82" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (310 samples, 1.20%)</title><rect x="1069.0" y="1925" width="21.3" height="15.0" fill="rgb(222,147,32)" rx="2" ry="2" />
<text x="1071.98" y="1935.5" >T..</text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (2 samples, 0.01%)</title><rect x="293.2" y="1877" width="0.1" height="15.0" fill="rgb(253,224,5)" rx="2" ry="2" />
<text x="296.18" y="1887.5" ></text>
</g>
<g >
<title>Swift.Character.init(_builtinExtendedGraphemeClusterLiteral: Builtin.RawPointer, utf8CodeUnitCount: Builtin.Word, isASCII: Builtin.Int1) -&gt; Swift.Character (5 samples, 0.02%)</title><rect x="558.4" y="1925" width="0.4" height="15.0" fill="rgb(253,119,12)" rx="2" ry="2" />
<text x="561.43" y="1935.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="821.7" y="1685" width="0.2" height="15.0" fill="rgb(208,110,40)" rx="2" ry="2" />
<text x="824.75" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (7 samples, 0.03%)</title><rect x="991.2" y="1877" width="0.5" height="15.0" fill="rgb(229,91,18)" rx="2" ry="2" />
<text x="994.18" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (351 samples, 1.36%)</title><rect x="568.4" y="1925" width="24.1" height="15.0" fill="rgb(235,103,1)" rx="2" ry="2" />
<text x="571.39" y="1935.5" >p..</text>
</g>
<g >
<title>_int_free (4 samples, 0.02%)</title><rect x="732.7" y="1813" width="0.2" height="15.0" fill="rgb(224,225,46)" rx="2" ry="2" />
<text x="735.67" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (25 samples, 0.10%)</title><rect x="895.7" y="1829" width="1.7" height="15.0" fill="rgb(240,129,38)" rx="2" ry="2" />
<text x="898.70" y="1839.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (83 samples, 0.32%)</title><rect x="245.3" y="1813" width="5.7" height="15.0" fill="rgb(212,152,46)" rx="2" ry="2" />
<text x="248.28" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (5 samples, 0.02%)</title><rect x="247.4" y="1749" width="0.4" height="15.0" fill="rgb(253,106,42)" rx="2" ry="2" />
<text x="250.41" y="1759.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (14 samples, 0.05%)</title><rect x="566.4" y="1893" width="1.0" height="15.0" fill="rgb(242,103,25)" rx="2" ry="2" />
<text x="569.40" y="1903.5" ></text>
</g>
<g >
<title>TF_ManagedBuffer::~TF_ManagedBuffer (3 samples, 0.01%)</title><rect x="1458.9" y="1781" width="0.2" height="15.0" fill="rgb(230,179,53)" rx="2" ry="2" />
<text x="1461.91" y="1791.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Exploded&gt; of SwiftFusion.JacobianFactor.atr(TensorFlow.Tensor&lt;Swift.Double&gt;) -&gt; SwiftFusion.VectorValues (6,588 samples, 25.44%)</title><rect x="604.3" y="1957" width="452.8" height="15.0" fill="rgb(218,62,17)" rx="2" ry="2" />
<text x="607.27" y="1967.5" >function signature specialization &lt;Arg[1] = Exploded&gt; of Swif..</text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (86 samples, 0.33%)</title><rect x="1115.7" y="1909" width="5.9" height="15.0" fill="rgb(228,203,51)" rx="2" ry="2" />
<text x="1118.72" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_tensor (3 samples, 0.01%)</title><rect x="1119.1" y="1685" width="0.2" height="15.0" fill="rgb(250,224,28)" rx="2" ry="2" />
<text x="1122.09" y="1695.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (24 samples, 0.09%)</title><rect x="117.8" y="1877" width="1.7" height="15.0" fill="rgb(215,92,3)" rx="2" ry="2" />
<text x="120.84" y="1887.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="302.6" y="1861" width="0.1" height="15.0" fill="rgb(205,219,5)" rx="2" ry="2" />
<text x="305.60" y="1871.5" ></text>
</g>
<g >
<title>getCache (2 samples, 0.01%)</title><rect x="555.0" y="1925" width="0.1" height="15.0" fill="rgb(239,86,8)" rx="2" ry="2" />
<text x="557.99" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for Swift.BinaryInteger.init&lt;A where A1: Swift.BinaryInteger&gt;(truncatingIfNeeded: A1) -&gt; A in conformance Swift.Int : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="570.7" y="1861" width="0.2" height="15.0" fill="rgb(224,155,31)" rx="2" ry="2" />
<text x="573.73" y="1871.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.KeyPathIterable.recursivelyAllKeyPaths.getter : [Swift.PartialKeyPath&lt;A&gt;] (3 samples, 0.01%)</title><rect x="1266.2" y="1893" width="0.2" height="15.0" fill="rgb(247,110,52)" rx="2" ry="2" />
<text x="1269.18" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (6 samples, 0.02%)</title><rect x="1262.9" y="1765" width="0.5" height="15.0" fill="rgb(215,164,9)" rx="2" ry="2" />
<text x="1265.95" y="1775.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (3 samples, 0.01%)</title><rect x="62.0" y="1909" width="0.2" height="15.0" fill="rgb(252,35,37)" rx="2" ry="2" />
<text x="65.03" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (250 samples, 0.97%)</title><rect x="269.0" y="1925" width="17.2" height="15.0" fill="rgb(232,33,47)" rx="2" ry="2" />
<text x="271.99" y="1935.5" ></text>
</g>
<g >
<title>swift_endAccess (2 samples, 0.01%)</title><rect x="642.0" y="1685" width="0.1" height="15.0" fill="rgb(208,114,3)" rx="2" ry="2" />
<text x="645.01" y="1695.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="785.5" y="1861" width="0.2" height="15.0" fill="rgb(222,120,44)" rx="2" ry="2" />
<text x="788.52" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1141" width="0.9" height="15.0" fill="rgb(249,117,7)" rx="2" ry="2" />
<text x="24.27" y="1151.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (10 samples, 0.04%)</title><rect x="88.9" y="1797" width="0.7" height="15.0" fill="rgb(227,142,32)" rx="2" ry="2" />
<text x="91.91" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (27 samples, 0.10%)</title><rect x="927.7" y="1845" width="1.8" height="15.0" fill="rgb(217,108,33)" rx="2" ry="2" />
<text x="930.67" y="1855.5" ></text>
</g>
<g >
<title>std::_Function_handler&lt;void (8 samples, 0.03%)</title><rect x="438.9" y="1733" width="0.5" height="15.0" fill="rgb(214,134,18)" rx="2" ry="2" />
<text x="441.90" y="1743.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (3 samples, 0.01%)</title><rect x="84.0" y="1941" width="0.2" height="15.0" fill="rgb(208,144,28)" rx="2" ry="2" />
<text x="86.96" y="1951.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::~_Hashtable (7 samples, 0.03%)</title><rect x="610.2" y="1813" width="0.5" height="15.0" fill="rgb(233,8,30)" rx="2" ry="2" />
<text x="613.18" y="1823.5" ></text>
</g>
<g >
<title>TFE_NewTensorHandle (40 samples, 0.15%)</title><rect x="817.8" y="1749" width="2.8" height="15.0" fill="rgb(216,124,22)" rx="2" ry="2" />
<text x="820.83" y="1759.5" ></text>
</g>
<g >
<title>swift_release@plt (2 samples, 0.01%)</title><rect x="841.1" y="1781" width="0.2" height="15.0" fill="rgb(233,33,11)" rx="2" ry="2" />
<text x="844.13" y="1791.5" ></text>
</g>
<g >
<title>static (extension in Swift):Swift.Array.DifferentiableView&lt;A where A: Swift.AdditiveArithmetic, A: Swift.Differentiable&gt;.+ infix([A].DifferentiableView, [A].DifferentiableView) -&gt; [A].DifferentiableView (1,816 samples, 7.01%)</title><rect x="1294.6" y="1861" width="124.8" height="15.0" fill="rgb(219,74,21)" rx="2" ry="2" />
<text x="1297.57" y="1871.5" >static (extensi..</text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.String._uncheckedFromUTF8(_: Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;, asciiPreScanResult: Swift.Bool) -&gt; Swift.String (3 samples, 0.01%)</title><rect x="693.1" y="1829" width="0.2" height="15.0" fill="rgb(208,67,32)" rx="2" ry="2" />
<text x="696.08" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TensorDataType.init(__C.TF_DataType) -&gt; TensorFlow.TensorDataType (2 samples, 0.01%)</title><rect x="164.9" y="1973" width="0.1" height="15.0" fill="rgb(232,70,29)" rx="2" ry="2" />
<text x="167.86" y="1983.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of generic specialization &lt;Swift.Double&gt; of TensorFlow.Tensor.IndexPath.init([TensorFlow.TensorRange]) -&gt; TensorFlow.Tensor&lt;A&gt;.IndexPath (4 samples, 0.02%)</title><rect x="1461.5" y="1973" width="0.2" height="15.0" fill="rgb(250,182,50)" rx="2" ry="2" />
<text x="1464.45" y="1983.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="602.3" y="1909" width="0.2" height="15.0" fill="rgb(215,56,44)" rx="2" ry="2" />
<text x="605.28" y="1919.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (18 samples, 0.07%)</title><rect x="790.3" y="1877" width="1.3" height="15.0" fill="rgb(211,115,39)" rx="2" ry="2" />
<text x="793.34" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.BidirectionalCollection.last.getter : A.Element? (4 samples, 0.02%)</title><rect x="690.5" y="1813" width="0.3" height="15.0" fill="rgb(214,181,45)" rx="2" ry="2" />
<text x="693.53" y="1823.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (94 samples, 0.36%)</title><rect x="941.1" y="1909" width="6.5" height="15.0" fill="rgb(223,96,45)" rx="2" ry="2" />
<text x="944.14" y="1919.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.UnsafeBufferPointer&lt;Swift.Int8&gt;&gt; of Swift._copyCollectionToContiguousArray&lt;A where A: Swift.Collection&gt;(A) -&gt; Swift.ContiguousArray&lt;A.Element&gt; (4 samples, 0.02%)</title><rect x="785.0" y="1845" width="0.2" height="15.0" fill="rgb(251,179,29)" rx="2" ry="2" />
<text x="787.97" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::DeviceBase::eigen_cpu_device (2 samples, 0.01%)</title><rect x="921.3" y="1669" width="0.2" height="15.0" fill="rgb(210,210,22)" rx="2" ry="2" />
<text x="924.34" y="1679.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (800 samples, 3.09%)</title><rect x="165.9" y="1973" width="55.0" height="15.0" fill="rgb(227,220,25)" rx="2" ry="2" />
<text x="168.89" y="1983.5" >_swif..</text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (32 samples, 0.12%)</title><rect x="527.2" y="1861" width="2.2" height="15.0" fill="rgb(227,206,6)" rx="2" ry="2" />
<text x="530.22" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (5 samples, 0.02%)</title><rect x="1121.8" y="1877" width="0.3" height="15.0" fill="rgb(229,170,39)" rx="2" ry="2" />
<text x="1124.77" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::ReductionHelper::Simplify (8 samples, 0.03%)</title><rect x="580.2" y="1701" width="0.6" height="15.0" fill="rgb(252,102,5)" rx="2" ry="2" />
<text x="583.22" y="1711.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (316 samples, 1.22%)</title><rect x="1068.9" y="1941" width="21.7" height="15.0" fill="rgb(243,179,51)" rx="2" ry="2" />
<text x="1071.91" y="1951.5" >p..</text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="290.1" y="1877" width="0.1" height="15.0" fill="rgb(223,109,24)" rx="2" ry="2" />
<text x="293.09" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (36 samples, 0.14%)</title><rect x="457.7" y="1909" width="2.4" height="15.0" fill="rgb(206,67,48)" rx="2" ry="2" />
<text x="460.66" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (83 samples, 0.32%)</title><rect x="363.5" y="1781" width="5.7" height="15.0" fill="rgb(247,20,43)" rx="2" ry="2" />
<text x="366.50" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (10 samples, 0.04%)</title><rect x="1140.4" y="1909" width="0.7" height="15.0" fill="rgb(207,13,26)" rx="2" ry="2" />
<text x="1143.40" y="1919.5" ></text>
</g>
<g >
<title>swift_release (5 samples, 0.02%)</title><rect x="979.0" y="1765" width="0.4" height="15.0" fill="rgb(213,76,12)" rx="2" ry="2" />
<text x="982.01" y="1775.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (2 samples, 0.01%)</title><rect x="127.0" y="1733" width="0.1" height="15.0" fill="rgb(222,10,24)" rx="2" ry="2" />
<text x="129.98" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (23 samples, 0.09%)</title><rect x="1469.2" y="1829" width="1.6" height="15.0" fill="rgb(212,22,8)" rx="2" ry="2" />
<text x="1472.22" y="1839.5" ></text>
</g>
<g >
<title>swift_allocObject (2 samples, 0.01%)</title><rect x="785.2" y="1845" width="0.2" height="15.0" fill="rgb(226,125,46)" rx="2" ry="2" />
<text x="788.25" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (52 samples, 0.20%)</title><rect x="685.4" y="1749" width="3.6" height="15.0" fill="rgb(239,66,38)" rx="2" ry="2" />
<text x="688.45" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (9 samples, 0.03%)</title><rect x="1022.1" y="1653" width="0.6" height="15.0" fill="rgb(221,109,3)" rx="2" ry="2" />
<text x="1025.11" y="1663.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.count.getter : Swift.Int (13 samples, 0.05%)</title><rect x="230.5" y="1861" width="0.9" height="15.0" fill="rgb(226,87,20)" rx="2" ry="2" />
<text x="233.50" y="1871.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (15 samples, 0.06%)</title><rect x="720.6" y="1861" width="1.0" height="15.0" fill="rgb(215,60,4)" rx="2" ry="2" />
<text x="723.57" y="1871.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1049.9" y="1909" width="0.2" height="15.0" fill="rgb(245,84,35)" rx="2" ry="2" />
<text x="1052.94" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for Swift.Collection.isEmpty.getter : Swift.Bool in conformance [A] : Swift.Collection in Swift (2 samples, 0.01%)</title><rect x="584.0" y="1829" width="0.1" height="15.0" fill="rgb(235,159,18)" rx="2" ry="2" />
<text x="587.00" y="1839.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="567.0" y="1877" width="0.2" height="15.0" fill="rgb(229,12,39)" rx="2" ry="2" />
<text x="570.02" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (2 samples, 0.01%)</title><rect x="582.3" y="1765" width="0.2" height="15.0" fill="rgb(224,135,35)" rx="2" ry="2" />
<text x="585.35" y="1775.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::OpaqueExistentialBox&lt;1u&gt; &gt;::initializeWithCopy (46 samples, 0.18%)</title><rect x="1410.0" y="1813" width="3.1" height="15.0" fill="rgb(229,211,18)" rx="2" ry="2" />
<text x="1412.97" y="1823.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type [Swift.Int] and conformance [A] : Swift.Sequence in Swift (3 samples, 0.01%)</title><rect x="655.5" y="1877" width="0.2" height="15.0" fill="rgb(241,199,0)" rx="2" ry="2" />
<text x="658.48" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (36 samples, 0.14%)</title><rect x="382.9" y="1893" width="2.5" height="15.0" fill="rgb(208,97,3)" rx="2" ry="2" />
<text x="385.88" y="1903.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (4 samples, 0.02%)</title><rect x="306.7" y="1829" width="0.3" height="15.0" fill="rgb(217,42,2)" rx="2" ry="2" />
<text x="309.72" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1845" width="0.9" height="15.0" fill="rgb(247,47,10)" rx="2" ry="2" />
<text x="24.27" y="1855.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (2 samples, 0.01%)</title><rect x="283.8" y="1749" width="0.1" height="15.0" fill="rgb(245,139,10)" rx="2" ry="2" />
<text x="286.77" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::~AttrValue (2 samples, 0.01%)</title><rect x="732.5" y="1829" width="0.1" height="15.0" fill="rgb(254,105,24)" rx="2" ry="2" />
<text x="735.46" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (8 samples, 0.03%)</title><rect x="700.0" y="1829" width="0.5" height="15.0" fill="rgb(216,191,45)" rx="2" ry="2" />
<text x="702.95" y="1839.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="377.0" y="1845" width="0.2" height="15.0" fill="rgb(240,177,32)" rx="2" ry="2" />
<text x="380.04" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::profiler::TraceMe::Stop (2 samples, 0.01%)</title><rect x="969.0" y="1797" width="0.1" height="15.0" fill="rgb(248,47,4)" rx="2" ry="2" />
<text x="971.97" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::BinaryOp&lt;Eigen::ThreadPoolDevice, tensorflow::functor::sub&lt;int&gt; &gt;::Compute (8 samples, 0.03%)</title><rect x="745.2" y="1717" width="0.6" height="15.0" fill="rgb(237,79,39)" rx="2" ry="2" />
<text x="748.25" y="1727.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::find (5 samples, 0.02%)</title><rect x="459.7" y="1845" width="0.3" height="15.0" fill="rgb(224,34,41)" rx="2" ry="2" />
<text x="462.66" y="1855.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (2 samples, 0.01%)</title><rect x="690.6" y="1797" width="0.1" height="15.0" fill="rgb(207,200,3)" rx="2" ry="2" />
<text x="693.60" y="1807.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="698.4" y="1749" width="0.2" height="15.0" fill="rgb(225,150,39)" rx="2" ry="2" />
<text x="701.37" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::InternalSerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="1214.5" y="1829" width="0.1" height="15.0" fill="rgb(246,30,16)" rx="2" ry="2" />
<text x="1217.49" y="1839.5" ></text>
</g>
<g >
<title>value witness table for TensorFlow._RawTFEager.RoundMode1 (3 samples, 0.01%)</title><rect x="20.9" y="2021" width="0.2" height="15.0" fill="rgb(216,118,6)" rx="2" ry="2" />
<text x="23.86" y="2031.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="445.0" y="1893" width="0.2" height="15.0" fill="rgb(250,133,3)" rx="2" ry="2" />
<text x="448.02" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::Buffer&lt;int&gt;::~Buffer (3 samples, 0.01%)</title><rect x="612.6" y="1781" width="0.2" height="15.0" fill="rgb(245,107,42)" rx="2" ry="2" />
<text x="615.59" y="1791.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeMutableRawPointer) -&gt; () in (extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (24 samples, 0.09%)</title><rect x="1160.9" y="1797" width="1.7" height="15.0" fill="rgb(226,108,40)" rx="2" ry="2" />
<text x="1163.95" y="1807.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Range&lt; where A: Swift.Strideable, A.Stride: Swift.SignedInteger&gt;.subscript.read : (A) -&gt; A (5 samples, 0.02%)</title><rect x="235.9" y="1845" width="0.3" height="15.0" fill="rgb(207,145,11)" rx="2" ry="2" />
<text x="238.86" y="1855.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (2 samples, 0.01%)</title><rect x="1486.1" y="1893" width="0.2" height="15.0" fill="rgb(228,35,37)" rx="2" ry="2" />
<text x="1489.13" y="1903.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (36 samples, 0.14%)</title><rect x="282.9" y="1877" width="2.4" height="15.0" fill="rgb(222,61,47)" rx="2" ry="2" />
<text x="285.87" y="1887.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (2 samples, 0.01%)</title><rect x="648.0" y="1781" width="0.1" height="15.0" fill="rgb(252,155,48)" rx="2" ry="2" />
<text x="650.99" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (131 samples, 0.51%)</title><rect x="1191.1" y="1829" width="9.0" height="15.0" fill="rgb(233,136,35)" rx="2" ry="2" />
<text x="1194.05" y="1839.5" ></text>
</g>
<g >
<title>swift_allocObject (2 samples, 0.01%)</title><rect x="1216.8" y="1893" width="0.2" height="15.0" fill="rgb(246,6,23)" rx="2" ry="2" />
<text x="1219.83" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (3 samples, 0.01%)</title><rect x="435.8" y="1781" width="0.2" height="15.0" fill="rgb(232,34,32)" rx="2" ry="2" />
<text x="438.81" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (11 samples, 0.04%)</title><rect x="143.8" y="1893" width="0.8" height="15.0" fill="rgb(252,221,4)" rx="2" ry="2" />
<text x="146.82" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="560.8" y="1829" width="0.2" height="15.0" fill="rgb(238,107,24)" rx="2" ry="2" />
<text x="563.83" y="1839.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1206.5" y="1925" width="0.2" height="15.0" fill="rgb(216,146,28)" rx="2" ry="2" />
<text x="1209.52" y="1935.5" ></text>
</g>
<g >
<title>swift_release (19 samples, 0.07%)</title><rect x="1054.5" y="1941" width="1.4" height="15.0" fill="rgb(219,90,2)" rx="2" ry="2" />
<text x="1057.55" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (14 samples, 0.05%)</title><rect x="752.1" y="1621" width="0.9" height="15.0" fill="rgb(237,198,36)" rx="2" ry="2" />
<text x="755.05" y="1631.5" ></text>
</g>
<g >
<title>tensorflow::PackOp&lt;Eigen::ThreadPoolDevice, int&gt;::Compute (2 samples, 0.01%)</title><rect x="1491.5" y="1765" width="0.1" height="15.0" fill="rgb(207,187,5)" rx="2" ry="2" />
<text x="1494.49" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (18 samples, 0.07%)</title><rect x="944.6" y="1829" width="1.2" height="15.0" fill="rgb(249,43,15)" rx="2" ry="2" />
<text x="947.57" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::NodeDef (2 samples, 0.01%)</title><rect x="83.6" y="1893" width="0.2" height="15.0" fill="rgb(252,130,20)" rx="2" ry="2" />
<text x="86.61" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (43 samples, 0.17%)</title><rect x="1110.8" y="1957" width="3.0" height="15.0" fill="rgb(252,10,32)" rx="2" ry="2" />
<text x="1113.84" y="1967.5" ></text>
</g>
<g >
<title>getCache (2 samples, 0.01%)</title><rect x="452.9" y="1861" width="0.2" height="15.0" fill="rgb(213,119,5)" rx="2" ry="2" />
<text x="455.92" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::PackOp&lt;Eigen::ThreadPoolDevice, double&gt;::Compute (4 samples, 0.02%)</title><rect x="1269.4" y="1717" width="0.3" height="15.0" fill="rgb(215,201,47)" rx="2" ry="2" />
<text x="1272.41" y="1727.5" ></text>
</g>
<g >
<title>implicit closure #1 (Swift.Int) -&gt; Swift.Int64 in TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (7 samples, 0.03%)</title><rect x="256.1" y="1813" width="0.4" height="15.0" fill="rgb(217,63,12)" rx="2" ry="2" />
<text x="259.07" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.BinaryInteger.isSigned.getter : Swift.Bool in conformance Swift.Int : Swift.BinaryInteger in Swift (3 samples, 0.01%)</title><rect x="836.4" y="1765" width="0.2" height="15.0" fill="rgb(212,185,21)" rx="2" ry="2" />
<text x="839.39" y="1775.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (2 samples, 0.01%)</title><rect x="243.0" y="1893" width="0.1" height="15.0" fill="rgb(232,163,8)" rx="2" ry="2" />
<text x="246.01" y="1903.5" ></text>
</g>
<g >
<title>_int_malloc (25 samples, 0.10%)</title><rect x="1526.1" y="2037" width="1.7" height="15.0" fill="rgb(220,76,6)" rx="2" ry="2" />
<text x="1529.06" y="2047.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (2 samples, 0.01%)</title><rect x="1495.1" y="1877" width="0.2" height="15.0" fill="rgb(209,18,54)" rx="2" ry="2" />
<text x="1498.13" y="1887.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (3 samples, 0.01%)</title><rect x="1164.0" y="1797" width="0.2" height="15.0" fill="rgb(212,43,25)" rx="2" ry="2" />
<text x="1166.97" y="1807.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (3 samples, 0.01%)</title><rect x="1030.1" y="1861" width="0.3" height="15.0" fill="rgb(229,55,18)" rx="2" ry="2" />
<text x="1033.15" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (14 samples, 0.05%)</title><rect x="91.4" y="1749" width="1.0" height="15.0" fill="rgb(236,218,48)" rx="2" ry="2" />
<text x="94.45" y="1759.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (9 samples, 0.03%)</title><rect x="1126.1" y="1957" width="0.6" height="15.0" fill="rgb(240,167,17)" rx="2" ry="2" />
<text x="1129.10" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (3 samples, 0.01%)</title><rect x="916.3" y="1733" width="0.2" height="15.0" fill="rgb(215,136,53)" rx="2" ry="2" />
<text x="919.32" y="1743.5" ></text>
</g>
<g >
<title>swift_retain (4 samples, 0.02%)</title><rect x="524.4" y="1765" width="0.3" height="15.0" fill="rgb(212,47,18)" rx="2" ry="2" />
<text x="527.40" y="1775.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (13 samples, 0.05%)</title><rect x="702.6" y="1829" width="0.9" height="15.0" fill="rgb(240,109,29)" rx="2" ry="2" />
<text x="705.56" y="1839.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="58.1" y="1893" width="0.2" height="15.0" fill="rgb(213,152,39)" rx="2" ry="2" />
<text x="61.11" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.map&lt;A&gt;((A.Element) throws -&gt; A1) throws -&gt; [A1] (96 samples, 0.37%)</title><rect x="230.3" y="1877" width="6.6" height="15.0" fill="rgb(239,110,2)" rx="2" ry="2" />
<text x="233.29" y="1887.5" ></text>
</g>
<g >
<title>Swift.Array._owner.getter : Swift.AnyObject? (2 samples, 0.01%)</title><rect x="1436.0" y="1877" width="0.2" height="15.0" fill="rgb(216,184,27)" rx="2" ry="2" />
<text x="1439.02" y="1887.5" ></text>
</g>
<g >
<title>_int_free (8 samples, 0.03%)</title><rect x="1588.0" y="1973" width="0.5" height="15.0" fill="rgb(223,34,37)" rx="2" ry="2" />
<text x="1590.99" y="1983.5" ></text>
</g>
<g >
<title>TFE_NewTensorHandle (11 samples, 0.04%)</title><rect x="541.8" y="1781" width="0.7" height="15.0" fill="rgb(245,205,16)" rx="2" ry="2" />
<text x="544.79" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::AllocateRaw (2 samples, 0.01%)</title><rect x="1138.8" y="1653" width="0.2" height="15.0" fill="rgb(235,62,3)" rx="2" ry="2" />
<text x="1141.82" y="1663.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="771.6" y="1861" width="0.2" height="15.0" fill="rgb(209,55,32)" rx="2" ry="2" />
<text x="774.57" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="242.5" y="1893" width="0.2" height="15.0" fill="rgb(230,223,39)" rx="2" ry="2" />
<text x="245.53" y="1903.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (4 samples, 0.02%)</title><rect x="1141.4" y="1893" width="0.2" height="15.0" fill="rgb(211,169,23)" rx="2" ry="2" />
<text x="1144.36" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::BuildCacheKeyForDevice (16 samples, 0.06%)</title><rect x="317.1" y="1781" width="1.1" height="15.0" fill="rgb(214,39,38)" rx="2" ry="2" />
<text x="320.10" y="1791.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="195.2" y="1813" width="0.2" height="15.0" fill="rgb(232,27,20)" rx="2" ry="2" />
<text x="198.24" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (48 samples, 0.19%)</title><rect x="1243.8" y="1925" width="3.3" height="15.0" fill="rgb(208,31,30)" rx="2" ry="2" />
<text x="1246.84" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1765" width="0.9" height="15.0" fill="rgb(252,221,13)" rx="2" ry="2" />
<text x="24.27" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (141 samples, 0.54%)</title><rect x="1114.1" y="1925" width="9.7" height="15.0" fill="rgb(224,23,12)" rx="2" ry="2" />
<text x="1117.14" y="1935.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char const*&gt; (2 samples, 0.01%)</title><rect x="794.5" y="1829" width="0.1" height="15.0" fill="rgb(251,213,10)" rx="2" ry="2" />
<text x="797.46" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (135 samples, 0.52%)</title><rect x="509.8" y="1877" width="9.2" height="15.0" fill="rgb(234,104,6)" rx="2" ry="2" />
<text x="512.76" y="1887.5" ></text>
</g>
<g >
<title>swift_once (4 samples, 0.02%)</title><rect x="884.8" y="1733" width="0.3" height="15.0" fill="rgb(240,154,32)" rx="2" ry="2" />
<text x="887.84" y="1743.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (34 samples, 0.13%)</title><rect x="947.9" y="1893" width="2.4" height="15.0" fill="rgb(231,17,36)" rx="2" ry="2" />
<text x="950.94" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (6 samples, 0.02%)</title><rect x="451.1" y="1797" width="0.4" height="15.0" fill="rgb(234,169,13)" rx="2" ry="2" />
<text x="454.13" y="1807.5" ></text>
</g>
<g >
<title>Swift.Array.subscript.modify : (Swift.Int) -&gt; A@plt (2 samples, 0.01%)</title><rect x="178.6" y="1909" width="0.1" height="15.0" fill="rgb(217,191,19)" rx="2" ry="2" />
<text x="181.60" y="1919.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="1130.2" y="1957" width="0.3" height="15.0" fill="rgb(214,153,6)" rx="2" ry="2" />
<text x="1133.22" y="1967.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (5 samples, 0.02%)</title><rect x="688.7" y="1733" width="0.3" height="15.0" fill="rgb(246,36,11)" rx="2" ry="2" />
<text x="691.68" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (6 samples, 0.02%)</title><rect x="102.7" y="1845" width="0.4" height="15.0" fill="rgb(225,39,0)" rx="2" ry="2" />
<text x="105.72" y="1855.5" ></text>
</g>
<g >
<title>swift_once (2 samples, 0.01%)</title><rect x="350.0" y="1877" width="0.1" height="15.0" fill="rgb(210,7,5)" rx="2" ry="2" />
<text x="352.96" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol._tensorHandleCount.getter : Swift.Int32 in conformance &lt;A where A: TensorFlow.TensorGroup&gt; [A] : TensorFlow.TensorArrayProtocol in TensorFlow (9 samples, 0.03%)</title><rect x="1266.8" y="1893" width="0.6" height="15.0" fill="rgb(224,46,29)" rx="2" ry="2" />
<text x="1269.80" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::ReductionOp&lt;Eigen::ThreadPoolDevice, double, int, Eigen::internal::SumReducer&lt;double&gt; &gt;::Compute (2 samples, 0.01%)</title><rect x="154.8" y="1733" width="0.2" height="15.0" fill="rgb(236,55,38)" rx="2" ry="2" />
<text x="157.82" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::~EagerOperation (23 samples, 0.09%)</title><rect x="312.7" y="1861" width="1.6" height="15.0" fill="rgb(205,27,36)" rx="2" ry="2" />
<text x="315.70" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CopyFromInternal (3 samples, 0.01%)</title><rect x="1155.6" y="1733" width="0.2" height="15.0" fill="rgb(249,86,49)" rx="2" ry="2" />
<text x="1158.59" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CheckType (2 samples, 0.01%)</title><rect x="113.2" y="1701" width="0.2" height="15.0" fill="rgb(237,47,27)" rx="2" ry="2" />
<text x="116.24" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (110 samples, 0.42%)</title><rect x="1018.3" y="1781" width="7.5" height="15.0" fill="rgb(205,99,0)" rx="2" ry="2" />
<text x="1021.26" y="1791.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="1122.0" y="1861" width="0.1" height="15.0" fill="rgb(217,127,12)" rx="2" ry="2" />
<text x="1124.98" y="1871.5" ></text>
</g>
<g >
<title>partial apply forwarder for AD__$s11SwiftFusion13BetweenFactorV9linearizeyAA08JacobianD0VAA6ValuesVFAA7Vector3VAHcACcfu_AjHcfu0___pullback_src_0_wrt_0 (2,351 samples, 9.08%)</title><rect x="1271.1" y="1909" width="161.6" height="15.0" fill="rgb(221,222,27)" rx="2" ry="2" />
<text x="1274.06" y="1919.5" >partial apply forwar..</text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="1085.1" y="1893" width="0.2" height="15.0" fill="rgb(227,133,13)" rx="2" ry="2" />
<text x="1088.13" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (33 samples, 0.13%)</title><rect x="1086.3" y="1845" width="2.3" height="15.0" fill="rgb(235,0,37)" rx="2" ry="2" />
<text x="1089.30" y="1855.5" ></text>
</g>
<g >
<title>swift_slowAlloc (2 samples, 0.01%)</title><rect x="892.5" y="1845" width="0.2" height="15.0" fill="rgb(215,30,45)" rx="2" ry="2" />
<text x="895.54" y="1855.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (51 samples, 0.20%)</title><rect x="1464.1" y="1925" width="3.5" height="15.0" fill="rgb(231,200,36)" rx="2" ry="2" />
<text x="1467.06" y="1935.5" ></text>
</g>
<g >
<title>merged function signature specialization &lt;Arg[3] = Dead&gt; of generic specialization &lt;serialized, Swift.Int32&gt; of TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (182 samples, 0.70%)</title><rect x="253.9" y="1925" width="12.5" height="15.0" fill="rgb(250,173,3)" rx="2" ry="2" />
<text x="256.94" y="1935.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="304.3" y="1909" width="0.2" height="15.0" fill="rgb(214,117,27)" rx="2" ry="2" />
<text x="307.32" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (45 samples, 0.17%)</title><rect x="932.9" y="1845" width="3.1" height="15.0" fill="rgb(249,54,13)" rx="2" ry="2" />
<text x="935.89" y="1855.5" ></text>
</g>
<g >
<title>operator new (3 samples, 0.01%)</title><rect x="394.2" y="1893" width="0.2" height="15.0" fill="rgb(240,16,1)" rx="2" ry="2" />
<text x="397.22" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (5 samples, 0.02%)</title><rect x="41.2" y="1893" width="0.3" height="15.0" fill="rgb(218,83,31)" rx="2" ry="2" />
<text x="44.21" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (16 samples, 0.06%)</title><rect x="936.0" y="1845" width="1.1" height="15.0" fill="rgb(224,2,20)" rx="2" ry="2" />
<text x="938.98" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="1219.9" y="1909" width="0.2" height="15.0" fill="rgb(242,160,10)" rx="2" ry="2" />
<text x="1222.92" y="1919.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.String._uncheckedFromUTF8(_: Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;, asciiPreScanResult: Swift.Bool) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="643.2" y="1717" width="0.2" height="15.0" fill="rgb(251,4,21)" rx="2" ry="2" />
<text x="646.24" y="1727.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (6 samples, 0.02%)</title><rect x="1133.7" y="1925" width="0.4" height="15.0" fill="rgb(210,126,43)" rx="2" ry="2" />
<text x="1136.73" y="1935.5" ></text>
</g>
<g >
<title>TFE_NewOp (46 samples, 0.18%)</title><rect x="382.7" y="1909" width="3.1" height="15.0" fill="rgb(231,11,33)" rx="2" ry="2" />
<text x="385.67" y="1919.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (95 samples, 0.37%)</title><rect x="1101.2" y="1893" width="6.5" height="15.0" fill="rgb(210,71,44)" rx="2" ry="2" />
<text x="1104.22" y="1903.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (5 samples, 0.02%)</title><rect x="960.0" y="1781" width="0.3" height="15.0" fill="rgb(233,1,0)" rx="2" ry="2" />
<text x="962.97" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (4 samples, 0.02%)</title><rect x="140.5" y="1845" width="0.3" height="15.0" fill="rgb(212,111,22)" rx="2" ry="2" />
<text x="143.53" y="1855.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (2 samples, 0.01%)</title><rect x="109.1" y="1829" width="0.2" height="15.0" fill="rgb(223,173,9)" rx="2" ry="2" />
<text x="112.11" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (3 samples, 0.01%)</title><rect x="1466.0" y="1877" width="0.2" height="15.0" fill="rgb(217,149,43)" rx="2" ry="2" />
<text x="1468.99" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (10 samples, 0.04%)</title><rect x="875.6" y="1733" width="0.7" height="15.0" fill="rgb(247,165,4)" rx="2" ry="2" />
<text x="878.63" y="1743.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (8 samples, 0.03%)</title><rect x="1180.7" y="1925" width="0.6" height="15.0" fill="rgb(253,125,54)" rx="2" ry="2" />
<text x="1183.74" y="1935.5" ></text>
</g>
<g >
<title>getCache (5 samples, 0.02%)</title><rect x="557.1" y="1941" width="0.3" height="15.0" fill="rgb(218,24,53)" rx="2" ry="2" />
<text x="560.05" y="1951.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow._AnyTensorHandle._cTensorHandle.getter : Swift.OpaquePointer (2 samples, 0.01%)</title><rect x="1226.1" y="1909" width="0.1" height="15.0" fill="rgb(246,154,12)" rx="2" ry="2" />
<text x="1229.11" y="1919.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="691.2" y="1829" width="0.1" height="15.0" fill="rgb(241,188,28)" rx="2" ry="2" />
<text x="694.15" y="1839.5" ></text>
</g>
<g >
<title>static Swift._DictionaryStorage.copy(original: Swift.__RawDictionaryStorage) -&gt; Swift._DictionaryStorage&lt;A, B&gt; (3 samples, 0.01%)</title><rect x="1065.5" y="1925" width="0.2" height="15.0" fill="rgb(231,133,33)" rx="2" ry="2" />
<text x="1068.48" y="1935.5" ></text>
</g>
<g >
<title>swift_retain (8 samples, 0.03%)</title><rect x="388.4" y="1941" width="0.5" height="15.0" fill="rgb(226,55,47)" rx="2" ry="2" />
<text x="391.38" y="1951.5" ></text>
</g>
<g >
<title>protocol witness for Swift._ExpressibleByBuiltinIntegerLiteral.init(_builtinIntegerLiteral: Builtin.IntLiteral) -&gt; A in conformance Swift.Int32 : Swift._ExpressibleByBuiltinIntegerLiteral in Swift (3 samples, 0.01%)</title><rect x="534.0" y="1861" width="0.2" height="15.0" fill="rgb(227,148,31)" rx="2" ry="2" />
<text x="537.03" y="1871.5" ></text>
</g>
<g >
<title>std::_Function_handler&lt;void (2 samples, 0.01%)</title><rect x="365.7" y="1685" width="0.1" height="15.0" fill="rgb(243,107,5)" rx="2" ry="2" />
<text x="368.70" y="1695.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="403.6" y="1861" width="0.1" height="15.0" fill="rgb(240,95,11)" rx="2" ry="2" />
<text x="406.57" y="1871.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="772.2" y="1877" width="0.2" height="15.0" fill="rgb(237,85,12)" rx="2" ry="2" />
<text x="775.19" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (8 samples, 0.03%)</title><rect x="718.2" y="1829" width="0.6" height="15.0" fill="rgb(224,175,9)" rx="2" ry="2" />
<text x="721.23" y="1839.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (4 samples, 0.02%)</title><rect x="78.2" y="1893" width="0.3" height="15.0" fill="rgb(253,157,47)" rx="2" ry="2" />
<text x="81.18" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorValue (4 samples, 0.02%)</title><rect x="963.1" y="1733" width="0.3" height="15.0" fill="rgb(240,73,38)" rx="2" ry="2" />
<text x="966.13" y="1743.5" ></text>
</g>
<g >
<title>swift_getTupleTypeMetadata (2 samples, 0.01%)</title><rect x="237.4" y="1861" width="0.2" height="15.0" fill="rgb(233,107,2)" rx="2" ry="2" />
<text x="240.44" y="1871.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (8 samples, 0.03%)</title><rect x="906.9" y="1877" width="0.6" height="15.0" fill="rgb(205,157,38)" rx="2" ry="2" />
<text x="909.91" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (14 samples, 0.05%)</title><rect x="665.8" y="1797" width="1.0" height="15.0" fill="rgb(253,169,51)" rx="2" ry="2" />
<text x="668.79" y="1807.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (32 samples, 0.12%)</title><rect x="305.1" y="1893" width="2.2" height="15.0" fill="rgb(211,206,34)" rx="2" ry="2" />
<text x="308.07" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (48 samples, 0.19%)</title><rect x="673.6" y="1909" width="3.3" height="15.0" fill="rgb(238,68,54)" rx="2" ry="2" />
<text x="676.56" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input_to_output_with_shape (7 samples, 0.03%)</title><rect x="440.5" y="1733" width="0.5" height="15.0" fill="rgb(236,215,49)" rx="2" ry="2" />
<text x="443.55" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (3 samples, 0.01%)</title><rect x="1458.9" y="1861" width="0.2" height="15.0" fill="rgb(219,83,35)" rx="2" ry="2" />
<text x="1461.91" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (24 samples, 0.09%)</title><rect x="76.1" y="1861" width="1.6" height="15.0" fill="rgb(254,37,37)" rx="2" ry="2" />
<text x="79.05" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (3 samples, 0.01%)</title><rect x="76.7" y="1797" width="0.2" height="15.0" fill="rgb(252,114,31)" rx="2" ry="2" />
<text x="79.74" y="1807.5" ></text>
</g>
<g >
<title>nominal type descriptor for SwiftFusion.AnyDerivative (2 samples, 0.01%)</title><rect x="1704.2" y="2053" width="0.2" height="15.0" fill="rgb(208,91,37)" rx="2" ry="2" />
<text x="1707.22" y="2063.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (33 samples, 0.13%)</title><rect x="883.7" y="1797" width="2.2" height="15.0" fill="rgb(239,191,20)" rx="2" ry="2" />
<text x="886.68" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::InitDims (3 samples, 0.01%)</title><rect x="1024.0" y="1685" width="0.2" height="15.0" fill="rgb(249,143,18)" rx="2" ry="2" />
<text x="1026.96" y="1695.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (19 samples, 0.07%)</title><rect x="996.7" y="1861" width="1.3" height="15.0" fill="rgb(218,207,30)" rx="2" ry="2" />
<text x="999.74" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (3 samples, 0.01%)</title><rect x="267.8" y="1861" width="0.2" height="15.0" fill="rgb(213,33,52)" rx="2" ry="2" />
<text x="270.75" y="1871.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (279 samples, 1.08%)</title><rect x="468.5" y="1893" width="19.2" height="15.0" fill="rgb(218,185,1)" rx="2" ry="2" />
<text x="471.52" y="1903.5" ></text>
</g>
<g >
<title>getCache (4 samples, 0.02%)</title><rect x="936.5" y="1813" width="0.3" height="15.0" fill="rgb(207,213,27)" rx="2" ry="2" />
<text x="939.53" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (22 samples, 0.08%)</title><rect x="919.1" y="1685" width="1.6" height="15.0" fill="rgb(227,155,3)" rx="2" ry="2" />
<text x="922.14" y="1695.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::RemoteTensorHandleData&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::~_Hashtable (5 samples, 0.02%)</title><rect x="1478.8" y="1829" width="0.3" height="15.0" fill="rgb(207,129,29)" rx="2" ry="2" />
<text x="1481.77" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (28 samples, 0.11%)</title><rect x="1244.0" y="1845" width="1.9" height="15.0" fill="rgb(249,105,45)" rx="2" ry="2" />
<text x="1246.98" y="1855.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int, @unowned Swift.Int) -&gt; (@unowned Swift.Int, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int, @in_guaranteed Swift.Int) -&gt; (@out Swift.Int, @error @owned Swift.Error) (2 samples, 0.01%)</title><rect x="125.5" y="1781" width="0.1" height="15.0" fill="rgb(229,164,22)" rx="2" ry="2" />
<text x="128.47" y="1791.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.Hasher._hash(seed: Swift.Int, _: Swift.UInt) -&gt; Swift.Int (7 samples, 0.03%)</title><rect x="1052.8" y="1909" width="0.4" height="15.0" fill="rgb(252,201,35)" rx="2" ry="2" />
<text x="1055.76" y="1919.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="134.7" y="1845" width="0.2" height="15.0" fill="rgb(247,169,48)" rx="2" ry="2" />
<text x="137.68" y="1855.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="1245.9" y="1861" width="0.3" height="15.0" fill="rgb(244,118,30)" rx="2" ry="2" />
<text x="1248.90" y="1871.5" ></text>
</g>
<g >
<title>outlined consume of Swift.String?? (2 samples, 0.01%)</title><rect x="762.8" y="1813" width="0.2" height="15.0" fill="rgb(229,59,3)" rx="2" ry="2" />
<text x="765.84" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (6 samples, 0.02%)</title><rect x="1077.6" y="1653" width="0.5" height="15.0" fill="rgb(222,177,8)" rx="2" ry="2" />
<text x="1080.64" y="1663.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (3 samples, 0.01%)</title><rect x="519.9" y="1845" width="0.2" height="15.0" fill="rgb(208,145,15)" rx="2" ry="2" />
<text x="522.87" y="1855.5" ></text>
</g>
<g >
<title>swift_release@plt (2 samples, 0.01%)</title><rect x="487.2" y="1845" width="0.2" height="15.0" fill="rgb(237,200,45)" rx="2" ry="2" />
<text x="490.22" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (346 samples, 1.34%)</title><rect x="355.7" y="1925" width="23.8" height="15.0" fill="rgb(221,226,10)" rx="2" ry="2" />
<text x="358.73" y="1935.5" >T..</text>
</g>
<g >
<title>_swift_release_dealloc (2 samples, 0.01%)</title><rect x="54.0" y="1941" width="0.1" height="15.0" fill="rgb(238,132,23)" rx="2" ry="2" />
<text x="56.99" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="661" width="0.9" height="15.0" fill="rgb(224,171,36)" rx="2" ry="2" />
<text x="24.27" y="671.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (599 samples, 2.31%)</title><rect x="806.6" y="1829" width="41.1" height="15.0" fill="rgb(241,111,29)" rx="2" ry="2" />
<text x="809.56" y="1839.5" >clo..</text>
</g>
<g >
<title>closure #1 (Swift.Int64) -&gt; Swift.Int32 in static TensorFlow._RawTFEager.reshape&lt;A where A: TensorFlow.TensorFlowScalar&gt;(_: TensorFlow.Tensor&lt;A&gt;, shape: [Swift.Int64]) -&gt; TensorFlow.Tensor&lt;A&gt; (5 samples, 0.02%)</title><rect x="1441.1" y="1845" width="0.4" height="15.0" fill="rgb(223,80,16)" rx="2" ry="2" />
<text x="1444.11" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1877" width="0.9" height="15.0" fill="rgb(253,98,28)" rx="2" ry="2" />
<text x="24.27" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (38 samples, 0.15%)</title><rect x="69.0" y="1781" width="2.7" height="15.0" fill="rgb(206,17,7)" rx="2" ry="2" />
<text x="72.04" y="1791.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::resize (2 samples, 0.01%)</title><rect x="455.5" y="1861" width="0.2" height="15.0" fill="rgb(240,206,22)" rx="2" ry="2" />
<text x="458.53" y="1871.5" ></text>
</g>
<g >
<title>std::_Hash_bytes (5 samples, 0.02%)</title><rect x="793.8" y="1845" width="0.3" height="15.0" fill="rgb(211,183,14)" rx="2" ry="2" />
<text x="796.77" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (2 samples, 0.01%)</title><rect x="1103.6" y="1733" width="0.1" height="15.0" fill="rgb(247,7,7)" rx="2" ry="2" />
<text x="1106.56" y="1743.5" ></text>
</g>
<g >
<title>closure #2 (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; () in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="1438.4" y="1845" width="0.2" height="15.0" fill="rgb(209,217,29)" rx="2" ry="2" />
<text x="1441.43" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::BuildCacheKeyForDevice (4 samples, 0.02%)</title><rect x="150.1" y="1781" width="0.3" height="15.0" fill="rgb(222,59,17)" rx="2" ry="2" />
<text x="153.08" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::OpKernelContext (3 samples, 0.01%)</title><rect x="368.3" y="1733" width="0.2" height="15.0" fill="rgb(235,56,51)" rx="2" ry="2" />
<text x="371.31" y="1743.5" ></text>
</g>
<g >
<title>TFE_NewOp (48 samples, 0.19%)</title><rect x="290.0" y="1893" width="3.3" height="15.0" fill="rgb(215,126,10)" rx="2" ry="2" />
<text x="293.02" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (5 samples, 0.02%)</title><rect x="1493.0" y="1973" width="0.3" height="15.0" fill="rgb(232,69,9)" rx="2" ry="2" />
<text x="1496.00" y="1983.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (13 samples, 0.05%)</title><rect x="98.4" y="1893" width="0.9" height="15.0" fill="rgb(228,218,41)" rx="2" ry="2" />
<text x="101.39" y="1903.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="1169.9" y="1893" width="0.1" height="15.0" fill="rgb(245,96,14)" rx="2" ry="2" />
<text x="1172.88" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecute (22 samples, 0.08%)</title><rect x="1449.1" y="1781" width="1.5" height="15.0" fill="rgb(221,4,44)" rx="2" ry="2" />
<text x="1452.08" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (4 samples, 0.02%)</title><rect x="140.9" y="1861" width="0.3" height="15.0" fill="rgb(239,14,42)" rx="2" ry="2" />
<text x="143.94" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::Set16 (2 samples, 0.01%)</title><rect x="324.4" y="1685" width="0.1" height="15.0" fill="rgb(230,54,3)" rx="2" ry="2" />
<text x="327.39" y="1695.5" ></text>
</g>
<g >
<title>outlined consume of Swift.String?? (2 samples, 0.01%)</title><rect x="928.6" y="1829" width="0.1" height="15.0" fill="rgb(254,75,16)" rx="2" ry="2" />
<text x="931.56" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (77 samples, 0.30%)</title><rect x="1092.4" y="1941" width="5.3" height="15.0" fill="rgb(239,168,13)" rx="2" ry="2" />
<text x="1095.42" y="1951.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrType (41 samples, 0.16%)</title><rect x="527.1" y="1893" width="2.8" height="15.0" fill="rgb(225,145,41)" rx="2" ry="2" />
<text x="530.08" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (15 samples, 0.06%)</title><rect x="1077.2" y="1685" width="1.1" height="15.0" fill="rgb(210,39,0)" rx="2" ry="2" />
<text x="1080.23" y="1695.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (8 samples, 0.03%)</title><rect x="890.0" y="1813" width="0.5" height="15.0" fill="rgb(209,18,5)" rx="2" ry="2" />
<text x="893.00" y="1823.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (3 samples, 0.01%)</title><rect x="1071.7" y="1845" width="0.2" height="15.0" fill="rgb(248,212,47)" rx="2" ry="2" />
<text x="1074.66" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (3 samples, 0.01%)</title><rect x="1143.5" y="1797" width="0.2" height="15.0" fill="rgb(223,53,15)" rx="2" ry="2" />
<text x="1146.49" y="1807.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="777.8" y="1781" width="0.2" height="15.0" fill="rgb(219,110,31)" rx="2" ry="2" />
<text x="780.83" y="1791.5" ></text>
</g>
<g >
<title>Swift._ContiguousArrayStorage.__deallocating_deinit (2 samples, 0.01%)</title><rect x="1145.6" y="1925" width="0.1" height="15.0" fill="rgb(235,182,15)" rx="2" ry="2" />
<text x="1148.55" y="1935.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (143 samples, 0.55%)</title><rect x="125.1" y="1893" width="9.9" height="15.0" fill="rgb(248,6,36)" rx="2" ry="2" />
<text x="128.13" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (12 samples, 0.05%)</title><rect x="970.5" y="1845" width="0.8" height="15.0" fill="rgb(209,117,22)" rx="2" ry="2" />
<text x="973.49" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (3 samples, 0.01%)</title><rect x="1157.3" y="1717" width="0.2" height="15.0" fill="rgb(254,6,45)" rx="2" ry="2" />
<text x="1160.31" y="1727.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (2 samples, 0.01%)</title><rect x="1454.0" y="1909" width="0.2" height="15.0" fill="rgb(216,214,42)" rx="2" ry="2" />
<text x="1457.03" y="1919.5" ></text>
</g>
<g >
<title>full type metadata for SwiftFusion._AD__$s11SwiftFusion7Vector2V4normSdvg_bb0__Pred__src_0_wrt_0 (28 samples, 0.11%)</title><rect x="1702.3" y="2037" width="1.9" height="15.0" fill="rgb(211,175,33)" rx="2" ry="2" />
<text x="1705.30" y="2047.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () (9 samples, 0.03%)</title><rect x="1452.0" y="1861" width="0.6" height="15.0" fill="rgb(231,146,38)" rx="2" ry="2" />
<text x="1454.97" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (3 samples, 0.01%)</title><rect x="1125.5" y="1877" width="0.2" height="15.0" fill="rgb(208,101,1)" rx="2" ry="2" />
<text x="1128.48" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (4 samples, 0.02%)</title><rect x="1433.5" y="1893" width="0.3" height="15.0" fill="rgb(254,122,40)" rx="2" ry="2" />
<text x="1436.48" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1525.9" y="1941" width="0.2" height="15.0" fill="rgb(210,182,8)" rx="2" ry="2" />
<text x="1528.92" y="1951.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="871.2" y="1733" width="0.2" height="15.0" fill="rgb(206,112,1)" rx="2" ry="2" />
<text x="874.23" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (61 samples, 0.24%)</title><rect x="1435.4" y="1909" width="4.2" height="15.0" fill="rgb(245,34,41)" rx="2" ry="2" />
<text x="1438.40" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for Swift.BinaryInteger.init&lt;A where A1: Swift.BinaryInteger&gt;(truncatingIfNeeded: A1) -&gt; A in conformance Swift.Int64 : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="127.1" y="1733" width="0.2" height="15.0" fill="rgb(231,165,27)" rx="2" ry="2" />
<text x="130.12" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (24 samples, 0.09%)</title><rect x="76.1" y="1829" width="1.6" height="15.0" fill="rgb(246,95,30)" rx="2" ry="2" />
<text x="79.05" y="1839.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="660.6" y="1861" width="0.2" height="15.0" fill="rgb(248,99,22)" rx="2" ry="2" />
<text x="663.63" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (3 samples, 0.01%)</title><rect x="224.9" y="1893" width="0.2" height="15.0" fill="rgb(254,93,19)" rx="2" ry="2" />
<text x="227.86" y="1903.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, tensorflow::OpRegistrationData const*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (4 samples, 0.02%)</title><rect x="82.9" y="1829" width="0.3" height="15.0" fill="rgb(205,15,25)" rx="2" ry="2" />
<text x="85.93" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (43 samples, 0.17%)</title><rect x="1137.1" y="1813" width="3.0" height="15.0" fill="rgb(219,108,3)" rx="2" ry="2" />
<text x="1140.10" y="1823.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="931.4" y="1861" width="0.1" height="15.0" fill="rgb(205,193,29)" rx="2" ry="2" />
<text x="934.38" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="1440.5" y="1845" width="0.1" height="15.0" fill="rgb(243,208,38)" rx="2" ry="2" />
<text x="1443.49" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (4 samples, 0.02%)</title><rect x="1270.3" y="1861" width="0.3" height="15.0" fill="rgb(215,228,18)" rx="2" ry="2" />
<text x="1273.30" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrBool (18 samples, 0.07%)</title><rect x="161.8" y="1877" width="1.3" height="15.0" fill="rgb(227,172,10)" rx="2" ry="2" />
<text x="164.83" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (26 samples, 0.10%)</title><rect x="1537.9" y="1877" width="1.8" height="15.0" fill="rgb(219,195,14)" rx="2" ry="2" />
<text x="1540.88" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::CancellationManager::CancellationManager (2 samples, 0.01%)</title><rect x="319.4" y="1733" width="0.2" height="15.0" fill="rgb(228,46,21)" rx="2" ry="2" />
<text x="322.44" y="1743.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (5 samples, 0.02%)</title><rect x="701.5" y="1877" width="0.4" height="15.0" fill="rgb(223,225,6)" rx="2" ry="2" />
<text x="704.53" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (2 samples, 0.01%)</title><rect x="1043.6" y="1861" width="0.2" height="15.0" fill="rgb(208,123,21)" rx="2" ry="2" />
<text x="1046.62" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (12 samples, 0.05%)</title><rect x="142.8" y="1861" width="0.8" height="15.0" fill="rgb(223,207,51)" rx="2" ry="2" />
<text x="145.79" y="1871.5" ></text>
</g>
<g >
<title>swift_endAccess (5 samples, 0.02%)</title><rect x="1489.2" y="1909" width="0.3" height="15.0" fill="rgb(213,216,11)" rx="2" ry="2" />
<text x="1492.15" y="1919.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="487.0" y="1845" width="0.2" height="15.0" fill="rgb(237,159,3)" rx="2" ry="2" />
<text x="490.01" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (2 samples, 0.01%)</title><rect x="1492.2" y="1925" width="0.2" height="15.0" fill="rgb(212,209,36)" rx="2" ry="2" />
<text x="1495.25" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (11 samples, 0.04%)</title><rect x="21.3" y="85" width="0.8" height="15.0" fill="rgb(254,18,20)" rx="2" ry="2" />
<text x="24.34" y="95.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="1243.4" y="1925" width="0.2" height="15.0" fill="rgb(226,107,25)" rx="2" ry="2" />
<text x="1246.43" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::~TensorHandle (14 samples, 0.05%)</title><rect x="55.8" y="1845" width="0.9" height="15.0" fill="rgb(219,199,6)" rx="2" ry="2" />
<text x="58.78" y="1855.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (9 samples, 0.03%)</title><rect x="705.9" y="1829" width="0.6" height="15.0" fill="rgb(229,203,44)" rx="2" ry="2" />
<text x="708.86" y="1839.5" ></text>
</g>
<g >
<title>protocol witness for Swift.Collection.subscript.read : (A.Index) -&gt; A.Element in conformance [A] : Swift.Collection in Swift (2 samples, 0.01%)</title><rect x="473.2" y="1781" width="0.1" height="15.0" fill="rgb(213,7,48)" rx="2" ry="2" />
<text x="476.20" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (2 samples, 0.01%)</title><rect x="647.7" y="1765" width="0.1" height="15.0" fill="rgb(248,59,37)" rx="2" ry="2" />
<text x="650.71" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (2 samples, 0.01%)</title><rect x="1148.3" y="1797" width="0.1" height="15.0" fill="rgb(211,10,14)" rx="2" ry="2" />
<text x="1151.30" y="1807.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="227.5" y="1861" width="0.2" height="15.0" fill="rgb(212,128,15)" rx="2" ry="2" />
<text x="230.54" y="1871.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="691.6" y="1829" width="0.1" height="15.0" fill="rgb(232,9,49)" rx="2" ry="2" />
<text x="694.56" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (13 samples, 0.05%)</title><rect x="705.7" y="1845" width="0.8" height="15.0" fill="rgb(220,212,10)" rx="2" ry="2" />
<text x="708.66" y="1855.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[0] = Exploded&gt; of SwiftFusion.VectorValues.norm.getter : Swift.Double (3,037 samples, 11.73%)</title><rect x="391.1" y="1973" width="208.8" height="15.0" fill="rgb(215,137,31)" rx="2" ry="2" />
<text x="394.13" y="1983.5" >function signature speciali..</text>
</g>
<g >
<title>AD__$s11SwiftFusion5Pose2V1moiyA2C_ACtFZ__pullback_src_0_wrt_0_1 (12 samples, 0.05%)</title><rect x="1291.6" y="1797" width="0.8" height="15.0" fill="rgb(244,68,51)" rx="2" ry="2" />
<text x="1294.61" y="1807.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="242.7" y="1893" width="0.1" height="15.0" fill="rgb(245,29,12)" rx="2" ry="2" />
<text x="245.66" y="1903.5" ></text>
</g>
<g >
<title>TFE_NewOp (3 samples, 0.01%)</title><rect x="1492.2" y="1941" width="0.2" height="15.0" fill="rgb(214,88,33)" rx="2" ry="2" />
<text x="1495.18" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, Swift.Bool) -&gt; () (25 samples, 0.10%)</title><rect x="161.4" y="1909" width="1.7" height="15.0" fill="rgb(217,183,1)" rx="2" ry="2" />
<text x="164.42" y="1919.5" ></text>
</g>
<g >
<title>swift_retain (33 samples, 0.13%)</title><rect x="1258.6" y="1973" width="2.2" height="15.0" fill="rgb(239,106,36)" rx="2" ry="2" />
<text x="1261.55" y="1983.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (4 samples, 0.02%)</title><rect x="1494.7" y="1909" width="0.2" height="15.0" fill="rgb(249,130,24)" rx="2" ry="2" />
<text x="1497.65" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (9 samples, 0.03%)</title><rect x="313.7" y="1845" width="0.6" height="15.0" fill="rgb(242,105,16)" rx="2" ry="2" />
<text x="316.67" y="1855.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="899.4" y="1877" width="0.2" height="15.0" fill="rgb(210,142,19)" rx="2" ry="2" />
<text x="902.42" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInputList&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(A1) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (3 samples, 0.01%)</title><rect x="1491.1" y="1973" width="0.3" height="15.0" fill="rgb(234,117,30)" rx="2" ry="2" />
<text x="1494.15" y="1983.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="413.5" y="1925" width="0.1" height="15.0" fill="rgb(242,31,33)" rx="2" ry="2" />
<text x="416.47" y="1935.5" ></text>
</g>
<g >
<title>TF_AllocateTensor (4 samples, 0.02%)</title><rect x="1465.4" y="1893" width="0.2" height="15.0" fill="rgb(222,34,42)" rx="2" ry="2" />
<text x="1468.37" y="1903.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_rlock (5 samples, 0.02%)</title><rect x="738.6" y="1781" width="0.3" height="15.0" fill="rgb(229,71,29)" rx="2" ry="2" />
<text x="741.58" y="1791.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="306.8" y="1797" width="0.1" height="15.0" fill="rgb(211,53,43)" rx="2" ry="2" />
<text x="309.79" y="1807.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (8 samples, 0.03%)</title><rect x="402.1" y="1845" width="0.5" height="15.0" fill="rgb(205,158,26)" rx="2" ry="2" />
<text x="405.06" y="1855.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (11 samples, 0.04%)</title><rect x="592.9" y="1893" width="0.7" height="15.0" fill="rgb(229,28,10)" rx="2" ry="2" />
<text x="595.86" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (138 samples, 0.53%)</title><rect x="1072.1" y="1861" width="9.5" height="15.0" fill="rgb(226,219,42)" rx="2" ry="2" />
<text x="1075.14" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::TensorShapeBase (2 samples, 0.01%)</title><rect x="1164.6" y="1797" width="0.1" height="15.0" fill="rgb(234,183,3)" rx="2" ry="2" />
<text x="1167.59" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (61 samples, 0.24%)</title><rect x="893.4" y="1861" width="4.2" height="15.0" fill="rgb(215,136,50)" rx="2" ry="2" />
<text x="896.37" y="1871.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (15 samples, 0.06%)</title><rect x="1216.1" y="1909" width="1.0" height="15.0" fill="rgb(214,196,21)" rx="2" ry="2" />
<text x="1219.07" y="1919.5" ></text>
</g>
<g >
<title>Eigen::internal::general_matrix_vector_product&lt;long, double, Eigen::internal::const_blas_data_mapper&lt;double, long, 1&gt;, 1, false, double, Eigen::internal::const_blas_data_mapper&lt;double, long, 0&gt;, false, 0&gt;::run (13 samples, 0.05%)</title><rect x="321.2" y="1653" width="0.9" height="15.0" fill="rgb(246,55,53)" rx="2" ry="2" />
<text x="324.16" y="1663.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (53 samples, 0.20%)</title><rect x="222.0" y="1925" width="3.7" height="15.0" fill="rgb(238,125,54)" rx="2" ry="2" />
<text x="225.04" y="1935.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="417.0" y="1893" width="0.2" height="15.0" fill="rgb(229,192,31)" rx="2" ry="2" />
<text x="420.04" y="1903.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of static Swift.String._uncheckedFromUTF8(_: Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;, asciiPreScanResult: Swift.Bool) -&gt; Swift.String (2 samples, 0.01%)</title><rect x="973.5" y="1861" width="0.1" height="15.0" fill="rgb(240,54,5)" rx="2" ry="2" />
<text x="976.51" y="1871.5" ></text>
</g>
<g >
<title>swift_release (6 samples, 0.02%)</title><rect x="599.2" y="1957" width="0.4" height="15.0" fill="rgb(240,114,3)" rx="2" ry="2" />
<text x="602.19" y="1967.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;std::thread::id, std::pair&lt;std::thread::id const, tensorflow::EagerExecutor*&gt;, std::allocator&lt;std::pair&lt;std::thread::id const, tensorflow::EagerExecutor*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::thread::id&gt;, std::hash&lt;std::thread::id&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::_M_find_before_node (2 samples, 0.01%)</title><rect x="989.5" y="1845" width="0.1" height="15.0" fill="rgb(218,187,14)" rx="2" ry="2" />
<text x="992.46" y="1855.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow._ShapedArrayProtocol.scalars.getter : [A.Scalar] (32 samples, 0.12%)</title><rect x="395.1" y="1941" width="2.2" height="15.0" fill="rgb(233,133,39)" rx="2" ry="2" />
<text x="398.12" y="1951.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (5 samples, 0.02%)</title><rect x="975.9" y="1877" width="0.4" height="15.0" fill="rgb(206,17,33)" rx="2" ry="2" />
<text x="978.92" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1111.3" y="1845" width="0.3" height="15.0" fill="rgb(208,13,5)" rx="2" ry="2" />
<text x="1114.32" y="1855.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (118 samples, 0.46%)</title><rect x="125.3" y="1829" width="8.1" height="15.0" fill="rgb(234,146,44)" rx="2" ry="2" />
<text x="128.34" y="1839.5" ></text>
</g>
<g >
<title>swift_once (11 samples, 0.04%)</title><rect x="615.3" y="1877" width="0.8" height="15.0" fill="rgb(237,142,31)" rx="2" ry="2" />
<text x="618.34" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::~NodeDef (9 samples, 0.03%)</title><rect x="359.0" y="1861" width="0.6" height="15.0" fill="rgb(225,81,7)" rx="2" ry="2" />
<text x="361.96" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerOpRewriteRegistry::Global (2 samples, 0.01%)</title><rect x="1026.6" y="1829" width="0.2" height="15.0" fill="rgb(250,144,9)" rx="2" ry="2" />
<text x="1029.64" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (28 samples, 0.11%)</title><rect x="1118.2" y="1781" width="1.9" height="15.0" fill="rgb(217,152,7)" rx="2" ry="2" />
<text x="1121.20" y="1791.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_rlock (3 samples, 0.01%)</title><rect x="895.9" y="1813" width="0.2" height="15.0" fill="rgb(250,162,25)" rx="2" ry="2" />
<text x="898.91" y="1823.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (4 samples, 0.02%)</title><rect x="1013.1" y="1813" width="0.3" height="15.0" fill="rgb(251,21,17)" rx="2" ry="2" />
<text x="1016.10" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.Equatable.== infix(A, A) -&gt; Swift.Bool in conformance Swift.Int : Swift.Equatable in Swift (2 samples, 0.01%)</title><rect x="1165.7" y="1781" width="0.1" height="15.0" fill="rgb(212,63,22)" rx="2" ry="2" />
<text x="1168.69" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (82 samples, 0.32%)</title><rect x="415.0" y="1925" width="5.7" height="15.0" fill="rgb(246,26,53)" rx="2" ry="2" />
<text x="418.05" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.DeviceScopes._currentDevice.getter : Swift.String? (7 samples, 0.03%)</title><rect x="927.9" y="1829" width="0.5" height="15.0" fill="rgb(211,148,15)" rx="2" ry="2" />
<text x="930.87" y="1839.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;int, std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt;, std::allocator&lt;std::pair&lt;int const, tensorflow::DtypeAndPartialTensorShape&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;int&gt;, std::hash&lt;int&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::~_Hashtable (2 samples, 0.01%)</title><rect x="959.5" y="1797" width="0.1" height="15.0" fill="rgb(218,86,44)" rx="2" ry="2" />
<text x="962.49" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (7 samples, 0.03%)</title><rect x="233.3" y="1813" width="0.5" height="15.0" fill="rgb(220,19,6)" rx="2" ry="2" />
<text x="236.32" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::BinaryOp&lt;Eigen::ThreadPoolDevice, tensorflow::functor::mul&lt;double&gt; &gt;::Compute (21 samples, 0.08%)</title><rect x="1118.5" y="1749" width="1.4" height="15.0" fill="rgb(221,229,19)" rx="2" ry="2" />
<text x="1121.47" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="517" width="0.9" height="15.0" fill="rgb(240,157,24)" rx="2" ry="2" />
<text x="24.27" y="527.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::assignWithTake (2 samples, 0.01%)</title><rect x="482.1" y="1749" width="0.1" height="15.0" fill="rgb(217,174,16)" rx="2" ry="2" />
<text x="485.06" y="1759.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (3 samples, 0.01%)</title><rect x="933.8" y="1733" width="0.2" height="15.0" fill="rgb(252,214,37)" rx="2" ry="2" />
<text x="936.78" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (22,938 samples, 88.57%)</title><rect x="18.6" y="2053" width="1576.6" height="15.0" fill="rgb(242,167,40)" rx="2" ry="2" />
<text x="21.59" y="2063.5" >[unknown]</text>
</g>
<g >
<title>[unknown] (16 samples, 0.06%)</title><rect x="21.1" y="1925" width="1.1" height="15.0" fill="rgb(215,93,25)" rx="2" ry="2" />
<text x="24.13" y="1935.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (2 samples, 0.01%)</title><rect x="889.7" y="1829" width="0.1" height="15.0" fill="rgb(245,57,49)" rx="2" ry="2" />
<text x="892.66" y="1839.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::~Map (12 samples, 0.05%)</title><rect x="733.1" y="1813" width="0.9" height="15.0" fill="rgb(209,150,34)" rx="2" ry="2" />
<text x="736.15" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (54 samples, 0.21%)</title><rect x="240.6" y="1909" width="3.7" height="15.0" fill="rgb(251,38,31)" rx="2" ry="2" />
<text x="243.60" y="1919.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="974.6" y="1877" width="0.1" height="15.0" fill="rgb(238,24,38)" rx="2" ry="2" />
<text x="977.61" y="1887.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="105.5" y="1797" width="0.2" height="15.0" fill="rgb(226,193,32)" rx="2" ry="2" />
<text x="108.54" y="1807.5" ></text>
</g>
<g >
<title>__swift_destroy_boxed_opaque_existential_1 (7 samples, 0.03%)</title><rect x="165.0" y="1973" width="0.5" height="15.0" fill="rgb(213,103,7)" rx="2" ry="2" />
<text x="167.99" y="1983.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (65 samples, 0.25%)</title><rect x="150.6" y="1765" width="4.5" height="15.0" fill="rgb(253,204,48)" rx="2" ry="2" />
<text x="153.63" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1525.9" y="1989" width="0.2" height="15.0" fill="rgb(224,164,13)" rx="2" ry="2" />
<text x="1528.92" y="1999.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="554.7" y="1909" width="0.2" height="15.0" fill="rgb(208,96,4)" rx="2" ry="2" />
<text x="557.72" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (14 samples, 0.05%)</title><rect x="1211.3" y="1893" width="0.9" height="15.0" fill="rgb(212,96,39)" rx="2" ry="2" />
<text x="1214.26" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="371.1" y="1861" width="0.2" height="15.0" fill="rgb(220,31,10)" rx="2" ry="2" />
<text x="374.13" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="293" width="0.9" height="15.0" fill="rgb(241,141,36)" rx="2" ry="2" />
<text x="24.27" y="303.5" ></text>
</g>
<g >
<title>swift_getAssociatedConformanceWitness (2 samples, 0.01%)</title><rect x="1031.9" y="1877" width="0.2" height="15.0" fill="rgb(248,36,48)" rx="2" ry="2" />
<text x="1034.93" y="1887.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="987.3" y="1877" width="0.1" height="15.0" fill="rgb(252,40,42)" rx="2" ry="2" />
<text x="990.26" y="1887.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="885.8" y="1781" width="0.1" height="15.0" fill="rgb(238,32,8)" rx="2" ry="2" />
<text x="888.81" y="1791.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (22 samples, 0.08%)</title><rect x="1143.1" y="1909" width="1.5" height="15.0" fill="rgb(248,98,21)" rx="2" ry="2" />
<text x="1146.08" y="1919.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (5 samples, 0.02%)</title><rect x="1122.5" y="1893" width="0.4" height="15.0" fill="rgb(241,0,8)" rx="2" ry="2" />
<text x="1125.53" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="52.1" y="1893" width="0.2" height="15.0" fill="rgb(223,20,28)" rx="2" ry="2" />
<text x="55.13" y="1903.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (7 samples, 0.03%)</title><rect x="345.4" y="1893" width="0.4" height="15.0" fill="rgb(235,225,3)" rx="2" ry="2" />
<text x="348.35" y="1903.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type [TensorFlow.Context] and conformance [A] : Swift.Collection in Swift (2 samples, 0.01%)</title><rect x="76.5" y="1797" width="0.2" height="15.0" fill="rgb(210,78,49)" rx="2" ry="2" />
<text x="79.53" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (2 samples, 0.01%)</title><rect x="1156.5" y="1733" width="0.1" height="15.0" fill="rgb(212,101,41)" rx="2" ry="2" />
<text x="1159.48" y="1743.5" ></text>
</g>
<g >
<title>swift::TargetMetadata&lt;swift::InProcess&gt;::isCanonicalStaticallySpecializedGenericMetadata (2 samples, 0.01%)</title><rect x="396.6" y="1781" width="0.1" height="15.0" fill="rgb(207,113,5)" rx="2" ry="2" />
<text x="399.56" y="1791.5" ></text>
</g>
<g >
<title>tuple_getEnumTagSinglePayload&lt;false, false&gt; (19 samples, 0.07%)</title><rect x="1425.0" y="1861" width="1.3" height="15.0" fill="rgb(228,3,46)" rx="2" ry="2" />
<text x="1428.02" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CheckTypeAndIsAligned (5 samples, 0.02%)</title><rect x="755.2" y="1669" width="0.4" height="15.0" fill="rgb(218,86,54)" rx="2" ry="2" />
<text x="758.21" y="1679.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (48 samples, 0.19%)</title><rect x="1045.5" y="1877" width="3.3" height="15.0" fill="rgb(251,166,20)" rx="2" ry="2" />
<text x="1048.54" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol._tensorHandleCount.getter : Swift.Int32 in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (7 samples, 0.03%)</title><rect x="1267.7" y="1861" width="0.5" height="15.0" fill="rgb(254,65,53)" rx="2" ry="2" />
<text x="1270.69" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.Equatable.== infix(A, A) -&gt; Swift.Bool in conformance __C.__swift_stdlib_UNumericType : Swift.Equatable in __C_Synthesized (2 samples, 0.01%)</title><rect x="354.1" y="1877" width="0.1" height="15.0" fill="rgb(244,131,30)" rx="2" ry="2" />
<text x="357.08" y="1887.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of (extension in Swift):Swift.Collection._failEarlyRangeCheck(_: A.Index, bounds: Swift.Range&lt;A.Index&gt;) -&gt; () (2 samples, 0.01%)</title><rect x="234.9" y="1829" width="0.1" height="15.0" fill="rgb(237,200,6)" rx="2" ry="2" />
<text x="237.90" y="1839.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (4 samples, 0.02%)</title><rect x="1038.9" y="1877" width="0.3" height="15.0" fill="rgb(237,125,10)" rx="2" ry="2" />
<text x="1041.88" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (4 samples, 0.02%)</title><rect x="988.4" y="1845" width="0.3" height="15.0" fill="rgb(227,163,12)" rx="2" ry="2" />
<text x="991.43" y="1855.5" ></text>
</g>
<g >
<title>generic partial specialization &lt;serialized, Signature = @escaping @convention(thin) &lt;A, B where A: Swift.BinaryInteger, B == Swift.Int&gt; (@in_guaranteed A) -&gt; (@unowned Swift.Int)&gt; of Swift.numericCast&lt;A, B where A: Swift.BinaryInteger, B: Swift.BinaryInteger&gt;(A) -&gt; B (8 samples, 0.03%)</title><rect x="399.0" y="1829" width="0.5" height="15.0" fill="rgb(243,228,12)" rx="2" ry="2" />
<text x="401.96" y="1839.5" ></text>
</g>
<g >
<title>memcpy@plt (2 samples, 0.01%)</title><rect x="794.3" y="1829" width="0.2" height="15.0" fill="rgb(246,67,32)" rx="2" ry="2" />
<text x="797.32" y="1839.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (4 samples, 0.02%)</title><rect x="589.4" y="1765" width="0.2" height="15.0" fill="rgb(212,199,22)" rx="2" ry="2" />
<text x="592.36" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="1715.5" y="2037" width="0.2" height="15.0" fill="rgb(243,146,3)" rx="2" ry="2" />
<text x="1718.49" y="2047.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::initializeWithTake (3 samples, 0.01%)</title><rect x="235.4" y="1845" width="0.3" height="15.0" fill="rgb(245,5,11)" rx="2" ry="2" />
<text x="238.45" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow._AnyTensorHandle.rank.getter : Swift.Int in conformance TensorFlow.TFETensorHandle : TensorFlow._AnyTensorHandle in TensorFlow (45 samples, 0.17%)</title><rect x="658.4" y="1893" width="3.1" height="15.0" fill="rgb(251,56,22)" rx="2" ry="2" />
<text x="661.43" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (2 samples, 0.01%)</title><rect x="1038.0" y="1877" width="0.1" height="15.0" fill="rgb(234,188,12)" rx="2" ry="2" />
<text x="1040.98" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.init(arrayLiteral: Swift.Int...) -&gt; TensorFlow.TensorShape (4 samples, 0.02%)</title><rect x="99.7" y="1925" width="0.3" height="15.0" fill="rgb(232,217,30)" rx="2" ry="2" />
<text x="102.70" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (2 samples, 0.01%)</title><rect x="348.3" y="1861" width="0.1" height="15.0" fill="rgb(220,109,19)" rx="2" ry="2" />
<text x="351.31" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for SwiftFusion._AnyDerivativeBox._adding(SwiftFusion._AnyDerivativeBox) -&gt; SwiftFusion._AnyDerivativeBox in conformance SwiftFusion._ConcreteDerivativeBox&lt;A&gt; : SwiftFusion._AnyDerivativeBox in SwiftFusion (4 samples, 0.02%)</title><rect x="1293.6" y="1861" width="0.3" height="15.0" fill="rgb(205,115,22)" rx="2" ry="2" />
<text x="1296.60" y="1871.5" ></text>
</g>
<g >
<title>swift_release (5 samples, 0.02%)</title><rect x="651.5" y="1813" width="0.3" height="15.0" fill="rgb(235,16,41)" rx="2" ry="2" />
<text x="654.49" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (42 samples, 0.16%)</title><rect x="1536.8" y="1925" width="2.9" height="15.0" fill="rgb(220,13,39)" rx="2" ry="2" />
<text x="1539.78" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (7 samples, 0.03%)</title><rect x="375.2" y="1781" width="0.5" height="15.0" fill="rgb(233,21,12)" rx="2" ry="2" />
<text x="378.18" y="1791.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorOperation.updateAttribute(Swift.String, Swift.Bool) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TensorOperation in TensorFlow (31 samples, 0.12%)</title><rect x="161.4" y="1925" width="2.2" height="15.0" fill="rgb(228,152,48)" rx="2" ry="2" />
<text x="164.42" y="1935.5" ></text>
</g>
<g >
<title>Swift.Array.init&lt;A where A == A1.Element, A1: Swift.Sequence&gt;(A1) -&gt; [A] (2 samples, 0.01%)</title><rect x="1461.8" y="1797" width="0.1" height="15.0" fill="rgb(248,110,16)" rx="2" ry="2" />
<text x="1464.80" y="1807.5" ></text>
</g>
<g >
<title>swift_checkMetadataState (2 samples, 0.01%)</title><rect x="1162.2" y="1749" width="0.1" height="15.0" fill="rgb(250,95,29)" rx="2" ry="2" />
<text x="1165.19" y="1759.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (13 samples, 0.05%)</title><rect x="270.0" y="1877" width="0.8" height="15.0" fill="rgb(237,194,22)" rx="2" ry="2" />
<text x="272.95" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (39 samples, 0.15%)</title><rect x="664.1" y="1861" width="2.7" height="15.0" fill="rgb(224,127,12)" rx="2" ry="2" />
<text x="667.14" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="416.0" y="1829" width="0.1" height="15.0" fill="rgb(214,102,37)" rx="2" ry="2" />
<text x="419.01" y="1839.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="991.7" y="1893" width="0.2" height="15.0" fill="rgb(249,187,20)" rx="2" ry="2" />
<text x="994.66" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (7 samples, 0.03%)</title><rect x="222.9" y="1829" width="0.4" height="15.0" fill="rgb(248,182,9)" rx="2" ry="2" />
<text x="225.87" y="1839.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="567.9" y="1893" width="0.1" height="15.0" fill="rgb(248,112,34)" rx="2" ry="2" />
<text x="570.91" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (18 samples, 0.07%)</title><rect x="1127.7" y="1909" width="1.3" height="15.0" fill="rgb(228,83,36)" rx="2" ry="2" />
<text x="1130.75" y="1919.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (5 samples, 0.02%)</title><rect x="316.6" y="1781" width="0.4" height="15.0" fill="rgb(254,226,25)" rx="2" ry="2" />
<text x="319.62" y="1791.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.FixedWidthInteger.bitWidth.getter : Swift.Int in conformance Swift.Int : Swift.FixedWidthInteger in Swift (3 samples, 0.01%)</title><rect x="1002.4" y="1861" width="0.3" height="15.0" fill="rgb(252,213,38)" rx="2" ry="2" />
<text x="1005.45" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (47 samples, 0.18%)</title><rect x="761.7" y="1845" width="3.2" height="15.0" fill="rgb(239,186,35)" rx="2" ry="2" />
<text x="764.67" y="1855.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="136.5" y="1925" width="0.2" height="15.0" fill="rgb(227,95,8)" rx="2" ry="2" />
<text x="139.54" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (20 samples, 0.08%)</title><rect x="683.4" y="1781" width="1.4" height="15.0" fill="rgb(250,130,9)" rx="2" ry="2" />
<text x="686.39" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::FillDimsAndValidateCompatibleShape&lt;1ul&gt; (2 samples, 0.01%)</title><rect x="754.5" y="1685" width="0.1" height="15.0" fill="rgb(238,0,41)" rx="2" ry="2" />
<text x="757.46" y="1695.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="929.5" y="1845" width="0.2" height="15.0" fill="rgb(247,201,9)" rx="2" ry="2" />
<text x="932.52" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::LazyCopyFunctionRemoteInputs (2 samples, 0.01%)</title><rect x="72.2" y="1845" width="0.1" height="15.0" fill="rgb(242,24,32)" rx="2" ry="2" />
<text x="75.20" y="1855.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata@plt (5 samples, 0.02%)</title><rect x="1394.0" y="1797" width="0.3" height="15.0" fill="rgb(239,31,49)" rx="2" ry="2" />
<text x="1396.96" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (107 samples, 0.41%)</title><rect x="271.9" y="1877" width="7.4" height="15.0" fill="rgb(238,32,0)" rx="2" ry="2" />
<text x="274.94" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context with unmangled suffix &quot;.resume.0&quot; (3 samples, 0.01%)</title><rect x="629.0" y="1909" width="0.2" height="15.0" fill="rgb(215,216,33)" rx="2" ry="2" />
<text x="632.02" y="1919.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="444.9" y="1877" width="0.1" height="15.0" fill="rgb(217,199,2)" rx="2" ry="2" />
<text x="447.88" y="1887.5" ></text>
</g>
<g >
<title>__clone (11 samples, 0.04%)</title><rect x="21.3" y="101" width="0.8" height="15.0" fill="rgb(208,40,17)" rx="2" ry="2" />
<text x="24.34" y="111.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="904.4" y="1861" width="0.2" height="15.0" fill="rgb(217,164,17)" rx="2" ry="2" />
<text x="907.43" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="1643.0" y="2037" width="0.3" height="15.0" fill="rgb(210,37,17)" rx="2" ry="2" />
<text x="1646.05" y="2047.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (14 samples, 0.05%)</title><rect x="984.1" y="1845" width="1.0" height="15.0" fill="rgb(208,153,42)" rx="2" ry="2" />
<text x="987.10" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (2 samples, 0.01%)</title><rect x="967.5" y="1717" width="0.2" height="15.0" fill="rgb(236,15,34)" rx="2" ry="2" />
<text x="970.53" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::OpKernelContext (2 samples, 0.01%)</title><rect x="688.4" y="1717" width="0.1" height="15.0" fill="rgb(250,201,15)" rx="2" ry="2" />
<text x="691.40" y="1727.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.device.getter : TensorFlow.Device (2 samples, 0.01%)</title><rect x="604.9" y="1941" width="0.1" height="15.0" fill="rgb(232,204,3)" rx="2" ry="2" />
<text x="607.89" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (162 samples, 0.63%)</title><rect x="431.4" y="1845" width="11.1" height="15.0" fill="rgb(222,122,10)" rx="2" ry="2" />
<text x="434.41" y="1855.5" ></text>
</g>
<g >
<title>static Swift.Array._allocateUninitialized(Swift.Int) -&gt; ([A], Swift.UnsafeMutablePointer&lt;A&gt;) (3 samples, 0.01%)</title><rect x="852.7" y="1893" width="0.2" height="15.0" fill="rgb(211,152,35)" rx="2" ry="2" />
<text x="855.68" y="1903.5" ></text>
</g>
<g >
<title>__clone (5 samples, 0.02%)</title><rect x="24.6" y="2005" width="0.3" height="15.0" fill="rgb(229,56,29)" rx="2" ry="2" />
<text x="27.57" y="2015.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (13 samples, 0.05%)</title><rect x="247.9" y="1733" width="0.9" height="15.0" fill="rgb(226,103,16)" rx="2" ry="2" />
<text x="250.89" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (269 samples, 1.04%)</title><rect x="633.0" y="1813" width="18.5" height="15.0" fill="rgb(254,29,25)" rx="2" ry="2" />
<text x="636.00" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.02%)</title><rect x="1536.3" y="2021" width="0.4" height="15.0" fill="rgb(243,53,36)" rx="2" ry="2" />
<text x="1539.30" y="2031.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (2 samples, 0.01%)</title><rect x="1148.3" y="1765" width="0.1" height="15.0" fill="rgb(235,142,39)" rx="2" ry="2" />
<text x="1151.30" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::GetCachedKernel (3 samples, 0.01%)</title><rect x="1136.9" y="1829" width="0.2" height="15.0" fill="rgb(223,122,27)" rx="2" ry="2" />
<text x="1139.89" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::ExplicitVectorMatrixOptimization&lt;double&gt; (21 samples, 0.08%)</title><rect x="1020.3" y="1701" width="1.5" height="15.0" fill="rgb(213,27,37)" rx="2" ry="2" />
<text x="1023.32" y="1711.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (22 samples, 0.08%)</title><rect x="178.7" y="1909" width="1.6" height="15.0" fill="rgb(213,119,29)" rx="2" ry="2" />
<text x="181.74" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::GetCachedKernel (2 samples, 0.01%)</title><rect x="1454.4" y="1813" width="0.2" height="15.0" fill="rgb(224,87,24)" rx="2" ry="2" />
<text x="1457.44" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="806.4" y="1829" width="0.2" height="15.0" fill="rgb(232,63,42)" rx="2" ry="2" />
<text x="809.42" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::DeviceOrHostCPU (3 samples, 0.01%)</title><rect x="1120.5" y="1829" width="0.2" height="15.0" fill="rgb(213,51,53)" rx="2" ry="2" />
<text x="1123.53" y="1839.5" ></text>
</g>
<g >
<title>TF_Message (3 samples, 0.01%)</title><rect x="61.5" y="1925" width="0.2" height="15.0" fill="rgb(209,81,54)" rx="2" ry="2" />
<text x="64.48" y="1935.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="137.2" y="1925" width="0.2" height="15.0" fill="rgb(253,68,51)" rx="2" ry="2" />
<text x="140.23" y="1935.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (3 samples, 0.01%)</title><rect x="1029.5" y="1845" width="0.2" height="15.0" fill="rgb(211,103,22)" rx="2" ry="2" />
<text x="1032.53" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (133 samples, 0.51%)</title><rect x="573.5" y="1813" width="9.2" height="15.0" fill="rgb(234,109,31)" rx="2" ry="2" />
<text x="576.55" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (2 samples, 0.01%)</title><rect x="1447.4" y="1797" width="0.1" height="15.0" fill="rgb(205,125,29)" rx="2" ry="2" />
<text x="1450.36" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (85 samples, 0.33%)</title><rect x="607.2" y="1861" width="5.8" height="15.0" fill="rgb(248,8,26)" rx="2" ry="2" />
<text x="610.16" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (25 samples, 0.10%)</title><rect x="523.2" y="1829" width="1.7" height="15.0" fill="rgb(240,84,37)" rx="2" ry="2" />
<text x="526.17" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (5 samples, 0.02%)</title><rect x="1244.8" y="1797" width="0.3" height="15.0" fill="rgb(233,67,54)" rx="2" ry="2" />
<text x="1247.80" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (73 samples, 0.28%)</title><rect x="695.9" y="1877" width="5.0" height="15.0" fill="rgb(227,153,27)" rx="2" ry="2" />
<text x="698.89" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (2 samples, 0.01%)</title><rect x="589.1" y="1749" width="0.1" height="15.0" fill="rgb(238,122,7)" rx="2" ry="2" />
<text x="592.08" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1717" width="0.9" height="15.0" fill="rgb(213,139,13)" rx="2" ry="2" />
<text x="24.27" y="1727.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (2 samples, 0.01%)</title><rect x="254.7" y="1861" width="0.1" height="15.0" fill="rgb(216,36,31)" rx="2" ry="2" />
<text x="257.69" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (179 samples, 0.69%)</title><rect x="87.4" y="1925" width="12.3" height="15.0" fill="rgb(224,23,49)" rx="2" ry="2" />
<text x="90.39" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="229" width="0.9" height="15.0" fill="rgb(217,176,31)" rx="2" ry="2" />
<text x="24.27" y="239.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (34 samples, 0.13%)</title><rect x="104.6" y="1909" width="2.4" height="15.0" fill="rgb(224,123,48)" rx="2" ry="2" />
<text x="107.65" y="1919.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="800.4" y="1877" width="0.2" height="15.0" fill="rgb(252,100,10)" rx="2" ry="2" />
<text x="803.37" y="1887.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="865.3" y="1813" width="0.2" height="15.0" fill="rgb(223,19,50)" rx="2" ry="2" />
<text x="868.32" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (7 samples, 0.03%)</title><rect x="1468.2" y="1941" width="0.5" height="15.0" fill="rgb(218,36,36)" rx="2" ry="2" />
<text x="1471.19" y="1951.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.Equatable.== infix(A, A) -&gt; Swift.Bool in conformance Swift.ObjectIdentifier : Swift.Equatable in Swift (2 samples, 0.01%)</title><rect x="1485.2" y="1877" width="0.2" height="15.0" fill="rgb(254,165,43)" rx="2" ry="2" />
<text x="1488.23" y="1887.5" ></text>
</g>
<g >
<title>__swift_instantiateConcreteTypeFromMangledName (2 samples, 0.01%)</title><rect x="1166.2" y="1829" width="0.2" height="15.0" fill="rgb(223,224,47)" rx="2" ry="2" />
<text x="1169.24" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.CTensorTensorBuffer.__allocating_init(owning: Swift.OpaquePointer, count: Swift.Int) -&gt; TensorFlow.CTensorTensorBuffer&lt;A&gt; (18 samples, 0.07%)</title><rect x="46.4" y="1877" width="1.3" height="15.0" fill="rgb(237,6,33)" rx="2" ry="2" />
<text x="49.43" y="1887.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="783.5" y="1893" width="0.2" height="15.0" fill="rgb(213,170,31)" rx="2" ry="2" />
<text x="786.53" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.05%)</title><rect x="21.3" y="469" width="0.9" height="15.0" fill="rgb(224,136,2)" rx="2" ry="2" />
<text x="24.27" y="479.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::ByteSizeLong (2 samples, 0.01%)</title><rect x="703.3" y="1813" width="0.2" height="15.0" fill="rgb(234,74,7)" rx="2" ry="2" />
<text x="706.32" y="1823.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="420.8" y="1941" width="0.2" height="15.0" fill="rgb(221,226,39)" rx="2" ry="2" />
<text x="423.82" y="1951.5" ></text>
</g>
<g >
<title>TensorFlow.debugLog(_: @autoclosure () -&gt; Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (35 samples, 0.14%)</title><rect x="172.1" y="1925" width="2.4" height="15.0" fill="rgb(217,143,8)" rx="2" ry="2" />
<text x="175.14" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::InternalSerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="939.8" y="1781" width="0.1" height="15.0" fill="rgb(238,11,31)" rx="2" ry="2" />
<text x="942.76" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_tensor (14 samples, 0.05%)</title><rect x="366.3" y="1669" width="1.0" height="15.0" fill="rgb(206,115,34)" rx="2" ry="2" />
<text x="369.32" y="1679.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::ShouldStoreGraphs (2 samples, 0.01%)</title><rect x="876.6" y="1797" width="0.1" height="15.0" fill="rgb(217,74,20)" rx="2" ry="2" />
<text x="879.60" y="1807.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (6 samples, 0.02%)</title><rect x="159.5" y="1845" width="0.4" height="15.0" fill="rgb(238,173,0)" rx="2" ry="2" />
<text x="162.50" y="1855.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (6 samples, 0.02%)</title><rect x="597.0" y="1829" width="0.4" height="15.0" fill="rgb(238,201,29)" rx="2" ry="2" />
<text x="599.99" y="1839.5" ></text>
</g>
<g >
<title>protocol witness for Swift.Collection.endIndex.getter : A.Index in conformance [A] : Swift.Collection in Swift (2 samples, 0.01%)</title><rect x="1161.6" y="1717" width="0.2" height="15.0" fill="rgb(238,126,40)" rx="2" ry="2" />
<text x="1164.64" y="1727.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="551.5" y="1845" width="0.2" height="15.0" fill="rgb(221,61,32)" rx="2" ry="2" />
<text x="554.49" y="1855.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (4 samples, 0.02%)</title><rect x="107.3" y="1893" width="0.2" height="15.0" fill="rgb(243,105,5)" rx="2" ry="2" />
<text x="110.26" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::SyncExecute (87 samples, 0.34%)</title><rect x="1074.5" y="1813" width="6.0" height="15.0" fill="rgb(244,227,27)" rx="2" ry="2" />
<text x="1077.55" y="1823.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1142.0" y="1909" width="0.1" height="15.0" fill="rgb(246,69,9)" rx="2" ry="2" />
<text x="1144.98" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for Swift._ExpressibleByBuiltinIntegerLiteral.init(_builtinIntegerLiteral: Builtin.IntLiteral) -&gt; A in conformance Swift.Int32 : Swift._ExpressibleByBuiltinIntegerLiteral in Swift (2 samples, 0.01%)</title><rect x="836.2" y="1765" width="0.2" height="15.0" fill="rgb(241,51,49)" rx="2" ry="2" />
<text x="839.25" y="1775.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (11 samples, 0.04%)</title><rect x="1447.3" y="1877" width="0.7" height="15.0" fill="rgb(240,212,45)" rx="2" ry="2" />
<text x="1450.29" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (155 samples, 0.60%)</title><rect x="572.9" y="1877" width="10.7" height="15.0" fill="rgb(254,137,7)" rx="2" ry="2" />
<text x="575.93" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (27 samples, 0.10%)</title><rect x="198.3" y="1893" width="1.8" height="15.0" fill="rgb(244,139,14)" rx="2" ry="2" />
<text x="201.26" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::internal::DoTransposeImpl&lt;Eigen::ThreadPoolDevice&gt; (66 samples, 0.25%)</title><rect x="921.5" y="1653" width="4.5" height="15.0" fill="rgb(212,154,22)" rx="2" ry="2" />
<text x="924.48" y="1663.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (19 samples, 0.07%)</title><rect x="939.0" y="1845" width="1.3" height="15.0" fill="rgb(212,46,18)" rx="2" ry="2" />
<text x="942.01" y="1855.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (16 samples, 0.06%)</title><rect x="65.0" y="1909" width="1.1" height="15.0" fill="rgb(243,143,19)" rx="2" ry="2" />
<text x="67.99" y="1919.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="22.2" y="1925" width="0.2" height="15.0" fill="rgb(254,109,44)" rx="2" ry="2" />
<text x="25.23" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (23 samples, 0.09%)</title><rect x="433.2" y="1829" width="1.6" height="15.0" fill="rgb(227,83,9)" rx="2" ry="2" />
<text x="436.19" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="1459.3" y="1877" width="0.1" height="15.0" fill="rgb(238,128,15)" rx="2" ry="2" />
<text x="1462.25" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (21 samples, 0.08%)</title><rect x="596.2" y="1861" width="1.4" height="15.0" fill="rgb(251,107,35)" rx="2" ry="2" />
<text x="599.16" y="1871.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (21 samples, 0.08%)</title><rect x="480.6" y="1749" width="1.4" height="15.0" fill="rgb(252,99,38)" rx="2" ry="2" />
<text x="483.55" y="1759.5" ></text>
</g>
<g >
<title>__strlen_avx2 (3 samples, 0.01%)</title><rect x="330.2" y="1861" width="0.2" height="15.0" fill="rgb(239,95,34)" rx="2" ry="2" />
<text x="333.23" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (5 samples, 0.02%)</title><rect x="609.3" y="1813" width="0.3" height="15.0" fill="rgb(250,162,3)" rx="2" ry="2" />
<text x="612.29" y="1823.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (5 samples, 0.02%)</title><rect x="425.6" y="1925" width="0.4" height="15.0" fill="rgb(238,145,6)" rx="2" ry="2" />
<text x="428.63" y="1935.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="482.8" y="1797" width="0.1" height="15.0" fill="rgb(212,46,54)" rx="2" ry="2" />
<text x="485.75" y="1807.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (28 samples, 0.11%)</title><rect x="374.8" y="1813" width="2.0" height="15.0" fill="rgb(230,91,45)" rx="2" ry="2" />
<text x="377.84" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.CTensorTensorBuffer.init(owning: Swift.OpaquePointer, count: Swift.Int) -&gt; TensorFlow.CTensorTensorBuffer&lt;A&gt; (24 samples, 0.09%)</title><rect x="401.9" y="1861" width="1.7" height="15.0" fill="rgb(211,199,6)" rx="2" ry="2" />
<text x="404.92" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (2 samples, 0.01%)</title><rect x="327.9" y="1845" width="0.1" height="15.0" fill="rgb(238,96,37)" rx="2" ry="2" />
<text x="330.89" y="1855.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="691.4" y="1813" width="0.2" height="15.0" fill="rgb(211,14,13)" rx="2" ry="2" />
<text x="694.43" y="1823.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (2 samples, 0.01%)</title><rect x="1114.0" y="1925" width="0.1" height="15.0" fill="rgb(247,167,14)" rx="2" ry="2" />
<text x="1117.00" y="1935.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow._ShapedArrayProtocol.scalars.getter : [A.Scalar] (33 samples, 0.13%)</title><rect x="42.0" y="1941" width="2.2" height="15.0" fill="rgb(245,186,52)" rx="2" ry="2" />
<text x="44.96" y="1951.5" ></text>
</g>
<g >
<title>TFE_NewTensorHandle (7 samples, 0.03%)</title><rect x="1103.2" y="1781" width="0.5" height="15.0" fill="rgb(253,97,44)" rx="2" ry="2" />
<text x="1106.21" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (23 samples, 0.09%)</title><rect x="1026.9" y="1861" width="1.6" height="15.0" fill="rgb(224,85,0)" rx="2" ry="2" />
<text x="1029.92" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (47 samples, 0.18%)</title><rect x="701.3" y="1909" width="3.2" height="15.0" fill="rgb(217,172,19)" rx="2" ry="2" />
<text x="704.26" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for Swift._Pointer.init(Builtin.RawPointer) -&gt; A in conformance Swift.UnsafePointer&lt;A&gt; : Swift._Pointer in Swift (2 samples, 0.01%)</title><rect x="712.5" y="1877" width="0.2" height="15.0" fill="rgb(205,201,16)" rx="2" ry="2" />
<text x="715.53" y="1887.5" ></text>
</g>
<g >
<title>(extension in TensorFlow):TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A (3 samples, 0.01%)</title><rect x="1471.6" y="1909" width="0.2" height="15.0" fill="rgb(249,71,43)" rx="2" ry="2" />
<text x="1474.56" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (52 samples, 0.20%)</title><rect x="987.6" y="1877" width="3.6" height="15.0" fill="rgb(252,60,54)" rx="2" ry="2" />
<text x="990.60" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (14 samples, 0.05%)</title><rect x="459.0" y="1893" width="1.0" height="15.0" fill="rgb(213,45,52)" rx="2" ry="2" />
<text x="462.04" y="1903.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.count.getter : Swift.Int (13 samples, 0.05%)</title><rect x="44.7" y="1861" width="0.9" height="15.0" fill="rgb(220,224,40)" rx="2" ry="2" />
<text x="47.71" y="1871.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="976.3" y="1877" width="0.1" height="15.0" fill="rgb(216,57,34)" rx="2" ry="2" />
<text x="979.26" y="1887.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="956.5" y="1829" width="0.1" height="15.0" fill="rgb(205,203,6)" rx="2" ry="2" />
<text x="959.46" y="1839.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int, @unowned Swift.Int) -&gt; (@unowned Swift.Int, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int, @in_guaranteed Swift.Int) -&gt; (@out Swift.Int, @error @owned Swift.Error) (2 samples, 0.01%)</title><rect x="537.3" y="1781" width="0.2" height="15.0" fill="rgb(245,227,33)" rx="2" ry="2" />
<text x="540.33" y="1791.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.BinaryInteger.isSigned.getter : Swift.Bool in conformance Swift.Int32 : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="1031.2" y="1877" width="0.2" height="15.0" fill="rgb(226,212,6)" rx="2" ry="2" />
<text x="1034.25" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow._ExecutionContext.currentDeviceName.getter : Swift.String? (19 samples, 0.07%)</title><rect x="519.2" y="1861" width="1.3" height="15.0" fill="rgb(253,69,34)" rx="2" ry="2" />
<text x="522.18" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (194 samples, 0.75%)</title><rect x="957.2" y="1877" width="13.3" height="15.0" fill="rgb(222,3,4)" rx="2" ry="2" />
<text x="960.15" y="1887.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="598.8" y="1941" width="0.1" height="15.0" fill="rgb(233,103,25)" rx="2" ry="2" />
<text x="601.77" y="1951.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="643.9" y="1749" width="0.1" height="15.0" fill="rgb(211,65,19)" rx="2" ry="2" />
<text x="646.86" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::allocate_tensor (3 samples, 0.01%)</title><rect x="128.4" y="1781" width="0.2" height="15.0" fill="rgb(218,80,36)" rx="2" ry="2" />
<text x="131.43" y="1791.5" ></text>
</g>
<g >
<title>reabstraction thunk helper from @callee_guaranteed (@unowned Swift.Int) -&gt; (@unowned Swift.Int64, @error @owned Swift.Error) to @escaping @callee_guaranteed (@in_guaranteed Swift.Int) -&gt; (@out Swift.Int64, @error @owned Swift.Error) (6 samples, 0.02%)</title><rect x="1436.4" y="1829" width="0.4" height="15.0" fill="rgb(215,4,15)" rx="2" ry="2" />
<text x="1439.43" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (6 samples, 0.02%)</title><rect x="641.3" y="1685" width="0.4" height="15.0" fill="rgb(239,196,37)" rx="2" ry="2" />
<text x="644.32" y="1695.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (4 samples, 0.02%)</title><rect x="914.8" y="1749" width="0.3" height="15.0" fill="rgb(218,211,40)" rx="2" ry="2" />
<text x="917.81" y="1759.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="503.2" y="1877" width="0.2" height="15.0" fill="rgb(210,131,22)" rx="2" ry="2" />
<text x="506.23" y="1887.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="365.1" y="1733" width="0.1" height="15.0" fill="rgb(254,125,11)" rx="2" ry="2" />
<text x="368.08" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (4 samples, 0.02%)</title><rect x="325.1" y="1749" width="0.3" height="15.0" fill="rgb(216,50,1)" rx="2" ry="2" />
<text x="328.14" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (4 samples, 0.02%)</title><rect x="788.8" y="1845" width="0.2" height="15.0" fill="rgb(251,221,21)" rx="2" ry="2" />
<text x="791.75" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (29 samples, 0.11%)</title><rect x="60.5" y="1941" width="2.0" height="15.0" fill="rgb(245,146,52)" rx="2" ry="2" />
<text x="63.52" y="1951.5" ></text>
</g>
<g >
<title>TFE_NewOp (66 samples, 0.25%)</title><rect x="987.1" y="1893" width="4.6" height="15.0" fill="rgb(219,46,32)" rx="2" ry="2" />
<text x="990.12" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::TensorHandle (3 samples, 0.01%)</title><rect x="639.5" y="1685" width="0.2" height="15.0" fill="rgb(222,218,40)" rx="2" ry="2" />
<text x="642.53" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::SetAttrValue (2 samples, 0.01%)</title><rect x="1091.7" y="1877" width="0.1" height="15.0" fill="rgb(241,108,51)" rx="2" ry="2" />
<text x="1094.66" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow._AnyTensorHandle.rank.getter : Swift.Int in conformance TensorFlow.TFETensorHandle : TensorFlow._AnyTensorHandle in TensorFlow (32 samples, 0.12%)</title><rect x="392.6" y="1925" width="2.2" height="15.0" fill="rgb(230,87,22)" rx="2" ry="2" />
<text x="395.57" y="1935.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (16 samples, 0.06%)</title><rect x="227.7" y="1877" width="1.1" height="15.0" fill="rgb(232,226,6)" rx="2" ry="2" />
<text x="230.75" y="1887.5" ></text>
</g>
<g >
<title>google::protobuf::Map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, tensorflow::AttrValue&gt;::InnerMap::~InnerMap (4 samples, 0.02%)</title><rect x="271.5" y="1813" width="0.3" height="15.0" fill="rgb(211,181,35)" rx="2" ry="2" />
<text x="274.53" y="1823.5" ></text>
</g>
<g >
<title>swift_once (2 samples, 0.01%)</title><rect x="370.8" y="1845" width="0.1" height="15.0" fill="rgb(245,43,28)" rx="2" ry="2" />
<text x="373.78" y="1855.5" ></text>
</g>
<g >
<title>swift_slowAlloc (2 samples, 0.01%)</title><rect x="92.5" y="1765" width="0.1" height="15.0" fill="rgb(250,92,37)" rx="2" ry="2" />
<text x="95.48" y="1775.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="982.4" y="1909" width="0.2" height="15.0" fill="rgb(245,167,40)" rx="2" ry="2" />
<text x="985.45" y="1919.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.addInput&lt;A where A1: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A1&gt;) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (5 samples, 0.02%)</title><rect x="1433.8" y="1893" width="0.3" height="15.0" fill="rgb(237,175,53)" rx="2" ry="2" />
<text x="1436.75" y="1903.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="1214.5" y="1845" width="0.1" height="15.0" fill="rgb(213,126,15)" rx="2" ry="2" />
<text x="1217.49" y="1855.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (94 samples, 0.36%)</title><rect x="1101.3" y="1861" width="6.4" height="15.0" fill="rgb(250,55,39)" rx="2" ry="2" />
<text x="1104.29" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.init(arrayLiteral: Swift.Int...) -&gt; TensorFlow.TensorShape (3 samples, 0.01%)</title><rect x="1109.6" y="1925" width="0.2" height="15.0" fill="rgb(213,4,19)" rx="2" ry="2" />
<text x="1112.60" y="1935.5" ></text>
</g>
<g >
<title>Swift.Array.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (96 samples, 0.37%)</title><rect x="1101.2" y="1909" width="6.6" height="15.0" fill="rgb(212,71,7)" rx="2" ry="2" />
<text x="1104.22" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (225 samples, 0.87%)</title><rect x="1474.4" y="1925" width="15.4" height="15.0" fill="rgb(211,150,34)" rx="2" ry="2" />
<text x="1477.37" y="1935.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (6 samples, 0.02%)</title><rect x="1087.5" y="1781" width="0.4" height="15.0" fill="rgb(234,176,29)" rx="2" ry="2" />
<text x="1090.47" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::AllocateRaw (3 samples, 0.01%)</title><rect x="276.1" y="1653" width="0.2" height="15.0" fill="rgb(211,119,52)" rx="2" ry="2" />
<text x="279.14" y="1663.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (2 samples, 0.01%)</title><rect x="1103.6" y="1749" width="0.1" height="15.0" fill="rgb(248,1,14)" rx="2" ry="2" />
<text x="1106.56" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (79 samples, 0.31%)</title><rect x="512.7" y="1781" width="5.4" height="15.0" fill="rgb(210,104,52)" rx="2" ry="2" />
<text x="515.65" y="1791.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (10 samples, 0.04%)</title><rect x="378.0" y="1861" width="0.7" height="15.0" fill="rgb(214,227,7)" rx="2" ry="2" />
<text x="381.00" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="106.6" y="1877" width="0.2" height="15.0" fill="rgb(218,163,12)" rx="2" ry="2" />
<text x="109.57" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (447 samples, 1.73%)</title><rect x="308.8" y="1909" width="30.7" height="15.0" fill="rgb(254,173,22)" rx="2" ry="2" />
<text x="311.79" y="1919.5" >Te..</text>
</g>
<g >
<title>TensorFlow.Tensor.init(_: [A], on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (180 samples, 0.70%)</title><rect x="125.0" y="1941" width="12.4" height="15.0" fill="rgb(216,223,9)" rx="2" ry="2" />
<text x="127.99" y="1951.5" ></text>
</g>
<g >
<title>_mid_memalign (4 samples, 0.02%)</title><rect x="332.6" y="1893" width="0.3" height="15.0" fill="rgb(242,34,9)" rx="2" ry="2" />
<text x="335.64" y="1903.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="260.4" y="1845" width="0.2" height="15.0" fill="rgb(237,108,32)" rx="2" ry="2" />
<text x="263.40" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (44 samples, 0.17%)</title><rect x="796.2" y="1845" width="3.1" height="15.0" fill="rgb(240,6,32)" rx="2" ry="2" />
<text x="799.25" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="224.6" y="1893" width="0.1" height="15.0" fill="rgb(209,52,34)" rx="2" ry="2" />
<text x="227.59" y="1903.5" ></text>
</g>
<g >
<title>destroy value witness for Swift.IndexingIterator (2 samples, 0.01%)</title><rect x="645.0" y="1701" width="0.1" height="15.0" fill="rgb(243,195,10)" rx="2" ry="2" />
<text x="647.96" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::AddAttrIfNotPresent (8 samples, 0.03%)</title><rect x="1091.0" y="1877" width="0.5" height="15.0" fill="rgb(251,93,10)" rx="2" ry="2" />
<text x="1093.98" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1429" width="0.9" height="15.0" fill="rgb(211,227,37)" rx="2" ry="2" />
<text x="24.27" y="1439.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::CreateLocalHandle (4 samples, 0.02%)</title><rect x="368.9" y="1765" width="0.3" height="15.0" fill="rgb(212,131,42)" rx="2" ry="2" />
<text x="371.93" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.deinit (8 samples, 0.03%)</title><rect x="1458.8" y="1893" width="0.6" height="15.0" fill="rgb(247,13,47)" rx="2" ry="2" />
<text x="1461.84" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (12 samples, 0.05%)</title><rect x="115.9" y="1877" width="0.8" height="15.0" fill="rgb(222,207,19)" rx="2" ry="2" />
<text x="118.92" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="581" width="0.9" height="15.0" fill="rgb(245,101,9)" rx="2" ry="2" />
<text x="24.27" y="591.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="1495.3" y="2037" width="0.1" height="15.0" fill="rgb(213,155,37)" rx="2" ry="2" />
<text x="1498.27" y="2047.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (5 samples, 0.02%)</title><rect x="421.2" y="1941" width="0.3" height="15.0" fill="rgb(225,124,0)" rx="2" ry="2" />
<text x="424.17" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (185 samples, 0.71%)</title><rect x="430.7" y="1877" width="12.7" height="15.0" fill="rgb(226,202,17)" rx="2" ry="2" />
<text x="433.72" y="1887.5" ></text>
</g>
<g >
<title>swift_arrayDestroy (2 samples, 0.01%)</title><rect x="338.8" y="1861" width="0.1" height="15.0" fill="rgb(209,159,8)" rx="2" ry="2" />
<text x="341.75" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (2 samples, 0.01%)</title><rect x="1454.6" y="1765" width="0.1" height="15.0" fill="rgb(218,73,52)" rx="2" ry="2" />
<text x="1457.58" y="1775.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="99.8" y="1909" width="0.2" height="15.0" fill="rgb(235,158,26)" rx="2" ry="2" />
<text x="102.84" y="1919.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1210.1" y="1813" width="0.1" height="15.0" fill="rgb(224,181,38)" rx="2" ry="2" />
<text x="1213.09" y="1823.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int and conformance Swift.Int : Swift.SignedInteger in Swift (2 samples, 0.01%)</title><rect x="286.0" y="1909" width="0.2" height="15.0" fill="rgb(219,65,33)" rx="2" ry="2" />
<text x="289.04" y="1919.5" ></text>
</g>
<g >
<title>swift_retain (4 samples, 0.02%)</title><rect x="336.5" y="1765" width="0.3" height="15.0" fill="rgb(205,125,8)" rx="2" ry="2" />
<text x="339.49" y="1775.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="659.7" y="1845" width="0.2" height="15.0" fill="rgb(222,56,50)" rx="2" ry="2" />
<text x="662.74" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for Swift.FixedWidthInteger.init(littleEndian: A) -&gt; A in conformance Swift.Int32 : Swift.FixedWidthInteger in Swift (2 samples, 0.01%)</title><rect x="312.2" y="1861" width="0.2" height="15.0" fill="rgb(214,11,22)" rx="2" ry="2" />
<text x="315.22" y="1871.5" ></text>
</g>
<g >
<title>malloc_consolidate (151 samples, 0.58%)</title><rect x="1689.6" y="2053" width="10.4" height="15.0" fill="rgb(206,16,9)" rx="2" ry="2" />
<text x="1692.65" y="2063.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (14 samples, 0.05%)</title><rect x="91.4" y="1765" width="1.0" height="15.0" fill="rgb(230,153,36)" rx="2" ry="2" />
<text x="94.45" y="1775.5" ></text>
</g>
<g >
<title>getCache (2 samples, 0.01%)</title><rect x="85.1" y="1925" width="0.1" height="15.0" fill="rgb(230,114,43)" rx="2" ry="2" />
<text x="88.06" y="1935.5" ></text>
</g>
<g >
<title>TensorFlow.eye&lt;A where A: Swift.Numeric, A: TensorFlow.TensorFlowScalar&gt;(rowCount: Swift.Int, columnCount: Swift.Int?, batchShape: [Swift.Int]) -&gt; TensorFlow.Tensor&lt;A&gt; (62 samples, 0.24%)</title><rect x="1261.3" y="1941" width="4.3" height="15.0" fill="rgb(207,126,8)" rx="2" ry="2" />
<text x="1264.30" y="1951.5" ></text>
</g>
<g >
<title>protocol witness for Swift.BinaryInteger.init&lt;A where A1: Swift.BinaryInteger&gt;(truncatingIfNeeded: A1) -&gt; A in conformance Swift.Int64 : Swift.BinaryInteger in Swift (2 samples, 0.01%)</title><rect x="533.8" y="1861" width="0.2" height="15.0" fill="rgb(215,110,6)" rx="2" ry="2" />
<text x="536.82" y="1871.5" ></text>
</g>
<g >
<title>swift_beginAccess (7 samples, 0.03%)</title><rect x="182.1" y="1909" width="0.5" height="15.0" fill="rgb(249,74,14)" rx="2" ry="2" />
<text x="185.11" y="1919.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="376.6" y="1781" width="0.2" height="15.0" fill="rgb(207,8,0)" rx="2" ry="2" />
<text x="379.56" y="1791.5" ></text>
</g>
<g >
<title>closure #2 (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; () in TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (23 samples, 0.09%)</title><rect x="545.6" y="1781" width="1.6" height="15.0" fill="rgb(216,63,20)" rx="2" ry="2" />
<text x="548.64" y="1791.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="1185.7" y="1877" width="0.1" height="15.0" fill="rgb(212,108,40)" rx="2" ry="2" />
<text x="1188.69" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::OpKernelContext (3 samples, 0.01%)</title><rect x="1450.0" y="1669" width="0.2" height="15.0" fill="rgb(243,111,9)" rx="2" ry="2" />
<text x="1453.04" y="1679.5" ></text>
</g>
<g >
<title>swift_bridgeObjectRetain (2 samples, 0.01%)</title><rect x="1051.2" y="1925" width="0.2" height="15.0" fill="rgb(250,205,50)" rx="2" ry="2" />
<text x="1054.25" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::Tensor (3 samples, 0.01%)</title><rect x="408.2" y="1877" width="0.3" height="15.0" fill="rgb(253,200,43)" rx="2" ry="2" />
<text x="411.24" y="1887.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="744.2" y="1733" width="0.2" height="15.0" fill="rgb(223,160,46)" rx="2" ry="2" />
<text x="747.21" y="1743.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (2 samples, 0.01%)</title><rect x="993.4" y="1893" width="0.1" height="15.0" fill="rgb(210,99,32)" rx="2" ry="2" />
<text x="996.37" y="1903.5" ></text>
</g>
<g >
<title>swift_isUniquelyReferenced_nonNull_native@plt (2 samples, 0.01%)</title><rect x="1255.7" y="1973" width="0.2" height="15.0" fill="rgb(241,168,21)" rx="2" ry="2" />
<text x="1258.73" y="1983.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="587.5" y="1893" width="0.1" height="15.0" fill="rgb(242,194,11)" rx="2" ry="2" />
<text x="590.50" y="1903.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="429.5" y="1861" width="0.1" height="15.0" fill="rgb(209,122,36)" rx="2" ry="2" />
<text x="432.48" y="1871.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="225.3" y="1893" width="0.1" height="15.0" fill="rgb(205,86,52)" rx="2" ry="2" />
<text x="228.27" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (13 samples, 0.05%)</title><rect x="346.8" y="1861" width="0.9" height="15.0" fill="rgb(227,104,23)" rx="2" ry="2" />
<text x="349.80" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).local.getter : TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5) (3 samples, 0.01%)</title><rect x="158.9" y="1765" width="0.3" height="15.0" fill="rgb(209,165,8)" rx="2" ry="2" />
<text x="161.95" y="1775.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (3 samples, 0.01%)</title><rect x="139.3" y="1845" width="0.2" height="15.0" fill="rgb(232,105,6)" rx="2" ry="2" />
<text x="142.29" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (4 samples, 0.02%)</title><rect x="972.8" y="1845" width="0.2" height="15.0" fill="rgb(208,108,21)" rx="2" ry="2" />
<text x="975.75" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.init(Swift.String, Swift.Int) -&gt; TensorFlow.TFE_Op (77 samples, 0.30%)</title><rect x="1044.3" y="1909" width="5.3" height="15.0" fill="rgb(232,156,52)" rx="2" ry="2" />
<text x="1047.31" y="1919.5" ></text>
</g>
<g >
<title>getCache (2 samples, 0.01%)</title><rect x="338.1" y="1829" width="0.2" height="15.0" fill="rgb(242,93,34)" rx="2" ry="2" />
<text x="341.14" y="1839.5" ></text>
</g>
<g >
<title>Swift.Character.init(_builtinExtendedGraphemeClusterLiteral: Builtin.RawPointer, utf8CodeUnitCount: Builtin.Word, isASCII: Builtin.Int1) -&gt; Swift.Character (3 samples, 0.01%)</title><rect x="493.5" y="1925" width="0.2" height="15.0" fill="rgb(243,203,10)" rx="2" ry="2" />
<text x="496.47" y="1935.5" ></text>
</g>
<g >
<title>swift_getWitnessTable (2 samples, 0.01%)</title><rect x="22.6" y="1941" width="0.1" height="15.0" fill="rgb(227,147,21)" rx="2" ry="2" />
<text x="25.58" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_tensor (10 samples, 0.04%)</title><rect x="323.4" y="1669" width="0.7" height="15.0" fill="rgb(215,187,3)" rx="2" ry="2" />
<text x="326.43" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1588.6" y="1941" width="0.1" height="15.0" fill="rgb(242,143,18)" rx="2" ry="2" />
<text x="1591.61" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1111.3" y="1877" width="0.3" height="15.0" fill="rgb(254,166,47)" rx="2" ry="2" />
<text x="1114.32" y="1887.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (2 samples, 0.01%)</title><rect x="1111.8" y="1861" width="0.1" height="15.0" fill="rgb(212,98,15)" rx="2" ry="2" />
<text x="1114.80" y="1871.5" ></text>
</g>
<g >
<title>TFE_TensorHandleResolve (17 samples, 0.07%)</title><rect x="408.1" y="1893" width="1.2" height="15.0" fill="rgb(224,6,29)" rx="2" ry="2" />
<text x="411.11" y="1903.5" ></text>
</g>
<g >
<title>swift_release (3 samples, 0.01%)</title><rect x="122.4" y="1941" width="0.2" height="15.0" fill="rgb(230,22,43)" rx="2" ry="2" />
<text x="125.38" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::TensorShapeBase&lt;tensorflow::TensorShape&gt;::TensorShapeBase (2 samples, 0.01%)</title><rect x="875.2" y="1685" width="0.2" height="15.0" fill="rgb(209,11,41)" rx="2" ry="2" />
<text x="878.22" y="1695.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (2 samples, 0.01%)</title><rect x="822.8" y="1669" width="0.1" height="15.0" fill="rgb(215,80,1)" rx="2" ry="2" />
<text x="825.78" y="1679.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (29 samples, 0.11%)</title><rect x="1208.1" y="1813" width="2.0" height="15.0" fill="rgb(234,60,33)" rx="2" ry="2" />
<text x="1211.10" y="1823.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (4 samples, 0.02%)</title><rect x="236.6" y="1861" width="0.3" height="15.0" fill="rgb(218,120,40)" rx="2" ry="2" />
<text x="239.62" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (19 samples, 0.07%)</title><rect x="873.8" y="1685" width="1.3" height="15.0" fill="rgb(223,63,3)" rx="2" ry="2" />
<text x="876.78" y="1695.5" ></text>
</g>
<g >
<title>InitialAllocationPool (3 samples, 0.01%)</title><rect x="18.6" y="2037" width="0.2" height="15.0" fill="rgb(233,115,46)" rx="2" ry="2" />
<text x="21.59" y="2047.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (31 samples, 0.12%)</title><rect x="523.1" y="1845" width="2.1" height="15.0" fill="rgb(210,36,22)" rx="2" ry="2" />
<text x="526.10" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::EagerExecutor::ClearError (2 samples, 0.01%)</title><rect x="689.8" y="1813" width="0.2" height="15.0" fill="rgb(213,181,39)" rx="2" ry="2" />
<text x="692.85" y="1823.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="902.4" y="1781" width="0.1" height="15.0" fill="rgb(252,179,8)" rx="2" ry="2" />
<text x="905.37" y="1791.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (3 samples, 0.01%)</title><rect x="1000.4" y="1829" width="0.2" height="15.0" fill="rgb(219,127,51)" rx="2" ry="2" />
<text x="1003.39" y="1839.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (2 samples, 0.01%)</title><rect x="1264.1" y="1829" width="0.2" height="15.0" fill="rgb(239,120,39)" rx="2" ry="2" />
<text x="1267.12" y="1839.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="266.0" y="1909" width="0.2" height="15.0" fill="rgb(238,200,22)" rx="2" ry="2" />
<text x="269.03" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(shape: TensorFlow.TensorShape, scalars: Swift.UnsafeBufferPointer&lt;A&gt;, on: TensorFlow.Device) -&gt; TensorFlow.Tensor&lt;A&gt; (261 samples, 1.01%)</title><rect x="468.9" y="1845" width="17.9" height="15.0" fill="rgb(211,153,27)" rx="2" ry="2" />
<text x="471.87" y="1855.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (3 samples, 0.01%)</title><rect x="888.8" y="1861" width="0.2" height="15.0" fill="rgb(250,124,38)" rx="2" ry="2" />
<text x="891.76" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="586.3" y="1877" width="0.2" height="15.0" fill="rgb(213,197,45)" rx="2" ry="2" />
<text x="589.33" y="1887.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_rlock (2 samples, 0.01%)</title><rect x="67.1" y="1829" width="0.2" height="15.0" fill="rgb(247,32,45)" rx="2" ry="2" />
<text x="70.12" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (29 samples, 0.11%)</title><rect x="112.1" y="1749" width="2.0" height="15.0" fill="rgb(217,217,22)" rx="2" ry="2" />
<text x="115.07" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::AddInput (30 samples, 0.12%)</title><rect x="855.6" y="1861" width="2.1" height="15.0" fill="rgb(205,201,34)" rx="2" ry="2" />
<text x="858.63" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(shape: [Swift.Int], byteCount: Swift.Int, bufferInitializer: (Swift.UnsafeMutableRawPointer) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (4 samples, 0.02%)</title><rect x="1473.6" y="1861" width="0.3" height="15.0" fill="rgb(232,203,23)" rx="2" ry="2" />
<text x="1476.62" y="1871.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (6 samples, 0.02%)</title><rect x="1129.8" y="1941" width="0.4" height="15.0" fill="rgb(248,66,15)" rx="2" ry="2" />
<text x="1132.81" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (2 samples, 0.01%)</title><rect x="1494.5" y="1925" width="0.2" height="15.0" fill="rgb(246,189,24)" rx="2" ry="2" />
<text x="1497.51" y="1935.5" ></text>
</g>
<g >
<title>TFE_Execute (188 samples, 0.73%)</title><rect x="430.5" y="1893" width="12.9" height="15.0" fill="rgb(247,142,15)" rx="2" ry="2" />
<text x="433.51" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorInterface::NumElements (2 samples, 0.01%)</title><rect x="839.3" y="1765" width="0.2" height="15.0" fill="rgb(213,116,1)" rx="2" ry="2" />
<text x="842.34" y="1775.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (10 samples, 0.04%)</title><rect x="94.2" y="1749" width="0.7" height="15.0" fill="rgb(226,103,43)" rx="2" ry="2" />
<text x="97.20" y="1759.5" ></text>
</g>
<g >
<title>storeEnumTagSinglePayload value witness for SwiftFusion._ConcreteDerivativeBox (15 samples, 0.06%)</title><rect x="1347.9" y="1781" width="1.0" height="15.0" fill="rgb(241,176,4)" rx="2" ry="2" />
<text x="1350.90" y="1791.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (2 samples, 0.01%)</title><rect x="105.5" y="1829" width="0.2" height="15.0" fill="rgb(209,4,40)" rx="2" ry="2" />
<text x="108.54" y="1839.5" ></text>
</g>
<g >
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="383.3" y="1877" width="0.1" height="15.0" fill="rgb(242,173,8)" rx="2" ry="2" />
<text x="386.29" y="1887.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (3 samples, 0.01%)</title><rect x="562.8" y="1893" width="0.2" height="15.0" fill="rgb(252,202,24)" rx="2" ry="2" />
<text x="565.76" y="1903.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="882.2" y="1861" width="0.1" height="15.0" fill="rgb(249,4,39)" rx="2" ry="2" />
<text x="885.16" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (2 samples, 0.01%)</title><rect x="1494.7" y="1877" width="0.1" height="15.0" fill="rgb(232,135,28)" rx="2" ry="2" />
<text x="1497.65" y="1887.5" ></text>
</g>
<g >
<title>__tls_get_addr (92 samples, 0.36%)</title><rect x="1598.0" y="2053" width="6.3" height="15.0" fill="rgb(217,33,0)" rx="2" ry="2" />
<text x="1600.96" y="2063.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Dead&gt; of generic specialization &lt;serialized, Swift.Int32&gt; of static (extension in TensorFlow):TensorFlow.Tensor&lt; where A: Swift.Numeric&gt;.- infix(TensorFlow.Tensor&lt;A&gt;, TensorFlow.Tensor&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (3 samples, 0.01%)</title><rect x="629.7" y="1941" width="0.2" height="15.0" fill="rgb(245,200,12)" rx="2" ry="2" />
<text x="632.70" y="1951.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (7 samples, 0.03%)</title><rect x="287.6" y="1829" width="0.5" height="15.0" fill="rgb(211,86,11)" rx="2" ry="2" />
<text x="290.62" y="1839.5" ></text>
</g>
<g >
<title>swift_retain (4 samples, 0.02%)</title><rect x="452.1" y="1861" width="0.3" height="15.0" fill="rgb(221,25,9)" rx="2" ry="2" />
<text x="455.10" y="1871.5" ></text>
</g>
<g >
<title>__pthread_once (3 samples, 0.01%)</title><rect x="1049.0" y="1893" width="0.2" height="15.0" fill="rgb(227,60,12)" rx="2" ry="2" />
<text x="1051.98" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandle::DeviceOrHostCPU (2 samples, 0.01%)</title><rect x="1200.7" y="1845" width="0.1" height="15.0" fill="rgb(238,96,43)" rx="2" ry="2" />
<text x="1203.68" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (3 samples, 0.01%)</title><rect x="111.9" y="1749" width="0.2" height="15.0" fill="rgb(206,104,5)" rx="2" ry="2" />
<text x="114.86" y="1759.5" ></text>
</g>
<g >
<title>__pthread_getspecific (2 samples, 0.01%)</title><rect x="523.8" y="1749" width="0.1" height="15.0" fill="rgb(241,5,33)" rx="2" ry="2" />
<text x="526.79" y="1759.5" ></text>
</g>
<g >
<title>swift_retain (4 samples, 0.02%)</title><rect x="1176.8" y="1877" width="0.2" height="15.0" fill="rgb(216,166,11)" rx="2" ry="2" />
<text x="1179.76" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Collection.isEmpty.getter : Swift.Bool (2 samples, 0.01%)</title><rect x="1202.1" y="1845" width="0.2" height="15.0" fill="rgb(248,77,4)" rx="2" ry="2" />
<text x="1205.12" y="1855.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (22 samples, 0.08%)</title><rect x="673.9" y="1877" width="1.5" height="15.0" fill="rgb(250,102,18)" rx="2" ry="2" />
<text x="676.90" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.ShapedArray.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (29 samples, 0.11%)</title><rect x="395.3" y="1909" width="1.9" height="15.0" fill="rgb(218,218,19)" rx="2" ry="2" />
<text x="398.25" y="1919.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeMutableRawPointer) -&gt; () in (extension in TensorFlow):TensorFlow.TensorHandle&lt; where A: TensorFlow.TensorFlowScalar&gt;.init(shape: [Swift.Int], scalarsInitializer: (Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; ()) -&gt; TensorFlow.TensorHandle&lt;A&gt; (13 samples, 0.05%)</title><rect x="131.4" y="1797" width="0.9" height="15.0" fill="rgb(249,29,53)" rx="2" ry="2" />
<text x="134.38" y="1807.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::tensor_data (2 samples, 0.01%)</title><rect x="921.8" y="1621" width="0.1" height="15.0" fill="rgb(248,193,25)" rx="2" ry="2" />
<text x="924.75" y="1631.5" ></text>
</g>
<g >
<title>pullback #1 &lt;A where A: Swift.Differentiable&gt;(A.TangentVector) -&gt; [A.TangentVector].DifferentiableView in (extension in Swift):Swift.Array&lt;A where A: Swift.Differentiable&gt;._vjpSubscript(index: Swift.Int) -&gt; (value: A, pullback: (A.TangentVector) -&gt; [A.TangentVector].DifferentiableView) (158 samples, 0.61%)</title><rect x="1271.3" y="1829" width="10.9" height="15.0" fill="rgb(249,127,35)" rx="2" ry="2" />
<text x="1274.33" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.execute&lt;A where A: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A (12 samples, 0.05%)</title><rect x="1434.1" y="1877" width="0.8" height="15.0" fill="rgb(247,17,9)" rx="2" ry="2" />
<text x="1437.10" y="1887.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="882.0" y="1861" width="0.2" height="15.0" fill="rgb(234,22,47)" rx="2" ry="2" />
<text x="885.03" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow._TFCEagerExecute(Swift.OpaquePointer, Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer?&gt;, Swift.UnsafeMutablePointer&lt;Swift.Int32&gt;, Swift.OpaquePointer) -&gt; () (172 samples, 0.66%)</title><rect x="866.2" y="1861" width="11.8" height="15.0" fill="rgb(207,129,13)" rx="2" ry="2" />
<text x="869.22" y="1871.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (4 samples, 0.02%)</title><rect x="1092.8" y="1909" width="0.2" height="15.0" fill="rgb(228,228,40)" rx="2" ry="2" />
<text x="1095.76" y="1919.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (3 samples, 0.01%)</title><rect x="902.9" y="1845" width="0.2" height="15.0" fill="rgb(209,113,16)" rx="2" ry="2" />
<text x="905.85" y="1855.5" ></text>
</g>
<g >
<title>lazy protocol witness table accessor for type Swift.Int32 and conformance Swift.Int32 : Swift.FixedWidthInteger in Swift (2 samples, 0.01%)</title><rect x="648.6" y="1781" width="0.1" height="15.0" fill="rgb(205,27,8)" rx="2" ry="2" />
<text x="651.61" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (36 samples, 0.14%)</title><rect x="69.1" y="1765" width="2.5" height="15.0" fill="rgb(230,221,26)" rx="2" ry="2" />
<text x="72.11" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (42 samples, 0.16%)</title><rect x="1110.8" y="1941" width="2.9" height="15.0" fill="rgb(210,139,17)" rx="2" ry="2" />
<text x="1113.84" y="1951.5" ></text>
</g>
<g >
<title>TF_ManagedBuffer::~TF_ManagedBuffer (2 samples, 0.01%)</title><rect x="609.2" y="1813" width="0.1" height="15.0" fill="rgb(224,81,10)" rx="2" ry="2" />
<text x="612.15" y="1823.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.UnsafeBufferPointer&lt;Swift.Int8&gt;&gt; of Swift._copyCollectionToContiguousArray&lt;A where A: Swift.Collection&gt;(A) -&gt; Swift.ContiguousArray&lt;A.Element&gt; (2 samples, 0.01%)</title><rect x="986.8" y="1861" width="0.1" height="15.0" fill="rgb(252,102,16)" rx="2" ry="2" />
<text x="989.78" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::ReshapeOp::Compute (4 samples, 0.02%)</title><rect x="517.2" y="1733" width="0.3" height="15.0" fill="rgb(230,156,15)" rx="2" ry="2" />
<text x="520.19" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.ShapedArray.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (3 samples, 0.01%)</title><rect x="1461.7" y="1909" width="0.2" height="15.0" fill="rgb(214,132,35)" rx="2" ry="2" />
<text x="1464.73" y="1919.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (10 samples, 0.04%)</title><rect x="174.5" y="1925" width="0.7" height="15.0" fill="rgb(226,16,11)" rx="2" ry="2" />
<text x="177.55" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::CPUAllocator::AllocateRaw (4 samples, 0.02%)</title><rect x="966.8" y="1637" width="0.2" height="15.0" fill="rgb(206,193,49)" rx="2" ry="2" />
<text x="969.77" y="1647.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (4 samples, 0.02%)</title><rect x="280.3" y="1845" width="0.2" height="15.0" fill="rgb(241,28,0)" rx="2" ry="2" />
<text x="283.26" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.internalConsistencyCheck(_: Swift.Bool, _: Swift.String, file: Swift.StaticString, line: Swift.UInt) -&gt; () (4 samples, 0.02%)</title><rect x="410.0" y="1893" width="0.2" height="15.0" fill="rgb(222,151,11)" rx="2" ry="2" />
<text x="412.96" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::BinaryOp&lt;Eigen::ThreadPoolDevice, tensorflow::functor::mul&lt;double&gt; &gt;::Compute (64 samples, 0.25%)</title><rect x="1194.4" y="1749" width="4.4" height="15.0" fill="rgb(216,224,42)" rx="2" ry="2" />
<text x="1197.42" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::FillDimsAndValidateCompatibleShape&lt;1ul&gt; (3 samples, 0.01%)</title><rect x="1198.6" y="1717" width="0.2" height="15.0" fill="rgb(245,157,37)" rx="2" ry="2" />
<text x="1201.61" y="1727.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="763.1" y="1813" width="0.2" height="15.0" fill="rgb(206,129,11)" rx="2" ry="2" />
<text x="766.12" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (163 samples, 0.63%)</title><rect x="315.2" y="1813" width="11.2" height="15.0" fill="rgb(223,102,20)" rx="2" ry="2" />
<text x="318.18" y="1823.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char const*&gt; (2 samples, 0.01%)</title><rect x="529.3" y="1845" width="0.1" height="15.0" fill="rgb(206,6,51)" rx="2" ry="2" />
<text x="532.28" y="1855.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (4 samples, 0.02%)</title><rect x="46.6" y="1845" width="0.3" height="15.0" fill="rgb(216,78,4)" rx="2" ry="2" />
<text x="49.64" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () (20 samples, 0.08%)</title><rect x="339.7" y="1909" width="1.4" height="15.0" fill="rgb(223,65,3)" rx="2" ry="2" />
<text x="342.72" y="1919.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="931.2" y="1861" width="0.1" height="15.0" fill="rgb(244,38,19)" rx="2" ry="2" />
<text x="934.17" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::NodeDef::NodeDef (3 samples, 0.01%)</title><rect x="385.6" y="1877" width="0.2" height="15.0" fill="rgb(248,100,34)" rx="2" ry="2" />
<text x="388.63" y="1887.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (8 samples, 0.03%)</title><rect x="1261.5" y="1893" width="0.6" height="15.0" fill="rgb(217,93,38)" rx="2" ry="2" />
<text x="1264.51" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (68 samples, 0.26%)</title><rect x="150.4" y="1781" width="4.7" height="15.0" fill="rgb(229,112,44)" rx="2" ry="2" />
<text x="153.42" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::~Tensor (4 samples, 0.02%)</title><rect x="1197.0" y="1669" width="0.3" height="15.0" fill="rgb(214,144,24)" rx="2" ry="2" />
<text x="1200.03" y="1679.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (30 samples, 0.12%)</title><rect x="883.7" y="1765" width="2.1" height="15.0" fill="rgb(218,116,3)" rx="2" ry="2" />
<text x="886.74" y="1775.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (29 samples, 0.11%)</title><rect x="696.7" y="1781" width="2.0" height="15.0" fill="rgb(233,14,30)" rx="2" ry="2" />
<text x="699.72" y="1791.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (25 samples, 0.10%)</title><rect x="312.6" y="1877" width="1.7" height="15.0" fill="rgb(251,71,16)" rx="2" ry="2" />
<text x="315.57" y="1887.5" ></text>
</g>
<g >
<title>swift_retain (7 samples, 0.03%)</title><rect x="420.1" y="1893" width="0.4" height="15.0" fill="rgb(218,90,36)" rx="2" ry="2" />
<text x="423.07" y="1903.5" ></text>
</g>
<g >
<title>swift_beginAccess (2 samples, 0.01%)</title><rect x="584.5" y="1845" width="0.2" height="15.0" fill="rgb(221,224,53)" rx="2" ry="2" />
<text x="587.55" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (14 samples, 0.05%)</title><rect x="135.0" y="1909" width="0.9" height="15.0" fill="rgb(220,62,32)" rx="2" ry="2" />
<text x="137.96" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (25 samples, 0.10%)</title><rect x="327.0" y="1877" width="1.7" height="15.0" fill="rgb(229,171,12)" rx="2" ry="2" />
<text x="330.00" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (10 samples, 0.04%)</title><rect x="1269.2" y="1781" width="0.7" height="15.0" fill="rgb(228,101,22)" rx="2" ry="2" />
<text x="1272.20" y="1791.5" ></text>
</g>
<g >
<title>swift_retain (8 samples, 0.03%)</title><rect x="1158.6" y="1717" width="0.6" height="15.0" fill="rgb(219,74,9)" rx="2" ry="2" />
<text x="1161.61" y="1727.5" ></text>
</g>
<g >
<title>protocol witness for Swift.RawRepresentable.rawValue.getter : A.RawValue in conformance __C.TF_Code : Swift.RawRepresentable in __C_Synthesized (2 samples, 0.01%)</title><rect x="904.1" y="1845" width="0.1" height="15.0" fill="rgb(217,57,25)" rx="2" ry="2" />
<text x="907.09" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle._cTensorHandle.getter : Swift.OpaquePointer (3 samples, 0.01%)</title><rect x="268.0" y="1893" width="0.2" height="15.0" fill="rgb(209,126,34)" rx="2" ry="2" />
<text x="270.96" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for Swift.IteratorProtocol.next() -&gt; A.Element? in conformance Swift.IndexingIterator&lt;A&gt; : Swift.IteratorProtocol in Swift (2 samples, 0.01%)</title><rect x="245.5" y="1781" width="0.1" height="15.0" fill="rgb(210,60,26)" rx="2" ry="2" />
<text x="248.48" y="1791.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="835.0" y="1765" width="0.2" height="15.0" fill="rgb(237,113,10)" rx="2" ry="2" />
<text x="838.01" y="1775.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="1439.5" y="1893" width="0.1" height="15.0" fill="rgb(225,119,29)" rx="2" ry="2" />
<text x="1442.46" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1685" width="0.9" height="15.0" fill="rgb(214,178,44)" rx="2" ry="2" />
<text x="24.27" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (4 samples, 0.02%)</title><rect x="897.7" y="1861" width="0.3" height="15.0" fill="rgb(215,125,21)" rx="2" ry="2" />
<text x="900.70" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::VariantDeviceIsCustom (3 samples, 0.01%)</title><rect x="690.1" y="1813" width="0.2" height="15.0" fill="rgb(229,184,21)" rx="2" ry="2" />
<text x="693.05" y="1823.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (3 samples, 0.01%)</title><rect x="149.9" y="1781" width="0.2" height="15.0" fill="rgb(253,107,42)" rx="2" ry="2" />
<text x="152.87" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="148.4" y="1765" width="0.4" height="15.0" fill="rgb(240,77,4)" rx="2" ry="2" />
<text x="151.43" y="1775.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (4 samples, 0.02%)</title><rect x="539.0" y="1733" width="0.3" height="15.0" fill="rgb(240,52,0)" rx="2" ry="2" />
<text x="542.04" y="1743.5" ></text>
</g>
<g >
<title>protocol witness for static TensorFlow.TensorGroup._typeList.getter : [TensorFlow.TensorDataType] in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (9 samples, 0.03%)</title><rect x="699.9" y="1845" width="0.6" height="15.0" fill="rgb(238,12,54)" rx="2" ry="2" />
<text x="702.88" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (13 samples, 0.05%)</title><rect x="962.5" y="1749" width="0.9" height="15.0" fill="rgb(242,96,3)" rx="2" ry="2" />
<text x="965.51" y="1759.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="1179.7" y="1941" width="0.3" height="15.0" fill="rgb(218,208,31)" rx="2" ry="2" />
<text x="1182.71" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::allocate_output (10 samples, 0.04%)</title><rect x="1236.6" y="1717" width="0.7" height="15.0" fill="rgb(208,58,39)" rx="2" ry="2" />
<text x="1239.62" y="1727.5" ></text>
</g>
<g >
<title>merged outlined init with take of SwiftFusion._AnyDifferentiableBox (28 samples, 0.11%)</title><rect x="1322.9" y="1845" width="1.9" height="15.0" fill="rgb(217,126,28)" rx="2" ry="2" />
<text x="1325.88" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (39 samples, 0.15%)</title><rect x="685.9" y="1733" width="2.7" height="15.0" fill="rgb(249,74,30)" rx="2" ry="2" />
<text x="688.93" y="1743.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (10 samples, 0.04%)</title><rect x="292.2" y="1861" width="0.6" height="15.0" fill="rgb(227,214,21)" rx="2" ry="2" />
<text x="295.15" y="1871.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (4 samples, 0.02%)</title><rect x="423.8" y="1861" width="0.3" height="15.0" fill="rgb(254,98,41)" rx="2" ry="2" />
<text x="426.85" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::GetCachedKernel (2 samples, 0.01%)</title><rect x="1017.7" y="1797" width="0.1" height="15.0" fill="rgb(218,81,42)" rx="2" ry="2" />
<text x="1020.71" y="1807.5" ></text>
</g>
<g >
<title>generic specialization &lt;Swift.Int&gt; of Swift.__RawDictionaryStorage.find&lt;A where A: Swift.Hashable&gt;(A) -&gt; (bucket: Swift._HashTable.Bucket, found: Swift.Bool) (3 samples, 0.01%)</title><rect x="1053.7" y="1941" width="0.2" height="15.0" fill="rgb(242,161,42)" rx="2" ry="2" />
<text x="1056.65" y="1951.5" ></text>
</g>
<g >
<title>Swift._convertConstStringToUTF8PointerArgument&lt;A where A: Swift._Pointer&gt;(Swift.String) -&gt; (Swift.AnyObject?, A) (5 samples, 0.02%)</title><rect x="382.3" y="1909" width="0.4" height="15.0" fill="rgb(251,33,14)" rx="2" ry="2" />
<text x="385.33" y="1919.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="1007.3" y="1877" width="0.1" height="15.0" fill="rgb(232,181,43)" rx="2" ry="2" />
<text x="1010.26" y="1887.5" ></text>
</g>
<g >
<title>farmhashcc::CityHash128WithSeed (6 samples, 0.02%)</title><rect x="317.8" y="1765" width="0.4" height="15.0" fill="rgb(217,37,17)" rx="2" ry="2" />
<text x="320.79" y="1775.5" ></text>
</g>
<g >
<title>std::_Hashtable&lt;tensorflow::Fprint128, std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt;, std::allocator&lt;std::pair&lt;tensorflow::Fprint128 const, std::unique_ptr&lt;tensorflow::KernelAndDevice, tensorflow::core::RefCountDeleter&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;tensorflow::Fprint128&gt;, tensorflow::Fprint128Hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_find_before_node (2 samples, 0.01%)</title><rect x="361.7" y="1813" width="0.1" height="15.0" fill="rgb(241,140,51)" rx="2" ry="2" />
<text x="364.71" y="1823.5" ></text>
</g>
<g >
<title>implicit closure #2 (Swift.Int, Swift.Int) -&gt; Swift.Int in implicit closure #1 (Swift.Int.Type) -&gt; (Swift.Int, Swift.Int) -&gt; Swift.Int in TensorFlow.TensorShape.contiguousSize.getter : Swift.Int (2 samples, 0.01%)</title><rect x="488.5" y="1845" width="0.2" height="15.0" fill="rgb(207,78,11)" rx="2" ry="2" />
<text x="491.52" y="1855.5" ></text>
</g>
<g >
<title>static TensorFlow._ExecutionContext.makeOp(Swift.String, Swift.Int) -&gt; TensorFlow.TFTensorOperation (82 samples, 0.32%)</title><rect x="289.1" y="1925" width="5.7" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text x="292.13" y="1935.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.useLazyTensor.getter : Swift.Bool (12 samples, 0.05%)</title><rect x="386.4" y="1925" width="0.8" height="15.0" fill="rgb(221,104,40)" rx="2" ry="2" />
<text x="389.39" y="1935.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (41 samples, 0.16%)</title><rect x="1456.0" y="1941" width="2.8" height="15.0" fill="rgb(239,23,52)" rx="2" ry="2" />
<text x="1459.02" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::KernelAndDeviceOp::Run (54 samples, 0.21%)</title><rect x="151.1" y="1733" width="3.7" height="15.0" fill="rgb(218,75,46)" rx="2" ry="2" />
<text x="154.11" y="1743.5" ></text>
</g>
<g >
<title>TFE_OpSetAttrInt (7 samples, 0.03%)</title><rect x="1472.3" y="1925" width="0.5" height="15.0" fill="rgb(214,191,46)" rx="2" ry="2" />
<text x="1475.31" y="1935.5" ></text>
</g>
<g >
<title>TFE_DeleteTensorHandle (16 samples, 0.06%)</title><rect x="222.3" y="1909" width="1.1" height="15.0" fill="rgb(231,163,29)" rx="2" ry="2" />
<text x="225.32" y="1919.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="473.5" y="1781" width="0.2" height="15.0" fill="rgb(230,48,0)" rx="2" ry="2" />
<text x="476.47" y="1791.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="642.4" y="1685" width="0.2" height="15.0" fill="rgb(223,179,5)" rx="2" ry="2" />
<text x="645.42" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::TensorHandleInterface::~TensorHandleInterface (18 samples, 0.07%)</title><rect x="600.4" y="1893" width="1.3" height="15.0" fill="rgb(209,101,16)" rx="2" ry="2" />
<text x="603.42" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::OperationInterface (6 samples, 0.02%)</title><rect x="460.1" y="1909" width="0.5" height="15.0" fill="rgb(238,69,53)" rx="2" ry="2" />
<text x="463.14" y="1919.5" ></text>
</g>
<g >
<title>static (extension in TensorFlow):TensorFlow.TensorGroup._tensorHandleCount.getter : Swift.Int32 (2 samples, 0.01%)</title><rect x="1491.1" y="1909" width="0.2" height="15.0" fill="rgb(219,200,50)" rx="2" ry="2" />
<text x="1494.15" y="1919.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.28] (12 samples, 0.05%)</title><rect x="1539.7" y="2005" width="0.8" height="15.0" fill="rgb(219,190,54)" rx="2" ry="2" />
<text x="1542.67" y="2015.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::SetAttrType (3 samples, 0.01%)</title><rect x="1270.6" y="1877" width="0.2" height="15.0" fill="rgb(247,206,39)" rx="2" ry="2" />
<text x="1273.58" y="1887.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned int, 4ul, 4ul, 4ul&gt; &gt;::initializeWithTake (2 samples, 0.01%)</title><rect x="46.2" y="1861" width="0.2" height="15.0" fill="rgb(209,215,4)" rx="2" ry="2" />
<text x="49.22" y="1871.5" ></text>
</g>
<g >
<title>Swift.String.utf8CString.getter : Swift.ContiguousArray&lt;Swift.Int8&gt; (4 samples, 0.02%)</title><rect x="286.4" y="1877" width="0.3" height="15.0" fill="rgb(248,17,40)" rx="2" ry="2" />
<text x="289.45" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow.Tensor._typeList.getter : [TensorFlow.TensorDataType] (7 samples, 0.03%)</title><rect x="452.7" y="1877" width="0.5" height="15.0" fill="rgb(251,221,47)" rx="2" ry="2" />
<text x="455.71" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNodeArgs::Init (3 samples, 0.01%)</title><rect x="150.8" y="1749" width="0.2" height="15.0" fill="rgb(224,222,19)" rx="2" ry="2" />
<text x="153.84" y="1759.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (2 samples, 0.01%)</title><rect x="859.6" y="1861" width="0.1" height="15.0" fill="rgb(239,101,13)" rx="2" ry="2" />
<text x="862.55" y="1871.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (6 samples, 0.02%)</title><rect x="654.9" y="1861" width="0.4" height="15.0" fill="rgb(247,210,1)" rx="2" ry="2" />
<text x="657.93" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="693" width="0.9" height="15.0" fill="rgb(246,72,39)" rx="2" ry="2" />
<text x="24.27" y="703.5" ></text>
</g>
<g >
<title>swift::metadataimpl::ValueWitnesses&lt;swift::metadataimpl::NativeBox&lt;unsigned long, 8ul, 8ul, 8ul&gt; &gt;::initializeWithCopy (2 samples, 0.01%)</title><rect x="1142.3" y="1909" width="0.2" height="15.0" fill="rgb(215,224,30)" rx="2" ry="2" />
<text x="1145.32" y="1919.5" ></text>
</g>
<g >
<title>swift_release (9 samples, 0.03%)</title><rect x="846.5" y="1813" width="0.6" height="15.0" fill="rgb(211,200,37)" rx="2" ry="2" />
<text x="849.49" y="1823.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (33 samples, 0.13%)</title><rect x="449.4" y="1861" width="2.3" height="15.0" fill="rgb(241,21,36)" rx="2" ry="2" />
<text x="452.42" y="1871.5" ></text>
</g>
<g >
<title>AD__$s11SwiftFusion5Pose2V1moiyA2C_ACtFZ__vjp_src_0_wrt_0_1 (2 samples, 0.01%)</title><rect x="1453.4" y="1893" width="0.1" height="15.0" fill="rgb(253,17,14)" rx="2" ry="2" />
<text x="1456.41" y="1903.5" ></text>
</g>
<g >
<title>swift_release (4 samples, 0.02%)</title><rect x="134.1" y="1829" width="0.2" height="15.0" fill="rgb(230,60,2)" rx="2" ry="2" />
<text x="137.06" y="1839.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (43 samples, 0.17%)</title><rect x="774.9" y="1765" width="2.9" height="15.0" fill="rgb(205,132,0)" rx="2" ry="2" />
<text x="777.87" y="1775.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="985.5" y="1909" width="0.2" height="15.0" fill="rgb(219,173,47)" rx="2" ry="2" />
<text x="988.54" y="1919.5" ></text>
</g>
<g >
<title>operator new (3 samples, 0.01%)</title><rect x="792.1" y="1861" width="0.2" height="15.0" fill="rgb(226,83,1)" rx="2" ry="2" />
<text x="795.12" y="1871.5" ></text>
</g>
<g >
<title>__pthread_once (2 samples, 0.01%)</title><rect x="173.4" y="1909" width="0.1" height="15.0" fill="rgb(246,37,18)" rx="2" ry="2" />
<text x="176.38" y="1919.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (2 samples, 0.01%)</title><rect x="988.2" y="1845" width="0.1" height="15.0" fill="rgb(220,127,17)" rx="2" ry="2" />
<text x="991.15" y="1855.5" ></text>
</g>
<g >
<title>nsync::nsync_mu_runlock (2 samples, 0.01%)</title><rect x="457.9" y="1893" width="0.2" height="15.0" fill="rgb(232,151,3)" rx="2" ry="2" />
<text x="460.94" y="1903.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (14 samples, 0.05%)</title><rect x="1057.9" y="1941" width="1.0" height="15.0" fill="rgb(240,44,0)" rx="2" ry="2" />
<text x="1060.92" y="1951.5" ></text>
</g>
<g >
<title>pod_copy (12 samples, 0.05%)</title><rect x="1708.3" y="2037" width="0.9" height="15.0" fill="rgb(251,18,12)" rx="2" ry="2" />
<text x="1711.34" y="2047.5" ></text>
</g>
<g >
<title>swift_release (2 samples, 0.01%)</title><rect x="1451.5" y="1781" width="0.1" height="15.0" fill="rgb(211,75,19)" rx="2" ry="2" />
<text x="1454.49" y="1791.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[2] = Owned To Guaranteed&gt; of Swift._ContiguousArrayBuffer._copyContents(subRange: Swift.Range&lt;Swift.Int&gt;, initializing: Swift.UnsafeMutablePointer&lt;A&gt;) -&gt; Swift.UnsafeMutablePointer&lt;A&gt; (2 samples, 0.01%)</title><rect x="231.5" y="1845" width="0.2" height="15.0" fill="rgb(206,205,48)" rx="2" ry="2" />
<text x="234.53" y="1855.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="24.1" y="1989" width="0.1" height="15.0" fill="rgb(206,95,23)" rx="2" ry="2" />
<text x="27.09" y="1999.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (28 samples, 0.11%)</title><rect x="1468.9" y="1845" width="1.9" height="15.0" fill="rgb(216,44,22)" rx="2" ry="2" />
<text x="1471.88" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::AttrValue::InternalSerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="105.5" y="1781" width="0.2" height="15.0" fill="rgb(239,60,5)" rx="2" ry="2" />
<text x="108.54" y="1791.5" ></text>
</g>
<g >
<title>swift_isUniquelyReferenced_nonNull_native (2 samples, 0.01%)</title><rect x="983.3" y="1877" width="0.1" height="15.0" fill="rgb(216,168,12)" rx="2" ry="2" />
<text x="986.27" y="1887.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::AppendPartialToString (2 samples, 0.01%)</title><rect x="1091.3" y="1845" width="0.2" height="15.0" fill="rgb(217,2,1)" rx="2" ry="2" />
<text x="1094.32" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::ExecuteNode::Run (88 samples, 0.34%)</title><rect x="576.4" y="1781" width="6.1" height="15.0" fill="rgb(229,195,37)" rx="2" ry="2" />
<text x="579.44" y="1791.5" ></text>
</g>
<g >
<title>tensorflow::(anonymous namespace)::EagerLocalExecute (65 samples, 0.25%)</title><rect x="1116.3" y="1845" width="4.5" height="15.0" fill="rgb(218,168,13)" rx="2" ry="2" />
<text x="1119.34" y="1855.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (12 samples, 0.05%)</title><rect x="259.3" y="1829" width="0.8" height="15.0" fill="rgb(254,74,14)" rx="2" ry="2" />
<text x="262.30" y="1839.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (28 samples, 0.11%)</title><rect x="616.2" y="1893" width="2.0" height="15.0" fill="rgb(247,96,37)" rx="2" ry="2" />
<text x="619.23" y="1903.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="829.1" y="1733" width="0.1" height="15.0" fill="rgb(220,38,25)" rx="2" ry="2" />
<text x="832.10" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="1701.9" y="2037" width="0.2" height="15.0" fill="rgb(221,135,28)" rx="2" ry="2" />
<text x="1704.88" y="2047.5" ></text>
</g>
<g >
<title>swift_retain (3 samples, 0.01%)</title><rect x="1222.6" y="1925" width="0.2" height="15.0" fill="rgb(207,210,50)" rx="2" ry="2" />
<text x="1225.60" y="1935.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="548.1" y="1797" width="0.2" height="15.0" fill="rgb(222,22,43)" rx="2" ry="2" />
<text x="551.12" y="1807.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3 samples, 0.01%)</title><rect x="665.2" y="1797" width="0.2" height="15.0" fill="rgb(253,183,3)" rx="2" ry="2" />
<text x="668.17" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1749" width="0.9" height="15.0" fill="rgb(241,179,27)" rx="2" ry="2" />
<text x="24.27" y="1759.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::Tensor (5 samples, 0.02%)</title><rect x="276.3" y="1653" width="0.4" height="15.0" fill="rgb(254,35,32)" rx="2" ry="2" />
<text x="279.34" y="1663.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (17 samples, 0.07%)</title><rect x="283.4" y="1797" width="1.2" height="15.0" fill="rgb(223,124,42)" rx="2" ry="2" />
<text x="286.42" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (105 samples, 0.41%)</title><rect x="32.5" y="1973" width="7.3" height="15.0" fill="rgb(245,46,19)" rx="2" ry="2" />
<text x="35.54" y="1983.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (22 samples, 0.08%)</title><rect x="63.4" y="1909" width="1.5" height="15.0" fill="rgb(244,96,33)" rx="2" ry="2" />
<text x="66.41" y="1919.5" ></text>
</g>
<g >
<title>Eigen::internal::TensorExecutor&lt;Eigen::TensorAssignOp&lt;Eigen::TensorMap&lt;Eigen::Tensor&lt;double, 1, 1, long&gt;, 16, Eigen::MakePointer&gt;, Eigen::TensorCwiseBinaryOp&lt;Eigen::internal::scalar_sum_op&lt;double, double&gt;, Eigen::TensorMap&lt;Eigen::Tensor&lt;double const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const, Eigen::TensorMap&lt;Eigen::Tensor&lt;double const, 1, 1, long&gt;, 16, Eigen::MakePointer&gt; const&gt; const&gt; const, Eigen::ThreadPoolDevice, true, (7 samples, 0.03%)</title><rect x="365.4" y="1717" width="0.4" height="15.0" fill="rgb(250,177,6)" rx="2" ry="2" />
<text x="368.35" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1541" width="0.9" height="15.0" fill="rgb(232,106,7)" rx="2" ry="2" />
<text x="24.27" y="1551.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (31 samples, 0.12%)</title><rect x="328.7" y="1877" width="2.1" height="15.0" fill="rgb(246,174,36)" rx="2" ry="2" />
<text x="331.72" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::OpDefForOp (10 samples, 0.04%)</title><rect x="82.5" y="1893" width="0.7" height="15.0" fill="rgb(226,69,32)" rx="2" ry="2" />
<text x="85.51" y="1903.5" ></text>
</g>
<g >
<title>swift_retain (2 samples, 0.01%)</title><rect x="483.6" y="1797" width="0.1" height="15.0" fill="rgb(231,21,27)" rx="2" ry="2" />
<text x="486.58" y="1807.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorGroup.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorGroup in TensorFlow (15 samples, 0.06%)</title><rect x="1124.4" y="1893" width="1.0" height="15.0" fill="rgb(245,130,34)" rx="2" ry="2" />
<text x="1127.38" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::shaped&lt;double, 1ul&gt; (2 samples, 0.01%)</title><rect x="1079.6" y="1733" width="0.1" height="15.0" fill="rgb(222,63,22)" rx="2" ry="2" />
<text x="1082.57" y="1743.5" ></text>
</g>
<g >
<title>TensorFlow.TFE_Op.evaluateUnsafe() -&gt; Swift.UnsafeMutablePointer&lt;Swift.OpaquePointer&gt; (337 samples, 1.30%)</title><rect x="1009.7" y="1893" width="23.1" height="15.0" fill="rgb(233,132,35)" rx="2" ry="2" />
<text x="1012.66" y="1903.5" >T..</text>
</g>
<g >
<title>__swift_destroy_boxed_opaque_existential_1 (2 samples, 0.01%)</title><rect x="600.1" y="1957" width="0.2" height="15.0" fill="rgb(244,215,39)" rx="2" ry="2" />
<text x="603.15" y="1967.5" ></text>
</g>
<g >
<title>TensorFlow._RuntimeConfig.printsDebugLog.unsafeMutableAddressor : Swift.Bool (2 samples, 0.01%)</title><rect x="614.7" y="1877" width="0.1" height="15.0" fill="rgb(253,206,20)" rx="2" ry="2" />
<text x="617.65" y="1887.5" ></text>
</g>
<g >
<title>swift_beginAccess (2 samples, 0.01%)</title><rect x="698.2" y="1749" width="0.2" height="15.0" fill="rgb(237,18,38)" rx="2" ry="2" />
<text x="701.23" y="1759.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="304.1" y="1877" width="0.1" height="15.0" fill="rgb(227,64,7)" rx="2" ry="2" />
<text x="307.11" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow.Context.local.modify : TensorFlow.Context (19 samples, 0.07%)</title><rect x="58.3" y="1909" width="1.3" height="15.0" fill="rgb(246,96,34)" rx="2" ry="2" />
<text x="61.25" y="1919.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (17 samples, 0.07%)</title><rect x="1070.7" y="1893" width="1.2" height="15.0" fill="rgb(218,76,26)" rx="2" ry="2" />
<text x="1073.70" y="1903.5" ></text>
</g>
<g >
<title>__swift_project_boxed_opaque_existential_1 (4 samples, 0.02%)</title><rect x="1314.1" y="1845" width="0.3" height="15.0" fill="rgb(222,46,49)" rx="2" ry="2" />
<text x="1317.09" y="1855.5" ></text>
</g>
<g >
<title>Swift.Range.init(uncheckedBounds: (lower: A, upper: A)) -&gt; Swift.Range&lt;A&gt; (6 samples, 0.02%)</title><rect x="237.3" y="1877" width="0.4" height="15.0" fill="rgb(236,166,52)" rx="2" ry="2" />
<text x="240.30" y="1887.5" ></text>
</g>
<g >
<title>tensorflow::cpu_allocator_base (2 samples, 0.01%)</title><rect x="1465.5" y="1877" width="0.1" height="15.0" fill="rgb(249,32,25)" rx="2" ry="2" />
<text x="1468.51" y="1887.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="1209.1" y="1781" width="0.1" height="15.0" fill="rgb(237,155,5)" rx="2" ry="2" />
<text x="1212.06" y="1791.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (4 samples, 0.02%)</title><rect x="1159.6" y="1765" width="0.3" height="15.0" fill="rgb(235,192,32)" rx="2" ry="2" />
<text x="1162.64" y="1775.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (39 samples, 0.15%)</title><rect x="888.7" y="1909" width="2.7" height="15.0" fill="rgb(223,115,5)" rx="2" ry="2" />
<text x="891.69" y="1919.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="1089.6" y="1845" width="0.1" height="15.0" fill="rgb(252,134,27)" rx="2" ry="2" />
<text x="1092.60" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (18 samples, 0.07%)</title><rect x="1268.8" y="1845" width="1.2" height="15.0" fill="rgb(250,201,20)" rx="2" ry="2" />
<text x="1271.79" y="1855.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeWithCachedSizesToArray (2 samples, 0.01%)</title><rect x="528.5" y="1813" width="0.1" height="15.0" fill="rgb(254,73,36)" rx="2" ry="2" />
<text x="531.46" y="1823.5" ></text>
</g>
<g >
<title>static Swift.Array._allocateUninitialized(Swift.Int) -&gt; ([A], Swift.UnsafeMutablePointer&lt;A&gt;) (2 samples, 0.01%)</title><rect x="805.1" y="1877" width="0.2" height="15.0" fill="rgb(241,156,26)" rx="2" ry="2" />
<text x="808.11" y="1887.5" ></text>
</g>
<g >
<title>swift_deallocClassInstance (3 samples, 0.01%)</title><rect x="163.3" y="1909" width="0.2" height="15.0" fill="rgb(230,26,17)" rx="2" ry="2" />
<text x="166.28" y="1919.5" ></text>
</g>
<g >
<title>swift_getAssociatedTypeWitness (2 samples, 0.01%)</title><rect x="971.2" y="1829" width="0.1" height="15.0" fill="rgb(238,71,43)" rx="2" ry="2" />
<text x="974.17" y="1839.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (3 samples, 0.01%)</title><rect x="140.2" y="1781" width="0.2" height="15.0" fill="rgb(242,89,44)" rx="2" ry="2" />
<text x="143.18" y="1791.5" ></text>
</g>
<g >
<title>swift_getGenericMetadata (37 samples, 0.14%)</title><rect x="1704.5" y="2021" width="2.5" height="15.0" fill="rgb(236,68,13)" rx="2" ry="2" />
<text x="1707.50" y="2031.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char const*&gt; (2 samples, 0.01%)</title><rect x="1039.6" y="1845" width="0.1" height="15.0" fill="rgb(216,22,37)" rx="2" ry="2" />
<text x="1042.56" y="1855.5" ></text>
</g>
<g >
<title>Swift.== infix&lt;A where A: Swift.RawRepresentable, A.RawValue: Swift.Equatable&gt;(A, A) -&gt; Swift.Bool (7 samples, 0.03%)</title><rect x="1000.1" y="1845" width="0.5" height="15.0" fill="rgb(210,87,22)" rx="2" ry="2" />
<text x="1003.11" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.05%)</title><rect x="21.3" y="1829" width="0.9" height="15.0" fill="rgb(219,88,6)" rx="2" ry="2" />
<text x="24.27" y="1839.5" ></text>
</g>
<g >
<title>_swift_release_dealloc (2 samples, 0.01%)</title><rect x="940.7" y="1893" width="0.1" height="15.0" fill="rgb(228,6,14)" rx="2" ry="2" />
<text x="943.66" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::EagerContext::Executor (2 samples, 0.01%)</title><rect x="1128.4" y="1893" width="0.2" height="15.0" fill="rgb(211,133,24)" rx="2" ry="2" />
<text x="1131.44" y="1903.5" ></text>
</g>
<g >
<title>type metadata accessor for Swift._ContiguousArrayStorage (2 samples, 0.01%)</title><rect x="781.8" y="1813" width="0.1" height="15.0" fill="rgb(232,118,54)" rx="2" ry="2" />
<text x="784.81" y="1823.5" ></text>
</g>
<g >
<title>tensorflow::AttrBuilder::CacheKey (16 samples, 0.06%)</title><rect x="511.1" y="1797" width="1.1" height="15.0" fill="rgb(247,105,45)" rx="2" ry="2" />
<text x="514.07" y="1807.5" ></text>
</g>
<g >
<title>Swift._ContiguousArrayStorage.__deallocating_deinit (5 samples, 0.02%)</title><rect x="166.0" y="1957" width="0.4" height="15.0" fill="rgb(248,211,35)" rx="2" ry="2" />
<text x="169.03" y="1967.5" ></text>
</g>
<g >
<title>TFE_OpAddInput (31 samples, 0.12%)</title><rect x="563.7" y="1893" width="2.1" height="15.0" fill="rgb(206,150,28)" rx="2" ry="2" />
<text x="566.65" y="1903.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (25 samples, 0.10%)</title><rect x="443.4" y="1909" width="1.8" height="15.0" fill="rgb(250,165,11)" rx="2" ry="2" />
<text x="446.44" y="1919.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(copyingFromCTensor: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (34 samples, 0.13%)</title><rect x="129.0" y="1797" width="2.3" height="15.0" fill="rgb(246,12,5)" rx="2" ry="2" />
<text x="131.98" y="1807.5" ></text>
</g>
<g >
<title>swift_release (5 samples, 0.02%)</title><rect x="825.5" y="1685" width="0.3" height="15.0" fill="rgb(234,117,24)" rx="2" ry="2" />
<text x="828.46" y="1695.5" ></text>
</g>
<g >
<title>tensorflow::SimplifyHelper&lt;int&gt; (7 samples, 0.03%)</title><rect x="580.3" y="1685" width="0.5" height="15.0" fill="rgb(211,63,31)" rx="2" ry="2" />
<text x="583.28" y="1695.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(handle: TensorFlow.TensorHandle&lt;A&gt;) -&gt; TensorFlow.Tensor&lt;A&gt; (2 samples, 0.01%)</title><rect x="158.3" y="1829" width="0.2" height="15.0" fill="rgb(245,37,54)" rx="2" ry="2" />
<text x="161.33" y="1839.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (3 samples, 0.01%)</title><rect x="1141.8" y="1893" width="0.2" height="15.0" fill="rgb(213,188,25)" rx="2" ry="2" />
<text x="1144.77" y="1903.5" ></text>
</g>
<g >
<title>google::protobuf::MessageLite::SerializeAsString[abi:cxx11] (8 samples, 0.03%)</title><rect x="596.9" y="1845" width="0.6" height="15.0" fill="rgb(230,137,30)" rx="2" ry="2" />
<text x="599.92" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpKernelContext::forward_input_to_output_with_shape (6 samples, 0.02%)</title><rect x="367.3" y="1701" width="0.5" height="15.0" fill="rgb(210,128,43)" rx="2" ry="2" />
<text x="370.35" y="1711.5" ></text>
</g>
<g >
<title>Swift.Range.init(uncheckedBounds: (lower: A, upper: A)) -&gt; Swift.Range&lt;A&gt; (3 samples, 0.01%)</title><rect x="402.6" y="1845" width="0.2" height="15.0" fill="rgb(235,42,34)" rx="2" ry="2" />
<text x="405.61" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::OpRegistry::LookUp (7 samples, 0.03%)</title><rect x="82.7" y="1861" width="0.5" height="15.0" fill="rgb(209,65,30)" rx="2" ry="2" />
<text x="85.72" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.ShapedArray.init(buffer: __owned TensorFlow.TensorBuffer&lt;A&gt;, shape: __owned [Swift.Int]) -&gt; TensorFlow.ShapedArray&lt;A&gt; (16 samples, 0.06%)</title><rect x="404.1" y="1877" width="1.1" height="15.0" fill="rgb(237,63,20)" rx="2" ry="2" />
<text x="407.05" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (19 samples, 0.07%)</title><rect x="488.0" y="1893" width="1.3" height="15.0" fill="rgb(250,152,50)" rx="2" ry="2" />
<text x="491.04" y="1903.5" ></text>
</g>
<g >
<title>tensorflow::Tensor::CopyFromInternal (7 samples, 0.03%)</title><rect x="638.2" y="1701" width="0.5" height="15.0" fill="rgb(226,224,9)" rx="2" ry="2" />
<text x="641.23" y="1711.5" ></text>
</g>
<g >
<title>tensorflow::OperationInterface::Execute (4 samples, 0.02%)</title><rect x="1434.2" y="1813" width="0.2" height="15.0" fill="rgb(205,4,37)" rx="2" ry="2" />
<text x="1437.16" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for static Swift.Comparable.&lt; infix(A, A) -&gt; Swift.Bool in conformance Swift.Int64 : Swift.Comparable in Swift (3 samples, 0.01%)</title><rect x="535.2" y="1877" width="0.2" height="15.0" fill="rgb(252,103,15)" rx="2" ry="2" />
<text x="538.20" y="1887.5" ></text>
</g>
<g >
<title>static TensorFlow._ThreadLocalState.local.getter : TensorFlow._ThreadLocalState (2 samples, 0.01%)</title><rect x="1097.2" y="1909" width="0.1" height="15.0" fill="rgb(208,120,42)" rx="2" ry="2" />
<text x="1100.16" y="1919.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="667.5" y="1861" width="0.1" height="15.0" fill="rgb(229,43,24)" rx="2" ry="2" />
<text x="670.51" y="1871.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (863 samples, 3.33%)</title><rect x="724.9" y="1909" width="59.3" height="15.0" fill="rgb(235,42,29)" rx="2" ry="2" />
<text x="727.90" y="1919.5" >protoc..</text>
</g>
<g >
<title>(extension in Swift):Swift.Sequence.reduce&lt;A&gt;(A1, (A1, A.Element) throws -&gt; A1) throws -&gt; A1 (7 samples, 0.03%)</title><rect x="87.8" y="1813" width="0.5" height="15.0" fill="rgb(240,134,45)" rx="2" ry="2" />
<text x="90.81" y="1823.5" ></text>
</g>
<g >
<title>getEnumTagSinglePayload value witness for SwiftFusion.AnyDerivative (14 samples, 0.05%)</title><rect x="1289.4" y="1861" width="1.0" height="15.0" fill="rgb(206,114,13)" rx="2" ry="2" />
<text x="1292.41" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.TFETensorHandle.__allocating_init(_owning: Swift.OpaquePointer) -&gt; TensorFlow.TFETensorHandle (23 samples, 0.09%)</title><rect x="523.2" y="1813" width="1.6" height="15.0" fill="rgb(208,127,34)" rx="2" ry="2" />
<text x="526.24" y="1823.5" ></text>
</g>
<g >
<title>protocol witness for Swift._ExpressibleByBuiltinIntegerLiteral.init(_builtinIntegerLiteral: Builtin.IntLiteral) -&gt; A in conformance Swift.Int32 : Swift._ExpressibleByBuiltinIntegerLiteral in Swift (3 samples, 0.01%)</title><rect x="358.1" y="1877" width="0.2" height="15.0" fill="rgb(206,163,21)" rx="2" ry="2" />
<text x="361.07" y="1887.5" ></text>
</g>
<g >
<title>(extension in Swift):Swift.SignedInteger&lt; where A: Swift.FixedWidthInteger&gt;.init&lt;A where A1: Swift.BinaryInteger&gt;(A1) -&gt; A (3 samples, 0.01%)</title><rect x="40.7" y="1893" width="0.2" height="15.0" fill="rgb(209,137,47)" rx="2" ry="2" />
<text x="43.66" y="1903.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.updateAttribute(Swift.String, TensorFlow.TensorDataType) -&gt; () in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (29 samples, 0.11%)</title><rect x="379.9" y="1941" width="2.0" height="15.0" fill="rgb(227,166,22)" rx="2" ry="2" />
<text x="382.86" y="1951.5" ></text>
</g>
<g >
<title>tensorflow::AttrTypeMapForOp (8 samples, 0.03%)</title><rect x="1094.1" y="1877" width="0.6" height="15.0" fill="rgb(209,222,30)" rx="2" ry="2" />
<text x="1097.14" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (105 samples, 0.41%)</title><rect x="32.5" y="2005" width="7.3" height="15.0" fill="rgb(228,221,54)" rx="2" ry="2" />
<text x="35.54" y="2015.5" ></text>
</g>
<g >
<title>TFE_DeleteOp (2 samples, 0.01%)</title><rect x="1264.3" y="1829" width="0.1" height="15.0" fill="rgb(211,50,10)" rx="2" ry="2" />
<text x="1267.25" y="1839.5" ></text>
</g>
<g >
<title>TensorFlow.(ContextManager in _FB0BD6F5746BEB1D32556BEB608FF2A5).currentContext.modify : TensorFlow.Context (2 samples, 0.01%)</title><rect x="130.1" y="1717" width="0.1" height="15.0" fill="rgb(212,199,29)" rx="2" ry="2" />
<text x="133.08" y="1727.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TensorArrayProtocol.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?, count: Swift.Int) -&gt; A in conformance TensorFlow.Tensor&lt;A&gt; : TensorFlow.TensorArrayProtocol in TensorFlow (25 samples, 0.10%)</title><rect x="1143.1" y="1925" width="1.7" height="15.0" fill="rgb(242,216,36)" rx="2" ry="2" />
<text x="1146.08" y="1935.5" ></text>
</g>
<g >
<title>tensorflow::EagerKernelExecute (13 samples, 0.05%)</title><rect x="1449.6" y="1717" width="0.9" height="15.0" fill="rgb(251,154,22)" rx="2" ry="2" />
<text x="1452.56" y="1727.5" ></text>
</g>
<g >
<title>tensorflow::Hash64 (4 samples, 0.02%)</title><rect x="458.4" y="1877" width="0.2" height="15.0" fill="rgb(250,200,41)" rx="2" ry="2" />
<text x="461.35" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow.TensorHandle.init(copyingFromCTensor: Swift.OpaquePointer) -&gt; TensorFlow.TensorHandle&lt;A&gt; (16 samples, 0.06%)</title><rect x="1437.2" y="1861" width="1.1" height="15.0" fill="rgb(251,158,44)" rx="2" ry="2" />
<text x="1440.19" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow.checkOk(_: Swift.OpaquePointer?, file: Swift.StaticString, line: Swift.UInt) -&gt; () (4 samples, 0.02%)</title><rect x="1437.9" y="1845" width="0.3" height="15.0" fill="rgb(245,204,27)" rx="2" ry="2" />
<text x="1440.88" y="1855.5" ></text>
</g>
<g >
<title>partial apply forwarder for reabstraction thunk helper &lt;A where A: TensorFlow.TensorFlowScalar&gt; from @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@owned TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) to @escaping @callee_guaranteed (@unowned Swift.UnsafeBufferPointer&lt;A&gt;) -&gt; (@out TensorFlow.Tensor&lt;A&gt;, @error @owned Swift.Error) (3 samples, 0.01%)</title><rect x="1433.2" y="1861" width="0.2" height="15.0" fill="rgb(216,222,52)" rx="2" ry="2" />
<text x="1436.20" y="1871.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (3 samples, 0.01%)</title><rect x="1434.4" y="1845" width="0.2" height="15.0" fill="rgb(242,37,36)" rx="2" ry="2" />
<text x="1437.44" y="1855.5" ></text>
</g>
<g >
<title>tensorflow::allocate_tensor (2 samples, 0.01%)</title><rect x="1155.0" y="1781" width="0.1" height="15.0" fill="rgb(224,90,38)" rx="2" ry="2" />
<text x="1157.97" y="1791.5" ></text>
</g>
<g >
<title>TensorFlow.Tensor.init(_owning: Swift.UnsafePointer&lt;Swift.OpaquePointer&gt;?) -&gt; TensorFlow.Tensor&lt;A&gt; (43 samples, 0.17%)</title><rect x="932.9" y="1829" width="2.9" height="15.0" fill="rgb(211,43,40)" rx="2" ry="2" />
<text x="935.89" y="1839.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::MaybeInferSingleInputAttrs (24 samples, 0.09%)</title><rect x="901.2" y="1845" width="1.7" height="15.0" fill="rgb(224,195,44)" rx="2" ry="2" />
<text x="904.20" y="1855.5" ></text>
</g>
<g >
<title>__pthread_getspecific (2 samples, 0.01%)</title><rect x="499.0" y="1861" width="0.1" height="15.0" fill="rgb(241,199,23)" rx="2" ry="2" />
<text x="501.97" y="1871.5" ></text>
</g>
<g >
<title>swift_once (3 samples, 0.01%)</title><rect x="624.9" y="1861" width="0.2" height="15.0" fill="rgb(251,28,40)" rx="2" ry="2" />
<text x="627.89" y="1871.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="375.7" y="1781" width="0.1" height="15.0" fill="rgb(239,164,29)" rx="2" ry="2" />
<text x="378.66" y="1791.5" ></text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1 in TensorFlow.ShapedArray.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (26 samples, 0.10%)</title><rect x="395.3" y="1861" width="1.8" height="15.0" fill="rgb(231,31,13)" rx="2" ry="2" />
<text x="398.32" y="1871.5" ></text>
</g>
<g >
<title>function signature specialization &lt;Arg[1] = Dead&gt; of static Swift.String._fromUTF8Repairing(Swift.UnsafeBufferPointer&lt;Swift.UInt8&gt;) -&gt; (result: Swift.String, repairsMade: Swift.Bool) (2 samples, 0.01%)</title><rect x="659.9" y="1845" width="0.2" height="15.0" fill="rgb(249,163,16)" rx="2" ry="2" />
<text x="662.95" y="1855.5" ></text>
</g>
<g >
<title>protocol witness for TensorFlow.TFTensorOperation.execute&lt;A where A1: TensorFlow.TensorArrayProtocol&gt;(Swift.Int) -&gt; A1 in conformance TensorFlow.TFE_Op : TensorFlow.TFTensorOperation in TensorFlow (440 samples, 1.70%)</title><rect x="1008.5" y="1925" width="30.2" height="15.0" fill="rgb(220,125,32)" rx="2" ry="2" />
<text x="1011.50" y="1935.5" >pr..</text>
</g>
<g >
<title>TensorFlow.TFE_Op.addInput&lt;A where A: TensorFlow.TensorFlowScalar&gt;(TensorFlow.Tensor&lt;A&gt;) -&gt; () (5 samples, 0.02%)</title><rect x="1433.8" y="1877" width="0.3" height="15.0" fill="rgb(253,66,31)" rx="2" ry="2" />
<text x="1436.75" y="1887.5" ></text>
</g>
<g >
<title>TensorFlow._TFCOpSetDeviceFromScope(Swift.OpaquePointer, Swift.OpaquePointer) -&gt; () (13 samples, 0.05%)</title><rect x="155.4" y="1877" width="0.9" height="15.0" fill="rgb(241,135,25)" rx="2" ry="2" />
<text x="158.44" y="1887.5" ></text>
</g>
<g >
<title>std::_Hash_bytes (2 samples, 0.01%)</title><rect x="292.4" y="1813" width="0.2" height="15.0" fill="rgb(228,186,18)" rx="2" ry="2" />
<text x="295.43" y="1823.5" ></text>
</g>
<g >
<title>swift_arrayInitWithCopy (672 samples, 2.59%)</title><rect x="1540.5" y="2037" width="46.2" height="15.0" fill="rgb(208,14,33)" rx="2" ry="2" />
<text x="1543.50" y="2047.5" >swif..</text>
</g>
<g >
<title>closure #1 (Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1 in TensorFlow.ShapedArray.withUnsafeBufferPointer&lt;A&gt;((Swift.UnsafeBufferPointer&lt;A&gt;) throws -&gt; A1) throws -&gt; A1 (2 samples, 0.01%)</title><rect x="1461.8" y="1861" width="0.1" height="15.0" fill="rgb(249,31,17)" rx="2" ry="2" />
<text x="1464.80" y="1871.5" ></text>
</g>
<g >
<title>tensorflow::EagerOperation::Reset (23 samples, 0.09%)</titl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment