aboutsummaryrefslogtreecommitdiff
path: root/23.11/_encoders_8hpp__dep__incl.svg
blob: 08150a2d3b49f71e68e459870f925b5c6cf93731 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
 "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.43.0 (0)
 -->
<!-- Title: src/backends/reference/workloads/Encoders.hpp Pages: 1 -->
<svg width="12006pt" height="329pt"
 viewBox="0.00 0.00 12006.00 329.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 325)">
<title>src/backends/reference/workloads/Encoders.hpp</title>
<polygon fill="white" stroke="transparent" points="-4,4 -4,-325 12002,-325 12002,4 -4,4"/>
<!-- Node1 -->
<g id="node1" class="node">
<title>Node1</title>
<g id="a_node1"><a xlink:title=" ">
<polygon fill="#bfbfbf" stroke="black" points="6152,-290.5 6152,-320.5 6290,-320.5 6290,-290.5 6152,-290.5"/>
<text text-anchor="start" x="6160" y="-308.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="6221" y="-297.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Encoders.hpp</text>
</a>
</g>
</g>
<!-- Node2 -->
<g id="node2" class="node">
<title>Node2</title>
<g id="a_node2"><a xlink:href="_data_type_utils_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="164.5,-218 164.5,-248 273.5,-248 273.5,-218 164.5,-218"/>
<text text-anchor="start" x="172.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnnTestUtils</text>
<text text-anchor="middle" x="219" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/DataTypeUtils.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node2 -->
<g id="edge1" class="edge">
<title>Node1&#45;&gt;Node2</title>
<path fill="none" stroke="midnightblue" d="M6141.75,-304.49C5458.89,-304.34 586.02,-301.56 283,-254 274.6,-252.68 265.79,-250.49 257.49,-248.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.98,-307.99 6151.98,-304.49 6141.98,-300.99 6141.98,-307.99"/>
</g>
<!-- Node3 -->
<g id="node3" class="node">
<title>Node3</title>
<g id="a_node3"><a xlink:href="_batch_mat_mul_impl_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5479,-218 5479,-248 5659,-248 5659,-218 5479,-218"/>
<text text-anchor="start" x="5487" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="5569" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/BatchMatMulImpl.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node3 -->
<g id="edge2" class="edge">
<title>Node1&#45;&gt;Node3</title>
<path fill="none" stroke="midnightblue" d="M6141.61,-299.96C6033.92,-293.18 5835.73,-278.53 5668,-254 5656.72,-252.35 5644.79,-250.25 5633.26,-248.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.55,-303.46 6151.75,-300.59 6141.98,-296.48 6141.55,-303.46"/>
</g>
<!-- Node9 -->
<g id="node9" class="node">
<title>Node9</title>
<g id="a_node9"><a xlink:href="_ref_convolution2d_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="514.5,-218 514.5,-248 741.5,-248 741.5,-218 514.5,-218"/>
<text text-anchor="start" x="522.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="628" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefConvolution2dWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node9 -->
<g id="edge9" class="edge">
<title>Node1&#45;&gt;Node9</title>
<path fill="none" stroke="midnightblue" d="M6141.4,-304.28C5512.46,-302.43 1354.57,-288.98 799,-254 777.52,-252.65 754.6,-250.47 732.74,-248.05"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.7,-307.78 6151.71,-304.31 6141.72,-300.78 6141.7,-307.78"/>
</g>
<!-- Node11 -->
<g id="node11" class="node">
<title>Node11</title>
<g id="a_node11"><a xlink:href="_ref_convolution3d_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1745.5,-218 1745.5,-248 1972.5,-248 1972.5,-218 1745.5,-218"/>
<text text-anchor="start" x="1753.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="1859" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefConvolution3dWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node11 -->
<g id="edge12" class="edge">
<title>Node1&#45;&gt;Node11</title>
<path fill="none" stroke="midnightblue" d="M6141.57,-304.27C5595.9,-302.58 2410.84,-291.21 1982,-254 1966.37,-252.64 1949.73,-250.45 1933.91,-248.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.69,-307.77 6151.7,-304.3 6141.71,-300.77 6141.69,-307.77"/>
</g>
<!-- Node13 -->
<g id="node13" class="node">
<title>Node13</title>
<g id="a_node13"><a xlink:href="_ref_depthwise_convolution2d_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1051,-212.5 1051,-253.5 1263,-253.5 1263,-212.5 1051,-212.5"/>
<text text-anchor="start" x="1059" y="-241.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="1059" y="-230.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefDepthwiseConvolution2d</text>
<text text-anchor="middle" x="1157" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node13 -->
<g id="edge15" class="edge">
<title>Node1&#45;&gt;Node13</title>
<path fill="none" stroke="midnightblue" d="M6141.81,-304.32C5547.75,-302.91 1798.19,-292.53 1296,-254 1285.3,-253.18 1274.18,-252.05 1263.09,-250.74"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.98,-307.82 6151.99,-304.35 6142,-300.82 6141.98,-307.82"/>
</g>
<!-- Node14 -->
<g id="node14" class="node">
<title>Node14</title>
<g id="a_node14"><a xlink:href="_ref_depthwise_convolution2d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="917,-134.5 917,-175.5 1129,-175.5 1129,-134.5 917,-134.5"/>
<text text-anchor="start" x="925" y="-163.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="925" y="-152.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefDepthwiseConvolution2d</text>
<text text-anchor="middle" x="1023" y="-141.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node14 -->
<g id="edge106" class="edge">
<title>Node1&#45;&gt;Node14</title>
<path fill="none" stroke="midnightblue" d="M6141.79,-304.41C5494.18,-303.62 1093.2,-296.65 1042,-254 1019.5,-235.25 1018.42,-198.55 1020.29,-175.77"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.94,-307.91 6151.95,-304.43 6141.95,-300.91 6141.94,-307.91"/>
</g>
<!-- Node15 -->
<g id="node15" class="node">
<title>Node15</title>
<g id="a_node15"><a xlink:href="_ref_fully_connected_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2438,-212.5 2438,-253.5 2602,-253.5 2602,-212.5 2438,-212.5"/>
<text text-anchor="start" x="2446" y="-241.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="2446" y="-230.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefFullyConnected</text>
<text text-anchor="middle" x="2520" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node15 -->
<g id="edge18" class="edge">
<title>Node1&#45;&gt;Node15</title>
<path fill="none" stroke="midnightblue" d="M6141.5,-304.35C5644.33,-303.31 2972.19,-295.78 2611,-254 2608.11,-253.67 2605.17,-253.28 2602.21,-252.85"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.79,-307.85 6151.8,-304.37 6141.81,-300.85 6141.79,-307.85"/>
</g>
<!-- Node17 -->
<g id="node17" class="node">
<title>Node17</title>
<g id="a_node17"><a xlink:href="_ref_gather_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3104.5,-218 3104.5,-248 3293.5,-248 3293.5,-218 3104.5,-218"/>
<text text-anchor="start" x="3112.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="3199" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefGatherWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node17 -->
<g id="edge21" class="edge">
<title>Node1&#45;&gt;Node17</title>
<path fill="none" stroke="midnightblue" d="M6141.78,-303.8C5745.84,-300.18 3978.82,-282.69 3430,-254 3385.08,-251.65 3335.36,-247.54 3293.59,-243.66"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.95,-307.3 6151.98,-303.89 6142.02,-300.3 6141.95,-307.3"/>
</g>
<!-- Node19 -->
<g id="node19" class="node">
<title>Node19</title>
<g id="a_node19"><a xlink:href="_ref_mean_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3716.5,-218 3716.5,-248 3899.5,-248 3899.5,-218 3716.5,-218"/>
<text text-anchor="start" x="3724.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="3808" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefMeanWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node19 -->
<g id="edge24" class="edge">
<title>Node1&#45;&gt;Node19</title>
<path fill="none" stroke="midnightblue" d="M6141.53,-304.61C5855.73,-304.59 4853.32,-300.96 4028,-254 3985.79,-251.6 3939.13,-247.56 3899.68,-243.73"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.8,-308.11 6151.8,-304.61 6141.8,-301.11 6141.8,-308.11"/>
</g>
<!-- Node21 -->
<g id="node21" class="node">
<title>Node21</title>
<g id="a_node21"><a xlink:href="_ref_pooling2d_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2845,-218 2845,-248 3049,-248 3049,-218 2845,-218"/>
<text text-anchor="start" x="2853" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="2947" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefPooling2dWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node21 -->
<g id="edge27" class="edge">
<title>Node1&#45;&gt;Node21</title>
<path fill="none" stroke="midnightblue" d="M6141.7,-304.49C5717.57,-304.25 3713.25,-300.6 3095,-254 3076.51,-252.61 3056.81,-250.43 3038.01,-248.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.72,-307.99 6151.72,-304.5 6141.72,-300.99 6141.72,-307.99"/>
</g>
<!-- Node23 -->
<g id="node23" class="node">
<title>Node23</title>
<g id="a_node23"><a xlink:href="_ref_pooling3d_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1523,-218 1523,-248 1727,-248 1727,-218 1523,-218"/>
<text text-anchor="start" x="1531" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="1625" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefPooling3dWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node23 -->
<g id="edge30" class="edge">
<title>Node1&#45;&gt;Node23</title>
<path fill="none" stroke="midnightblue" d="M6141.9,-304.41C5579.14,-303.64 2190.7,-297.22 1736,-254 1721.87,-252.66 1706.84,-250.47 1692.55,-248.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.95,-307.91 6151.95,-304.42 6141.96,-300.91 6141.95,-307.91"/>
</g>
<!-- Node25 -->
<g id="node25" class="node">
<title>Node25</title>
<g id="a_node25"><a xlink:href="_ref_quantize_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1305,-218 1305,-248 1505,-248 1505,-218 1305,-218"/>
<text text-anchor="start" x="1313" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="1405" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefQuantizeWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node25 -->
<g id="edge33" class="edge">
<title>Node1&#45;&gt;Node25</title>
<path fill="none" stroke="midnightblue" d="M6141.24,-304.47C5560.55,-304.11 1992.02,-300.08 1514,-254 1500.12,-252.66 1485.35,-250.48 1471.32,-248.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.6,-307.97 6151.6,-304.47 6141.6,-300.97 6141.6,-307.97"/>
</g>
<!-- Node27 -->
<g id="node27" class="node">
<title>Node27</title>
<g id="a_node27"><a xlink:href="_reverse_v2_impl_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="292,-218 292,-248 460,-248 460,-218 292,-218"/>
<text text-anchor="start" x="300" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="376" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/ReverseV2Impl.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node27 -->
<g id="edge36" class="edge">
<title>Node1&#45;&gt;Node27</title>
<path fill="none" stroke="midnightblue" d="M6141.68,-304.5C5494.53,-304.37 1091.29,-301.78 505,-254 488.62,-252.67 471.18,-250.48 454.58,-248.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.83,-308 6151.83,-304.5 6141.83,-301 6141.83,-308"/>
</g>
<!-- Node31 -->
<g id="node31" class="node">
<title>Node31</title>
<g id="a_node31"><a xlink:href="_ref_splitter_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2191.5,-218 2191.5,-248 2382.5,-248 2382.5,-218 2191.5,-218"/>
<text text-anchor="start" x="2199.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="2287" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefSplitterWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node31 -->
<g id="edge42" class="edge">
<title>Node1&#45;&gt;Node31</title>
<path fill="none" stroke="midnightblue" d="M6141.63,-304.05C5630.42,-301.05 2810.81,-283.31 2429,-254 2411.13,-252.63 2392.08,-250.45 2373.92,-248.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.84,-307.55 6151.86,-304.11 6141.88,-300.55 6141.84,-307.55"/>
</g>
<!-- Node33 -->
<g id="node33" class="node">
<title>Node33</title>
<g id="a_node33"><a xlink:href="_tile_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4931.5,-218 4931.5,-248 5060.5,-248 5060.5,-218 4931.5,-218"/>
<text text-anchor="start" x="4939.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="4996" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Tile.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node33 -->
<g id="edge45" class="edge">
<title>Node1&#45;&gt;Node33</title>
<path fill="none" stroke="midnightblue" d="M6141.86,-303.29C5916.99,-299.51 5277.19,-286.14 5070,-254 5060.79,-252.57 5051.09,-250.43 5041.85,-248.07"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.87,-306.79 6151.93,-303.46 6141.99,-299.8 6141.87,-306.79"/>
</g>
<!-- Node36 -->
<g id="node36" class="node">
<title>Node36</title>
<g id="a_node36"><a xlink:href="_tile_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4770.5,-140 4770.5,-170 4899.5,-170 4899.5,-140 4770.5,-140"/>
<text text-anchor="start" x="4778.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="4835" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Tile.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node36 -->
<g id="edge136" class="edge">
<title>Node1&#45;&gt;Node36</title>
<path fill="none" stroke="midnightblue" d="M6141.54,-305.01C5876.28,-306.24 5031.85,-305.96 4922,-254 4883.95,-236 4855.46,-192.84 4842.58,-170.28"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.87,-308.51 6151.85,-304.96 6141.84,-301.51 6141.87,-308.51"/>
</g>
<!-- Node37 -->
<g id="node37" class="node">
<title>Node37</title>
<g id="a_node37"><a xlink:href="_ref_transpose_convolution2d_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4312.5,-212.5 4312.5,-253.5 4521.5,-253.5 4521.5,-212.5 4312.5,-212.5"/>
<text text-anchor="start" x="4320.5" y="-241.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="4320.5" y="-230.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefTransposeConvolution2d</text>
<text text-anchor="middle" x="4417" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node37 -->
<g id="edge51" class="edge">
<title>Node1&#45;&gt;Node37</title>
<path fill="none" stroke="midnightblue" d="M6141.99,-303.67C5852.29,-300.37 4848.7,-286.79 4530,-254 4527.23,-253.71 4524.42,-253.4 4521.58,-253.06"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.95,-307.16 6151.99,-303.78 6142.03,-300.17 6141.95,-307.16"/>
</g>
<!-- Node39 -->
<g id="node39" class="node">
<title>Node39</title>
<g id="a_node39"><a xlink:href="_ref_unidirectional_sequence_lstm_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5079,-212.5 5079,-253.5 5237,-253.5 5237,-212.5 5079,-212.5"/>
<text text-anchor="start" x="5087" y="-241.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="5087" y="-230.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefUnidirectional</text>
<text text-anchor="middle" x="5158" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">SequenceLstmWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node39 -->
<g id="edge54" class="edge">
<title>Node1&#45;&gt;Node39</title>
<path fill="none" stroke="midnightblue" d="M6141.73,-304.65C5975.73,-304.02 5579.7,-297.62 5251,-254 5246.5,-253.4 5241.89,-252.7 5237.25,-251.93"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.84,-308.15 6151.85,-304.68 6141.86,-301.15 6141.84,-308.15"/>
</g>
<!-- Node40 -->
<g id="node40" class="node">
<title>Node40</title>
<g id="a_node40"><a xlink:href="_ref_unidirectional_sequence_lstm_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5186,-134.5 5186,-175.5 5344,-175.5 5344,-134.5 5186,-134.5"/>
<text text-anchor="start" x="5194" y="-163.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="5194" y="-152.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefUnidirectional</text>
<text text-anchor="middle" x="5265" y="-141.5" font-family="Helvetica,sans-Serif" font-size="10.00">SequenceLstmWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node40 -->
<g id="edge134" class="edge">
<title>Node1&#45;&gt;Node40</title>
<path fill="none" stroke="midnightblue" d="M6141.66,-302.86C5921.35,-297.95 5316.12,-281.98 5284,-254 5261.91,-234.76 5260.71,-198.22 5262.44,-175.6"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.78,-306.36 6151.86,-303.08 6141.94,-299.36 6141.78,-306.36"/>
</g>
<!-- Node41 -->
<g id="node41" class="node">
<title>Node41</title>
<g id="a_node41"><a xlink:href="_batch_norm_impl_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5677,-218 5677,-248 5847,-248 5847,-218 5677,-218"/>
<text text-anchor="start" x="5685" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="5762" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/BatchNormImpl.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node41 -->
<g id="edge57" class="edge">
<title>Node1&#45;&gt;Node41</title>
<path fill="none" stroke="midnightblue" d="M6141.62,-295.19C6067.51,-286.11 5953.94,-271.17 5856,-254 5845.89,-252.23 5835.22,-250.15 5824.83,-248.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.46,-298.7 6151.81,-296.44 6142.31,-291.75 6141.46,-298.7"/>
</g>
<!-- Node44 -->
<g id="node44" class="node">
<title>Node44</title>
<g id="a_node44"><a xlink:href="_batch_to_space_nd_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5865.5,-218 5865.5,-248 6040.5,-248 6040.5,-218 5865.5,-218"/>
<text text-anchor="start" x="5873.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="5953" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/BatchToSpaceNd.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node44 -->
<g id="edge60" class="edge">
<title>Node1&#45;&gt;Node44</title>
<path fill="none" stroke="midnightblue" d="M6157.87,-287.89C6111.88,-275.79 6050.24,-259.58 6006.63,-248.11"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6157.17,-291.33 6167.73,-290.49 6158.95,-284.56 6157.17,-291.33"/>
</g>
<!-- Node47 -->
<g id="node47" class="node">
<title>Node47</title>
<g id="a_node47"><a xlink:href="_concatenate_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6058.5,-218 6058.5,-248 6213.5,-248 6213.5,-218 6058.5,-218"/>
<text text-anchor="start" x="6066.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="6136" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Concatenate.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node47 -->
<g id="edge63" class="edge">
<title>Node1&#45;&gt;Node47</title>
<path fill="none" stroke="midnightblue" d="M6196.03,-283.79C6182.14,-272.27 6165.22,-258.23 6152.89,-248"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6193.87,-286.54 6203.8,-290.23 6198.34,-281.16 6193.87,-286.54"/>
</g>
<!-- Node48 -->
<g id="node48" class="node">
<title>Node48</title>
<g id="a_node48"><a xlink:href="_conv3d_impl_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1991,-218 1991,-248 2143,-248 2143,-218 1991,-218"/>
<text text-anchor="start" x="1999" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="2067" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Conv3dImpl.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node48 -->
<g id="edge64" class="edge">
<title>Node1&#45;&gt;Node48</title>
<path fill="none" stroke="midnightblue" d="M6141.57,-304.27C5610.99,-302.64 2589.43,-291.73 2182,-254 2167.37,-252.65 2151.8,-250.45 2137,-248.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.79,-307.77 6151.8,-304.3 6141.82,-300.77 6141.79,-307.77"/>
</g>
<!-- Node50 -->
<g id="node50" class="node">
<title>Node50</title>
<g id="a_node50"><a xlink:href="_conv_impl_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="808,-218 808,-248 948,-248 948,-218 808,-218"/>
<text text-anchor="start" x="816" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="878" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/ConvImpl.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node50 -->
<g id="edge67" class="edge">
<title>Node1&#45;&gt;Node50</title>
<path fill="none" stroke="midnightblue" d="M6141.58,-304.41C5527.2,-303.64 1541.54,-297.01 1009,-254 989.16,-252.4 967.78,-249.59 948.15,-246.59"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.66,-307.91 6151.67,-304.42 6141.67,-300.91 6141.66,-307.91"/>
</g>
<!-- Node52 -->
<g id="node52" class="node">
<title>Node52</title>
<g id="a_node52"><a xlink:href="_dequantize_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6231.5,-218 6231.5,-248 6380.5,-248 6380.5,-218 6231.5,-218"/>
<text text-anchor="start" x="6239.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="6306" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Dequantize.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node52 -->
<g id="edge71" class="edge">
<title>Node1&#45;&gt;Node52</title>
<path fill="none" stroke="midnightblue" d="M6245.97,-283.79C6259.86,-272.27 6276.78,-258.23 6289.11,-248"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6243.66,-281.16 6238.2,-290.23 6248.13,-286.54 6243.66,-281.16"/>
</g>
<!-- Node54 -->
<g id="node54" class="node">
<title>Node54</title>
<g id="a_node54"><a xlink:href="_ref_dequantize_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7120.5,-140 7120.5,-170 7331.5,-170 7331.5,-140 7120.5,-140"/>
<text text-anchor="start" x="7128.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="7226" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefDequantizeWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node54 -->
<g id="edge107" class="edge">
<title>Node1&#45;&gt;Node54</title>
<path fill="none" stroke="midnightblue" d="M6300.23,-290.08C6329.62,-282.38 6362.29,-270.89 6389,-254 6410.28,-240.55 6404.27,-222.81 6427,-212 6495.73,-179.31 7035.37,-184.54 7111,-176 7124.69,-174.45 7139.23,-172.32 7153.19,-170.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6299.24,-286.72 6290.4,-292.55 6300.95,-293.51 6299.24,-286.72"/>
</g>
<!-- Node55 -->
<g id="node55" class="node">
<title>Node55</title>
<g id="a_node55"><a xlink:href="_fill_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6436.5,-218 6436.5,-248 6565.5,-248 6565.5,-218 6436.5,-218"/>
<text text-anchor="start" x="6444.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="6501" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Fill.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node55 -->
<g id="edge74" class="edge">
<title>Node1&#45;&gt;Node55</title>
<path fill="none" stroke="midnightblue" d="M6286.62,-288.05C6325.9,-278.19 6376.81,-265.4 6422,-254 6429.55,-252.1 6437.49,-250.09 6445.33,-248.11"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6285.74,-284.66 6276.89,-290.49 6287.44,-291.45 6285.74,-284.66"/>
</g>
<!-- Node57 -->
<g id="node57" class="node">
<title>Node57</title>
<g id="a_node57"><a xlink:href="_ref_fill_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7497,-140 7497,-170 7667,-170 7667,-140 7497,-140"/>
<text text-anchor="start" x="7505" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="7582" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefFillWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node57 -->
<g id="edge111" class="edge">
<title>Node1&#45;&gt;Node57</title>
<path fill="none" stroke="midnightblue" d="M6300.32,-299.31C6389.47,-292.42 6527.79,-278.19 6574,-254 6596.57,-242.19 6589.86,-222.66 6613,-212 6701.27,-171.32 7390.56,-188.05 7487,-176 7498.71,-174.54 7511.11,-172.38 7522.96,-170.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6299.95,-295.83 6290.24,-300.08 6300.48,-302.81 6299.95,-295.83"/>
</g>
<!-- Node58 -->
<g id="node58" class="node">
<title>Node58</title>
<g id="a_node58"><a xlink:href="_fully_connected_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2620.5,-218 2620.5,-248 2789.5,-248 2789.5,-218 2620.5,-218"/>
<text text-anchor="start" x="2628.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="2705" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/FullyConnected.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node58 -->
<g id="edge77" class="edge">
<title>Node1&#45;&gt;Node58</title>
<path fill="none" stroke="midnightblue" d="M6141.69,-304.79C5696.9,-306.19 3508.29,-310.07 2836,-254 2819.49,-252.62 2801.91,-250.44 2785.16,-248.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.88,-308.29 6151.87,-304.76 6141.86,-301.29 6141.88,-308.29"/>
</g>
<!-- Node60 -->
<g id="node60" class="node">
<title>Node60</title>
<g id="a_node60"><a xlink:href="_gather_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3439.5,-218 3439.5,-248 3568.5,-248 3568.5,-218 3439.5,-218"/>
<text text-anchor="start" x="3447.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="3504" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Gather.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node60 -->
<g id="edge80" class="edge">
<title>Node1&#45;&gt;Node60</title>
<path fill="none" stroke="midnightblue" d="M6141.61,-303.74C5769.72,-300.06 4197.56,-283.05 3707,-254 3660.69,-251.26 3608.62,-246.08 3568.81,-241.69"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.7,-307.24 6151.73,-303.84 6141.77,-300.24 6141.7,-307.24"/>
</g>
<!-- Node63 -->
<g id="node63" class="node">
<title>Node63</title>
<g id="a_node63"><a xlink:href="_instance_norm_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6622,-218 6622,-248 6784,-248 6784,-218 6622,-218"/>
<text text-anchor="start" x="6630" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="6703" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/InstanceNorm.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node63 -->
<g id="edge84" class="edge">
<title>Node1&#45;&gt;Node63</title>
<path fill="none" stroke="midnightblue" d="M6300.39,-295.97C6378.81,-287.11 6502.04,-272.04 6608,-254 6618.3,-252.25 6629.19,-250.17 6639.77,-248.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6299.65,-292.53 6290.1,-297.12 6300.43,-299.49 6299.65,-292.53"/>
</g>
<!-- Node66 -->
<g id="node66" class="node">
<title>Node66</title>
<g id="a_node66"><a xlink:href="_lstm_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5293.5,-218 5293.5,-248 5422.5,-248 5422.5,-218 5293.5,-218"/>
<text text-anchor="start" x="5301.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="5358" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Lstm.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node66 -->
<g id="edge87" class="edge">
<title>Node1&#45;&gt;Node66</title>
<path fill="none" stroke="midnightblue" d="M6141.48,-304.18C5999.26,-302.55 5692.33,-294.19 5437,-254 5427.5,-252.5 5417.47,-250.39 5407.86,-248.1"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.81,-307.69 6151.84,-304.29 6141.88,-300.69 6141.81,-307.69"/>
</g>
<!-- Node68 -->
<g id="node68" class="node">
<title>Node68</title>
<g id="a_node68"><a xlink:href="_ref_lstm_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5509.5,-140 5509.5,-170 5688.5,-170 5688.5,-140 5509.5,-140"/>
<text text-anchor="start" x="5517.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="5599" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefLstmWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node68 -->
<g id="edge117" class="edge">
<title>Node1&#45;&gt;Node68</title>
<path fill="none" stroke="midnightblue" d="M6141.69,-305.14C5957.92,-305.79 5515.14,-302.27 5470,-254 5457.25,-240.37 5459.76,-227.61 5470,-212 5483.53,-191.38 5506.46,-178.32 5529.27,-170.05"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.84,-308.64 6151.83,-305.1 6141.81,-301.64 6141.84,-308.64"/>
</g>
<!-- Node69 -->
<g id="node69" class="node">
<title>Node69</title>
<g id="a_node69"><a xlink:href="_mirror_pad_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6802,-218 6802,-248 6942,-248 6942,-218 6802,-218"/>
<text text-anchor="start" x="6810" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="6872" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/MirrorPad.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node69 -->
<g id="edge91" class="edge">
<title>Node1&#45;&gt;Node69</title>
<path fill="none" stroke="midnightblue" d="M6300.23,-301.51C6411.11,-296.42 6618.58,-283.58 6793,-254 6802.35,-252.41 6812.21,-250.29 6821.68,-248.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6299.96,-298.02 6290.13,-301.96 6300.28,-305.01 6299.96,-298.02"/>
</g>
<!-- Node70 -->
<g id="node70" class="node">
<title>Node70</title>
<g id="a_node70"><a xlink:href="_pad_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6960.5,-218 6960.5,-248 7089.5,-248 7089.5,-218 6960.5,-218"/>
<text text-anchor="start" x="6968.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="7025" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Pad.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node70 -->
<g id="edge92" class="edge">
<title>Node1&#45;&gt;Node70</title>
<path fill="none" stroke="midnightblue" d="M6300.44,-304.05C6435.18,-302.17 6716.72,-293.38 6951,-254 6959.92,-252.5 6969.33,-250.39 6978.33,-248.09"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.17,-300.56 6290.22,-304.19 6300.26,-307.56 6300.17,-300.56"/>
</g>
<!-- Node71 -->
<g id="node71" class="node">
<title>Node71</title>
<g id="a_node71"><a xlink:href="_prelu_impl_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7108,-218 7108,-248 7248,-248 7248,-218 7108,-218"/>
<text text-anchor="start" x="7116" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="7178" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/PreluImpl.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node71 -->
<g id="edge93" class="edge">
<title>Node1&#45;&gt;Node71</title>
<path fill="none" stroke="midnightblue" d="M6300.59,-304.89C6455.2,-304.55 6806.55,-298.42 7098,-254 7107.77,-252.51 7118.08,-250.37 7127.93,-248.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.24,-301.39 6290.25,-304.9 6300.25,-308.39 6300.24,-301.39"/>
</g>
<!-- Node74 -->
<g id="node74" class="node">
<title>Node74</title>
<g id="a_node74"><a xlink:href="_reduce_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4037,-218 4037,-248 4167,-248 4167,-218 4037,-218"/>
<text text-anchor="start" x="4045" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="4102" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Reduce.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node74 -->
<g id="edge96" class="edge">
<title>Node1&#45;&gt;Node74</title>
<path fill="none" stroke="midnightblue" d="M6141.48,-304.48C5878.84,-303.97 5015.31,-298.76 4303,-254 4257.5,-251.14 4206.38,-246.03 4167.08,-241.69"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.67,-307.98 6151.68,-304.5 6141.69,-300.98 6141.67,-307.98"/>
</g>
<!-- Node77 -->
<g id="node77" class="node">
<title>Node77</title>
<g id="a_node77"><a xlink:href="_ref_activation_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7266.5,-218 7266.5,-248 7471.5,-248 7471.5,-218 7266.5,-218"/>
<text text-anchor="start" x="7274.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="7369" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefActivationWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node77 -->
<g id="edge100" class="edge">
<title>Node1&#45;&gt;Node77</title>
<path fill="none" stroke="midnightblue" d="M6300.12,-304.09C6473.85,-302.44 6901.52,-294.24 7257,-254 7270.44,-252.48 7284.71,-250.34 7298.4,-248.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.01,-300.59 6290.04,-304.18 6300.08,-307.59 6300.01,-300.59"/>
</g>
<!-- Node78 -->
<g id="node78" class="node">
<title>Node78</title>
<g id="a_node78"><a xlink:href="_ref_arg_min_max_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7489.5,-218 7489.5,-248 7700.5,-248 7700.5,-218 7489.5,-218"/>
<text text-anchor="start" x="7497.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="7595" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefArgMinMaxWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node78 -->
<g id="edge101" class="edge">
<title>Node1&#45;&gt;Node78</title>
<path fill="none" stroke="midnightblue" d="M6300.22,-304.95C6499.2,-305.28 7035.82,-301.32 7480,-254 7494,-252.51 7508.88,-250.35 7523.12,-248"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.16,-301.45 6290.15,-304.93 6300.15,-308.45 6300.16,-301.45"/>
</g>
<!-- Node79 -->
<g id="node79" class="node">
<title>Node79</title>
<g id="a_node79"><a xlink:href="_ref_broadcast_to_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7718.5,-218 7718.5,-248 7933.5,-248 7933.5,-218 7718.5,-218"/>
<text text-anchor="start" x="7726.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="7826" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefBroadcastToWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node79 -->
<g id="edge102" class="edge">
<title>Node1&#45;&gt;Node79</title>
<path fill="none" stroke="midnightblue" d="M6300.61,-303.22C6567.92,-298.71 7432.09,-282.24 7709,-254 7723.35,-252.54 7738.6,-250.38 7753.19,-248.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.16,-299.73 6290.22,-303.4 6300.28,-306.73 6300.16,-299.73"/>
</g>
<!-- Node80 -->
<g id="node80" class="node">
<title>Node80</title>
<g id="a_node80"><a xlink:href="_ref_cast_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7951.5,-218 7951.5,-248 8128.5,-248 8128.5,-218 7951.5,-218"/>
<text text-anchor="start" x="7959.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="8040" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefCastWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node80 -->
<g id="edge103" class="edge">
<title>Node1&#45;&gt;Node80</title>
<path fill="none" stroke="midnightblue" d="M6300.45,-303.98C6594.08,-301.79 7617.74,-291.56 7942,-254 7954.25,-252.58 7967.24,-250.41 7979.62,-248.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.29,-300.48 6290.31,-304.06 6300.34,-307.48 6300.29,-300.48"/>
</g>
<!-- Node81 -->
<g id="node81" class="node">
<title>Node81</title>
<g id="a_node81"><a xlink:href="_ref_channel_shuffle_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="8146.5,-212.5 8146.5,-253.5 8309.5,-253.5 8309.5,-212.5 8146.5,-212.5"/>
<text text-anchor="start" x="8154.5" y="-241.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="8154.5" y="-230.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefChannelShuffle</text>
<text text-anchor="middle" x="8228" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node81 -->
<g id="edge104" class="edge">
<title>Node1&#45;&gt;Node81</title>
<path fill="none" stroke="midnightblue" d="M6300.59,-304.42C6615.24,-303.78 7772.95,-298.39 8137,-254 8140.05,-253.63 8143.15,-253.2 8146.27,-252.73"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.19,-300.92 6290.2,-304.44 6300.2,-307.92 6300.19,-300.92"/>
</g>
<!-- Node82 -->
<g id="node82" class="node">
<title>Node82</title>
<g id="a_node82"><a xlink:href="_ref_comparison_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="8328,-218 8328,-248 8542,-248 8542,-218 8328,-218"/>
<text text-anchor="start" x="8336" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="8435" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefComparisonWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node82 -->
<g id="edge105" class="edge">
<title>Node1&#45;&gt;Node82</title>
<path fill="none" stroke="midnightblue" d="M6300.24,-304.13C6632.58,-302.35 7915.41,-293.05 8318,-254 8332.56,-252.59 8348.05,-250.42 8362.82,-248.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.2,-300.63 6290.22,-304.19 6300.24,-307.63 6300.2,-300.63"/>
</g>
<!-- Node83 -->
<g id="node83" class="node">
<title>Node83</title>
<g id="a_node83"><a xlink:href="_ref_elementwise_binary_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="8560,-212.5 8560,-253.5 8744,-253.5 8744,-212.5 8560,-212.5"/>
<text text-anchor="start" x="8568" y="-241.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="8568" y="-230.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefElementwiseBinary</text>
<text text-anchor="middle" x="8652" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node83 -->
<g id="edge108" class="edge">
<title>Node1&#45;&gt;Node83</title>
<path fill="none" stroke="midnightblue" d="M6300.4,-304.63C6655.55,-304.94 8100.67,-303.09 8551,-254 8553.93,-253.68 8556.91,-253.32 8559.9,-252.92"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.21,-301.13 6290.21,-304.62 6300.21,-308.13 6300.21,-301.13"/>
</g>
<!-- Node84 -->
<g id="node84" class="node">
<title>Node84</title>
<g id="a_node84"><a xlink:href="_ref_elementwise_unary_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="8762,-212.5 8762,-253.5 8944,-253.5 8944,-212.5 8762,-212.5"/>
<text text-anchor="start" x="8770" y="-241.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="8770" y="-230.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefElementwiseUnary</text>
<text text-anchor="middle" x="8853" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node84 -->
<g id="edge109" class="edge">
<title>Node1&#45;&gt;Node84</title>
<path fill="none" stroke="midnightblue" d="M6300.44,-304.81C6674.26,-306 8260.71,-307.71 8753,-254 8755.9,-253.68 8758.85,-253.32 8761.82,-252.93"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.27,-301.31 6290.25,-304.78 6300.24,-308.31 6300.27,-301.31"/>
</g>
<!-- Node85 -->
<g id="node85" class="node">
<title>Node85</title>
<g id="a_node85"><a xlink:href="_ref_elementwise_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="8962,-218 8962,-248 9180,-248 9180,-218 8962,-218"/>
<text text-anchor="start" x="8970" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="9071" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefElementwiseWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node85 -->
<g id="edge110" class="edge">
<title>Node1&#45;&gt;Node85</title>
<path fill="none" stroke="midnightblue" d="M6300.21,-304.63C6691.21,-305.05 8418.11,-303.99 8953,-254 8967.79,-252.62 8983.53,-250.45 8998.52,-248.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.13,-301.13 6290.12,-304.62 6300.12,-308.13 6300.13,-301.13"/>
</g>
<!-- Node86 -->
<g id="node86" class="node">
<title>Node86</title>
<g id="a_node86"><a xlink:href="_ref_floor_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="9198,-218 9198,-248 9378,-248 9378,-218 9198,-218"/>
<text text-anchor="start" x="9206" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="9288" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefFloorWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node86 -->
<g id="edge112" class="edge">
<title>Node1&#45;&gt;Node86</title>
<path fill="none" stroke="midnightblue" d="M6300.35,-304.02C6742.71,-301.2 8895.04,-285.92 9189,-254 9201.55,-252.64 9214.87,-250.46 9227.54,-248.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.19,-300.52 6290.22,-304.08 6300.24,-307.52 6300.19,-300.52"/>
</g>
<!-- Node87 -->
<g id="node87" class="node">
<title>Node87</title>
<g id="a_node87"><a xlink:href="_ref_l2_normalization_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="9396,-212.5 9396,-253.5 9566,-253.5 9566,-212.5 9396,-212.5"/>
<text text-anchor="start" x="9404" y="-241.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="9404" y="-230.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefL2Normalization</text>
<text text-anchor="middle" x="9481" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node87 -->
<g id="edge113" class="edge">
<title>Node1&#45;&gt;Node87</title>
<path fill="none" stroke="midnightblue" d="M6300.4,-304.15C6760.25,-302.03 9072.42,-289.63 9387,-254 9389.9,-253.67 9392.85,-253.29 9395.81,-252.88"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.19,-300.66 6290.2,-304.2 6300.22,-307.66 6300.19,-300.66"/>
</g>
<!-- Node88 -->
<g id="node88" class="node">
<title>Node88</title>
<g id="a_node88"><a xlink:href="_ref_logical_binary_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="9584.5,-218 9584.5,-248 9805.5,-248 9805.5,-218 9584.5,-218"/>
<text text-anchor="start" x="9592.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="9695" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefLogicalBinaryWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node88 -->
<g id="edge114" class="edge">
<title>Node1&#45;&gt;Node88</title>
<path fill="none" stroke="midnightblue" d="M6300.46,-304.02C6776.38,-301.04 9239.9,-284.28 9575,-254 9590.15,-252.63 9606.26,-250.45 9621.61,-248.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.23,-300.52 6290.26,-304.08 6300.28,-307.52 6300.23,-300.52"/>
</g>
<!-- Node89 -->
<g id="node89" class="node">
<title>Node89</title>
<g id="a_node89"><a xlink:href="_ref_logical_unary_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="9823.5,-218 9823.5,-248 10042.5,-248 10042.5,-218 9823.5,-218"/>
<text text-anchor="start" x="9831.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="9933" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefLogicalUnaryWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node89 -->
<g id="edge115" class="edge">
<title>Node1&#45;&gt;Node89</title>
<path fill="none" stroke="midnightblue" d="M6300.5,-304.11C6796.21,-301.59 9453.69,-286.62 9814,-254 9829.02,-252.64 9845.01,-250.46 9860.23,-248.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.21,-300.61 6290.23,-304.16 6300.25,-307.61 6300.21,-300.61"/>
</g>
<!-- Node90 -->
<g id="node90" class="node">
<title>Node90</title>
<g id="a_node90"><a xlink:href="_ref_log_softmax_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="10060.5,-218 10060.5,-248 10273.5,-248 10273.5,-218 10060.5,-218"/>
<text text-anchor="start" x="10068.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="10167" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefLogSoftmaxWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node90 -->
<g id="edge116" class="edge">
<title>Node1&#45;&gt;Node90</title>
<path fill="none" stroke="midnightblue" d="M6300.35,-304.21C6814.55,-302.2 9665.66,-289.54 10051,-254 10065.65,-252.65 10081.24,-250.48 10096.07,-248.05"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.05,-300.71 6290.07,-304.25 6300.08,-307.71 6300.05,-300.71"/>
</g>
<!-- Node91 -->
<g id="node91" class="node">
<title>Node91</title>
<g id="a_node91"><a xlink:href="_ref_normalization_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="10291,-218 10291,-248 10515,-248 10515,-218 10291,-218"/>
<text text-anchor="start" x="10299" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="10403" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefNormalizationWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node91 -->
<g id="edge118" class="edge">
<title>Node1&#45;&gt;Node91</title>
<path fill="none" stroke="midnightblue" d="M6300.43,-304.24C6832.69,-302.38 9872.09,-290.22 10282,-254 10297.38,-252.64 10313.75,-250.45 10329.32,-248"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.16,-300.74 6290.17,-304.27 6300.18,-307.74 6300.16,-300.74"/>
</g>
<!-- Node92 -->
<g id="node92" class="node">
<title>Node92</title>
<g id="a_node92"><a xlink:href="_ref_q_lstm_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="10533.5,-218 10533.5,-248 10720.5,-248 10720.5,-218 10533.5,-218"/>
<text text-anchor="start" x="10541.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="10627" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefQLstmWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node92 -->
<g id="edge119" class="edge">
<title>Node1&#45;&gt;Node92</title>
<path fill="none" stroke="midnightblue" d="M6300.33,-304.43C6850.49,-303.83 10088.97,-298.42 10524,-254 10537.14,-252.66 10551.1,-250.47 10564.36,-248.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.11,-300.93 6290.11,-304.44 6300.12,-307.93 6300.11,-300.93"/>
</g>
<!-- Node93 -->
<g id="node93" class="node">
<title>Node93</title>
<g id="a_node93"><a xlink:href="_ref_resize_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="10739,-218 10739,-248 10927,-248 10927,-218 10739,-218"/>
<text text-anchor="start" x="10747" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="10833" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefResizeWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node93 -->
<g id="edge120" class="edge">
<title>Node1&#45;&gt;Node93</title>
<path fill="none" stroke="midnightblue" d="M6300.51,-304.47C6866.19,-304.12 10272.23,-300.1 10729,-254 10742.26,-252.66 10756.35,-250.48 10769.74,-248.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.41,-300.97 6290.41,-304.47 6300.41,-307.97 6300.41,-300.97"/>
</g>
<!-- Node94 -->
<g id="node94" class="node">
<title>Node94</title>
<g id="a_node94"><a xlink:href="_ref_softmax_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="10945,-218 10945,-248 11141,-248 11141,-218 10945,-218"/>
<text text-anchor="start" x="10953" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="11043" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefSoftmaxWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node94 -->
<g id="edge121" class="edge">
<title>Node1&#45;&gt;Node94</title>
<path fill="none" stroke="midnightblue" d="M6300.43,-304.48C6880.69,-304.26 10457.11,-300.96 10936,-254 10949.64,-252.66 10964.13,-250.48 10977.9,-248.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.08,-300.98 6290.09,-304.49 6300.09,-307.98 6300.08,-300.98"/>
</g>
<!-- Node95 -->
<g id="node95" class="node">
<title>Node95</title>
<g id="a_node95"><a xlink:href="_space_to_batch_nd_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="11159.5,-218 11159.5,-248 11334.5,-248 11334.5,-218 11159.5,-218"/>
<text text-anchor="start" x="11167.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="11247" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/SpaceToBatchNd.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node95 -->
<g id="edge122" class="edge">
<title>Node1&#45;&gt;Node95</title>
<path fill="none" stroke="midnightblue" d="M6300.28,-304.61C6895.02,-305.33 10648.8,-307.73 11150,-254 11162.4,-252.67 11175.55,-250.49 11188.04,-248.05"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.1,-301.11 6290.09,-304.6 6300.09,-308.11 6300.1,-301.11"/>
</g>
<!-- Node98 -->
<g id="node98" class="node">
<title>Node98</title>
<g id="a_node98"><a xlink:href="_space_to_depth_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="11352.5,-218 11352.5,-248 11515.5,-248 11515.5,-218 11352.5,-218"/>
<text text-anchor="start" x="11360.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="11434" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/SpaceToDepth.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node98 -->
<g id="edge125" class="edge">
<title>Node1&#45;&gt;Node98</title>
<path fill="none" stroke="midnightblue" d="M6300.77,-304.18C6930.41,-301.63 11081.74,-283.67 11343,-254 11354.73,-252.67 11367.17,-250.47 11378.97,-248.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.42,-300.68 6290.44,-304.23 6300.45,-307.68 6300.42,-300.68"/>
</g>
<!-- Node101 -->
<g id="node101" class="node">
<title>Node101</title>
<g id="a_node101"><a xlink:href="_stack_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="11653.5,-218 11653.5,-248 11782.5,-248 11782.5,-218 11653.5,-218"/>
<text text-anchor="start" x="11661.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="11718" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Stack.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node101 -->
<g id="edge128" class="edge">
<title>Node1&#45;&gt;Node101</title>
<path fill="none" stroke="midnightblue" d="M6300.31,-304.19C6920.37,-301.73 10980.83,-284.52 11524,-254 11567.27,-251.57 11615.77,-246.57 11653.45,-242.18"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.12,-300.69 6290.14,-304.23 6300.15,-307.69 6300.12,-300.69"/>
</g>
<!-- Node104 -->
<g id="node104" class="node">
<title>Node104</title>
<g id="a_node104"><a xlink:href="_transpose_convolution2d_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4539.5,-218 4539.5,-248 4752.5,-248 4752.5,-218 4539.5,-218"/>
<text text-anchor="start" x="4547.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="4646" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/TransposeConvolution2d.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node104 -->
<g id="edge131" class="edge">
<title>Node1&#45;&gt;Node104</title>
<path fill="none" stroke="midnightblue" d="M6141.99,-303.19C5932.17,-299.37 5343.68,-286.39 4855,-254 4821.72,-251.79 4785.53,-248.61 4752.76,-245.43"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6141.93,-306.69 6151.99,-303.37 6142.05,-299.69 6141.93,-306.69"/>
</g>
<!-- Node106 -->
<g id="node106" class="node">
<title>Node106</title>
<g id="a_node106"><a xlink:href="_splitter_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="11800.5,-218 11800.5,-248 11929.5,-248 11929.5,-218 11800.5,-218"/>
<text text-anchor="start" x="11808.5" y="-236" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="11865" y="-225" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Splitter.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node106 -->
<g id="edge135" class="edge">
<title>Node1&#45;&gt;Node106</title>
<path fill="none" stroke="midnightblue" d="M6300.39,-304.36C6959.46,-303.1 11506.69,-293.06 11791,-254 11800.62,-252.68 11810.78,-250.48 11820.37,-248.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6300.05,-300.86 6290.05,-304.38 6300.06,-307.86 6300.05,-300.86"/>
</g>
<!-- Node4 -->
<g id="node4" class="node">
<title>Node4</title>
<g id="a_node4"><a xlink:href="_ref_batch_mat_mul_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5903.5,-140 5903.5,-170 6124.5,-170 6124.5,-140 5903.5,-140"/>
<text text-anchor="start" x="5911.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="6014" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefBatchMatMulWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node4 -->
<g id="edge3" class="edge">
<title>Node3&#45;&gt;Node4</title>
<path fill="none" stroke="midnightblue" d="M5646.46,-216.03C5653.73,-214.63 5661,-213.26 5668,-212 5768.09,-193.93 5793.61,-192.36 5894,-176 5905.78,-174.08 5918.2,-172.03 5930.41,-170.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5645.71,-212.61 5636.56,-217.96 5647.05,-219.48 5645.71,-212.61"/>
</g>
<!-- Node7 -->
<g id="node7" class="node">
<title>Node7</title>
<g id="a_node7"><a xlink:href="_ref_batch_mat_mul_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5973,-67.5 5973,-97.5 6193,-97.5 6193,-67.5 5973,-67.5"/>
<text text-anchor="start" x="5981" y="-85.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="6083" y="-74.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefBatchMatMulWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node7 -->
<g id="edge8" class="edge">
<title>Node3&#45;&gt;Node7</title>
<path fill="none" stroke="midnightblue" d="M5642.46,-216.12C5651.05,-214.58 5659.7,-213.16 5668,-212 5719.33,-204.86 6097.8,-214.03 6133,-176 6145.68,-162.3 6140.1,-151.26 6133,-134 6126.95,-119.28 6114.3,-106.57 6103.24,-97.59"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5641.63,-212.72 5632.44,-217.99 5642.92,-219.6 5641.63,-212.72"/>
</g>
<!-- Node8 -->
<g id="node8" class="node">
<title>Node8</title>
<g id="a_node8"><a xlink:href="_batch_mat_mul_impl_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5706.5,-140 5706.5,-170 5885.5,-170 5885.5,-140 5706.5,-140"/>
<text text-anchor="start" x="5714.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="5796" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/BatchMatMulImpl.cpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node8 -->
<g id="edge7" class="edge">
<title>Node3&#45;&gt;Node8</title>
<path fill="none" stroke="midnightblue" d="M5620.55,-214.74C5660.89,-201.23 5716.28,-182.69 5753.96,-170.07"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5619.27,-211.48 5610.9,-217.97 5621.49,-218.12 5619.27,-211.48"/>
</g>
<!-- Node5 -->
<g id="node5" class="node">
<title>Node5</title>
<g id="a_node5"><a xlink:href="_ref_workloads_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2330.5,-67.5 2330.5,-97.5 2491.5,-97.5 2491.5,-67.5 2330.5,-67.5"/>
<text text-anchor="start" x="2338.5" y="-85.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="2411" y="-74.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefWorkloads.hpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node5 -->
<g id="edge4" class="edge">
<title>Node4&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M5930.45,-138.42C5918.26,-136.63 5905.83,-135.07 5894,-134 5545.6,-102.62 2981.82,-86.71 2491.81,-83.94"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5930.2,-141.92 5940.61,-139.97 5931.25,-135 5930.2,-141.92"/>
</g>
<!-- Node4&#45;&gt;Node7 -->
<g id="edge6" class="edge">
<title>Node4&#45;&gt;Node7</title>
<path fill="none" stroke="midnightblue" d="M6035.18,-132.36C6046.19,-121.11 6059.34,-107.68 6069.06,-97.75"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6032.46,-130.14 6027.96,-139.73 6037.46,-135.03 6032.46,-130.14"/>
</g>
<!-- Node6 -->
<g id="node6" class="node">
<title>Node6</title>
<g id="a_node6"><a xlink:href="_ref_workload_factory_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2343,-0.5 2343,-30.5 2479,-30.5 2479,-0.5 2343,-0.5"/>
<text text-anchor="start" x="2351" y="-18.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="2411" y="-7.5" font-family="Helvetica,sans-Serif" font-size="10.00">/RefWorkloadFactory.cpp</text>
</a>
</g>
</g>
<!-- Node5&#45;&gt;Node6 -->
<g id="edge5" class="edge">
<title>Node5&#45;&gt;Node6</title>
<path fill="none" stroke="midnightblue" d="M2411,-57.11C2411,-48.15 2411,-38.32 2411,-30.58"/>
<polygon fill="midnightblue" stroke="midnightblue" points="2407.5,-57.4 2411,-67.4 2414.5,-57.4 2407.5,-57.4"/>
</g>
<!-- Node9&#45;&gt;Node5 -->
<g id="edge10" class="edge">
<title>Node9&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M554.79,-214.11C535.68,-205.77 517.3,-193.62 506,-176 495.92,-160.29 492.98,-147.37 506,-134 538.31,-100.83 1971.79,-87.05 2330.36,-84.12"/>
<polygon fill="midnightblue" stroke="midnightblue" points="553.62,-217.42 564.2,-217.92 556.24,-210.93 553.62,-217.42"/>
</g>
<!-- Node10 -->
<g id="node10" class="node">
<title>Node10</title>
<g id="a_node10"><a xlink:href="_ref_convolution2d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="515,-140 515,-170 741,-170 741,-140 515,-140"/>
<text text-anchor="start" x="523" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="628" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefConvolution2dWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node9&#45;&gt;Node10 -->
<g id="edge11" class="edge">
<title>Node9&#45;&gt;Node10</title>
<path fill="none" stroke="midnightblue" d="M628,-207.59C628,-195.26 628,-180.72 628,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="624.5,-207.7 628,-217.7 631.5,-207.71 624.5,-207.7"/>
</g>
<!-- Node11&#45;&gt;Node5 -->
<g id="edge13" class="edge">
<title>Node11&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M1779.93,-214.28C1760.36,-205.97 1741.68,-193.8 1730,-176 1719.76,-160.39 1717.3,-147.68 1730,-134 1770.11,-90.81 2158.89,-84.25 2330.4,-83.47"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1778.68,-217.55 1789.27,-217.95 1781.24,-211.04 1778.68,-217.55"/>
</g>
<!-- Node12 -->
<g id="node12" class="node">
<title>Node12</title>
<g id="a_node12"><a xlink:href="_ref_convolution3d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1739,-140 1739,-170 1965,-170 1965,-140 1739,-140"/>
<text text-anchor="start" x="1747" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="1852" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefConvolution3dWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node12 -->
<g id="edge14" class="edge">
<title>Node11&#45;&gt;Node12</title>
<path fill="none" stroke="midnightblue" d="M1856.75,-207.59C1855.62,-195.26 1854.28,-180.72 1853.31,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1853.28,-208.07 1857.68,-217.7 1860.25,-207.43 1853.28,-208.07"/>
</g>
<!-- Node13&#45;&gt;Node5 -->
<g id="edge16" class="edge">
<title>Node13&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M1153.88,-202.36C1153.34,-180.01 1156.83,-150.48 1176,-134 1219.78,-96.36 2063.06,-86.31 2330.41,-84.07"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1150.39,-202.55 1154.4,-212.35 1157.38,-202.19 1150.39,-202.55"/>
</g>
<!-- Node13&#45;&gt;Node14 -->
<g id="edge17" class="edge">
<title>Node13&#45;&gt;Node14</title>
<path fill="none" stroke="midnightblue" d="M1113.78,-207.49C1095.52,-197.13 1074.57,-185.25 1057.39,-175.51"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1112.07,-210.54 1122.49,-212.43 1115.52,-204.45 1112.07,-210.54"/>
</g>
<!-- Node15&#45;&gt;Node5 -->
<g id="edge19" class="edge">
<title>Node15&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M2464.15,-206.98C2451.22,-198.8 2438.72,-188.51 2430,-176 2413.41,-152.19 2410.68,-117.09 2410.57,-97.69"/>
<polygon fill="midnightblue" stroke="midnightblue" points="2462.74,-210.21 2473.12,-212.31 2466.31,-204.19 2462.74,-210.21"/>
</g>
<!-- Node16 -->
<g id="node16" class="node">
<title>Node16</title>
<g id="a_node16"><a xlink:href="_ref_fully_connected_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2439,-134.5 2439,-175.5 2603,-175.5 2603,-134.5 2439,-134.5"/>
<text text-anchor="start" x="2447" y="-163.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="2447" y="-152.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefFullyConnected</text>
<text text-anchor="middle" x="2521" y="-141.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.cpp</text>
</a>
</g>
</g>
<!-- Node15&#45;&gt;Node16 -->
<g id="edge20" class="edge">
<title>Node15&#45;&gt;Node16</title>
<path fill="none" stroke="midnightblue" d="M2520.39,-202.3C2520.51,-193.3 2520.64,-183.65 2520.74,-175.51"/>
<polygon fill="midnightblue" stroke="midnightblue" points="2516.89,-202.38 2520.26,-212.43 2523.89,-202.48 2516.89,-202.38"/>
</g>
<!-- Node17&#45;&gt;Node5 -->
<g id="edge22" class="edge">
<title>Node17&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M3157.72,-213.42C3138.1,-203.65 3114.88,-190.66 3096,-176 3075.88,-160.38 3079.93,-145.08 3057,-134 2959.32,-86.79 2642.13,-82.05 2491.65,-82.59"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3156.21,-216.58 3166.73,-217.81 3159.28,-210.29 3156.21,-216.58"/>
</g>
<!-- Node18 -->
<g id="node18" class="node">
<title>Node18</title>
<g id="a_node18"><a xlink:href="_ref_gather_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3105,-140 3105,-170 3293,-170 3293,-140 3105,-140"/>
<text text-anchor="start" x="3113" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="3199" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefGatherWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node17&#45;&gt;Node18 -->
<g id="edge23" class="edge">
<title>Node17&#45;&gt;Node18</title>
<path fill="none" stroke="midnightblue" d="M3199,-207.59C3199,-195.26 3199,-180.72 3199,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3195.5,-207.7 3199,-217.7 3202.5,-207.71 3195.5,-207.7"/>
</g>
<!-- Node19&#45;&gt;Node5 -->
<g id="edge25" class="edge">
<title>Node19&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M3768.11,-213.31C3749.04,-203.49 3726.41,-190.48 3708,-176 3687.98,-160.25 3692.14,-144.65 3669,-134 3562.58,-85.03 2752.23,-82.66 2491.52,-83.19"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3766.65,-216.5 3777.15,-217.87 3769.8,-210.24 3766.65,-216.5"/>
</g>
<!-- Node20 -->
<g id="node20" class="node">
<title>Node20</title>
<g id="a_node20"><a xlink:href="_ref_mean_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3717,-140 3717,-170 3899,-170 3899,-140 3717,-140"/>
<text text-anchor="start" x="3725" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="3808" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefMeanWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node19&#45;&gt;Node20 -->
<g id="edge26" class="edge">
<title>Node19&#45;&gt;Node20</title>
<path fill="none" stroke="midnightblue" d="M3808,-207.59C3808,-195.26 3808,-180.72 3808,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3804.5,-207.7 3808,-217.7 3811.5,-207.71 3804.5,-207.7"/>
</g>
<!-- Node21&#45;&gt;Node5 -->
<g id="edge28" class="edge">
<title>Node21&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M2901.69,-213.74C2880.66,-204.14 2855.95,-191.21 2836,-176 2815.98,-160.74 2820.3,-145.68 2798,-134 2746.31,-106.92 2588.97,-93.42 2491.56,-87.48"/>
<polygon fill="midnightblue" stroke="midnightblue" points="2900.51,-217.05 2911.07,-217.91 2903.36,-210.65 2900.51,-217.05"/>
</g>
<!-- Node22 -->
<g id="node22" class="node">
<title>Node22</title>
<g id="a_node22"><a xlink:href="_ref_pooling2d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2845.5,-140 2845.5,-170 3048.5,-170 3048.5,-140 2845.5,-140"/>
<text text-anchor="start" x="2853.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="2947" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefPooling2dWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node21&#45;&gt;Node22 -->
<g id="edge29" class="edge">
<title>Node21&#45;&gt;Node22</title>
<path fill="none" stroke="midnightblue" d="M2947,-207.59C2947,-195.26 2947,-180.72 2947,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="2943.5,-207.7 2947,-217.7 2950.5,-207.71 2943.5,-207.7"/>
</g>
<!-- Node23&#45;&gt;Node5 -->
<g id="edge31" class="edge">
<title>Node23&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M1639.13,-209.21C1655.08,-185.75 1683.38,-150.39 1718,-134 1772.14,-108.37 2159.45,-92.11 2330.33,-86.11"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1636.02,-207.57 1633.44,-217.85 1641.86,-211.42 1636.02,-207.57"/>
</g>
<!-- Node24 -->
<g id="node24" class="node">
<title>Node24</title>
<g id="a_node24"><a xlink:href="_ref_pooling3d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1441.5,-140 1441.5,-170 1644.5,-170 1644.5,-140 1441.5,-140"/>
<text text-anchor="start" x="1449.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="1543" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefPooling3dWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node23&#45;&gt;Node24 -->
<g id="edge32" class="edge">
<title>Node23&#45;&gt;Node24</title>
<path fill="none" stroke="midnightblue" d="M1602.23,-210.89C1588.24,-197.93 1570.7,-181.68 1558.35,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1599.86,-213.47 1609.58,-217.7 1604.62,-208.34 1599.86,-213.47"/>
</g>
<!-- Node25&#45;&gt;Node5 -->
<g id="edge34" class="edge">
<title>Node25&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M1404.28,-207.64C1405.06,-184.75 1410.24,-151.48 1432,-134 1466.81,-106.04 2102.54,-89.98 2330.5,-85.1"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1400.78,-207.9 1404.2,-217.93 1407.78,-207.96 1400.78,-207.9"/>
</g>
<!-- Node26 -->
<g id="node26" class="node">
<title>Node26</title>
<g id="a_node26"><a xlink:href="_ref_quantize_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1185.5,-140 1185.5,-170 1384.5,-170 1384.5,-140 1185.5,-140"/>
<text text-anchor="start" x="1193.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="1285" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefQuantizeWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node25&#45;&gt;Node26 -->
<g id="edge35" class="edge">
<title>Node25&#45;&gt;Node26</title>
<path fill="none" stroke="midnightblue" d="M1374.16,-212.47C1353.21,-199.2 1325.99,-181.96 1307.17,-170.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1372.39,-215.49 1382.71,-217.88 1376.13,-209.58 1372.39,-215.49"/>
</g>
<!-- Node28 -->
<g id="node28" class="node">
<title>Node28</title>
<g id="a_node28"><a xlink:href="_ref_reverse_v2_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="65.5,-140 65.5,-170 274.5,-170 274.5,-140 65.5,-140"/>
<text text-anchor="start" x="73.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="170" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefReverseV2Workload.hpp</text>
</a>
</g>
</g>
<!-- Node27&#45;&gt;Node28 -->
<g id="edge37" class="edge">
<title>Node27&#45;&gt;Node28</title>
<path fill="none" stroke="midnightblue" d="M328.27,-214.39C291.72,-200.9 241.96,-182.55 208.06,-170.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="327.14,-217.71 337.74,-217.88 329.57,-211.14 327.14,-217.71"/>
</g>
<!-- Node29 -->
<g id="node29" class="node">
<title>Node29</title>
<g id="a_node29"><a xlink:href="_ref_reverse_v2_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="0,-67.5 0,-97.5 208,-97.5 208,-67.5 0,-67.5"/>
<text text-anchor="start" x="8" y="-85.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="104" y="-74.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefReverseV2Workload.cpp</text>
</a>
</g>
</g>
<!-- Node27&#45;&gt;Node29 -->
<g id="edge40" class="edge">
<title>Node27&#45;&gt;Node29</title>
<path fill="none" stroke="midnightblue" d="M302.34,-215.95C295.47,-214.57 288.61,-213.23 282,-212 232,-202.71 89.01,-214.69 56,-176 43.88,-161.8 49.08,-151.33 56,-134 61.83,-119.4 74.12,-106.6 84.8,-97.55"/>
<polygon fill="midnightblue" stroke="midnightblue" points="301.88,-219.43 312.38,-218 303.28,-212.57 301.88,-219.43"/>
</g>
<!-- Node30 -->
<g id="node30" class="node">
<title>Node30</title>
<g id="a_node30"><a xlink:href="_reverse_v2_impl_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="292.5,-140 292.5,-170 459.5,-170 459.5,-140 292.5,-140"/>
<text text-anchor="start" x="300.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="376" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/ReverseV2Impl.cpp</text>
</a>
</g>
</g>
<!-- Node27&#45;&gt;Node30 -->
<g id="edge41" class="edge">
<title>Node27&#45;&gt;Node30</title>
<path fill="none" stroke="midnightblue" d="M376,-207.59C376,-195.26 376,-180.72 376,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="372.5,-207.7 376,-217.7 379.5,-207.71 372.5,-207.7"/>
</g>
<!-- Node28&#45;&gt;Node5 -->
<g id="edge38" class="edge">
<title>Node28&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M249.82,-138.32C260.93,-136.6 272.22,-135.08 283,-134 691.29,-93.26 1992.44,-85.2 2330.25,-83.78"/>
<polygon fill="midnightblue" stroke="midnightblue" points="249.01,-134.91 239.69,-139.96 250.12,-141.82 249.01,-134.91"/>
</g>
<!-- Node28&#45;&gt;Node29 -->
<g id="edge39" class="edge">
<title>Node28&#45;&gt;Node29</title>
<path fill="none" stroke="midnightblue" d="M149.75,-132.36C139.21,-121.11 126.64,-107.68 117.34,-97.75"/>
<polygon fill="midnightblue" stroke="midnightblue" points="147.25,-134.83 156.64,-139.73 152.36,-130.04 147.25,-134.83"/>
</g>
<!-- Node31&#45;&gt;Node5 -->
<g id="edge43" class="edge">
<title>Node31&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M2227.54,-213.82C2209.76,-205.3 2192.27,-193.12 2182,-176 2172.4,-159.99 2170.31,-148.55 2182,-134 2200.55,-110.91 2271.99,-97.76 2330.2,-90.7"/>
<polygon fill="midnightblue" stroke="midnightblue" points="2226.27,-217.09 2236.83,-217.95 2229.12,-210.69 2226.27,-217.09"/>
</g>
<!-- Node32 -->
<g id="node32" class="node">
<title>Node32</title>
<g id="a_node32"><a xlink:href="_ref_splitter_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2191.5,-140 2191.5,-170 2382.5,-170 2382.5,-140 2191.5,-140"/>
<text text-anchor="start" x="2199.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="2287" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefSplitterWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node31&#45;&gt;Node32 -->
<g id="edge44" class="edge">
<title>Node31&#45;&gt;Node32</title>
<path fill="none" stroke="midnightblue" d="M2287,-207.59C2287,-195.26 2287,-180.72 2287,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="2283.5,-207.7 2287,-217.7 2290.5,-207.71 2283.5,-207.7"/>
</g>
<!-- Node34 -->
<g id="node34" class="node">
<title>Node34</title>
<g id="a_node34"><a xlink:href="_ref_tile_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4918,-140 4918,-170 5092,-170 5092,-140 4918,-140"/>
<text text-anchor="start" x="4926" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="5005" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefTileWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node33&#45;&gt;Node34 -->
<g id="edge46" class="edge">
<title>Node33&#45;&gt;Node34</title>
<path fill="none" stroke="midnightblue" d="M4998.89,-207.59C5000.35,-195.26 5002.07,-180.72 5003.31,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4995.39,-207.36 4997.69,-217.7 5002.34,-208.19 4995.39,-207.36"/>
</g>
<!-- Node35 -->
<g id="node35" class="node">
<title>Node35</title>
<g id="a_node35"><a xlink:href="_ref_tile_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4975.5,-67.5 4975.5,-97.5 5148.5,-97.5 5148.5,-67.5 4975.5,-67.5"/>
<text text-anchor="start" x="4983.5" y="-85.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="5062" y="-74.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefTileWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node33&#45;&gt;Node35 -->
<g id="edge49" class="edge">
<title>Node33&#45;&gt;Node35</title>
<path fill="none" stroke="midnightblue" d="M5055.46,-213.82C5073.24,-205.3 5090.73,-193.12 5101,-176 5110.6,-159.99 5107.03,-151.67 5101,-134 5096.28,-120.16 5086.06,-107.17 5077.26,-97.83"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5053.88,-210.69 5046.17,-217.95 5056.73,-217.09 5053.88,-210.69"/>
</g>
<!-- Node33&#45;&gt;Node36 -->
<g id="edge50" class="edge">
<title>Node33&#45;&gt;Node36</title>
<path fill="none" stroke="midnightblue" d="M4956.86,-213.52C4928.48,-200.13 4890.68,-182.28 4864.75,-170.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4955.56,-216.78 4966.09,-217.88 4958.55,-210.45 4955.56,-216.78"/>
</g>
<!-- Node34&#45;&gt;Node5 -->
<g id="edge47" class="edge">
<title>Node34&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M4935.77,-138.12C4926.48,-136.46 4917.03,-135.01 4908,-134 4423.65,-79.63 2864.33,-81.81 2491.58,-83.15"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4935.3,-141.59 4945.77,-140 4936.59,-134.71 4935.3,-141.59"/>
</g>
<!-- Node34&#45;&gt;Node35 -->
<g id="edge48" class="edge">
<title>Node34&#45;&gt;Node35</title>
<path fill="none" stroke="midnightblue" d="M5023.02,-131.71C5032.01,-120.6 5042.61,-107.49 5050.48,-97.75"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5020.1,-129.76 5016.53,-139.73 5025.54,-134.16 5020.1,-129.76"/>
</g>
<!-- Node37&#45;&gt;Node5 -->
<g id="edge52" class="edge">
<title>Node37&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M4358.11,-208.12C4339.64,-199.33 4319.73,-188.44 4303,-176 4282.56,-160.8 4287.21,-144.5 4264,-134 4182.29,-97.04 2837.62,-86.15 2491.65,-83.96"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4356.79,-211.36 4367.33,-212.39 4359.73,-205.01 4356.79,-211.36"/>
</g>
<!-- Node38 -->
<g id="node38" class="node">
<title>Node38</title>
<g id="a_node38"><a xlink:href="_ref_transpose_convolution2d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4312.5,-134.5 4312.5,-175.5 4521.5,-175.5 4521.5,-134.5 4312.5,-134.5"/>
<text text-anchor="start" x="4320.5" y="-163.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="4320.5" y="-152.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefTransposeConvolution2d</text>
<text text-anchor="middle" x="4417" y="-141.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.cpp</text>
</a>
</g>
</g>
<!-- Node37&#45;&gt;Node38 -->
<g id="edge53" class="edge">
<title>Node37&#45;&gt;Node38</title>
<path fill="none" stroke="midnightblue" d="M4417,-202.3C4417,-193.3 4417,-183.65 4417,-175.51"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4413.5,-202.43 4417,-212.43 4420.5,-202.43 4413.5,-202.43"/>
</g>
<!-- Node39&#45;&gt;Node5 -->
<g id="edge55" class="edge">
<title>Node39&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M5149.69,-202.72C5141.44,-179.6 5126.28,-148.86 5101,-134 5043.33,-100.11 2934.04,-86.43 2491.81,-83.93"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5146.44,-204.02 5152.92,-212.4 5153.08,-201.81 5146.44,-204.02"/>
</g>
<!-- Node39&#45;&gt;Node40 -->
<g id="edge56" class="edge">
<title>Node39&#45;&gt;Node40</title>
<path fill="none" stroke="midnightblue" d="M5193.71,-206.64C5208,-196.49 5224.2,-184.98 5237.54,-175.51"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5191.68,-203.78 5185.56,-212.43 5195.73,-209.49 5191.68,-203.78"/>
</g>
<!-- Node42 -->
<g id="node42" class="node">
<title>Node42</title>
<g id="a_node42"><a xlink:href="_batch_norm_impl_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6385,-140 6385,-170 6555,-170 6555,-140 6385,-140"/>
<text text-anchor="start" x="6393" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="6470" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/BatchNormImpl.cpp</text>
</a>
</g>
</g>
<!-- Node41&#45;&gt;Node42 -->
<g id="edge58" class="edge">
<title>Node41&#45;&gt;Node42</title>
<path fill="none" stroke="midnightblue" d="M5831.62,-216.05C5839.81,-214.51 5848.07,-213.11 5856,-212 6085.42,-179.82 6146.58,-208.18 6376,-176 6387.15,-174.44 6398.96,-172.31 6410.3,-170.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5830.85,-212.63 5821.7,-217.98 5832.19,-219.5 5830.85,-212.63"/>
</g>
<!-- Node43 -->
<g id="node43" class="node">
<title>Node43</title>
<g id="a_node43"><a xlink:href="_ref_batch_normalization_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6181,-134.5 6181,-175.5 6367,-175.5 6367,-134.5 6181,-134.5"/>
<text text-anchor="start" x="6189" y="-163.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="6189" y="-152.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefBatchNormalization</text>
<text text-anchor="middle" x="6274" y="-141.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.cpp</text>
</a>
</g>
</g>
<!-- Node41&#45;&gt;Node43 -->
<g id="edge59" class="edge">
<title>Node41&#45;&gt;Node43</title>
<path fill="none" stroke="midnightblue" d="M5833.64,-216.03C5841.17,-214.57 5848.73,-213.19 5856,-212 5993.31,-189.5 6029.42,-196.8 6167,-176 6171.58,-175.31 6176.26,-174.57 6180.98,-173.79"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5832.91,-212.6 5823.78,-217.99 5834.27,-219.47 5832.91,-212.6"/>
</g>
<!-- Node45 -->
<g id="node45" class="node">
<title>Node45</title>
<g id="a_node45"><a xlink:href="_batch_to_space_nd_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6761,-140 6761,-170 6935,-170 6935,-140 6761,-140"/>
<text text-anchor="start" x="6769" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="6848" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/BatchToSpaceNd.cpp</text>
</a>
</g>
</g>
<!-- Node44&#45;&gt;Node45 -->
<g id="edge61" class="edge">
<title>Node44&#45;&gt;Node45</title>
<path fill="none" stroke="midnightblue" d="M6023.26,-216.07C6031.89,-214.49 6040.63,-213.08 6049,-212 6359.28,-171.98 6441.72,-216.02 6752,-176 6763.65,-174.5 6775.99,-172.35 6787.81,-170.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6022.36,-212.68 6013.19,-217.98 6023.67,-219.55 6022.36,-212.68"/>
</g>
<!-- Node46 -->
<g id="node46" class="node">
<title>Node46</title>
<g id="a_node46"><a xlink:href="_ref_batch_to_space_nd_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6573,-134.5 6573,-175.5 6743,-175.5 6743,-134.5 6573,-134.5"/>
<text text-anchor="start" x="6581" y="-163.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="6581" y="-152.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefBatchToSpaceNd</text>
<text text-anchor="middle" x="6658" y="-141.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.cpp</text>
</a>
</g>
</g>
<!-- Node44&#45;&gt;Node46 -->
<g id="edge62" class="edge">
<title>Node44&#45;&gt;Node46</title>
<path fill="none" stroke="midnightblue" d="M6024.3,-216.03C6032.6,-214.5 6040.97,-213.11 6049,-212 6276.28,-180.53 6336.79,-207.95 6564,-176 6566.89,-175.59 6569.83,-175.15 6572.79,-174.67"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6023.41,-212.64 6014.24,-217.95 6024.72,-219.51 6023.41,-212.64"/>
</g>
<!-- Node48&#45;&gt;Node12 -->
<g id="edge66" class="edge">
<title>Node48&#45;&gt;Node12</title>
<path fill="none" stroke="midnightblue" d="M2017.44,-214.48C1979.3,-201 1927.28,-182.61 1891.82,-170.07"/>
<polygon fill="midnightblue" stroke="midnightblue" points="2016.72,-217.94 2027.32,-217.97 2019.05,-211.34 2016.72,-217.94"/>
</g>
<!-- Node49 -->
<g id="node49" class="node">
<title>Node49</title>
<g id="a_node49"><a xlink:href="_conv3d_impl_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1983,-140 1983,-170 2135,-170 2135,-140 1983,-140"/>
<text text-anchor="start" x="1991" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="2059" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Conv3dImpl.cpp</text>
</a>
</g>
</g>
<!-- Node48&#45;&gt;Node49 -->
<g id="edge65" class="edge">
<title>Node48&#45;&gt;Node49</title>
<path fill="none" stroke="midnightblue" d="M2064.43,-207.59C2063.13,-195.26 2061.6,-180.72 2060.5,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="2060.97,-208.13 2065.5,-217.7 2067.93,-207.39 2060.97,-208.13"/>
</g>
<!-- Node50&#45;&gt;Node10 -->
<g id="edge69" class="edge">
<title>Node50&#45;&gt;Node10</title>
<path fill="none" stroke="midnightblue" d="M822.07,-215C777.57,-201.47 716.06,-182.77 674.3,-170.07"/>
<polygon fill="midnightblue" stroke="midnightblue" points="821.27,-218.41 831.85,-217.97 823.31,-211.71 821.27,-218.41"/>
</g>
<!-- Node50&#45;&gt;Node14 -->
<g id="edge70" class="edge">
<title>Node50&#45;&gt;Node14</title>
<path fill="none" stroke="midnightblue" d="M913.88,-213.2C935.68,-201.77 963.47,-187.2 985.55,-175.63"/>
<polygon fill="midnightblue" stroke="midnightblue" points="912.17,-210.14 904.93,-217.88 915.42,-216.34 912.17,-210.14"/>
</g>
<!-- Node51 -->
<g id="node51" class="node">
<title>Node51</title>
<g id="a_node51"><a xlink:href="_conv_impl_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="759,-140 759,-170 899,-170 899,-140 759,-140"/>
<text text-anchor="start" x="767" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="829" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/ConvImpl.cpp</text>
</a>
</g>
</g>
<!-- Node50&#45;&gt;Node51 -->
<g id="edge68" class="edge">
<title>Node50&#45;&gt;Node51</title>
<path fill="none" stroke="midnightblue" d="M863.22,-209.07C855.07,-196.44 845.21,-181.15 838.18,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="860.42,-211.2 868.78,-217.7 866.31,-207.4 860.42,-211.2"/>
</g>
<!-- Node53 -->
<g id="node53" class="node">
<title>Node53</title>
<g id="a_node53"><a xlink:href="_dequantize_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6953.5,-140 6953.5,-170 7102.5,-170 7102.5,-140 6953.5,-140"/>
<text text-anchor="start" x="6961.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="7028" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Dequantize.cpp</text>
</a>
</g>
</g>
<!-- Node52&#45;&gt;Node53 -->
<g id="edge72" class="edge">
<title>Node52&#45;&gt;Node53</title>
<path fill="none" stroke="midnightblue" d="M6371.48,-215.92C6379.04,-214.42 6386.67,-213.07 6394,-212 6636.42,-176.74 6701.77,-212.5 6944,-176 6954.08,-174.48 6964.73,-172.36 6974.94,-170.06"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6370.7,-212.51 6361.61,-217.96 6372.12,-219.36 6370.7,-212.51"/>
</g>
<!-- Node52&#45;&gt;Node54 -->
<g id="edge73" class="edge">
<title>Node52&#45;&gt;Node54</title>
<path fill="none" stroke="midnightblue" d="M6371.14,-215.87C6378.81,-214.37 6386.55,-213.03 6394,-212 6710.09,-168.48 6793.9,-211.4 7111,-176 7124.7,-174.47 7139.23,-172.34 7153.19,-170.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6370.21,-212.49 6361.12,-217.94 6371.62,-219.35 6370.21,-212.49"/>
</g>
<!-- Node56 -->
<g id="node56" class="node">
<title>Node56</title>
<g id="a_node56"><a xlink:href="_fill_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7349.5,-140 7349.5,-170 7478.5,-170 7478.5,-140 7349.5,-140"/>
<text text-anchor="start" x="7357.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="7414" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Fill.cpp</text>
</a>
</g>
</g>
<!-- Node55&#45;&gt;Node56 -->
<g id="edge75" class="edge">
<title>Node55&#45;&gt;Node56</title>
<path fill="none" stroke="midnightblue" d="M6559.82,-215.73C6566.59,-214.27 6573.42,-212.98 6580,-212 6914.48,-162.25 7005.93,-228.42 7340,-176 7349.2,-174.56 7358.91,-172.41 7368.15,-170.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6558.97,-212.34 6550,-217.98 6560.52,-219.16 6558.97,-212.34"/>
</g>
<!-- Node55&#45;&gt;Node57 -->
<g id="edge76" class="edge">
<title>Node55&#45;&gt;Node57</title>
<path fill="none" stroke="midnightblue" d="M6559.82,-215.68C6566.58,-214.23 6573.41,-212.95 6580,-212 6979.26,-154.18 7086.65,-225.73 7487,-176 7498.71,-174.55 7511.12,-172.39 7522.97,-170.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6558.96,-212.29 6549.99,-217.92 6560.51,-219.11 6558.96,-212.29"/>
</g>
<!-- Node58&#45;&gt;Node16 -->
<g id="edge79" class="edge">
<title>Node58&#45;&gt;Node16</title>
<path fill="none" stroke="midnightblue" d="M2661.32,-213.96C2633.39,-202.42 2597.17,-187.46 2568.52,-175.63"/>
<polygon fill="midnightblue" stroke="midnightblue" points="2660.24,-217.3 2670.82,-217.88 2662.92,-210.83 2660.24,-217.3"/>
</g>
<!-- Node59 -->
<g id="node59" class="node">
<title>Node59</title>
<g id="a_node59"><a xlink:href="_fully_connected_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2621,-140 2621,-170 2789,-170 2789,-140 2621,-140"/>
<text text-anchor="start" x="2629" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="2705" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/FullyConnected.cpp</text>
</a>
</g>
</g>
<!-- Node58&#45;&gt;Node59 -->
<g id="edge78" class="edge">
<title>Node58&#45;&gt;Node59</title>
<path fill="none" stroke="midnightblue" d="M2705,-207.59C2705,-195.26 2705,-180.72 2705,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="2701.5,-207.7 2705,-217.7 2708.5,-207.71 2701.5,-207.7"/>
</g>
<!-- Node60&#45;&gt;Node18 -->
<g id="edge83" class="edge">
<title>Node60&#45;&gt;Node18</title>
<path fill="none" stroke="midnightblue" d="M3437.79,-215.5C3383.27,-201.92 3306.81,-182.87 3255.23,-170.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3437.15,-218.95 3447.7,-217.97 3438.85,-212.16 3437.15,-218.95"/>
</g>
<!-- Node61 -->
<g id="node61" class="node">
<title>Node61</title>
<g id="a_node61"><a xlink:href="_gather_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3531.5,-140 3531.5,-170 3660.5,-170 3660.5,-140 3531.5,-140"/>
<text text-anchor="start" x="3539.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="3596" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Gather.cpp</text>
</a>
</g>
</g>
<!-- Node60&#45;&gt;Node61 -->
<g id="edge81" class="edge">
<title>Node60&#45;&gt;Node61</title>
<path fill="none" stroke="midnightblue" d="M3529.11,-211.25C3544.88,-198.23 3564.79,-181.78 3578.77,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3526.79,-208.64 3521.3,-217.7 3531.24,-214.03 3526.79,-208.64"/>
</g>
<!-- Node62 -->
<g id="node62" class="node">
<title>Node62</title>
<g id="a_node62"><a xlink:href="_ref_gather_nd_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3311,-140 3311,-170 3513,-170 3513,-140 3311,-140"/>
<text text-anchor="start" x="3319" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="3412" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefGatherNdWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node60&#45;&gt;Node62 -->
<g id="edge82" class="edge">
<title>Node60&#45;&gt;Node62</title>
<path fill="none" stroke="midnightblue" d="M3478.89,-211.25C3463.12,-198.23 3443.21,-181.78 3429.23,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3476.76,-214.03 3486.7,-217.7 3481.21,-208.64 3476.76,-214.03"/>
</g>
<!-- Node64 -->
<g id="node64" class="node">
<title>Node64</title>
<g id="a_node64"><a xlink:href="_instance_norm_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7903.5,-140 7903.5,-170 8064.5,-170 8064.5,-140 7903.5,-140"/>
<text text-anchor="start" x="7911.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="7984" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/InstanceNorm.cpp</text>
</a>
</g>
</g>
<!-- Node63&#45;&gt;Node64 -->
<g id="edge85" class="edge">
<title>Node63&#45;&gt;Node64</title>
<path fill="none" stroke="midnightblue" d="M6768.38,-215.98C6776.63,-214.4 6784.98,-213.01 6793,-212 7278.73,-150.63 7408.27,-237.37 7894,-176 7905.27,-174.58 7917.22,-172.4 7928.59,-170.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6767.52,-212.59 6758.41,-217.99 6768.9,-219.45 6767.52,-212.59"/>
</g>
<!-- Node65 -->
<g id="node65" class="node">
<title>Node65</title>
<g id="a_node65"><a xlink:href="_ref_instance_normalization_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7685,-134.5 7685,-175.5 7885,-175.5 7885,-134.5 7685,-134.5"/>
<text text-anchor="start" x="7693" y="-163.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="7693" y="-152.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefInstanceNormalization</text>
<text text-anchor="middle" x="7785" y="-141.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.cpp</text>
</a>
</g>
</g>
<!-- Node63&#45;&gt;Node65 -->
<g id="edge86" class="edge">
<title>Node63&#45;&gt;Node65</title>
<path fill="none" stroke="midnightblue" d="M6768.74,-215.98C6776.87,-214.42 6785.1,-213.03 6793,-212 7182.47,-161.2 7285.65,-219.55 7676,-176 7678.96,-175.67 7681.97,-175.31 7685,-174.91"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6768.01,-212.56 6758.9,-217.96 6769.39,-219.42 6768.01,-212.56"/>
</g>
<!-- Node66&#45;&gt;Node40 -->
<g id="edge90" class="edge">
<title>Node66&#45;&gt;Node40</title>
<path fill="none" stroke="midnightblue" d="M5332.52,-211.18C5318.97,-200.11 5302.41,-186.57 5289.08,-175.68"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5330.55,-214.09 5340.51,-217.7 5334.98,-208.67 5330.55,-214.09"/>
</g>
<!-- Node67 -->
<g id="node67" class="node">
<title>Node67</title>
<g id="a_node67"><a xlink:href="_lstm_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5362.5,-140 5362.5,-170 5491.5,-170 5491.5,-140 5362.5,-140"/>
<text text-anchor="start" x="5370.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="5427" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Lstm.cpp</text>
</a>
</g>
</g>
<!-- Node66&#45;&gt;Node67 -->
<g id="edge88" class="edge">
<title>Node66&#45;&gt;Node67</title>
<path fill="none" stroke="midnightblue" d="M5377.82,-210.17C5389.48,-197.33 5403.88,-181.47 5414.08,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5375.11,-207.95 5370.98,-217.7 5380.29,-212.65 5375.11,-207.95"/>
</g>
<!-- Node66&#45;&gt;Node68 -->
<g id="edge89" class="edge">
<title>Node66&#45;&gt;Node68</title>
<path fill="none" stroke="midnightblue" d="M5412.19,-214.91C5455.06,-201.39 5514.2,-182.74 5554.37,-170.07"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5410.97,-211.63 5402.48,-217.97 5413.07,-218.3 5410.97,-211.63"/>
</g>
<!-- Node72 -->
<g id="node72" class="node">
<title>Node72</title>
<g id="a_node72"><a xlink:href="_prelu_impl_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="8281,-140 8281,-170 8421,-170 8421,-140 8281,-140"/>
<text text-anchor="start" x="8289" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="8351" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/PreluImpl.cpp</text>
</a>
</g>
</g>
<!-- Node71&#45;&gt;Node72 -->
<g id="edge94" class="edge">
<title>Node71&#45;&gt;Node72</title>
<path fill="none" stroke="midnightblue" d="M7236.52,-215.72C7243.38,-214.25 7250.32,-212.95 7257,-212 7703.87,-148.25 7825.13,-239.75 8272,-176 8281.94,-174.58 8292.45,-172.41 8302.44,-170.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="7235.54,-212.35 7226.56,-217.98 7237.09,-219.18 7235.54,-212.35"/>
</g>
<!-- Node73 -->
<g id="node73" class="node">
<title>Node73</title>
<g id="a_node73"><a xlink:href="_ref_prelu_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="8083,-140 8083,-170 8263,-170 8263,-140 8083,-140"/>
<text text-anchor="start" x="8091" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="8173" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefPreluWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node71&#45;&gt;Node73 -->
<g id="edge95" class="edge">
<title>Node71&#45;&gt;Node73</title>
<path fill="none" stroke="midnightblue" d="M7236.82,-215.71C7243.59,-214.26 7250.42,-212.97 7257,-212 7616.16,-159.18 7712.62,-219.73 8073,-176 8085.22,-174.52 8098.17,-172.37 8110.56,-170.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="7235.97,-212.32 7226.99,-217.95 7237.52,-219.14 7235.97,-212.32"/>
</g>
<!-- Node74&#45;&gt;Node20 -->
<g id="edge98" class="edge">
<title>Node74&#45;&gt;Node20</title>
<path fill="none" stroke="midnightblue" d="M4037.87,-215.42C3985.42,-201.86 3912.07,-182.9 3862.45,-170.07"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4037.18,-218.86 4047.73,-217.97 4038.93,-212.08 4037.18,-218.86"/>
</g>
<!-- Node75 -->
<g id="node75" class="node">
<title>Node75</title>
<g id="a_node75"><a xlink:href="_reduce_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4126.5,-140 4126.5,-170 4255.5,-170 4255.5,-140 4126.5,-140"/>
<text text-anchor="start" x="4134.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="4191" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Reduce.cpp</text>
</a>
</g>
</g>
<!-- Node74&#45;&gt;Node75 -->
<g id="edge97" class="edge">
<title>Node74&#45;&gt;Node75</title>
<path fill="none" stroke="midnightblue" d="M4126.72,-210.89C4141.9,-197.93 4160.93,-181.68 4174.33,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4124.07,-208.55 4118.74,-217.7 4128.62,-213.87 4124.07,-208.55"/>
</g>
<!-- Node76 -->
<g id="node76" class="node">
<title>Node76</title>
<g id="a_node76"><a xlink:href="_ref_reduce_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3917.5,-140 3917.5,-170 4108.5,-170 4108.5,-140 3917.5,-140"/>
<text text-anchor="start" x="3925.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="4013" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefReduceWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node74&#45;&gt;Node76 -->
<g id="edge99" class="edge">
<title>Node74&#45;&gt;Node76</title>
<path fill="none" stroke="midnightblue" d="M4077.28,-210.89C4062.1,-197.93 4043.07,-181.68 4029.67,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4075.38,-213.87 4085.26,-217.7 4079.93,-208.55 4075.38,-213.87"/>
</g>
<!-- Node96 -->
<g id="node96" class="node">
<title>Node96</title>
<g id="a_node96"><a xlink:href="_ref_space_to_batch_nd_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="11058,-134.5 11058,-175.5 11228,-175.5 11228,-134.5 11058,-134.5"/>
<text text-anchor="start" x="11066" y="-163.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="start" x="11066" y="-152.5" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefSpaceToBatchNd</text>
<text text-anchor="middle" x="11143" y="-141.5" font-family="Helvetica,sans-Serif" font-size="10.00">Workload.cpp</text>
</a>
</g>
</g>
<!-- Node95&#45;&gt;Node96 -->
<g id="edge123" class="edge">
<title>Node95&#45;&gt;Node96</title>
<path fill="none" stroke="midnightblue" d="M11219.36,-211.8C11204.06,-200.62 11185.12,-186.78 11169.93,-175.68"/>
<polygon fill="midnightblue" stroke="midnightblue" points="11217.3,-214.63 11227.44,-217.7 11221.43,-208.98 11217.3,-214.63"/>
</g>
<!-- Node97 -->
<g id="node97" class="node">
<title>Node97</title>
<g id="a_node97"><a xlink:href="_space_to_batch_nd_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="10866,-140 10866,-170 11040,-170 11040,-140 10866,-140"/>
<text text-anchor="start" x="10874" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="10953" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/SpaceToBatchNd.cpp</text>
</a>
</g>
</g>
<!-- Node95&#45;&gt;Node97 -->
<g id="edge124" class="edge">
<title>Node95&#45;&gt;Node97</title>
<path fill="none" stroke="midnightblue" d="M11182.87,-215.42C11130.42,-201.86 11057.07,-182.9 11007.45,-170.07"/>
<polygon fill="midnightblue" stroke="midnightblue" points="11182.18,-218.86 11192.73,-217.97 11183.93,-212.08 11182.18,-218.86"/>
</g>
<!-- Node99 -->
<g id="node99" class="node">
<title>Node99</title>
<g id="a_node99"><a xlink:href="_ref_space_to_depth_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="11426,-140 11426,-170 11650,-170 11650,-140 11426,-140"/>
<text text-anchor="start" x="11434" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="11538" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefSpaceToDepthWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node98&#45;&gt;Node99 -->
<g id="edge126" class="edge">
<title>Node98&#45;&gt;Node99</title>
<path fill="none" stroke="midnightblue" d="M11461.9,-211.61C11479.79,-198.54 11502.57,-181.89 11518.53,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="11459.57,-208.98 11453.56,-217.7 11463.7,-214.63 11459.57,-208.98"/>
</g>
<!-- Node100 -->
<g id="node100" class="node">
<title>Node100</title>
<g id="a_node100"><a xlink:href="_space_to_depth_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="11246,-140 11246,-170 11408,-170 11408,-140 11246,-140"/>
<text text-anchor="start" x="11254" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="11327" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/SpaceToDepth.cpp</text>
</a>
</g>
</g>
<!-- Node98&#45;&gt;Node100 -->
<g id="edge127" class="edge">
<title>Node98&#45;&gt;Node100</title>
<path fill="none" stroke="midnightblue" d="M11405.75,-211.93C11387.17,-198.74 11363.33,-181.8 11346.77,-170.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="11403.95,-214.95 11414.12,-217.88 11408,-209.24 11403.95,-214.95"/>
</g>
<!-- Node102 -->
<g id="node102" class="node">
<title>Node102</title>
<g id="a_node102"><a xlink:href="_ref_stack_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="11816,-140 11816,-170 11998,-170 11998,-140 11816,-140"/>
<text text-anchor="start" x="11824" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="11907" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/RefStackWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node101&#45;&gt;Node102 -->
<g id="edge129" class="edge">
<title>Node101&#45;&gt;Node102</title>
<path fill="none" stroke="midnightblue" d="M11762.65,-214.05C11796.1,-200.59 11841.24,-182.44 11872.08,-170.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="11761.08,-210.9 11753.11,-217.88 11763.69,-217.4 11761.08,-210.9"/>
</g>
<!-- Node103 -->
<g id="node103" class="node">
<title>Node103</title>
<g id="a_node103"><a xlink:href="_stack_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="11668.5,-140 11668.5,-170 11797.5,-170 11797.5,-140 11668.5,-140"/>
<text text-anchor="start" x="11676.5" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="11733" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/Stack.cpp</text>
</a>
</g>
</g>
<!-- Node101&#45;&gt;Node103 -->
<g id="edge130" class="edge">
<title>Node101&#45;&gt;Node103</title>
<path fill="none" stroke="midnightblue" d="M11722.82,-207.59C11725.25,-195.26 11728.12,-180.72 11730.19,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="11719.32,-207.22 11720.82,-217.7 11726.19,-208.57 11719.32,-207.22"/>
</g>
<!-- Node104&#45;&gt;Node38 -->
<g id="edge132" class="edge">
<title>Node104&#45;&gt;Node38</title>
<path fill="none" stroke="midnightblue" d="M4594.13,-214.79C4558.96,-203.11 4512.4,-187.66 4475.85,-175.53"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4593.14,-218.14 4603.73,-217.97 4595.34,-211.5 4593.14,-218.14"/>
</g>
<!-- Node105 -->
<g id="node105" class="node">
<title>Node105</title>
<g id="a_node105"><a xlink:href="_transpose_convolution2d_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4540,-140 4540,-170 4752,-170 4752,-140 4540,-140"/>
<text text-anchor="start" x="4548" y="-158" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="4646" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">/workloads/TransposeConvolution2d.cpp</text>
</a>
</g>
</g>
<!-- Node104&#45;&gt;Node105 -->
<g id="edge133" class="edge">
<title>Node104&#45;&gt;Node105</title>
<path fill="none" stroke="midnightblue" d="M4646,-207.59C4646,-195.26 4646,-180.72 4646,-170.23"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4642.5,-207.7 4646,-217.7 4649.5,-207.71 4642.5,-207.7"/>
</g>
</g>
</svg>