aboutsummaryrefslogtreecommitdiff
path: root/23.11/_subgraph_view_8hpp__dep__incl.svg
blob: d3eff4f6daa9a9a5f53c9a22e005e877d592491b (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
<?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: include/armnn/backends/SubgraphView.hpp Pages: 1 -->
<svg width="7771pt" height="508pt"
 viewBox="0.00 0.00 7771.00 508.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 504)">
<title>include/armnn/backends/SubgraphView.hpp</title>
<polygon fill="white" stroke="transparent" points="-4,4 -4,-504 7767,-504 7767,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="1360.5,-469.5 1360.5,-499.5 1495.5,-499.5 1495.5,-469.5 1360.5,-469.5"/>
<text text-anchor="start" x="1368.5" y="-487.5" font-family="Helvetica,sans-Serif" font-size="10.00">include/armnn/backends</text>
<text text-anchor="middle" x="1428" y="-476.5" font-family="Helvetica,sans-Serif" font-size="10.00">/SubgraphView.hpp</text>
</a>
</g>
</g>
<!-- Node2 -->
<g id="node2" class="node">
<title>Node2</title>
<g id="a_node2"><a xlink:href="_i_backend_internal_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3763.5,-335.5 3763.5,-365.5 3898.5,-365.5 3898.5,-335.5 3763.5,-335.5"/>
<text text-anchor="start" x="3771.5" y="-353.5" font-family="Helvetica,sans-Serif" font-size="10.00">include/armnn/backends</text>
<text text-anchor="middle" x="3831" y="-342.5" font-family="Helvetica,sans-Serif" font-size="10.00">/IBackendInternal.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="M1505.97,-479.22C1872.36,-459.09 3419.65,-374.1 3763.23,-355.22"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1505.52,-475.74 1495.73,-479.78 1505.91,-482.73 1505.52,-475.74"/>
</g>
<!-- Node7 -->
<g id="node7" class="node">
<title>Node7</title>
<g id="a_node7"><a xlink:href="_common_test_utils_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="262.5,-67.5 262.5,-97.5 389.5,-97.5 389.5,-67.5 262.5,-67.5"/>
<text text-anchor="start" x="270.5" y="-85.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnnTestUtils</text>
<text text-anchor="middle" x="326" y="-74.5" font-family="Helvetica,sans-Serif" font-size="10.00">/CommonTestUtils.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node7 -->
<g id="edge101" class="edge">
<title>Node1&#45;&gt;Node7</title>
<path fill="none" stroke="midnightblue" d="M1349.78,-480.41C1051.22,-468.09 0,-419.86 0,-351.5 0,-351.5 0,-351.5 0,-215.5 0,-159.48 167.5,-115.95 262.37,-95.78"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1349.95,-483.92 1360.09,-480.83 1350.24,-476.92 1349.95,-483.92"/>
</g>
<!-- Node15 -->
<g id="node15" class="node">
<title>Node15</title>
<g id="a_node15"><a xlink:href="_graph_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1369,-274 1369,-293 1487,-293 1487,-274 1369,-274"/>
<text text-anchor="middle" x="1428" y="-281" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/Graph.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node15 -->
<g id="edge86" class="edge">
<title>Node1&#45;&gt;Node15</title>
<path fill="none" stroke="midnightblue" d="M1428,-458.96C1428,-414.43 1428,-322.25 1428,-293.36"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1424.5,-459.19 1428,-469.19 1431.5,-459.19 1424.5,-459.19"/>
</g>
<!-- Node67 -->
<g id="node67" class="node">
<title>Node67</title>
<g id="a_node67"><a xlink:href="_optimization_views_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4365.5,-402.5 4365.5,-432.5 4500.5,-432.5 4500.5,-402.5 4365.5,-402.5"/>
<text text-anchor="start" x="4373.5" y="-420.5" font-family="Helvetica,sans-Serif" font-size="10.00">include/armnn/backends</text>
<text text-anchor="middle" x="4433" y="-409.5" font-family="Helvetica,sans-Serif" font-size="10.00">/OptimizationViews.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node67 -->
<g id="edge77" class="edge">
<title>Node1&#45;&gt;Node67</title>
<path fill="none" stroke="midnightblue" d="M1505.72,-481.82C1930.51,-472.63 3966.8,-428.58 4365.28,-419.96"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1505.61,-478.32 1495.69,-482.04 1505.76,-485.32 1505.61,-478.32"/>
</g>
<!-- Node71 -->
<g id="node71" class="node">
<title>Node71</title>
<g id="a_node71"><a xlink:href="_network_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="885.5,-341 885.5,-360 1016.5,-360 1016.5,-341 885.5,-341"/>
<text text-anchor="middle" x="951" y="-348" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/Network.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node71 -->
<g id="edge87" class="edge">
<title>Node1&#45;&gt;Node71</title>
<path fill="none" stroke="midnightblue" d="M1367.48,-466.75C1264.7,-438.31 1059.6,-381.55 981.85,-360.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1366.83,-470.2 1377.4,-469.5 1368.7,-463.46 1366.83,-470.2"/>
</g>
<!-- Node73 -->
<g id="node73" class="node">
<title>Node73</title>
<g id="a_node73"><a xlink:href="_subgraph_view_selector_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="321,-341 321,-360 519,-360 519,-341 321,-341"/>
<text text-anchor="middle" x="420" y="-348" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/SubgraphViewSelector.hpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node73 -->
<g id="edge94" class="edge">
<title>Node1&#45;&gt;Node73</title>
<path fill="none" stroke="midnightblue" d="M1350.27,-473.32C1158.09,-448.15 663.24,-383.35 485.11,-360.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1349.93,-476.81 1360.3,-474.63 1350.84,-469.87 1349.93,-476.81"/>
</g>
<!-- Node77 -->
<g id="node77" class="node">
<title>Node77</title>
<g id="a_node77"><a xlink:href="_subgraph_view_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4519,-408 4519,-427 4677,-427 4677,-408 4519,-408"/>
<text text-anchor="middle" x="4598" y="-415" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/SubgraphView.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="M1505.84,-483.78C1923.33,-485.02 3901,-487.86 4510,-433 4524.5,-431.69 4540.21,-429.39 4554.3,-427"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1505.69,-480.28 1495.68,-483.74 1505.67,-487.28 1505.69,-480.28"/>
</g>
<!-- Node3 -->
<g id="node3" class="node">
<title>Node3</title>
<g id="a_node3"><a xlink:href="_dynamic_backend_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6144.5,-268.5 6144.5,-298.5 6279.5,-298.5 6279.5,-268.5 6144.5,-268.5"/>
<text text-anchor="start" x="6152.5" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">include/armnn/backends</text>
<text text-anchor="middle" x="6212" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">/DynamicBackend.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node3 -->
<g id="edge2" class="edge">
<title>Node2&#45;&gt;Node3</title>
<path fill="none" stroke="midnightblue" d="M3908.63,-349.51C4258.27,-349.3 5689.11,-345.55 6135,-299 6138.11,-298.68 6141.29,-298.29 6144.49,-297.86"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3908.6,-346.01 3898.6,-349.52 3908.6,-353.01 3908.6,-346.01"/>
</g>
<!-- Node8 -->
<g id="node8" class="node">
<title>Node8</title>
<g id="a_node8"><a xlink:href="_common_test_utils_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3301,-0.5 3301,-30.5 3427,-30.5 3427,-0.5 3301,-0.5"/>
<text text-anchor="start" x="3309" y="-18.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnnTestUtils</text>
<text text-anchor="middle" x="3364" y="-7.5" font-family="Helvetica,sans-Serif" font-size="10.00">/CommonTestUtils.cpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node8 -->
<g id="edge25" class="edge">
<title>Node2&#45;&gt;Node8</title>
<path fill="none" stroke="midnightblue" d="M3908.94,-349.4C4305.91,-348.72 6093.64,-343.18 6337,-299 6425.1,-283.01 6475.27,-305.09 6527,-232 6552.16,-196.45 6557.22,-165.36 6527,-134 6415.45,-18.22 3863.75,-15.93 3427.24,-16.39"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3908.71,-345.9 3898.72,-349.42 3908.72,-352.9 3908.71,-345.9"/>
</g>
<!-- Node12 -->
<g id="node12" class="node">
<title>Node12</title>
<g id="a_node12"><a xlink:href="_dynamic_backend_utils_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6344.5,-201.5 6344.5,-231.5 6517.5,-231.5 6517.5,-201.5 6344.5,-201.5"/>
<text text-anchor="start" x="6352.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/backendsCommon</text>
<text text-anchor="middle" x="6431" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/DynamicBackendUtils.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node12 -->
<g id="edge26" class="edge">
<title>Node2&#45;&gt;Node12</title>
<path fill="none" stroke="midnightblue" d="M3908.72,-348.99C4314.09,-346.17 6171.8,-331.54 6289,-299 6337.75,-285.47 6387.36,-251.35 6413.06,-231.82"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3908.54,-345.49 3898.57,-349.06 3908.59,-352.49 3908.54,-345.49"/>
</g>
<!-- Node14 -->
<g id="node14" class="node">
<title>Node14</title>
<g id="a_node14"><a xlink:href="_backend_helper_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3098.5,-274 3098.5,-293 3259.5,-293 3259.5,-274 3098.5,-274"/>
<text text-anchor="middle" x="3179" y="-281" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/BackendHelper.cpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node14 -->
<g id="edge15" class="edge">
<title>Node2&#45;&gt;Node14</title>
<path fill="none" stroke="midnightblue" d="M3753.14,-344.24C3644.49,-336.5 3441.32,-320.6 3269,-299 3255.65,-297.33 3241.25,-295.17 3227.96,-293.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3753.14,-347.75 3763.36,-344.96 3753.63,-340.76 3753.14,-347.75"/>
</g>
<!-- Node2&#45;&gt;Node15 -->
<g id="edge16" class="edge">
<title>Node2&#45;&gt;Node15</title>
<path fill="none" stroke="midnightblue" d="M3753.36,-349.64C3401.25,-349.98 1952.06,-348.3 1501,-299 1489.05,-297.69 1476.15,-295.42 1464.57,-293.06"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3753.46,-353.14 3763.46,-349.63 3753.45,-346.14 3753.46,-353.14"/>
</g>
<!-- Node16 -->
<g id="node16" class="node">
<title>Node16</title>
<g id="a_node16"><a xlink:href="_loaded_network_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1185,-274 1185,-293 1351,-293 1351,-274 1185,-274"/>
<text text-anchor="middle" x="1268" y="-281" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/LoadedNetwork.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node16 -->
<g id="edge17" class="edge">
<title>Node2&#45;&gt;Node16</title>
<path fill="none" stroke="midnightblue" d="M3753.25,-349.33C3388.13,-348.34 1841.28,-341.65 1360,-299 1345.02,-297.67 1328.78,-295.4 1314.18,-293.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3753.44,-352.84 3763.45,-349.36 3753.46,-345.84 3753.44,-352.84"/>
</g>
<!-- Node17 -->
<g id="node17" class="node">
<title>Node17</title>
<g id="a_node17"><a xlink:href="_loaded_network_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="845.5,-207 845.5,-226 1010.5,-226 1010.5,-207 845.5,-207"/>
<text text-anchor="middle" x="928" y="-214" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/LoadedNetwork.cpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node17 -->
<g id="edge23" class="edge">
<title>Node2&#45;&gt;Node17</title>
<path fill="none" stroke="midnightblue" d="M3753.27,-349.21C3363.93,-347.57 1640.19,-338.14 1534,-299 1513.55,-291.46 1516.24,-276.08 1496,-268 1397.48,-228.66 1125.37,-244.27 1020,-232 1006.19,-230.39 991.27,-228.23 977.56,-226.06"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3753.3,-352.71 3763.31,-349.25 3753.33,-345.71 3753.3,-352.71"/>
</g>
<!-- Node18 -->
<g id="node18" class="node">
<title>Node18</title>
<g id="a_node18"><a xlink:href="_working_mem_handle_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="979,-274 979,-293 1167,-293 1167,-274 979,-274"/>
<text text-anchor="middle" x="1073" y="-281" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/WorkingMemHandle.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node18 -->
<g id="edge20" class="edge">
<title>Node2&#45;&gt;Node18</title>
<path fill="none" stroke="midnightblue" d="M3753.14,-349.29C3371.53,-348.07 1696.03,-340.4 1176,-299 1159.26,-297.67 1141.09,-295.39 1124.74,-293.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3753.24,-352.79 3763.26,-349.32 3753.27,-345.79 3753.24,-352.79"/>
</g>
<!-- Node20 -->
<g id="node20" class="node">
<title>Node20</title>
<g id="a_node20"><a xlink:href="_network_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="755,-274 755,-293 885,-293 885,-274 755,-274"/>
<text text-anchor="middle" x="820" y="-281" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/Network.cpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node20 -->
<g id="edge24" class="edge">
<title>Node2&#45;&gt;Node20</title>
<path fill="none" stroke="midnightblue" d="M3753.08,-348.96C3353.79,-346.04 1533.97,-331.19 970,-299 942.18,-297.41 911.55,-294.64 885.26,-291.94"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3753.34,-352.46 3763.36,-349.03 3753.39,-345.46 3753.34,-352.46"/>
</g>
<!-- Node21 -->
<g id="node21" class="node">
<title>Node21</title>
<g id="a_node21"><a xlink:href="_i_backend_internal_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3277.5,-268.5 3277.5,-298.5 3450.5,-298.5 3450.5,-268.5 3277.5,-268.5"/>
<text text-anchor="start" x="3285.5" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/backendsCommon</text>
<text text-anchor="middle" x="3364" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">/IBackendInternal.cpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node21 -->
<g id="edge27" class="edge">
<title>Node2&#45;&gt;Node21</title>
<path fill="none" stroke="midnightblue" d="M3752.94,-339.21C3677.83,-329.23 3561.09,-313.51 3460,-299 3456.91,-298.56 3453.77,-298.1 3450.6,-297.64"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3752.89,-342.74 3763.26,-340.58 3753.81,-335.8 3752.89,-342.74"/>
</g>
<!-- Node22 -->
<g id="node22" class="node">
<title>Node22</title>
<g id="a_node22"><a xlink:href="_workload_factory_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3468.5,-268.5 3468.5,-298.5 3641.5,-298.5 3641.5,-268.5 3468.5,-268.5"/>
<text text-anchor="start" x="3476.5" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/backendsCommon</text>
<text text-anchor="middle" x="3555" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">/WorkloadFactory.cpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node22 -->
<g id="edge28" class="edge">
<title>Node2&#45;&gt;Node22</title>
<path fill="none" stroke="midnightblue" d="M3761.44,-333.12C3716.28,-322.48 3658.02,-308.76 3614.92,-298.61"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3760.92,-336.59 3771.45,-335.48 3762.52,-329.78 3760.92,-336.59"/>
</g>
<!-- Node23 -->
<g id="node23" class="node">
<title>Node23</title>
<g id="a_node23"><a xlink:href="_cl_backend_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5960,-274 5960,-293 6126,-293 6126,-274 5960,-274"/>
<text text-anchor="middle" x="6043" y="-281" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/ClBackend.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node23 -->
<g id="edge29" class="edge">
<title>Node2&#45;&gt;Node23</title>
<path fill="none" stroke="midnightblue" d="M3908.59,-349.03C4240.53,-346.81 5542.73,-335.87 5951,-299 5965.98,-297.65 5982.21,-295.36 5996.82,-293"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3908.56,-345.53 3898.59,-349.1 3908.61,-352.53 3908.56,-345.53"/>
</g>
<!-- Node26 -->
<g id="node26" class="node">
<title>Node26</title>
<g id="a_node26"><a xlink:href="_cl_layer_support_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3830.5,-274 3830.5,-293 4019.5,-293 4019.5,-274 3830.5,-274"/>
<text text-anchor="middle" x="3925" y="-281" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/ClLayerSupport.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node26 -->
<g id="edge32" class="edge">
<title>Node2&#45;&gt;Node26</title>
<path fill="none" stroke="midnightblue" d="M3859.72,-329.64C3877.46,-317.37 3899.31,-302.26 3912.7,-293.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3857.63,-326.83 3851.4,-335.4 3861.61,-332.59 3857.63,-326.83"/>
</g>
<!-- Node48 -->
<g id="node48" class="node">
<title>Node48</title>
<g id="a_node48"><a xlink:href="_cl_workload_factory_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5792.5,-268.5 5792.5,-298.5 5941.5,-298.5 5941.5,-268.5 5792.5,-268.5"/>
<text text-anchor="start" x="5800.5" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/ClWorkload</text>
<text text-anchor="middle" x="5867" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">Factory.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node48 -->
<g id="edge55" class="edge">
<title>Node2&#45;&gt;Node48</title>
<path fill="none" stroke="midnightblue" d="M3908.98,-347.01C4233.45,-336.65 5474.35,-297.04 5792.38,-286.88"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3908.62,-343.52 3898.74,-347.34 3908.85,-350.52 3908.62,-343.52"/>
</g>
<!-- Node50 -->
<g id="node50" class="node">
<title>Node50</title>
<g id="a_node50"><a xlink:href="_neon_backend_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6544.5,-274 6544.5,-293 6741.5,-293 6741.5,-274 6544.5,-274"/>
<text text-anchor="middle" x="6643" y="-281" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/neon/NeonBackend.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node50 -->
<g id="edge58" class="edge">
<title>Node2&#45;&gt;Node50</title>
<path fill="none" stroke="midnightblue" d="M3908.87,-349.19C4294.3,-347.48 6000.52,-337.81 6530,-299 6548.35,-297.66 6568.27,-295.37 6586.22,-293.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3908.64,-345.69 3898.66,-349.23 3908.67,-352.69 3908.64,-345.69"/>
</g>
<!-- Node53 -->
<g id="node53" class="node">
<title>Node53</title>
<g id="a_node53"><a xlink:href="_neon_workload_factory_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6759.5,-268.5 6759.5,-298.5 6940.5,-298.5 6940.5,-268.5 6759.5,-268.5"/>
<text text-anchor="start" x="6767.5" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/neon/NeonWorkload</text>
<text text-anchor="middle" x="6850" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">Factory.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node53 -->
<g id="edge61" class="edge">
<title>Node2&#45;&gt;Node53</title>
<path fill="none" stroke="midnightblue" d="M3908.94,-349.51C4313.3,-349.32 6175.6,-345.92 6751,-299 6753.77,-298.77 6756.58,-298.52 6759.42,-298.24"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3908.81,-346 3898.81,-349.51 3908.81,-353 3908.81,-346"/>
</g>
<!-- Node55 -->
<g id="node55" class="node">
<title>Node55</title>
<g id="a_node55"><a xlink:href="_neon_layer_support_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7191,-268.5 7191,-298.5 7353,-298.5 7353,-268.5 7191,-268.5"/>
<text text-anchor="start" x="7199" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/neon/NeonLayer</text>
<text text-anchor="middle" x="7272" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">Support.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node55 -->
<g id="edge64" class="edge">
<title>Node2&#45;&gt;Node55</title>
<path fill="none" stroke="midnightblue" d="M3908.91,-349.35C4344.81,-348.33 6485.23,-341.23 7144,-299 7159.18,-298.03 7175.32,-296.55 7190.85,-294.9"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3908.62,-345.85 3898.63,-349.37 3908.64,-352.85 3908.62,-345.85"/>
</g>
<!-- Node59 -->
<g id="node59" class="node">
<title>Node59</title>
<g id="a_node59"><a xlink:href="_ref_backend_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1543.5,-268.5 1543.5,-298.5 1672.5,-298.5 1672.5,-268.5 1543.5,-268.5"/>
<text text-anchor="start" x="1551.5" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="1608" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">/RefBackend.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node59 -->
<g id="edge69" class="edge">
<title>Node2&#45;&gt;Node59</title>
<path fill="none" stroke="midnightblue" d="M3753.01,-347.22C3404.41,-337.03 1992.15,-295.73 1672.52,-286.39"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3753.16,-350.73 3763.26,-347.52 3753.36,-343.73 3753.16,-350.73"/>
</g>
<!-- Node63 -->
<g id="node63" class="node">
<title>Node63</title>
<g id="a_node63"><a xlink:href="_tosa_ref_backend_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3659.5,-268.5 3659.5,-298.5 3812.5,-298.5 3812.5,-268.5 3659.5,-268.5"/>
<text text-anchor="start" x="3667.5" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/tosaReference</text>
<text text-anchor="middle" x="3736" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">/TosaRefBackend.hpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node63 -->
<g id="edge73" class="edge">
<title>Node2&#45;&gt;Node63</title>
<path fill="none" stroke="midnightblue" d="M3802.11,-329.73C3787.41,-319.68 3769.89,-307.68 3756.57,-298.58"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3800.16,-332.64 3810.39,-335.4 3804.11,-326.86 3800.16,-332.64"/>
</g>
<!-- Node66 -->
<g id="node66" class="node">
<title>Node66</title>
<g id="a_node66"><a xlink:href="_sample_dynamic_backend_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7371.5,-268.5 7371.5,-298.5 7532.5,-298.5 7532.5,-268.5 7371.5,-268.5"/>
<text text-anchor="start" x="7379.5" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/dynamic/sample</text>
<text text-anchor="middle" x="7452" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">/SampleDynamicBackend.cpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node66 -->
<g id="edge76" class="edge">
<title>Node2&#45;&gt;Node66</title>
<path fill="none" stroke="midnightblue" d="M3908.74,-349.07C4394.87,-346.27 7007.71,-329.91 7362,-299 7365,-298.74 7368.04,-298.44 7371.12,-298.1"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3908.64,-345.57 3898.66,-349.13 3908.68,-352.57 3908.64,-345.57"/>
</g>
<!-- Node4 -->
<g id="node4" class="node">
<title>Node4</title>
<g id="a_node4"><a xlink:href="_runtime_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5644.5,-207 5644.5,-226 5775.5,-226 5775.5,-207 5644.5,-207"/>
<text text-anchor="middle" x="5710" y="-214" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/Runtime.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="M6134.5,-268.02C5978.54,-245.88 5936.52,-254.4 5785,-232 5773.85,-230.35 5761.83,-228.2 5750.76,-226.06"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6134.05,-271.49 6144.45,-269.45 6135.05,-264.56 6134.05,-271.49"/>
</g>
<!-- Node11 -->
<g id="node11" class="node">
<title>Node11</title>
<g id="a_node11"><a xlink:href="_dynamic_backend_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6153.5,-134.5 6153.5,-164.5 6326.5,-164.5 6326.5,-134.5 6153.5,-134.5"/>
<text text-anchor="start" x="6161.5" y="-152.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/backendsCommon</text>
<text text-anchor="middle" x="6240" y="-141.5" font-family="Helvetica,sans-Serif" font-size="10.00">/DynamicBackend.cpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node11 -->
<g id="edge10" class="edge">
<title>Node3&#45;&gt;Node11</title>
<path fill="none" stroke="midnightblue" d="M6262.4,-263.75C6276.05,-256.08 6289.2,-245.71 6297,-232 6303.81,-220.03 6302.65,-213.56 6297,-201 6290.16,-185.81 6276.25,-173.34 6263.88,-164.59"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6260.67,-260.7 6253.4,-268.4 6263.89,-266.91 6260.67,-260.7"/>
</g>
<!-- Node3&#45;&gt;Node12 -->
<g id="edge11" class="edge">
<title>Node3&#45;&gt;Node12</title>
<path fill="none" stroke="midnightblue" d="M6269.01,-265.58C6304.58,-255.02 6349.83,-241.59 6383.46,-231.61"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6267.84,-262.28 6259.25,-268.48 6269.83,-268.99 6267.84,-262.28"/>
</g>
<!-- Node5 -->
<g id="node5" class="node">
<title>Node5</title>
<g id="a_node5"><a xlink:href="_runtime_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5825,-140 5825,-159 5955,-159 5955,-140 5825,-140"/>
<text text-anchor="middle" x="5890" y="-147" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/Runtime.cpp</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="M5743.41,-203.44C5779.12,-190.54 5834.83,-170.42 5866.29,-159.06"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5742.12,-200.18 5733.9,-206.87 5744.5,-206.76 5742.12,-200.18"/>
</g>
<!-- Node6 -->
<g id="node6" class="node">
<title>Node6</title>
<g id="a_node6"><a xlink:href="_test_utils_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="664.5,-134.5 664.5,-164.5 771.5,-164.5 771.5,-134.5 664.5,-134.5"/>
<text text-anchor="start" x="672.5" y="-152.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnnTestUtils</text>
<text text-anchor="middle" x="718" y="-141.5" font-family="Helvetica,sans-Serif" font-size="10.00">/TestUtils.hpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node6 -->
<g id="edge5" class="edge">
<title>Node4&#45;&gt;Node6</title>
<path fill="none" stroke="midnightblue" d="M5662.7,-205.01C5653.55,-203.37 5644.01,-201.91 5635,-201 5126.97,-149.71 1273.91,-150.18 771.87,-150.46"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5662.33,-208.51 5672.81,-206.93 5663.64,-201.63 5662.33,-208.51"/>
</g>
<!-- Node6&#45;&gt;Node7 -->
<g id="edge6" class="edge">
<title>Node6&#45;&gt;Node7</title>
<path fill="none" stroke="midnightblue" d="M654.34,-137.94C581.44,-125.86 462.68,-106.16 389.74,-94.07"/>
<polygon fill="midnightblue" stroke="midnightblue" points="653.88,-141.42 664.32,-139.6 655.02,-134.51 653.88,-141.42"/>
</g>
<!-- Node9 -->
<g id="node9" class="node">
<title>Node9</title>
<g id="a_node9"><a xlink:href="_create_workload_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="551.5,-67.5 551.5,-97.5 670.5,-97.5 670.5,-67.5 551.5,-67.5"/>
<text text-anchor="start" x="559.5" y="-85.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnnTestUtils</text>
<text text-anchor="middle" x="611" y="-74.5" font-family="Helvetica,sans-Serif" font-size="10.00">/CreateWorkload.hpp</text>
</a>
</g>
</g>
<!-- Node6&#45;&gt;Node9 -->
<g id="edge8" class="edge">
<title>Node6&#45;&gt;Node9</title>
<path fill="none" stroke="midnightblue" d="M685.92,-129.02C669.27,-118.9 649.31,-106.77 634.17,-97.58"/>
<polygon fill="midnightblue" stroke="midnightblue" points="684.42,-132.2 694.78,-134.4 688.05,-126.21 684.42,-132.2"/>
</g>
<!-- Node10 -->
<g id="node10" class="node">
<title>Node10</title>
<g id="a_node10"><a xlink:href="_test_utils_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="688.5,-67.5 688.5,-97.5 795.5,-97.5 795.5,-67.5 688.5,-67.5"/>
<text text-anchor="start" x="696.5" y="-85.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnnTestUtils</text>
<text text-anchor="middle" x="742" y="-74.5" font-family="Helvetica,sans-Serif" font-size="10.00">/TestUtils.cpp</text>
</a>
</g>
</g>
<!-- Node6&#45;&gt;Node10 -->
<g id="edge9" class="edge">
<title>Node6&#45;&gt;Node10</title>
<path fill="none" stroke="midnightblue" d="M726.68,-124.99C730.07,-115.8 733.85,-105.58 736.8,-97.58"/>
<polygon fill="midnightblue" stroke="midnightblue" points="723.39,-123.8 723.21,-134.4 729.95,-126.23 723.39,-123.8"/>
</g>
<!-- Node7&#45;&gt;Node8 -->
<g id="edge7" class="edge">
<title>Node7&#45;&gt;Node8</title>
<path fill="none" stroke="midnightblue" d="M399.83,-75.64C441.54,-72.56 494.65,-69.01 542,-67 1646.59,-20.07 2996.18,-16.64 3300.89,-16.48"/>
<polygon fill="midnightblue" stroke="midnightblue" points="399.46,-72.16 389.75,-76.39 399.98,-79.14 399.46,-72.16"/>
</g>
<!-- Node12&#45;&gt;Node5 -->
<g id="edge12" class="edge">
<title>Node12&#45;&gt;Node5</title>
<path fill="none" stroke="midnightblue" d="M6334.32,-203.88C6224.84,-190.73 6049.46,-169.66 5955.11,-158.32"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6334.03,-207.37 6344.38,-205.09 6334.87,-200.42 6334.03,-207.37"/>
</g>
<!-- Node12&#45;&gt;Node11 -->
<g id="edge13" class="edge">
<title>Node12&#45;&gt;Node11</title>
<path fill="none" stroke="midnightblue" d="M6379.85,-198.09C6349.01,-187.6 6310.25,-174.41 6281.36,-164.58"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6378.96,-201.49 6389.56,-201.4 6381.22,-194.86 6378.96,-201.49"/>
</g>
<!-- Node13 -->
<g id="node13" class="node">
<title>Node13</title>
<g id="a_node13"><a xlink:href="_dynamic_backend_utils_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6344.5,-134.5 6344.5,-164.5 6517.5,-164.5 6517.5,-134.5 6344.5,-134.5"/>
<text text-anchor="start" x="6352.5" y="-152.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/backendsCommon</text>
<text text-anchor="middle" x="6431" y="-141.5" font-family="Helvetica,sans-Serif" font-size="10.00">/DynamicBackendUtils.cpp</text>
</a>
</g>
</g>
<!-- Node12&#45;&gt;Node13 -->
<g id="edge14" class="edge">
<title>Node12&#45;&gt;Node13</title>
<path fill="none" stroke="midnightblue" d="M6431,-191.11C6431,-182.15 6431,-172.32 6431,-164.58"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6427.5,-191.4 6431,-201.4 6434.5,-191.4 6427.5,-191.4"/>
</g>
<!-- Node16&#45;&gt;Node4 -->
<g id="edge19" class="edge">
<title>Node16&#45;&gt;Node4</title>
<path fill="none" stroke="midnightblue" d="M1323.94,-272.33C1335.8,-270.55 1348.28,-268.97 1360,-268 2306.81,-189.83 4689.68,-326.56 5635,-232 5647.54,-230.75 5661.1,-228.43 5673.19,-226"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1323.04,-268.93 1313.7,-273.93 1324.12,-275.85 1323.04,-268.93"/>
</g>
<!-- Node16&#45;&gt;Node17 -->
<g id="edge18" class="edge">
<title>Node16&#45;&gt;Node17</title>
<path fill="none" stroke="midnightblue" d="M1213.27,-272.04C1146.4,-259.25 1034.54,-237.87 972.63,-226.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1212.72,-275.5 1223.2,-273.94 1214.04,-268.62 1212.72,-275.5"/>
</g>
<!-- Node18&#45;&gt;Node17 -->
<g id="edge21" class="edge">
<title>Node18&#45;&gt;Node17</title>
<path fill="none" stroke="midnightblue" d="M1044.25,-269.61C1015.53,-256.74 972.18,-237.31 947.33,-226.17"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1043.19,-272.97 1053.75,-273.87 1046.05,-266.58 1043.19,-272.97"/>
</g>
<!-- Node19 -->
<g id="node19" class="node">
<title>Node19</title>
<g id="a_node19"><a xlink:href="_working_mem_handle_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="639,-207 639,-226 827,-226 827,-207 639,-207"/>
<text text-anchor="middle" x="733" y="-214" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/WorkingMemHandle.cpp</text>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node19 -->
<g id="edge22" class="edge">
<title>Node18&#45;&gt;Node19</title>
<path fill="none" stroke="midnightblue" d="M1018.27,-272.04C951.4,-259.25 839.54,-237.87 777.63,-226.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1017.72,-275.5 1028.2,-273.94 1019.04,-268.62 1017.72,-275.5"/>
</g>
<!-- Node24 -->
<g id="node24" class="node">
<title>Node24</title>
<g id="a_node24"><a xlink:href="_cl_backend_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5960.5,-207 5960.5,-226 6125.5,-226 6125.5,-207 5960.5,-207"/>
<text text-anchor="middle" x="6043" y="-214" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/ClBackend.cpp</text>
</a>
</g>
</g>
<!-- Node23&#45;&gt;Node24 -->
<g id="edge30" class="edge">
<title>Node23&#45;&gt;Node24</title>
<path fill="none" stroke="midnightblue" d="M6043,-263.54C6043,-251.17 6043,-235.62 6043,-226.13"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6039.5,-263.73 6043,-273.73 6046.5,-263.73 6039.5,-263.73"/>
</g>
<!-- Node25 -->
<g id="node25" class="node">
<title>Node25</title>
<g id="a_node25"><a xlink:href="_cl_registry_initializer_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6144,-201.5 6144,-231.5 6288,-231.5 6288,-201.5 6144,-201.5"/>
<text text-anchor="start" x="6152" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/ClRegistry</text>
<text text-anchor="middle" x="6216" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">Initializer.cpp</text>
</a>
</g>
</g>
<!-- Node23&#45;&gt;Node25 -->
<g id="edge31" class="edge">
<title>Node23&#45;&gt;Node25</title>
<path fill="none" stroke="midnightblue" d="M6075.35,-270.35C6104.67,-259.33 6147.88,-243.09 6178.66,-231.53"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6074.1,-267.07 6065.97,-273.87 6076.57,-273.63 6074.1,-267.07"/>
</g>
<!-- Node26&#45;&gt;Node24 -->
<g id="edge33" class="edge">
<title>Node26&#45;&gt;Node24</title>
<path fill="none" stroke="midnightblue" d="M4029.72,-281.73C4389.44,-278.81 5573.22,-266.74 5952,-232 5966.66,-230.66 5982.53,-228.41 5996.86,-226.07"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4029.55,-278.24 4019.57,-281.82 4029.6,-285.24 4029.55,-278.24"/>
</g>
<!-- Node27 -->
<g id="node27" class="node">
<title>Node27</title>
<g id="a_node27"><a xlink:href="_cl_layer_support_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5438,-207 5438,-226 5626,-226 5626,-207 5438,-207"/>
<text text-anchor="middle" x="5532" y="-214" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/ClLayerSupport.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node27 -->
<g id="edge34" class="edge">
<title>Node26&#45;&gt;Node27</title>
<path fill="none" stroke="midnightblue" d="M4030.13,-282.81C4275.57,-282.68 4905.23,-277.53 5429,-232 5445.37,-230.58 5463.12,-228.33 5479.19,-226.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4029.79,-279.31 4019.79,-282.81 4029.8,-286.31 4029.79,-279.31"/>
</g>
<!-- Node28 -->
<g id="node28" class="node">
<title>Node28</title>
<g id="a_node28"><a xlink:href="_cl_activation_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1899.5,-201.5 1899.5,-231.5 2044.5,-231.5 2044.5,-201.5 1899.5,-201.5"/>
<text text-anchor="start" x="1907.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="1972" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClActivationWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node28 -->
<g id="edge35" class="edge">
<title>Node26&#45;&gt;Node28</title>
<path fill="none" stroke="midnightblue" d="M3863.1,-272.56C3849.59,-270.74 3835.34,-269.07 3822,-268 3038.58,-205.11 2836.19,-308.66 2054,-232 2050.98,-231.7 2047.9,-231.36 2044.8,-230.97"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3862.88,-276.07 3873.26,-273.98 3863.84,-269.13 3862.88,-276.07"/>
</g>
<!-- Node29 -->
<g id="node29" class="node">
<title>Node29</title>
<g id="a_node29"><a xlink:href="_cl_arg_min_max_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2062.5,-201.5 2062.5,-231.5 2213.5,-231.5 2213.5,-201.5 2062.5,-201.5"/>
<text text-anchor="start" x="2070.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="2138" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClArgMinMaxWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node29 -->
<g id="edge36" class="edge">
<title>Node26&#45;&gt;Node29</title>
<path fill="none" stroke="midnightblue" d="M3862.88,-272.56C3849.43,-270.74 3835.27,-269.08 3822,-268 3113.49,-210.35 2930.59,-299.95 2223,-232 2220.02,-231.71 2216.99,-231.38 2213.93,-231.02"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3862.61,-276.05 3873,-273.97 3863.58,-269.12 3862.61,-276.05"/>
</g>
<!-- Node30 -->
<g id="node30" class="node">
<title>Node30</title>
<g id="a_node30"><a xlink:href="_cl_batch_normalization_float_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2231.5,-201.5 2231.5,-231.5 2448.5,-231.5 2448.5,-201.5 2231.5,-201.5"/>
<text text-anchor="start" x="2239.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="2340" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClBatchNormalizationFloatWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node30 -->
<g id="edge37" class="edge">
<title>Node26&#45;&gt;Node30</title>
<path fill="none" stroke="midnightblue" d="M3862.66,-272.57C3849.28,-270.76 3835.19,-269.1 3822,-268 3217.66,-217.65 3062.76,-277.03 2458,-232 2454.91,-231.77 2451.78,-231.52 2448.62,-231.25"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3862.34,-276.06 3872.73,-273.97 3863.31,-269.12 3862.34,-276.06"/>
</g>
<!-- Node31 -->
<g id="node31" class="node">
<title>Node31</title>
<g id="a_node31"><a xlink:href="_cl_comparison_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2467,-201.5 2467,-231.5 2621,-231.5 2621,-201.5 2467,-201.5"/>
<text text-anchor="start" x="2475" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="2544" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClComparisonWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node31 -->
<g id="edge38" class="edge">
<title>Node26&#45;&gt;Node31</title>
<path fill="none" stroke="midnightblue" d="M3862.44,-272.57C3849.12,-270.78 3835.12,-269.12 3822,-268 3293.9,-222.99 3157.44,-284.18 2630,-232 2627.14,-231.72 2624.23,-231.4 2621.29,-231.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3862.08,-276.06 3872.46,-273.97 3863.04,-269.12 3862.08,-276.06"/>
</g>
<!-- Node32 -->
<g id="node32" class="node">
<title>Node32</title>
<g id="a_node32"><a xlink:href="_cl_concat_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2639,-201.5 2639,-231.5 2783,-231.5 2783,-201.5 2639,-201.5"/>
<text text-anchor="start" x="2647" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="2711" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClConcatWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node32 -->
<g id="edge39" class="edge">
<title>Node26&#45;&gt;Node32</title>
<path fill="none" stroke="midnightblue" d="M3862.22,-272.59C3848.96,-270.8 3835.05,-269.14 3822,-268 3365.69,-228.02 3247.48,-280.48 2792,-232 2789.16,-231.7 2786.27,-231.35 2783.35,-230.98"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3861.81,-276.07 3872.19,-273.98 3862.77,-269.14 3861.81,-276.07"/>
</g>
<!-- Node33 -->
<g id="node33" class="node">
<title>Node33</title>
<g id="a_node33"><a xlink:href="_cl_convolution2d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2801,-201.5 2801,-231.5 2967,-231.5 2967,-201.5 2801,-201.5"/>
<text text-anchor="start" x="2809" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="2884" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClConvolution2dWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node33 -->
<g id="edge40" class="edge">
<title>Node26&#45;&gt;Node33</title>
<path fill="none" stroke="midnightblue" d="M3861.39,-272.56C3848.38,-270.8 3834.77,-269.17 3822,-268 3447.22,-233.73 3350.48,-269.36 2976,-232 2973.1,-231.71 2970.16,-231.39 2967.19,-231.05"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3861.27,-276.08 3871.66,-273.98 3862.23,-269.14 3861.27,-276.08"/>
</g>
<!-- Node34 -->
<g id="node34" class="node">
<title>Node34</title>
<g id="a_node34"><a xlink:href="_cl_convolution3d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="2985,-201.5 2985,-231.5 3151,-231.5 3151,-201.5 2985,-201.5"/>
<text text-anchor="start" x="2993" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="3068" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClConvolution3dWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node34 -->
<g id="edge41" class="edge">
<title>Node26&#45;&gt;Node34</title>
<path fill="none" stroke="midnightblue" d="M3860.72,-272.59C3847.92,-270.86 3834.55,-269.22 3822,-268 3529.17,-239.47 3453.61,-262.7 3161,-232 3157.75,-231.66 3154.44,-231.28 3151.1,-230.88"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3860.46,-276.09 3870.85,-273.99 3861.42,-269.15 3860.46,-276.09"/>
</g>
<!-- Node35 -->
<g id="node35" class="node">
<title>Node35</title>
<g id="a_node35"><a xlink:href="_cl_dequantize_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3169.5,-201.5 3169.5,-231.5 3320.5,-231.5 3320.5,-201.5 3169.5,-201.5"/>
<text text-anchor="start" x="3177.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="3245" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClDequantizeWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node35 -->
<g id="edge42" class="edge">
<title>Node26&#45;&gt;Node35</title>
<path fill="none" stroke="midnightblue" d="M3859.25,-272.58C3846.89,-270.9 3834.06,-269.29 3822,-268 3603.99,-244.7 3547.65,-258.46 3330,-232 3327.03,-231.64 3324,-231.25 3320.95,-230.83"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3859.11,-276.09 3869.49,-273.99 3860.07,-269.16 3859.11,-276.09"/>
</g>
<!-- Node36 -->
<g id="node36" class="node">
<title>Node36</title>
<g id="a_node36"><a xlink:href="_cl_fully_connected_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3339,-201.5 3339,-231.5 3509,-231.5 3509,-201.5 3339,-201.5"/>
<text text-anchor="start" x="3347" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="3424" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClFullyConnectedWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node36 -->
<g id="edge43" class="edge">
<title>Node26&#45;&gt;Node36</title>
<path fill="none" stroke="midnightblue" d="M3856.26,-272.61C3844.82,-271.02 3833.08,-269.44 3822,-268 3687.07,-250.52 3652.81,-250.37 3518,-232 3515.05,-231.6 3512.06,-231.18 3509.03,-230.75"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3855.82,-276.08 3866.2,-274 3856.78,-269.15 3855.82,-276.08"/>
</g>
<!-- Node37 -->
<g id="node37" class="node">
<title>Node37</title>
<g id="a_node37"><a xlink:href="_cl_lstm_float_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3527,-201.5 3527,-231.5 3671,-231.5 3671,-201.5 3527,-201.5"/>
<text text-anchor="start" x="3535" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="3599" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClLstmFloatWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node37 -->
<g id="edge44" class="edge">
<title>Node26&#45;&gt;Node37</title>
<path fill="none" stroke="midnightblue" d="M3872.14,-271.96C3817.04,-260.98 3730.41,-243.7 3669.51,-231.56"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3871.55,-275.41 3882.05,-273.94 3872.92,-268.55 3871.55,-275.41"/>
</g>
<!-- Node38 -->
<g id="node38" class="node">
<title>Node38</title>
<g id="a_node38"><a xlink:href="_cl_maximum_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3689.5,-201.5 3689.5,-231.5 3834.5,-231.5 3834.5,-201.5 3689.5,-201.5"/>
<text text-anchor="start" x="3697.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="3762" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClMaximumWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node38 -->
<g id="edge45" class="edge">
<title>Node26&#45;&gt;Node38</title>
<path fill="none" stroke="midnightblue" d="M3893.8,-270.06C3866.19,-259.05 3825.93,-242.99 3797.18,-231.53"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3892.77,-273.42 3903.35,-273.87 3895.36,-266.91 3892.77,-273.42"/>
</g>
<!-- Node39 -->
<g id="node39" class="node">
<title>Node39</title>
<g id="a_node39"><a xlink:href="_cl_minimum_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="3853,-201.5 3853,-231.5 3997,-231.5 3997,-201.5 3853,-201.5"/>
<text text-anchor="start" x="3861" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="3925" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClMinimumWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node39 -->
<g id="edge46" class="edge">
<title>Node26&#45;&gt;Node39</title>
<path fill="none" stroke="midnightblue" d="M3925,-263.41C3925,-253.22 3925,-240.9 3925,-231.59"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3921.5,-263.73 3925,-273.73 3928.5,-263.73 3921.5,-263.73"/>
</g>
<!-- Node40 -->
<g id="node40" class="node">
<title>Node40</title>
<g id="a_node40"><a xlink:href="_cl_normalization_float_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4015.5,-201.5 4015.5,-231.5 4204.5,-231.5 4204.5,-201.5 4015.5,-201.5"/>
<text text-anchor="start" x="4023.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="4110" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClNormalizationFloatWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node40 -->
<g id="edge47" class="edge">
<title>Node26&#45;&gt;Node40</title>
<path fill="none" stroke="midnightblue" d="M3959.18,-270.49C3990.55,-259.47 4037.02,-243.14 4070.07,-231.53"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3957.84,-267.25 3949.57,-273.87 3960.16,-273.86 3957.84,-267.25"/>
</g>
<!-- Node41 -->
<g id="node41" class="node">
<title>Node41</title>
<g id="a_node41"><a xlink:href="_cl_pooling2d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4223,-201.5 4223,-231.5 4367,-231.5 4367,-201.5 4223,-201.5"/>
<text text-anchor="start" x="4231" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="4295" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClPooling2dWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node41 -->
<g id="edge48" class="edge">
<title>Node26&#45;&gt;Node41</title>
<path fill="none" stroke="midnightblue" d="M3984.25,-272.22C4042.68,-262.07 4134.51,-246.06 4214,-232 4216.81,-231.5 4219.68,-230.99 4222.58,-230.48"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3983.35,-268.82 3974.1,-273.98 3984.55,-275.72 3983.35,-268.82"/>
</g>
<!-- Node42 -->
<g id="node42" class="node">
<title>Node42</title>
<g id="a_node42"><a xlink:href="_cl_pooling3d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4385,-201.5 4385,-231.5 4529,-231.5 4529,-201.5 4385,-201.5"/>
<text text-anchor="start" x="4393" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="4457" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClPooling3dWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node42 -->
<g id="edge49" class="edge">
<title>Node26&#45;&gt;Node42</title>
<path fill="none" stroke="midnightblue" d="M4027.32,-272.98C4118.89,-263.99 4256.7,-249.34 4376,-232 4378.83,-231.59 4381.71,-231.15 4384.61,-230.7"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4026.83,-269.51 4017.22,-273.96 4027.51,-276.47 4026.83,-269.51"/>
</g>
<!-- Node43 -->
<g id="node43" class="node">
<title>Node43</title>
<g id="a_node43"><a xlink:href="_cl_prelu_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4547,-201.5 4547,-231.5 4691,-231.5 4691,-201.5 4547,-201.5"/>
<text text-anchor="start" x="4555" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="4619" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClPreluWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node43 -->
<g id="edge50" class="edge">
<title>Node26&#45;&gt;Node43</title>
<path fill="none" stroke="midnightblue" d="M4029.65,-276.91C4151.94,-269.68 4360.21,-255.18 4538,-232 4540.83,-231.63 4543.72,-231.23 4546.63,-230.81"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4029.32,-273.42 4019.54,-277.5 4029.73,-280.41 4029.32,-273.42"/>
</g>
<!-- Node44 -->
<g id="node44" class="node">
<title>Node44</title>
<g id="a_node44"><a xlink:href="_cl_quantize_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4709,-201.5 4709,-231.5 4853,-231.5 4853,-201.5 4709,-201.5"/>
<text text-anchor="start" x="4717" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="4781" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClQuantizeWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node44 -->
<g id="edge51" class="edge">
<title>Node26&#45;&gt;Node44</title>
<path fill="none" stroke="midnightblue" d="M4029.64,-279.4C4178.87,-274.14 4461.22,-261.06 4700,-232 4702.84,-231.65 4705.72,-231.28 4708.64,-230.87"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4029.44,-275.91 4019.56,-279.75 4029.68,-282.9 4029.44,-275.91"/>
</g>
<!-- Node45 -->
<g id="node45" class="node">
<title>Node45</title>
<g id="a_node45"><a xlink:href="_cl_stack_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="4871,-201.5 4871,-231.5 5015,-231.5 5015,-201.5 4871,-201.5"/>
<text text-anchor="start" x="4879" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="4943" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClStackWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node45 -->
<g id="edge52" class="edge">
<title>Node26&#45;&gt;Node45</title>
<path fill="none" stroke="midnightblue" d="M4029.91,-281.06C4203.53,-277.73 4561.33,-266.88 4862,-232 4864.84,-231.67 4867.73,-231.3 4870.64,-230.91"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4029.69,-277.56 4019.75,-281.25 4029.82,-284.56 4029.69,-277.56"/>
</g>
<!-- Node46 -->
<g id="node46" class="node">
<title>Node46</title>
<g id="a_node46"><a xlink:href="_cl_strided_slice_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5033.5,-201.5 5033.5,-231.5 5186.5,-231.5 5186.5,-201.5 5033.5,-201.5"/>
<text text-anchor="start" x="5041.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="5110" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClStridedSliceWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node46 -->
<g id="edge53" class="edge">
<title>Node26&#45;&gt;Node46</title>
<path fill="none" stroke="midnightblue" d="M4030.03,-281.9C4225.99,-279.84 4660.4,-270.86 5024,-232 5027.01,-231.68 5030.08,-231.32 5033.17,-230.93"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4029.71,-278.4 4019.74,-282 4029.78,-285.4 4029.71,-278.4"/>
</g>
<!-- Node47 -->
<g id="node47" class="node">
<title>Node47</title>
<g id="a_node47"><a xlink:href="_cl_transpose_convolution2d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5204.5,-201.5 5204.5,-231.5 5419.5,-231.5 5419.5,-201.5 5204.5,-201.5"/>
<text text-anchor="start" x="5212.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/workloads</text>
<text text-anchor="middle" x="5312" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ClTransposeConvolution2dWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node26&#45;&gt;Node47 -->
<g id="edge54" class="edge">
<title>Node26&#45;&gt;Node47</title>
<path fill="none" stroke="midnightblue" d="M4029.77,-281.34C4247.39,-278.26 4764.05,-267.51 5196,-232 5198.73,-231.78 5201.5,-231.53 5204.28,-231.28"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4029.59,-277.84 4019.64,-281.48 4029.69,-284.84 4029.59,-277.84"/>
</g>
<!-- Node48&#45;&gt;Node24 -->
<g id="edge56" class="edge">
<title>Node48&#45;&gt;Node24</title>
<path fill="none" stroke="midnightblue" d="M5914.97,-264.78C5949.1,-252.18 5993.43,-235.81 6019.97,-226.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5913.36,-261.65 5905.19,-268.4 5915.78,-268.21 5913.36,-261.65"/>
</g>
<!-- Node49 -->
<g id="node49" class="node">
<title>Node49</title>
<g id="a_node49"><a xlink:href="_cl_workload_factory_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="5793.5,-201.5 5793.5,-231.5 5942.5,-231.5 5942.5,-201.5 5793.5,-201.5"/>
<text text-anchor="start" x="5801.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/cl/ClWorkload</text>
<text text-anchor="middle" x="5868" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">Factory.cpp</text>
</a>
</g>
</g>
<!-- Node48&#45;&gt;Node49 -->
<g id="edge57" class="edge">
<title>Node48&#45;&gt;Node49</title>
<path fill="none" stroke="midnightblue" d="M5867.38,-258.11C5867.51,-249.15 5867.66,-239.32 5867.78,-231.58"/>
<polygon fill="midnightblue" stroke="midnightblue" points="5863.87,-258.34 5867.22,-268.4 5870.87,-258.45 5863.87,-258.34"/>
</g>
<!-- Node51 -->
<g id="node51" class="node">
<title>Node51</title>
<g id="a_node51"><a xlink:href="_neon_backend_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6967.5,-207 6967.5,-226 7164.5,-226 7164.5,-207 6967.5,-207"/>
<text text-anchor="middle" x="7066" y="-214" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/neon/NeonBackend.cpp</text>
</a>
</g>
</g>
<!-- Node50&#45;&gt;Node51 -->
<g id="edge59" class="edge">
<title>Node50&#45;&gt;Node51</title>
<path fill="none" stroke="midnightblue" d="M6708.8,-272.39C6791.71,-259.65 6932.74,-237.98 7010.48,-226.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6708.09,-268.96 6698.73,-273.94 6709.15,-275.88 6708.09,-268.96"/>
</g>
<!-- Node52 -->
<g id="node52" class="node">
<title>Node52</title>
<g id="a_node52"><a xlink:href="_neon_registry_initializer_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6574,-201.5 6574,-231.5 6750,-231.5 6750,-201.5 6574,-201.5"/>
<text text-anchor="start" x="6582" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/neon/NeonRegistry</text>
<text text-anchor="middle" x="6662" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">Initializer.cpp</text>
</a>
</g>
</g>
<!-- Node50&#45;&gt;Node52 -->
<g id="edge60" class="edge">
<title>Node50&#45;&gt;Node52</title>
<path fill="none" stroke="midnightblue" d="M6648.39,-264.06C6651.4,-253.75 6655.1,-241.1 6657.88,-231.59"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6645.01,-263.15 6645.56,-273.73 6651.73,-265.12 6645.01,-263.15"/>
</g>
<!-- Node53&#45;&gt;Node51 -->
<g id="edge62" class="edge">
<title>Node53&#45;&gt;Node51</title>
<path fill="none" stroke="midnightblue" d="M6906.19,-265.59C6948.38,-252.9 7004.38,-236.04 7037.66,-226.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6905.17,-262.24 6896.6,-268.48 6907.19,-268.95 6905.17,-262.24"/>
</g>
<!-- Node54 -->
<g id="node54" class="node">
<title>Node54</title>
<g id="a_node54"><a xlink:href="_neon_workload_factory_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6768.5,-201.5 6768.5,-231.5 6949.5,-231.5 6949.5,-201.5 6768.5,-201.5"/>
<text text-anchor="start" x="6776.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/neon/NeonWorkload</text>
<text text-anchor="middle" x="6859" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">Factory.cpp</text>
</a>
</g>
</g>
<!-- Node53&#45;&gt;Node54 -->
<g id="edge63" class="edge">
<title>Node53&#45;&gt;Node54</title>
<path fill="none" stroke="midnightblue" d="M6853.34,-258.4C6854.59,-249.37 6855.97,-239.41 6857.05,-231.58"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6849.86,-258.01 6851.95,-268.4 6856.79,-258.97 6849.86,-258.01"/>
</g>
<!-- Node55&#45;&gt;Node51 -->
<g id="edge65" class="edge">
<title>Node55&#45;&gt;Node51</title>
<path fill="none" stroke="midnightblue" d="M7217.9,-265.43C7177.73,-252.75 7124.63,-236 7093.03,-226.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="7216.96,-268.8 7227.55,-268.48 7219.07,-262.13 7216.96,-268.8"/>
</g>
<!-- Node56 -->
<g id="node56" class="node">
<title>Node56</title>
<g id="a_node56"><a xlink:href="_neon_layer_support_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7183,-201.5 7183,-231.5 7345,-231.5 7345,-201.5 7183,-201.5"/>
<text text-anchor="start" x="7191" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/neon/NeonLayer</text>
<text text-anchor="middle" x="7264" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">Support.cpp</text>
</a>
</g>
</g>
<!-- Node55&#45;&gt;Node56 -->
<g id="edge66" class="edge">
<title>Node55&#45;&gt;Node56</title>
<path fill="none" stroke="midnightblue" d="M7269.03,-258.4C7267.92,-249.37 7266.7,-239.41 7265.73,-231.58"/>
<polygon fill="midnightblue" stroke="midnightblue" points="7265.57,-258.9 7270.26,-268.4 7272.52,-258.04 7265.57,-258.9"/>
</g>
<!-- Node57 -->
<g id="node57" class="node">
<title>Node57</title>
<g id="a_node57"><a xlink:href="_neon_depthwise_convolution_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7363.5,-201.5 7363.5,-231.5 7584.5,-231.5 7584.5,-201.5 7363.5,-201.5"/>
<text text-anchor="start" x="7371.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/neon/workloads</text>
<text text-anchor="middle" x="7474" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/NeonDepthwiseConvolutionWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node55&#45;&gt;Node57 -->
<g id="edge67" class="edge">
<title>Node55&#45;&gt;Node57</title>
<path fill="none" stroke="midnightblue" d="M7325.68,-265.23C7358.35,-254.71 7399.57,-241.45 7430.25,-231.58"/>
<polygon fill="midnightblue" stroke="midnightblue" points="7324.28,-262 7315.83,-268.4 7326.42,-268.66 7324.28,-262"/>
</g>
<!-- Node58 -->
<g id="node58" class="node">
<title>Node58</title>
<g id="a_node58"><a xlink:href="_neon_pooling3d_workload_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="7603,-201.5 7603,-231.5 7763,-231.5 7763,-201.5 7603,-201.5"/>
<text text-anchor="start" x="7611" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/neon/workloads</text>
<text text-anchor="middle" x="7683" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/NeonPooling3dWorkload.cpp</text>
</a>
</g>
</g>
<!-- Node55&#45;&gt;Node58 -->
<g id="edge68" class="edge">
<title>Node55&#45;&gt;Node58</title>
<path fill="none" stroke="midnightblue" d="M7363.33,-267.95C7467.27,-251.6 7494.5,-247.86 7594,-232 7596.94,-231.53 7599.93,-231.05 7602.95,-230.57"/>
<polygon fill="midnightblue" stroke="midnightblue" points="7362.7,-264.51 7353.36,-269.52 7363.79,-271.42 7362.7,-264.51"/>
</g>
<!-- Node60 -->
<g id="node60" class="node">
<title>Node60</title>
<g id="a_node60"><a xlink:href="_ref_dynamic_backend_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1189.5,-201.5 1189.5,-231.5 1380.5,-231.5 1380.5,-201.5 1189.5,-201.5"/>
<text text-anchor="start" x="1197.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/dynamic</text>
<text text-anchor="middle" x="1285" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/reference/RefDynamicBackend.cpp</text>
</a>
</g>
</g>
<!-- Node59&#45;&gt;Node60 -->
<g id="edge70" class="edge">
<title>Node59&#45;&gt;Node60</title>
<path fill="none" stroke="midnightblue" d="M1533.58,-267.52C1479.76,-256.69 1407.52,-242.16 1354.79,-231.54"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1532.92,-270.96 1543.41,-269.5 1534.3,-264.1 1532.92,-270.96"/>
</g>
<!-- Node61 -->
<g id="node61" class="node">
<title>Node61</title>
<g id="a_node61"><a xlink:href="_ref_backend_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1398.5,-201.5 1398.5,-231.5 1527.5,-231.5 1527.5,-201.5 1398.5,-201.5"/>
<text text-anchor="start" x="1406.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="1463" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/RefBackend.cpp</text>
</a>
</g>
</g>
<!-- Node59&#45;&gt;Node61 -->
<g id="edge71" class="edge">
<title>Node59&#45;&gt;Node61</title>
<path fill="none" stroke="midnightblue" d="M1567.33,-264.27C1544.24,-253.92 1515.76,-241.15 1494.4,-231.58"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1565.98,-267.5 1576.54,-268.4 1568.84,-261.11 1565.98,-267.5"/>
</g>
<!-- Node62 -->
<g id="node62" class="node">
<title>Node62</title>
<g id="a_node62"><a xlink:href="_ref_registry_initializer_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1029,-201.5 1029,-231.5 1171,-231.5 1171,-201.5 1029,-201.5"/>
<text text-anchor="start" x="1037" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/reference</text>
<text text-anchor="middle" x="1100" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/RefRegistryInitializer.cpp</text>
</a>
</g>
</g>
<!-- Node59&#45;&gt;Node62 -->
<g id="edge72" class="edge">
<title>Node59&#45;&gt;Node62</title>
<path fill="none" stroke="midnightblue" d="M1533.44,-268.65C1531.95,-268.43 1530.47,-268.21 1529,-268 1374.64,-245.91 1334.39,-253.92 1180,-232 1177.07,-231.58 1174.07,-231.14 1171.05,-230.67"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1532.98,-272.12 1543.4,-270.21 1534.06,-265.21 1532.98,-272.12"/>
</g>
<!-- Node64 -->
<g id="node64" class="node">
<title>Node64</title>
<g id="a_node64"><a xlink:href="_tosa_ref_backend_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1728.5,-201.5 1728.5,-231.5 1881.5,-231.5 1881.5,-201.5 1728.5,-201.5"/>
<text text-anchor="start" x="1736.5" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/tosaReference</text>
<text text-anchor="middle" x="1805" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/TosaRefBackend.cpp</text>
</a>
</g>
</g>
<!-- Node63&#45;&gt;Node64 -->
<g id="edge74" class="edge">
<title>Node63&#45;&gt;Node64</title>
<path fill="none" stroke="midnightblue" d="M3649.1,-267.92C2870.38,-194.96 2666.62,-304.92 1891,-232 1887.99,-231.72 1884.92,-231.39 1881.82,-231.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3648.87,-271.41 3659.16,-268.87 3649.53,-264.44 3648.87,-271.41"/>
</g>
<!-- Node65 -->
<g id="node65" class="node">
<title>Node65</title>
<g id="a_node65"><a xlink:href="_tosa_ref_registry_initializer_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="1546,-201.5 1546,-231.5 1710,-231.5 1710,-201.5 1546,-201.5"/>
<text text-anchor="start" x="1554" y="-219.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/tosaReference</text>
<text text-anchor="middle" x="1628" y="-208.5" font-family="Helvetica,sans-Serif" font-size="10.00">/TosaRefRegistryInitializer.cpp</text>
</a>
</g>
</g>
<!-- Node63&#45;&gt;Node65 -->
<g id="edge75" class="edge">
<title>Node63&#45;&gt;Node65</title>
<path fill="none" stroke="midnightblue" d="M3649.07,-267.92C2794.22,-188.5 2571.13,-307.46 1719,-232 1716.13,-231.75 1713.22,-231.46 1710.28,-231.14"/>
<polygon fill="midnightblue" stroke="midnightblue" points="3648.88,-271.41 3659.16,-268.86 3649.53,-264.44 3648.88,-271.41"/>
</g>
<!-- Node67&#45;&gt;Node2 -->
<g id="edge78" class="edge">
<title>Node67&#45;&gt;Node2</title>
<path fill="none" stroke="midnightblue" d="M4355.28,-408.11C4236.39,-395.27 4011.31,-370.97 3898.72,-358.81"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4355.09,-411.61 4365.4,-409.2 4355.84,-404.65 4355.09,-411.61"/>
</g>
<!-- Node67&#45;&gt;Node66 -->
<g id="edge85" class="edge">
<title>Node67&#45;&gt;Node66</title>
<path fill="none" stroke="midnightblue" d="M4510.61,-402.11C4987.42,-355.45 6135.51,-390.01 6595,-366 6936.72,-348.15 7022.42,-341.13 7362,-299 7364.98,-298.63 7368.02,-298.23 7371.09,-297.82"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4510.11,-398.64 4500.51,-403.12 4510.81,-405.61 4510.11,-398.64"/>
</g>
<!-- Node68 -->
<g id="node68" class="node">
<title>Node68</title>
<g id="a_node68"><a xlink:href="_arm_compute_subgraph_utils_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6221.5,-335.5 6221.5,-365.5 6394.5,-365.5 6394.5,-335.5 6221.5,-335.5"/>
<text text-anchor="start" x="6229.5" y="-353.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/aclCommon</text>
<text text-anchor="middle" x="6308" y="-342.5" font-family="Helvetica,sans-Serif" font-size="10.00">/ArmComputeSubgraphUtils.hpp</text>
</a>
</g>
</g>
<!-- Node67&#45;&gt;Node68 -->
<g id="edge79" class="edge">
<title>Node67&#45;&gt;Node68</title>
<path fill="none" stroke="midnightblue" d="M4510.63,-402.1C4867.91,-365.48 5913,-354.6 6221.41,-352.12"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4510.1,-398.63 4500.52,-403.16 4510.83,-405.6 4510.1,-398.63"/>
</g>
<!-- Node70 -->
<g id="node70" class="node">
<title>Node70</title>
<g id="a_node70"><a xlink:href="_optimization_views_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6412.5,-335.5 6412.5,-365.5 6585.5,-365.5 6585.5,-335.5 6412.5,-335.5"/>
<text text-anchor="start" x="6420.5" y="-353.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/backendsCommon</text>
<text text-anchor="middle" x="6499" y="-342.5" font-family="Helvetica,sans-Serif" font-size="10.00">/OptimizationViews.cpp</text>
</a>
</g>
</g>
<!-- Node67&#45;&gt;Node70 -->
<g id="edge84" class="edge">
<title>Node67&#45;&gt;Node70</title>
<path fill="none" stroke="midnightblue" d="M4510.72,-402.08C5349.27,-316.77 5568.51,-437.39 6404,-366 6406.74,-365.77 6409.53,-365.5 6412.34,-365.21"/>
<polygon fill="midnightblue" stroke="midnightblue" points="4510.1,-398.63 4500.51,-403.13 4510.82,-405.59 4510.1,-398.63"/>
</g>
<!-- Node68&#45;&gt;Node24 -->
<g id="edge80" class="edge">
<title>Node68&#45;&gt;Node24</title>
<path fill="none" stroke="midnightblue" d="M6308.89,-325.02C6308.17,-306.82 6304.07,-282.67 6289,-268 6281.9,-261.09 6160.89,-238.54 6091.29,-226.04"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6305.39,-325.23 6308.98,-335.2 6312.39,-325.17 6305.39,-325.23"/>
</g>
<!-- Node68&#45;&gt;Node51 -->
<g id="edge83" class="edge">
<title>Node68&#45;&gt;Node51</title>
<path fill="none" stroke="midnightblue" d="M6404.69,-335.36C6502.66,-330.68 7116.86,-327.49 7144,-299 7169.4,-272.34 7115.43,-240.88 7084.96,-226.05"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6404.31,-331.87 6394.56,-336.01 6404.76,-338.86 6404.31,-331.87"/>
</g>
<!-- Node69 -->
<g id="node69" class="node">
<title>Node69</title>
<g id="a_node69"><a xlink:href="_neon_backend_optimization_utils_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="6959,-268.5 6959,-298.5 7135,-298.5 7135,-268.5 6959,-268.5"/>
<text text-anchor="start" x="6967" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/backends/neon/NeonBackend</text>
<text text-anchor="middle" x="7047" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">OptimizationUtils.hpp</text>
</a>
</g>
</g>
<!-- Node68&#45;&gt;Node69 -->
<g id="edge81" class="edge">
<title>Node68&#45;&gt;Node69</title>
<path fill="none" stroke="midnightblue" d="M6404.76,-334.99C6647.52,-309.25 6711.51,-324.64 6950,-299 6952.88,-298.69 6955.8,-298.36 6958.75,-298.01"/>
<polygon fill="midnightblue" stroke="midnightblue" points="6404.13,-331.54 6394.56,-336.08 6404.88,-338.5 6404.13,-331.54"/>
</g>
<!-- Node69&#45;&gt;Node51 -->
<g id="edge82" class="edge">
<title>Node69&#45;&gt;Node51</title>
<path fill="none" stroke="midnightblue" d="M7053.99,-258.6C7057.3,-247.28 7061.04,-234.46 7063.46,-226.19"/>
<polygon fill="midnightblue" stroke="midnightblue" points="7050.57,-257.82 7051.12,-268.4 7057.29,-259.78 7050.57,-257.82"/>
</g>
<!-- Node71&#45;&gt;Node9 -->
<g id="edge92" class="edge">
<title>Node71&#45;&gt;Node9</title>
<path fill="none" stroke="midnightblue" d="M943.66,-331.39C934.87,-312.24 918.25,-282.8 894,-268 792.92,-206.31 713.39,-316.08 630,-232 593.94,-195.64 602.13,-127.3 607.82,-97.73"/>
<polygon fill="midnightblue" stroke="midnightblue" points="940.55,-333.02 947.73,-340.81 946.97,-330.24 940.55,-333.02"/>
</g>
<!-- Node71&#45;&gt;Node16 -->
<g id="edge88" class="edge">
<title>Node71&#45;&gt;Node16</title>
<path fill="none" stroke="midnightblue" d="M1002.8,-338.88C1065.23,-326.08 1168.91,-304.82 1226.39,-293.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="1001.86,-335.5 992.77,-340.94 1003.27,-342.36 1001.86,-335.5"/>
</g>
<!-- Node71&#45;&gt;Node18 -->
<g id="edge89" class="edge">
<title>Node71&#45;&gt;Node18</title>
<path fill="none" stroke="midnightblue" d="M976.14,-336.1C1000.31,-323.23 1036.1,-304.16 1056.73,-293.17"/>
<polygon fill="midnightblue" stroke="midnightblue" points="974.38,-333.08 967.2,-340.87 977.67,-339.26 974.38,-333.08"/>
</g>
<!-- Node71&#45;&gt;Node19 -->
<g id="edge91" class="edge">
<title>Node71&#45;&gt;Node19</title>
<path fill="none" stroke="midnightblue" d="M950.58,-330.87C949.13,-312.38 944.02,-284.49 927,-268 907.57,-249.17 840.16,-234.58 790.24,-226.03"/>
<polygon fill="midnightblue" stroke="midnightblue" points="947.09,-331.16 951.08,-340.98 954.08,-330.82 947.09,-331.16"/>
</g>
<!-- Node71&#45;&gt;Node20 -->
<g id="edge90" class="edge">
<title>Node71&#45;&gt;Node20</title>
<path fill="none" stroke="midnightblue" d="M924.34,-336.27C898.4,-323.4 859.72,-304.21 837.47,-293.17"/>
<polygon fill="midnightblue" stroke="midnightblue" points="923.09,-339.56 933.6,-340.87 926.2,-333.29 923.09,-339.56"/>
</g>
<!-- Node72 -->
<g id="node72" class="node">
<title>Node72</title>
<g id="a_node72"><a xlink:href="_parser_prototxt_fixture_8hpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="577,-268.5 577,-298.5 737,-298.5 737,-268.5 577,-268.5"/>
<text text-anchor="start" x="585" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnnUtils/ParserPrototxt</text>
<text text-anchor="middle" x="657" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">Fixture.hpp</text>
</a>
</g>
</g>
<!-- Node71&#45;&gt;Node72 -->
<g id="edge93" class="edge">
<title>Node71&#45;&gt;Node72</title>
<path fill="none" stroke="midnightblue" d="M902.4,-338.75C852.67,-327.76 775.17,-310.63 720.59,-298.56"/>
<polygon fill="midnightblue" stroke="midnightblue" points="901.74,-342.19 912.26,-340.94 903.25,-335.36 901.74,-342.19"/>
</g>
<!-- Node73&#45;&gt;Node7 -->
<g id="edge98" class="edge">
<title>Node73&#45;&gt;Node7</title>
<path fill="none" stroke="midnightblue" d="M310.38,-349.49C215.78,-346.87 89.4,-336.22 57,-299 -21.09,-209.3 184.21,-128.99 279.94,-97.55"/>
<polygon fill="midnightblue" stroke="midnightblue" points="310.5,-353 320.58,-349.75 310.67,-346 310.5,-353"/>
</g>
<!-- Node73&#45;&gt;Node20 -->
<g id="edge95" class="edge">
<title>Node73&#45;&gt;Node20</title>
<path fill="none" stroke="midnightblue" d="M489.9,-339.49C556,-329.84 657.92,-314.45 746,-299 756.32,-297.19 767.41,-295.1 777.79,-293.07"/>
<polygon fill="midnightblue" stroke="midnightblue" points="489,-336.09 479.6,-340.99 490,-343.02 489,-336.09"/>
</g>
<!-- Node74 -->
<g id="node74" class="node">
<title>Node74</title>
<g id="a_node74"><a xlink:href="_network_utils_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="66,-274 66,-293 218,-293 218,-274 66,-274"/>
<text text-anchor="middle" x="142" y="-281" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/NetworkUtils.cpp</text>
</a>
</g>
</g>
<!-- Node73&#45;&gt;Node74 -->
<g id="edge96" class="edge">
<title>Node73&#45;&gt;Node74</title>
<path fill="none" stroke="midnightblue" d="M373.57,-338.64C318.8,-325.84 228.86,-304.81 178.71,-293.08"/>
<polygon fill="midnightblue" stroke="midnightblue" points="372.84,-342.07 383.37,-340.94 374.43,-335.25 372.84,-342.07"/>
</g>
<!-- Node75 -->
<g id="node75" class="node">
<title>Node75</title>
<g id="a_node75"><a xlink:href="_subgraph_view_selector_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="236.5,-274 236.5,-293 433.5,-293 433.5,-274 236.5,-274"/>
<text text-anchor="middle" x="335" y="-281" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnn/SubgraphViewSelector.cpp</text>
</a>
</g>
</g>
<!-- Node73&#45;&gt;Node75 -->
<g id="edge97" class="edge">
<title>Node73&#45;&gt;Node75</title>
<path fill="none" stroke="midnightblue" d="M400.47,-334.57C383.7,-321.74 360.09,-303.69 346.28,-293.13"/>
<polygon fill="midnightblue" stroke="midnightblue" points="398.47,-337.44 408.54,-340.73 402.72,-331.88 398.47,-337.44"/>
</g>
<!-- Node76 -->
<g id="node76" class="node">
<title>Node76</title>
<g id="a_node76"><a xlink:href="_mock_backend_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="black" points="451.5,-268.5 451.5,-298.5 558.5,-298.5 558.5,-268.5 451.5,-268.5"/>
<text text-anchor="start" x="459.5" y="-286.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/armnnTestUtils</text>
<text text-anchor="middle" x="505" y="-275.5" font-family="Helvetica,sans-Serif" font-size="10.00">/MockBackend.cpp</text>
</a>
</g>
</g>
<!-- Node73&#45;&gt;Node76 -->
<g id="edge99" class="edge">
<title>Node73&#45;&gt;Node76</title>
<path fill="none" stroke="midnightblue" d="M439.56,-334.54C453.71,-323.73 472.7,-309.2 486.58,-298.59"/>
<polygon fill="midnightblue" stroke="midnightblue" points="437.28,-331.88 431.46,-340.73 441.53,-337.44 437.28,-331.88"/>
</g>
</g>
</svg>