aboutsummaryrefslogtreecommitdiff
path: root/22.05/hierarchy.js
blob: a67e731e051a6af2b01fd214c39f3986cc4d36d3 (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
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
var hierarchy =
[
    [ "abs< T >", "structarmnn_1_1abs.xhtml", null ],
    [ "AbsLayerBuilder", "structarmnn_serializer_1_1_abs_layer_builder.xhtml", null ],
    [ "ActivationDescriptorBuilder", "structarmnn_serializer_1_1_activation_descriptor_builder.xhtml", null ],
    [ "ActivationFixture", "struct_activation_fixture.xhtml", [
      [ "PositiveActivationFixture", "struct_positive_activation_fixture.xhtml", null ]
    ] ],
    [ "ActivationLayerBuilder", "structarmnn_serializer_1_1_activation_layer_builder.xhtml", null ],
    [ "AddBroadcastReshapeLayerImpl", "classarmnn_1_1optimizations_1_1_add_broadcast_reshape_layer_impl.xhtml", null ],
    [ "AddDebugImpl", "classarmnn_1_1optimizations_1_1_add_debug_impl.xhtml", null ],
    [ "AdditionLayerBuilder", "structarmnn_serializer_1_1_addition_layer_builder.xhtml", null ],
    [ "Allocator", "structarmnn_1_1_allocator.xhtml", null ],
    [ "AnyLayerBuilder", "structarmnn_serializer_1_1_any_layer_builder.xhtml", null ],
    [ "ArgMinMaxDescriptorBuilder", "structarmnn_serializer_1_1_arg_min_max_descriptor_builder.xhtml", null ],
    [ "ArgMinMaxLayerBuilder", "structarmnn_serializer_1_1_arg_min_max_layer_builder.xhtml", null ],
    [ "ArmnnSubgraph", "classarmnn_delegate_1_1_armnn_subgraph.xhtml", null ],
    [ "AsyncCallbackManager", "classarmnn_1_1experimental_1_1_async_callback_manager.xhtml", null ],
    [ "BackendId", "classarmnn_1_1_backend_id.xhtml", null ],
    [ "BackendOptions::BackendOption", "structarmnn_1_1_backend_options_1_1_backend_option.xhtml", null ],
    [ "BackendOptions", "structarmnn_1_1_backend_options.xhtml", null ],
    [ "BackendRegistry", "classarmnn_1_1_backend_registry.xhtml", [
      [ "TestBackendRegistry", "class_test_backend_registry.xhtml", null ]
    ] ],
    [ "BackendSettings", "structarmnn_1_1_backend_settings.xhtml", null ],
    [ "BackendVersion", "structarmnn_1_1_backend_version.xhtml", null ],
    [ "BaseDescriptor", "structarmnn_1_1_base_descriptor.xhtml", [
      [ "ActivationDescriptor", "structarmnn_1_1_activation_descriptor.xhtml", null ],
      [ "ArgMinMaxDescriptor", "structarmnn_1_1_arg_min_max_descriptor.xhtml", null ],
      [ "BatchNormalizationDescriptor", "structarmnn_1_1_batch_normalization_descriptor.xhtml", null ],
      [ "BatchToSpaceNdDescriptor", "structarmnn_1_1_batch_to_space_nd_descriptor.xhtml", null ],
      [ "ChannelShuffleDescriptor", "structarmnn_1_1_channel_shuffle_descriptor.xhtml", null ],
      [ "ComparisonDescriptor", "structarmnn_1_1_comparison_descriptor.xhtml", null ],
      [ "Convolution2dDescriptor", "structarmnn_1_1_convolution2d_descriptor.xhtml", null ],
      [ "Convolution3dDescriptor", "structarmnn_1_1_convolution3d_descriptor.xhtml", null ],
      [ "DepthwiseConvolution2dDescriptor", "structarmnn_1_1_depthwise_convolution2d_descriptor.xhtml", null ],
      [ "DetectionPostProcessDescriptor", "structarmnn_1_1_detection_post_process_descriptor.xhtml", null ],
      [ "ElementwiseUnaryDescriptor", "structarmnn_1_1_elementwise_unary_descriptor.xhtml", null ],
      [ "FakeQuantizationDescriptor", "structarmnn_1_1_fake_quantization_descriptor.xhtml", null ],
      [ "FillDescriptor", "structarmnn_1_1_fill_descriptor.xhtml", null ],
      [ "FullyConnectedDescriptor", "structarmnn_1_1_fully_connected_descriptor.xhtml", null ],
      [ "GatherDescriptor", "structarmnn_1_1_gather_descriptor.xhtml", null ],
      [ "InstanceNormalizationDescriptor", "structarmnn_1_1_instance_normalization_descriptor.xhtml", null ],
      [ "L2NormalizationDescriptor", "structarmnn_1_1_l2_normalization_descriptor.xhtml", null ],
      [ "LogicalBinaryDescriptor", "structarmnn_1_1_logical_binary_descriptor.xhtml", null ],
      [ "LstmDescriptor", "structarmnn_1_1_lstm_descriptor.xhtml", null ],
      [ "MeanDescriptor", "structarmnn_1_1_mean_descriptor.xhtml", null ],
      [ "NormalizationDescriptor", "structarmnn_1_1_normalization_descriptor.xhtml", null ],
      [ "NullDescriptor", "structarmnn_1_1_null_descriptor.xhtml", null ],
      [ "OriginsDescriptor", "structarmnn_1_1_origins_descriptor.xhtml", null ],
      [ "PadDescriptor", "structarmnn_1_1_pad_descriptor.xhtml", null ],
      [ "PermuteDescriptor", "structarmnn_1_1_permute_descriptor.xhtml", null ],
      [ "Pooling2dDescriptor", "structarmnn_1_1_pooling2d_descriptor.xhtml", null ],
      [ "Pooling3dDescriptor", "structarmnn_1_1_pooling3d_descriptor.xhtml", null ],
      [ "PreCompiledDescriptor", "structarmnn_1_1_pre_compiled_descriptor.xhtml", null ],
      [ "QLstmDescriptor", "structarmnn_1_1_q_lstm_descriptor.xhtml", null ],
      [ "ReduceDescriptor", "structarmnn_1_1_reduce_descriptor.xhtml", null ],
      [ "ReshapeDescriptor", "structarmnn_1_1_reshape_descriptor.xhtml", null ],
      [ "ResizeDescriptor", "structarmnn_1_1_resize_descriptor.xhtml", null ],
      [ "SliceDescriptor", "structarmnn_1_1_slice_descriptor.xhtml", null ],
      [ "SoftmaxDescriptor", "structarmnn_1_1_softmax_descriptor.xhtml", null ],
      [ "SpaceToBatchNdDescriptor", "structarmnn_1_1_space_to_batch_nd_descriptor.xhtml", null ],
      [ "SpaceToDepthDescriptor", "structarmnn_1_1_space_to_depth_descriptor.xhtml", null ],
      [ "StackDescriptor", "structarmnn_1_1_stack_descriptor.xhtml", null ],
      [ "StandInDescriptor", "structarmnn_1_1_stand_in_descriptor.xhtml", null ],
      [ "StridedSliceDescriptor", "structarmnn_1_1_strided_slice_descriptor.xhtml", null ],
      [ "TransposeConvolution2dDescriptor", "structarmnn_1_1_transpose_convolution2d_descriptor.xhtml", null ],
      [ "TransposeDescriptor", "structarmnn_1_1_transpose_descriptor.xhtml", null ],
      [ "ViewsDescriptor", "structarmnn_1_1_views_descriptor.xhtml", null ]
    ] ],
    [ "BaseIterator", "classarmnn_1_1_base_iterator.xhtml", [
      [ "Decoder< IType >", "classarmnn_1_1_decoder.xhtml", null ],
      [ "Encoder< IType >", "classarmnn_1_1_encoder.xhtml", null ],
      [ "Decoder< bool >", "classarmnn_1_1_decoder.xhtml", [
        [ "TypedIterator< const uint8_t, Decoder< bool > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "BooleanDecoderBool", "classarmnn_1_1_boolean_decoder_bool.xhtml", null ]
        ] ]
      ] ],
      [ "Decoder< float >", "classarmnn_1_1_decoder.xhtml", [
        [ "PerAxisIterator< const int32_t, Decoder< float > >", "classarmnn_1_1_per_axis_iterator.xhtml", [
          [ "ScaledInt32PerAxisDecoder", "classarmnn_1_1_scaled_int32_per_axis_decoder.xhtml", null ]
        ] ],
        [ "PerAxisIterator< const int8_t, Decoder< float > >", "classarmnn_1_1_per_axis_iterator.xhtml", [
          [ "QSymm8PerAxisDecoder", "classarmnn_1_1_q_symm8_per_axis_decoder.xhtml", null ]
        ] ],
        [ "TypedIterator< const BFloat16, Decoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "BFloat16Decoder", "classarmnn_1_1_b_float16_decoder.xhtml", null ]
        ] ],
        [ "TypedIterator< const float, Decoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "Float32Decoder", "classarmnn_1_1_float32_decoder.xhtml", null ]
        ] ],
        [ "TypedIterator< const Half, Decoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "Float16Decoder", "classarmnn_1_1_float16_decoder.xhtml", null ]
        ] ],
        [ "TypedIterator< const int16_t, Decoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "QSymm16Decoder", "classarmnn_1_1_q_symm16_decoder.xhtml", null ]
        ] ],
        [ "TypedIterator< const int32_t, Decoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "Int32Decoder", "classarmnn_1_1_int32_decoder.xhtml", null ],
          [ "ScaledInt32Decoder", "classarmnn_1_1_scaled_int32_decoder.xhtml", null ]
        ] ],
        [ "TypedIterator< const int8_t, Decoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "QASymmS8Decoder", "classarmnn_1_1_q_a_symm_s8_decoder.xhtml", null ],
          [ "QSymmS8Decoder", "classarmnn_1_1_q_symm_s8_decoder.xhtml", null ]
        ] ],
        [ "TypedIterator< const uint8_t, Decoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "BooleanDecoder", "classarmnn_1_1_boolean_decoder.xhtml", null ],
          [ "QASymm8Decoder", "classarmnn_1_1_q_a_symm8_decoder.xhtml", null ]
        ] ]
      ] ],
      [ "Decoder< int32_t >", "classarmnn_1_1_decoder.xhtml", [
        [ "TypedIterator< const int32_t, Decoder< int32_t > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "Int32ToInt32tDecoder", "classarmnn_1_1_int32_to_int32t_decoder.xhtml", null ]
        ] ]
      ] ],
      [ "Decoder< int8_t >", "classarmnn_1_1_decoder.xhtml", [
        [ "PerAxisIterator< const int8_t, Decoder< int8_t > >", "classarmnn_1_1_per_axis_iterator.xhtml", null ]
      ] ],
      [ "Encoder< bool >", "classarmnn_1_1_encoder.xhtml", [
        [ "TypedIterator< uint8_t, Encoder< bool > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "BooleanEncoder", "classarmnn_1_1_boolean_encoder.xhtml", null ]
        ] ]
      ] ],
      [ "Encoder< float >", "classarmnn_1_1_encoder.xhtml", [
        [ "PerAxisIterator< int8_t, Encoder< float > >", "classarmnn_1_1_per_axis_iterator.xhtml", [
          [ "QSymm8PerAxisEncoder", "classarmnn_1_1_q_symm8_per_axis_encoder.xhtml", null ]
        ] ],
        [ "TypedIterator< armnn::BFloat16, Encoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "BFloat16Encoder", "classarmnn_1_1_b_float16_encoder.xhtml", null ]
        ] ],
        [ "TypedIterator< float, Encoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "Float32Encoder", "classarmnn_1_1_float32_encoder.xhtml", null ]
        ] ],
        [ "TypedIterator< Half, Encoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "Float16Encoder", "classarmnn_1_1_float16_encoder.xhtml", null ]
        ] ],
        [ "TypedIterator< int16_t, Encoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "QSymm16Encoder", "classarmnn_1_1_q_symm16_encoder.xhtml", null ]
        ] ],
        [ "TypedIterator< int32_t, Encoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "Int32Encoder", "classarmnn_1_1_int32_encoder.xhtml", null ]
        ] ],
        [ "TypedIterator< int8_t, Encoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "QASymmS8Encoder", "classarmnn_1_1_q_a_symm_s8_encoder.xhtml", null ],
          [ "QSymmS8Encoder", "classarmnn_1_1_q_symm_s8_encoder.xhtml", null ]
        ] ],
        [ "TypedIterator< uint8_t, Encoder< float > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "QASymm8Encoder", "classarmnn_1_1_q_a_symm8_encoder.xhtml", null ]
        ] ]
      ] ],
      [ "Encoder< int32_t >", "classarmnn_1_1_encoder.xhtml", [
        [ "TypedIterator< int32_t, Encoder< int32_t > >", "classarmnn_1_1_typed_iterator.xhtml", [
          [ "Int32ToInt32tEncoder", "classarmnn_1_1_int32_to_int32t_encoder.xhtml", null ]
        ] ]
      ] ]
    ] ],
    [ "BaseTensor< MemoryType >", "classarmnn_1_1_base_tensor.xhtml", null ],
    [ "BaseTensor< const void *>", "classarmnn_1_1_base_tensor.xhtml", [
      [ "ConstTensor", "classarmnn_1_1_const_tensor.xhtml", null ]
    ] ],
    [ "BaseTensor< void *>", "classarmnn_1_1_base_tensor.xhtml", [
      [ "Tensor", "classarmnn_1_1_tensor.xhtml", null ]
    ] ],
    [ "BatchNormalizationDescriptorBuilder", "structarmnn_serializer_1_1_batch_normalization_descriptor_builder.xhtml", null ],
    [ "BatchNormalizationLayerBuilder", "structarmnn_serializer_1_1_batch_normalization_layer_builder.xhtml", null ],
    [ "BatchToSpaceNdDescriptorBuilder", "structarmnn_serializer_1_1_batch_to_space_nd_descriptor_builder.xhtml", null ],
    [ "BatchToSpaceNdLayerBuilder", "structarmnn_serializer_1_1_batch_to_space_nd_layer_builder.xhtml", null ],
    [ "BFloat16", "classarmnn_1_1_b_float16.xhtml", null ],
    [ "BFloat16ToFloat32", "structarmnn_1_1optimizations_1_1_b_float16_to_float32.xhtml", null ],
    [ "BindableLayerBaseBuilder", "structarmnn_serializer_1_1_bindable_layer_base_builder.xhtml", null ],
    [ "BindingPointInfo", "structarmnn_deserializer_1_1_binding_point_info.xhtml", null ],
    [ "Box", "structyolov3_1_1_box.xhtml", null ],
    [ "BroadcastLoop", "structarmnn_1_1_broadcast_loop.xhtml", null ],
    [ "BufferStorage", "structarmnn_1_1_buffer_storage.xhtml", null ],
    [ "ByteDataBuilder", "structarmnn_serializer_1_1_byte_data_builder.xhtml", null ],
    [ "Capability", "structarmnn_1_1_capability.xhtml", null ],
    [ "CastLayerBuilder", "structarmnn_serializer_1_1_cast_layer_builder.xhtml", null ],
    [ "CategoryRecord", "structarmnn_1_1gatordmock_1_1_category_record.xhtml", null ],
    [ "ChannelShuffleDescriptorBuilder", "structarmnn_serializer_1_1_channel_shuffle_descriptor_builder.xhtml", null ],
    [ "ChannelShuffleLayerBuilder", "structarmnn_serializer_1_1_channel_shuffle_layer_builder.xhtml", null ],
    [ "CheckLocation", "structarmnn_1_1_check_location.xhtml", null ],
    [ "Cifar10Database", "class_cifar10_database.xhtml", null ],
    [ "ClassifierTestCaseData< DataType >", "class_classifier_test_case_data.xhtml", null ],
    [ "ClContextBuilder", "structarmnn_1_1_cl_context_builder.xhtml", null ],
    [ "ClContextControl", "classarmnn_1_1_cl_context_control.xhtml", null ],
    [ "ClContextControlFixtureBase< ProfilingEnabled >", "struct_cl_context_control_fixture_base.xhtml", null ],
    [ "ClContextDeserializer", "classarmnn_1_1_cl_context_deserializer.xhtml", null ],
    [ "ClContextSerializer", "classarmnn_1_1_cl_context_serializer.xhtml", null ],
    [ "CommandFileParser", "classarmnn_1_1gatordmock_1_1_command_file_parser.xhtml", null ],
    [ "CommandHandlerFunctor", null, [
      [ "TestFunctorA", "classarm_1_1pipe_1_1_test_functor_a.xhtml", [
        [ "TestFunctorB", "classarm_1_1pipe_1_1_test_functor_b.xhtml", null ],
        [ "TestFunctorC", "classarm_1_1pipe_1_1_test_functor_c.xhtml", null ]
      ] ],
      [ "PeriodicCounterCaptureCommandHandler", "classarmnn_1_1gatordmock_1_1_periodic_counter_capture_command_handler.xhtml", null ],
      [ "PeriodicCounterSelectionResponseHandler", "classarmnn_1_1gatordmock_1_1_periodic_counter_selection_response_handler.xhtml", null ],
      [ "StreamMetadataCommandHandler", "classarmnn_1_1gatordmock_1_1_stream_metadata_command_handler.xhtml", null ],
      [ "StubCommandHandler", "classarmnn_1_1gatordmock_1_1_stub_command_handler.xhtml", null ]
    ] ],
    [ "InferenceModel< IParser, TDataType >::CommandLineOptions", "struct_inference_model_1_1_command_line_options.xhtml", null ],
    [ "CommandLineProcessor", "classarmnn_1_1gatordmock_1_1_command_line_processor.xhtml", null ],
    [ "ComparisonDescriptorBuilder", "structarmnn_serializer_1_1_comparison_descriptor_builder.xhtml", null ],
    [ "ComparisonLayerBuilder", "structarmnn_serializer_1_1_comparison_layer_builder.xhtml", null ],
    [ "ConcatLayerBuilder", "structarmnn_serializer_1_1_concat_layer_builder.xhtml", null ],
    [ "Connection", "classarm_1_1pipe_1_1_connection.xhtml", null ],
    [ "ConstantLayerBuilder", "structarmnn_serializer_1_1_constant_layer_builder.xhtml", null ],
    [ "ConstructInPlace", "structarmnn_1_1_construct_in_place.xhtml", null ],
    [ "ConstTensorBuilder", "structarmnn_serializer_1_1_const_tensor_builder.xhtml", null ],
    [ "ConstTensorDataTraits< T >", "structarmnn_serializer_1_1_const_tensor_data_traits.xhtml", null ],
    [ "ConstTensorDataTraits< armnnSerializer::ByteData >", "structarmnn_serializer_1_1_const_tensor_data_traits_3_01armnn_serializer_1_1_byte_data_01_4.xhtml", null ],
    [ "ConstTensorDataTraits< armnnSerializer::IntData >", "structarmnn_serializer_1_1_const_tensor_data_traits_3_01armnn_serializer_1_1_int_data_01_4.xhtml", null ],
    [ "ConstTensorDataTraits< armnnSerializer::LongData >", "structarmnn_serializer_1_1_const_tensor_data_traits_3_01armnn_serializer_1_1_long_data_01_4.xhtml", null ],
    [ "ConstTensorDataTraits< armnnSerializer::ShortData >", "structarmnn_serializer_1_1_const_tensor_data_traits_3_01armnn_serializer_1_1_short_data_01_4.xhtml", null ],
    [ "ConvertConstDequantisationLayersToConstLayersImpl", "classarmnn_1_1optimizations_1_1_convert_const_dequantisation_layers_to_const_layers_impl.xhtml", null ],
    [ "ConvertConstPermuteLayersToConstLayers", "classarmnn_1_1optimizations_1_1_convert_const_permute_layers_to_const_layers.xhtml", null ],
    [ "ConvertFp32NetworkToBf16Impl", "classarmnn_1_1optimizations_1_1_convert_fp32_network_to_bf16_impl.xhtml", null ],
    [ "ConvertFp32NetworkToFp16Impl", "classarmnn_1_1optimizations_1_1_convert_fp32_network_to_fp16_impl.xhtml", null ],
    [ "Convolution2dDescriptorBuilder", "structarmnn_serializer_1_1_convolution2d_descriptor_builder.xhtml", null ],
    [ "Convolution2dLayerBuilder", "structarmnn_serializer_1_1_convolution2d_layer_builder.xhtml", null ],
    [ "Convolution3dDescriptorBuilder", "structarmnn_serializer_1_1_convolution3d_descriptor_builder.xhtml", null ],
    [ "Convolution3dLayerBuilder", "structarmnn_serializer_1_1_convolution3d_layer_builder.xhtml", null ],
    [ "CounterCaptureValues", "structarmnn_1_1gatordmock_1_1_counter_capture_values.xhtml", null ],
    [ "CounterDirectory", "structarmnn_1_1gatordmock_1_1_counter_directory.xhtml", null ],
    [ "CounterSetRecord", "structarmnn_1_1gatordmock_1_1_counter_set_record.xhtml", null ],
    [ "CreateNetworkImpl< IParser >", "struct_create_network_impl.xhtml", null ],
    [ "IRuntime::CreationOptions", "structarmnn_1_1_i_runtime_1_1_creation_options.xhtml", null ],
    [ "DataLayoutIndexed", "classarmnn_utils_1_1_data_layout_indexed.xhtml", null ],
    [ "Delegate", "classarmnn_delegate_1_1_delegate.xhtml", null ],
    [ "DelegateData", "structarmnn_delegate_1_1_delegate_data.xhtml", null ],
    [ "DelegateOptions", "classarmnn_delegate_1_1_delegate_options.xhtml", null ],
    [ "DepthToSpaceDescriptorBuilder", "structarmnn_serializer_1_1_depth_to_space_descriptor_builder.xhtml", null ],
    [ "DepthToSpaceLayerBuilder", "structarmnn_serializer_1_1_depth_to_space_layer_builder.xhtml", null ],
    [ "DepthwiseConvolution2dDescriptorBuilder", "structarmnn_serializer_1_1_depthwise_convolution2d_descriptor_builder.xhtml", null ],
    [ "DepthwiseConvolution2dLayerBuilder", "structarmnn_serializer_1_1_depthwise_convolution2d_layer_builder.xhtml", null ],
    [ "DequantizeLayerBuilder", "structarmnn_serializer_1_1_dequantize_layer_builder.xhtml", null ],
    [ "IDeserializer::DeserializerImpl", "classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml", null ],
    [ "Detection", "structyolov3_1_1_detection.xhtml", null ],
    [ "DetectionPostProcessDescriptorBuilder", "structarmnn_serializer_1_1_detection_post_process_descriptor_builder.xhtml", null ],
    [ "DetectionPostProcessLayerBuilder", "structarmnn_serializer_1_1_detection_post_process_layer_builder.xhtml", null ],
    [ "DeviceRecord", "structarmnn_1_1gatordmock_1_1_device_record.xhtml", null ],
    [ "DivisionLayerBuilder", "structarmnn_serializer_1_1_division_layer_builder.xhtml", null ],
    [ "DotBase", "classarmnn_1_1_dot_base.xhtml", [
      [ "DotAttributeSet", "classarmnn_1_1_dot_attribute_set.xhtml", null ],
      [ "DotDefaults", "classarmnn_1_1_dot_defaults.xhtml", null ],
      [ "DotEdge", "classarmnn_1_1_dot_edge.xhtml", null ],
      [ "DotGraph", "classarmnn_1_1_dot_graph.xhtml", null ],
      [ "DotNode", "classarmnn_1_1_dot_node.xhtml", null ],
      [ "HtmlFont", "classarmnn_1_1_html_font.xhtml", null ],
      [ "HtmlSection", "classarmnn_1_1_html_section.xhtml", null ],
      [ "HtmlSimpleTag", "classarmnn_1_1_html_simple_tag.xhtml", [
        [ "HtmlBold", "classarmnn_1_1_html_bold.xhtml", null ]
      ] ],
      [ "NodeContent", "classarmnn_1_1_node_content.xhtml", null ]
    ] ],
    [ "DynamicBackend", "classarmnn_1_1_dynamic_backend.xhtml", null ],
    [ "DynamicBackendUtils", "classarmnn_1_1_dynamic_backend_utils.xhtml", [
      [ "TestDynamicBackendUtils", "class_test_dynamic_backend_utils.xhtml", null ]
    ] ],
    [ "ElementwiseBinaryFunction< Functor >", "structarmnn_1_1_elementwise_binary_function.xhtml", null ],
    [ "ElementwiseUnaryDescriptorBuilder", "structarmnn_serializer_1_1_elementwise_unary_descriptor_builder.xhtml", null ],
    [ "ElementwiseUnaryFunction< Functor >", "structarmnn_1_1_elementwise_unary_function.xhtml", null ],
    [ "ElementwiseUnaryLayerBuilder", "structarmnn_serializer_1_1_elementwise_unary_layer_builder.xhtml", null ],
    [ "EmptyOptional", "structarmnn_1_1_empty_optional.xhtml", null ],
    [ "Entity", "classarm_1_1pipe_1_1_entity.xhtml", null ],
    [ "EqualLayerBuilder", "structarmnn_serializer_1_1_equal_layer_builder.xhtml", null ],
    [ "Event", "classarmnn_1_1_event.xhtml", null ],
    [ "EventClassObj", "classarm_1_1pipe_1_1_event_class_obj.xhtml", null ],
    [ "EventObj", "classarm_1_1pipe_1_1_event_obj.xhtml", null ],
    [ "EventRecord", "structarmnn_1_1gatordmock_1_1_event_record.xhtml", null ],
    [ "exception", null, [
      [ "Exception", "classarmnn_1_1_exception.xhtml", [
        [ "BackendCapabilityException", "classarmnn_1_1_backend_capability_exception.xhtml", null ],
        [ "BackendUnavailableException", "classarmnn_1_1_backend_unavailable_exception.xhtml", [
          [ "ClRuntimeUnavailableException", "classarmnn_1_1_cl_runtime_unavailable_exception.xhtml", null ]
        ] ],
        [ "BadOptionalAccessException", "classarmnn_1_1_bad_optional_access_exception.xhtml", null ],
        [ "FileNotFoundException", "classarmnn_1_1_file_not_found_exception.xhtml", null ],
        [ "GraphValidationException", "classarmnn_1_1_graph_validation_exception.xhtml", null ],
        [ "InvalidArgumentException", "classarmnn_1_1_invalid_argument_exception.xhtml", null ],
        [ "LayerValidationException", "classarmnn_1_1_layer_validation_exception.xhtml", null ],
        [ "MemoryExportException", "classarmnn_1_1_memory_export_exception.xhtml", null ],
        [ "MemoryImportException", "classarmnn_1_1_memory_import_exception.xhtml", null ],
        [ "MemoryValidationException", "classarmnn_1_1_memory_validation_exception.xhtml", null ],
        [ "NullPointerException", "classarmnn_1_1_null_pointer_exception.xhtml", null ],
        [ "ParseException", "classarmnn_1_1_parse_exception.xhtml", null ],
        [ "PolymorphicDowncastException", "classarmnn_1_1_polymorphic_downcast_exception.xhtml", null ],
        [ "RuntimeException", "classarmnn_1_1_runtime_exception.xhtml", null ],
        [ "TestFrameworkException", "classarmnn_1_1test_1_1_test_framework_exception.xhtml", null ],
        [ "TimeoutException", "classarmnn_1_1_timeout_exception.xhtml", null ],
        [ "UnimplementedException", "classarmnn_1_1_unimplemented_exception.xhtml", null ],
        [ "InferenceTestImageException", "class_inference_test_image_exception.xhtml", [
          [ "InferenceTestImageLoadFailed", "class_inference_test_image_load_failed.xhtml", null ],
          [ "InferenceTestImageOutOfBoundsAccess", "class_inference_test_image_out_of_bounds_access.xhtml", null ],
          [ "InferenceTestImageResizeFailed", "class_inference_test_image_resize_failed.xhtml", null ],
          [ "InferenceTestImageWriteFailed", "class_inference_test_image_write_failed.xhtml", null ],
          [ "UnknownImageChannelLayout", "class_unknown_image_channel_layout.xhtml", null ]
        ] ]
      ] ]
    ] ],
    [ "ExecuteNetworkParams", "struct_execute_network_params.xhtml", null ],
    [ "exp< T >", "structarmnn_1_1exp.xhtml", null ],
    [ "IRuntime::CreationOptions::ExternalProfilingOptions", "structarmnn_1_1_i_runtime_1_1_creation_options_1_1_external_profiling_options.xhtml", null ],
    [ "FeatureCompatibilityVersionsBuilder", "structarmnn_serializer_1_1_feature_compatibility_versions_builder.xhtml", null ],
    [ "FillDescriptorBuilder", "structarmnn_serializer_1_1_fill_descriptor_builder.xhtml", null ],
    [ "FillLayerBuilder", "structarmnn_serializer_1_1_fill_layer_builder.xhtml", null ],
    [ "Float16ToFloat32", "structarmnn_1_1optimizations_1_1_float16_to_float32.xhtml", null ],
    [ "Float32ToBFloat16", "structarmnn_1_1optimizations_1_1_float32_to_b_float16.xhtml", null ],
    [ "Float32ToFloat16", "structarmnn_1_1optimizations_1_1_float32_to_float16.xhtml", null ],
    [ "FloatingPointConverter", "classarmnn_utils_1_1_floating_point_converter.xhtml", null ],
    [ "FloorLayerBuilder", "structarmnn_serializer_1_1_floor_layer_builder.xhtml", null ],
    [ "FoldPadIntoConvolution2dImpl", "classarmnn_1_1optimizations_1_1pad__fold_1_1_fold_pad_into_convolution2d_impl.xhtml", null ],
    [ "FoldPadIntoDepthwiseConvolution2dImpl", "classarmnn_1_1optimizations_1_1pad__fold_1_1_fold_pad_into_depthwise_convolution2d_impl.xhtml", null ],
    [ "FoldPadIntoPooling2dImpl", "classarmnn_1_1optimizations_1_1pad__fold_1_1_fold_pad_into_pooling2d_impl.xhtml", null ],
    [ "FullyConnectedDescriptorBuilder", "structarmnn_serializer_1_1_fully_connected_descriptor_builder.xhtml", null ],
    [ "FullyConnectedLayerBuilder", "structarmnn_serializer_1_1_fully_connected_layer_builder.xhtml", null ],
    [ "FuseBatchNorm< ConvLayer, ArmnnType, T >", "classarmnn_1_1optimizations_1_1_fuse_batch_norm.xhtml", null ],
    [ "GatherDescriptorBuilder", "structarmnn_serializer_1_1_gather_descriptor_builder.xhtml", null ],
    [ "GatherLayerBuilder", "structarmnn_serializer_1_1_gather_layer_builder.xhtml", null ],
    [ "GatherNdLayerBuilder", "structarmnn_serializer_1_1_gather_nd_layer_builder.xhtml", null ],
    [ "GatordMockService", "classarmnn_1_1gatordmock_1_1_gatord_mock_service.xhtml", null ],
    [ "Graph", "classarmnn_1_1_graph.xhtml", null ],
    [ "GreaterLayerBuilder", "structarmnn_serializer_1_1_greater_layer_builder.xhtml", null ],
    [ "hash< armnn::BackendId >", "structstd_1_1hash_3_01armnn_1_1_backend_id_01_4.xhtml", null ],
    [ "IAllocator", null, [
      [ "ClBackend::ClBackendCustomAllocatorWrapper", "classarmnn_1_1_cl_backend_1_1_cl_backend_custom_allocator_wrapper.xhtml", null ]
    ] ],
    [ "IAsyncExecutionCallback", "classarmnn_1_1experimental_1_1_i_async_execution_callback.xhtml", [
      [ "AsyncExecutionCallback", "classarmnn_1_1experimental_1_1_async_execution_callback.xhtml", null ]
    ] ],
    [ "IBackend", "classarmnn_1_1_i_backend.xhtml", [
      [ "IBackendInternal", "classarmnn_1_1_i_backend_internal.xhtml", [
        [ "ClBackend", "classarmnn_1_1_cl_backend.xhtml", null ],
        [ "MockBackend", "classarmnn_1_1_mock_backend.xhtml", null ],
        [ "MockImportBackend", "classarmnn_1_1_mock_import_backend.xhtml", null ],
        [ "NeonBackend", "classarmnn_1_1_neon_backend.xhtml", null ],
        [ "RefBackend", "classarmnn_1_1_ref_backend.xhtml", null ]
      ] ]
    ] ],
    [ "IBackendContext", "classarmnn_1_1_i_backend_context.xhtml", [
      [ "ClBackendContext", "classarmnn_1_1_cl_backend_context.xhtml", null ]
    ] ],
    [ "IBackendModelContext", "classarmnn_1_1_i_backend_model_context.xhtml", [
      [ "ClBackendModelContext", "classarmnn_1_1_cl_backend_model_context.xhtml", null ],
      [ "NeonBackendModelContext", "classarmnn_1_1_neon_backend_model_context.xhtml", null ]
    ] ],
    [ "IBackendProfilingContext", null, [
      [ "MockBackendProfilingContext", "classarmnn_1_1_mock_backend_profiling_context.xhtml", null ]
    ] ],
    [ "IBufferManager", null, [
      [ "MockBufferManager", "classarm_1_1pipe_1_1_mock_buffer_manager.xhtml", null ],
      [ "MockStreamCounterBuffer", "classarm_1_1pipe_1_1_mock_stream_counter_buffer.xhtml", null ]
    ] ],
    [ "ICLMemoryRegion", null, [
      [ "ClBackend::ClBackendCustomAllocatorMemoryRegion", "classarmnn_1_1_cl_backend_1_1_cl_backend_custom_allocator_memory_region.xhtml", null ]
    ] ],
    [ "ICLTensor", null, [
      [ "ICLTensorProxy", "classarmnn_1_1_i_c_l_tensor_proxy.xhtml", null ]
    ] ],
    [ "IConnectableLayer", "classarmnn_1_1_i_connectable_layer.xhtml", [
      [ "Layer", "classarmnn_1_1_layer.xhtml", [
        [ "AbsLayer", "classarmnn_1_1_abs_layer.xhtml", null ],
        [ "BindableLayer", "classarmnn_1_1_bindable_layer.xhtml", [
          [ "InputLayer", "classarmnn_1_1_input_layer.xhtml", null ],
          [ "OutputLayer", "classarmnn_1_1_output_layer.xhtml", null ]
        ] ],
        [ "CastLayer", "classarmnn_1_1_cast_layer.xhtml", null ],
        [ "ConstantLayer", "classarmnn_1_1_constant_layer.xhtml", null ],
        [ "ConvertBf16ToFp32Layer", "classarmnn_1_1_convert_bf16_to_fp32_layer.xhtml", null ],
        [ "ConvertFp16ToFp32Layer", "classarmnn_1_1_convert_fp16_to_fp32_layer.xhtml", null ],
        [ "ConvertFp32ToBf16Layer", "classarmnn_1_1_convert_fp32_to_bf16_layer.xhtml", null ],
        [ "ConvertFp32ToFp16Layer", "classarmnn_1_1_convert_fp32_to_fp16_layer.xhtml", null ],
        [ "DebugLayer", "classarmnn_1_1_debug_layer.xhtml", null ],
        [ "DequantizeLayer", "classarmnn_1_1_dequantize_layer.xhtml", null ],
        [ "ElementwiseBaseLayer", "classarmnn_1_1_elementwise_base_layer.xhtml", [
          [ "AdditionLayer", "classarmnn_1_1_addition_layer.xhtml", null ],
          [ "DivisionLayer", "classarmnn_1_1_division_layer.xhtml", null ],
          [ "MaximumLayer", "classarmnn_1_1_maximum_layer.xhtml", null ],
          [ "MinimumLayer", "classarmnn_1_1_minimum_layer.xhtml", null ],
          [ "MultiplicationLayer", "classarmnn_1_1_multiplication_layer.xhtml", null ],
          [ "SubtractionLayer", "classarmnn_1_1_subtraction_layer.xhtml", null ]
        ] ],
        [ "FloorLayer", "classarmnn_1_1_floor_layer.xhtml", null ],
        [ "GatherNdLayer", "classarmnn_1_1_gather_nd_layer.xhtml", null ],
        [ "LayerWithParameters< Parameters >", "classarmnn_1_1_layer_with_parameters.xhtml", null ],
        [ "MapLayer", "classarmnn_1_1_map_layer.xhtml", null ],
        [ "MemCopyLayer", "classarmnn_1_1_mem_copy_layer.xhtml", null ],
        [ "MemImportLayer", "classarmnn_1_1_mem_import_layer.xhtml", null ],
        [ "MergeLayer", "classarmnn_1_1_merge_layer.xhtml", null ],
        [ "PreluLayer", "classarmnn_1_1_prelu_layer.xhtml", null ],
        [ "QuantizedLstmLayer", "classarmnn_1_1_quantized_lstm_layer.xhtml", null ],
        [ "QuantizeLayer", "classarmnn_1_1_quantize_layer.xhtml", null ],
        [ "RankLayer", "classarmnn_1_1_rank_layer.xhtml", null ],
        [ "RsqrtLayer", "classarmnn_1_1_rsqrt_layer.xhtml", null ],
        [ "ShapeLayer", "classarmnn_1_1_shape_layer.xhtml", null ],
        [ "SwitchLayer", "classarmnn_1_1_switch_layer.xhtml", null ],
        [ "UnmapLayer", "classarmnn_1_1_unmap_layer.xhtml", null ],
        [ "LayerWithParameters< ActivationDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "ActivationLayer", "classarmnn_1_1_activation_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< ArgMinMaxDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "ArgMinMaxLayer", "classarmnn_1_1_arg_min_max_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< BatchNormalizationDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "BatchNormalizationLayer", "classarmnn_1_1_batch_normalization_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< BatchToSpaceNdDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "BatchToSpaceNdLayer", "classarmnn_1_1_batch_to_space_nd_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< ChannelShuffleDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "ChannelShuffleLayer", "classarmnn_1_1_channel_shuffle_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< ComparisonDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "ComparisonLayer", "classarmnn_1_1_comparison_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< Convolution2dDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "Convolution2dLayer", "classarmnn_1_1_convolution2d_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< Convolution3dDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "Convolution3dLayer", "classarmnn_1_1_convolution3d_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< DepthToSpaceDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "DepthToSpaceLayer", "classarmnn_1_1_depth_to_space_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< DepthwiseConvolution2dDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "DepthwiseConvolution2dLayer", "classarmnn_1_1_depthwise_convolution2d_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< DetectionPostProcessDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "DetectionPostProcessLayer", "classarmnn_1_1_detection_post_process_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< ElementwiseUnaryDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "ElementwiseUnaryLayer", "classarmnn_1_1_elementwise_unary_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< FakeQuantizationDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "FakeQuantizationLayer", "classarmnn_1_1_fake_quantization_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< FillDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "FillLayer", "classarmnn_1_1_fill_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< FullyConnectedDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "FullyConnectedLayer", "classarmnn_1_1_fully_connected_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< GatherDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "GatherLayer", "classarmnn_1_1_gather_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< InstanceNormalizationDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "InstanceNormalizationLayer", "classarmnn_1_1_instance_normalization_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< L2NormalizationDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "L2NormalizationLayer", "classarmnn_1_1_l2_normalization_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< LogicalBinaryDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "LogicalBinaryLayer", "classarmnn_1_1_logical_binary_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< LogSoftmaxDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "LogSoftmaxLayer", "classarmnn_1_1_log_softmax_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< LstmDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "LstmLayer", "classarmnn_1_1_lstm_layer.xhtml", null ],
          [ "UnidirectionalSequenceLstmLayer", "classarmnn_1_1_unidirectional_sequence_lstm_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< MeanDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "MeanLayer", "classarmnn_1_1_mean_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< NormalizationDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "NormalizationLayer", "classarmnn_1_1_normalization_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< OriginsDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "ConcatLayer", "classarmnn_1_1_concat_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< PadDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "PadLayer", "classarmnn_1_1_pad_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< PermuteDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "PermuteLayer", "classarmnn_1_1_permute_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< Pooling2dDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "Pooling2dLayer", "classarmnn_1_1_pooling2d_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< Pooling3dDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "Pooling3dLayer", "classarmnn_1_1_pooling3d_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< PreCompiledDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "PreCompiledLayer", "classarmnn_1_1_pre_compiled_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< QLstmDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "QLstmLayer", "classarmnn_1_1_q_lstm_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< ReduceDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "ReduceLayer", "classarmnn_1_1_reduce_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< ReshapeDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "ReshapeLayer", "classarmnn_1_1_reshape_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< ResizeDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "ResizeLayer", "classarmnn_1_1_resize_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< SliceDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "SliceLayer", "classarmnn_1_1_slice_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< SoftmaxDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "SoftmaxLayer", "classarmnn_1_1_softmax_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< SpaceToBatchNdDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "SpaceToBatchNdLayer", "classarmnn_1_1_space_to_batch_nd_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< SpaceToDepthDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "SpaceToDepthLayer", "classarmnn_1_1_space_to_depth_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< StackDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "StackLayer", "classarmnn_1_1_stack_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< StandInDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "StandInLayer", "classarmnn_1_1_stand_in_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< StridedSliceDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "StridedSliceLayer", "classarmnn_1_1_strided_slice_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< TransposeConvolution2dDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "TransposeConvolution2dLayer", "classarmnn_1_1_transpose_convolution2d_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< TransposeDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "TransposeLayer", "classarmnn_1_1_transpose_layer.xhtml", null ]
        ] ],
        [ "LayerWithParameters< ViewsDescriptor >", "classarmnn_1_1_layer_with_parameters.xhtml", [
          [ "SplitterLayer", "classarmnn_1_1_splitter_layer.xhtml", null ]
        ] ]
      ] ]
    ] ],
    [ "ICounterDirectory", null, [
      [ "MockCounterDirectory", "classarm_1_1pipe_1_1_mock_counter_directory.xhtml", null ]
    ] ],
    [ "ICustomAllocator", "classarmnn_1_1_i_custom_allocator.xhtml", [
      [ "ClBackendDefaultAllocator", "classarmnn_1_1_cl_backend_default_allocator.xhtml", null ],
      [ "DefaultAllocator", "classarmnn_1_1_default_allocator.xhtml", null ]
    ] ],
    [ "IDeserializer", "classarmnn_deserializer_1_1_i_deserializer.xhtml", null ],
    [ "IDeviceSpec", "classarmnn_1_1_i_device_spec.xhtml", [
      [ "DeviceSpec", "classarmnn_1_1_device_spec.xhtml", null ]
    ] ],
    [ "IExecutionFrame", "classarmnn_1_1_i_execution_frame.xhtml", [
      [ "ExecutionFrame", "classarmnn_1_1_execution_frame.xhtml", null ]
    ] ],
    [ "IGpuAccTunedParameters", "classarmnn_1_1_i_gpu_acc_tuned_parameters.xhtml", [
      [ "ClTunedParameters", "classarmnn_1_1_cl_tuned_parameters.xhtml", null ]
    ] ],
    [ "IGraphObservable", "classarmnn_1_1_i_graph_observable.xhtml", [
      [ "GraphObservable< ObservedType >", "classarmnn_1_1_graph_observable.xhtml", null ],
      [ "GraphObservable< Layer *>", "classarmnn_1_1_graph_observable.xhtml", [
        [ "AddedLayerObservable", "classarmnn_1_1_added_layer_observable.xhtml", null ]
      ] ],
      [ "GraphObservable< std::string >", "classarmnn_1_1_graph_observable.xhtml", [
        [ "ErasedLayerNamesObservable", "classarmnn_1_1_erased_layer_names_observable.xhtml", null ]
      ] ]
    ] ],
    [ "IInferenceTestCase", "classarmnn_1_1test_1_1_i_inference_test_case.xhtml", [
      [ "InferenceModelTestCase< TModel >", "classarmnn_1_1test_1_1_inference_model_test_case.xhtml", [
        [ "ClassifierTestCase< TTestCaseDatabase, TModel >", "classarmnn_1_1test_1_1_classifier_test_case.xhtml", null ]
      ] ],
      [ "InferenceModelTestCase< Model >", "classarmnn_1_1test_1_1_inference_model_test_case.xhtml", [
        [ "YoloTestCase< Model >", "class_yolo_test_case.xhtml", null ]
      ] ]
    ] ],
    [ "IInferenceTestCaseProvider", "classarmnn_1_1test_1_1_i_inference_test_case_provider.xhtml", [
      [ "ClassifierTestCaseProvider< TDatabase, InferenceModel >", "classarmnn_1_1test_1_1_classifier_test_case_provider.xhtml", null ],
      [ "YoloTestCaseProvider< Model >", "class_yolo_test_case_provider.xhtml", null ]
    ] ],
    [ "IInitialiseProfilingService", null, [
      [ "ArmNNProfilingServiceInitialiser", "classarmnn_1_1_arm_n_n_profiling_service_initialiser.xhtml", null ]
    ] ],
    [ "IInitialiseProfilingService", null, [
      [ "RuntimeImpl", "structarmnn_1_1_runtime_impl.xhtml", null ]
    ] ],
    [ "IInputSlot", "classarmnn_1_1_i_input_slot.xhtml", [
      [ "InputSlot", "classarmnn_1_1_input_slot.xhtml", null ]
    ] ],
    [ "ILayerSupport", "classarmnn_1_1_i_layer_support.xhtml", [
      [ "LayerSupportBase", "classarmnn_1_1_layer_support_base.xhtml", [
        [ "ClLayerSupport", "classarmnn_1_1_cl_layer_support.xhtml", null ],
        [ "MockImportLayerSupport", "classarmnn_1_1_mock_import_layer_support.xhtml", null ],
        [ "MockLayerSupport", "classarmnn_1_1_mock_layer_support.xhtml", null ],
        [ "NeonLayerSupport", "classarmnn_1_1_neon_layer_support.xhtml", null ],
        [ "RefLayerSupport", "classarmnn_1_1_ref_layer_support.xhtml", null ],
        [ "SampleDynamicLayerSupport", "classsdb_1_1_sample_dynamic_layer_support.xhtml", null ]
      ] ]
    ] ],
    [ "ILayerVisitor", null, [
      [ "LayerVisitorBase< DefaultPolicy >", "classarmnn_1_1_layer_visitor_base.xhtml", null ]
    ] ],
    [ "ILocalPacketHandler", null, [
      [ "PrintPacketHeaderHandler", "classarm_1_1pipe_1_1_print_packet_header_handler.xhtml", null ],
      [ "RequestCountersPacketHandler", "classarm_1_1pipe_1_1_request_counters_packet_handler.xhtml", null ],
      [ "TestTimelinePacketHandler", "classarm_1_1pipe_1_1_test_timeline_packet_handler.xhtml", null ]
    ] ],
    [ "ImagePreprocessor< TDataType >", "class_image_preprocessor.xhtml", null ],
    [ "IMemoryManager", "classarmnn_1_1_i_memory_manager.xhtml", [
      [ "BaseMemoryManager", "classarmnn_1_1_base_memory_manager.xhtml", [
        [ "ClMemoryManager", "classarmnn_1_1_cl_memory_manager.xhtml", null ],
        [ "NeonMemoryManager", "classarmnn_1_1_neon_memory_manager.xhtml", null ]
      ] ],
      [ "MockMemoryManager", "classarmnn_1_1_mock_memory_manager.xhtml", null ],
      [ "RefMemoryManager", "classarmnn_1_1_ref_memory_manager.xhtml", null ],
      [ "SampleMemoryManager", "classsdb_1_1_sample_memory_manager.xhtml", null ]
    ] ],
    [ "IMemoryOptimizerStrategy", "classarmnn_1_1_i_memory_optimizer_strategy.xhtml", [
      [ "ConstantMemoryStrategy", "classarmnn_1_1_constant_memory_strategy.xhtml", null ],
      [ "SingleAxisPriorityList", "classarmnn_1_1_single_axis_priority_list.xhtml", null ],
      [ "StrategyValidator", "classarmnn_1_1_strategy_validator.xhtml", null ],
      [ "TestStrategy", "classarmnn_1_1_test_strategy.xhtml", null ]
    ] ],
    [ "IMemoryOptimizerStrategyFactory", "structarmnn_1_1_i_memory_optimizer_strategy_factory.xhtml", [
      [ "StrategyFactory< T >", "structarmnn_1_1_strategy_factory.xhtml", null ]
    ] ],
    [ "INetwork", "classarmnn_1_1_i_network.xhtml", null ],
    [ "INetworkProperties", "structarmnn_1_1_i_network_properties.xhtml", null ],
    [ "InferenceModel< IParser, TDataType >", "class_inference_model.xhtml", null ],
    [ "InferenceTestImage", "class_inference_test_image.xhtml", null ],
    [ "InferenceTestOptions", "structarmnn_1_1test_1_1_inference_test_options.xhtml", null ],
    [ "InputLayerBuilder", "structarmnn_serializer_1_1_input_layer_builder.xhtml", null ],
    [ "Graph::InputLayersAccessor", "structarmnn_1_1_graph_1_1_input_layers_accessor.xhtml", null ],
    [ "WorkingMemHandle::InputMemDescriptorCoords", "structarmnn_1_1experimental_1_1_working_mem_handle_1_1_input_mem_descriptor_coords.xhtml", null ],
    [ "InputSlotBuilder", "structarmnn_serializer_1_1_input_slot_builder.xhtml", null ],
    [ "InstanceNormalizationDescriptorBuilder", "structarmnn_serializer_1_1_instance_normalization_descriptor_builder.xhtml", null ],
    [ "InstanceNormalizationLayerBuilder", "structarmnn_serializer_1_1_instance_normalization_layer_builder.xhtml", null ],
    [ "Instrument", "classarmnn_1_1_instrument.xhtml", [
      [ "NeonTimer", "classarmnn_1_1_neon_timer.xhtml", null ],
      [ "OpenClTimer", "classarmnn_1_1_open_cl_timer.xhtml", null ],
      [ "WallClockTimer", "classarmnn_1_1_wall_clock_timer.xhtml", null ]
    ] ],
    [ "IntDataBuilder", "structarmnn_serializer_1_1_int_data_builder.xhtml", null ],
    [ "integral_constant", null, [
      [ "is_floating_point< const armnn::Half >", "structstd_1_1is__floating__point_3_01const_01armnn_1_1_half_01_4.xhtml", null ],
      [ "is_floating_point< volatile armnn::Half >", "structstd_1_1is__floating__point_3_01volatile_01armnn_1_1_half_01_4.xhtml", null ]
    ] ],
    [ "integral_constant", null, [
      [ "IsHalfType< T >", "structarmnn_1_1_is_half_type.xhtml", null ],
      [ "is_floating_point< armnn::Half >", "structstd_1_1is__floating__point_3_01armnn_1_1_half_01_4.xhtml", null ]
    ] ],
    [ "IOnnxParser", "classarmnn_onnx_parser_1_1_i_onnx_parser.xhtml", null ],
    [ "IOptimizedNetwork", "classarmnn_1_1_i_optimized_network.xhtml", null ],
    [ "IOutputSlot", "classarmnn_1_1_i_output_slot.xhtml", [
      [ "OutputSlot", "classarmnn_1_1_output_slot.xhtml", null ]
    ] ],
    [ "IPacketBuffer", null, [
      [ "MockPacketBuffer", "classarm_1_1pipe_1_1_mock_packet_buffer.xhtml", null ]
    ] ],
    [ "IProfiler", "classarmnn_1_1_i_profiler.xhtml", null ],
    [ "IProfilingConnection", null, [
      [ "MockProfilingConnection", "classarm_1_1pipe_1_1_mock_profiling_connection.xhtml", null ],
      [ "TestProfilingConnectionBase", "classarm_1_1pipe_1_1_test_profiling_connection_base.xhtml", [
        [ "TestProfilingConnectionArmnnError", "classarm_1_1pipe_1_1_test_profiling_connection_armnn_error.xhtml", null ],
        [ "TestProfilingConnectionBadAckPacket", "classarm_1_1pipe_1_1_test_profiling_connection_bad_ack_packet.xhtml", null ],
        [ "TestProfilingConnectionTimeoutError", "classarm_1_1pipe_1_1_test_profiling_connection_timeout_error.xhtml", null ]
      ] ]
    ] ],
    [ "IProfilingConnectionFactory", null, [
      [ "MockProfilingConnectionFactory", "classarm_1_1pipe_1_1_mock_profiling_connection_factory.xhtml", null ]
    ] ],
    [ "IProfilingServiceStatus", null, [
      [ "MockProfilingServiceStatus", "classarm_1_1pipe_1_1_mock_profiling_service_status.xhtml", null ]
    ] ],
    [ "IReportStructure", null, [
      [ "RuntimeImpl", "structarmnn_1_1_runtime_impl.xhtml", null ]
    ] ],
    [ "IRuntime", "classarmnn_1_1_i_runtime.xhtml", null ],
    [ "IsBFloat16Layer", "structarmnn_1_1optimizations_1_1_is_b_float16_layer.xhtml", null ],
    [ "IScheduler", null, [
      [ "NeonInterceptorScheduler", "classarmnn_1_1_neon_interceptor_scheduler.xhtml", null ]
    ] ],
    [ "ISendCounterPacket", null, [
      [ "MockSendCounterPacket", "classarm_1_1pipe_1_1_mock_send_counter_packet.xhtml", null ]
    ] ],
    [ "ISerializer", "classarmnn_serializer_1_1_i_serializer.xhtml", null ],
    [ "IsFloat16Layer", "structarmnn_1_1optimizations_1_1_is_float16_layer.xhtml", null ],
    [ "IsFloat32Layer", "structarmnn_1_1optimizations_1_1_is_float32_layer.xhtml", null ],
    [ "IsFloatingPointIterator< ItType >", "structarmnn_utils_1_1_is_floating_point_iterator.xhtml", null ],
    [ "IsMemorySource< T >", "structarmnn_1_1_is_memory_source.xhtml", null ],
    [ "IsMemorySource< MemorySource >", "structarmnn_1_1_is_memory_source_3_01_memory_source_01_4.xhtml", null ],
    [ "IStrategy", "classarmnn_1_1_i_strategy.xhtml", [
      [ "StrategyBase< DefaultStrategy >", "classarmnn_1_1_strategy_base.xhtml", null ],
      [ "SerializerStrategy", "classarmnn_serializer_1_1_serializer_strategy.xhtml", null ],
      [ "LayerVerifierBase", "class_layer_verifier_base.xhtml", [
        [ "LayerVerifierBaseWithDescriptor< Descriptor >", "class_layer_verifier_base_with_descriptor.xhtml", [
          [ "LayerVerifierBaseWithDescriptorAndConstants< Descriptor >", "class_layer_verifier_base_with_descriptor_and_constants.xhtml", null ]
        ] ]
      ] ],
      [ "StrategyBase< NoThrowStrategy >", "classarmnn_1_1_strategy_base.xhtml", [
        [ "TestLayerVisitor", "classarmnn_1_1_test_layer_visitor.xhtml", [
          [ "LstmVisitor", "classarmnn_1_1_lstm_visitor.xhtml", [
            [ "TestLstmLayerVisitor", "classarmnn_1_1_test_lstm_layer_visitor.xhtml", null ],
            [ "TestQLstmLayerVisitor", "classarmnn_1_1_test_q_lstm_layer_visitor.xhtml", null ]
          ] ],
          [ "TestBatchNormalizationLayerVisitor", "classarmnn_1_1_test_batch_normalization_layer_visitor.xhtml", null ],
          [ "TestConstantLayerVisitor", "classarmnn_1_1_test_constant_layer_visitor.xhtml", null ],
          [ "TestConvolution2dLayerVisitor", "classarmnn_1_1_test_convolution2d_layer_visitor.xhtml", null ],
          [ "TestDepthwiseConvolution2dLayerVisitor", "classarmnn_1_1_test_depthwise_convolution2d_layer_visitor.xhtml", null ],
          [ "TestFullyConnectedLayerVistor", "classarmnn_1_1_test_fully_connected_layer_vistor.xhtml", null ],
          [ "TestInputLayerVisitor", "classarmnn_1_1_test_input_layer_visitor.xhtml", null ],
          [ "TestOutputLayerVisitor", "classarmnn_1_1_test_output_layer_visitor.xhtml", null ],
          [ "TestQuantizedLstmLayerVisitor", "classarmnn_1_1_test_quantized_lstm_layer_visitor.xhtml", null ],
          [ "TestActivationLayerVisitor", "class_test_activation_layer_visitor.xhtml", null ],
          [ "TestAdditionLayerVisitor", "class_test_addition_layer_visitor.xhtml", null ],
          [ "TestArgMinMaxLayerVisitor", "class_test_arg_min_max_layer_visitor.xhtml", null ],
          [ "TestBatchToSpaceNdLayerVisitor", "class_test_batch_to_space_nd_layer_visitor.xhtml", null ],
          [ "TestComparisonLayerVisitor", "class_test_comparison_layer_visitor.xhtml", null ],
          [ "TestConcatLayerVisitor", "class_test_concat_layer_visitor.xhtml", null ],
          [ "TestDepthToSpaceLayerVisitor", "class_test_depth_to_space_layer_visitor.xhtml", null ],
          [ "TestDequantizeLayerVisitor", "class_test_dequantize_layer_visitor.xhtml", null ],
          [ "TestDivisionLayerVisitor", "class_test_division_layer_visitor.xhtml", null ],
          [ "TestElementwiseUnaryLayerVisitor", "class_test_elementwise_unary_layer_visitor.xhtml", null ],
          [ "TestFillLayerVisitor", "class_test_fill_layer_visitor.xhtml", null ],
          [ "TestFloorLayerVisitor", "class_test_floor_layer_visitor.xhtml", null ],
          [ "TestGatherLayerVisitor", "class_test_gather_layer_visitor.xhtml", null ],
          [ "TestInstanceNormalizationLayerVisitor", "class_test_instance_normalization_layer_visitor.xhtml", null ],
          [ "TestL2NormalizationLayerVisitor", "class_test_l2_normalization_layer_visitor.xhtml", null ],
          [ "TestLogicalBinaryLayerVisitor", "class_test_logical_binary_layer_visitor.xhtml", null ],
          [ "TestLogSoftmaxLayerVisitor", "class_test_log_softmax_layer_visitor.xhtml", null ],
          [ "TestMaximumLayerVisitor", "class_test_maximum_layer_visitor.xhtml", null ],
          [ "TestMeanLayerVisitor", "class_test_mean_layer_visitor.xhtml", null ],
          [ "TestMergeLayerVisitor", "class_test_merge_layer_visitor.xhtml", null ],
          [ "TestMinimumLayerVisitor", "class_test_minimum_layer_visitor.xhtml", null ],
          [ "TestMultiplicationLayerVisitor", "class_test_multiplication_layer_visitor.xhtml", null ],
          [ "TestNormalizationLayerVisitor", "class_test_normalization_layer_visitor.xhtml", null ],
          [ "TestPadLayerVisitor", "class_test_pad_layer_visitor.xhtml", null ],
          [ "TestPermuteLayerVisitor", "class_test_permute_layer_visitor.xhtml", null ],
          [ "TestPooling2dLayerVisitor", "class_test_pooling2d_layer_visitor.xhtml", null ],
          [ "TestPreluLayerVisitor", "class_test_prelu_layer_visitor.xhtml", null ],
          [ "TestQuantizeLayerVisitor", "class_test_quantize_layer_visitor.xhtml", null ],
          [ "TestRankLayerVisitor", "class_test_rank_layer_visitor.xhtml", null ],
          [ "TestReduceLayerVisitor", "class_test_reduce_layer_visitor.xhtml", null ],
          [ "TestReshapeLayerVisitor", "class_test_reshape_layer_visitor.xhtml", null ],
          [ "TestResizeLayerVisitor", "class_test_resize_layer_visitor.xhtml", null ],
          [ "TestSliceLayerVisitor", "class_test_slice_layer_visitor.xhtml", null ],
          [ "TestSoftmaxLayerVisitor", "class_test_softmax_layer_visitor.xhtml", null ],
          [ "TestSpaceToBatchNdLayerVisitor", "class_test_space_to_batch_nd_layer_visitor.xhtml", null ],
          [ "TestSpaceToDepthLayerVisitor", "class_test_space_to_depth_layer_visitor.xhtml", null ],
          [ "TestSplitterLayerVisitor", "class_test_splitter_layer_visitor.xhtml", null ],
          [ "TestStackLayerVisitor", "class_test_stack_layer_visitor.xhtml", null ],
          [ "TestStandInLayerVisitor", "class_test_stand_in_layer_visitor.xhtml", null ],
          [ "TestStridedSliceLayerVisitor", "class_test_strided_slice_layer_visitor.xhtml", null ],
          [ "TestSubtractionLayerVisitor", "class_test_subtraction_layer_visitor.xhtml", null ],
          [ "TestSwitchLayerVisitor", "class_test_switch_layer_visitor.xhtml", null ],
          [ "TestTransposeLayerVisitor", "class_test_transpose_layer_visitor.xhtml", null ]
        ] ]
      ] ]
    ] ],
    [ "ISubgraphViewConverter", "classarmnn_1_1_i_subgraph_view_converter.xhtml", null ],
    [ "ITensorHandle", "classarmnn_1_1_i_tensor_handle.xhtml", [
      [ "ConstTensorHandle", "classarmnn_1_1_const_tensor_handle.xhtml", [
        [ "ConstPassthroughTensorHandle", "classarmnn_1_1_const_passthrough_tensor_handle.xhtml", null ],
        [ "TensorHandle", "classarmnn_1_1_tensor_handle.xhtml", [
          [ "PassthroughTensorHandle", "classarmnn_1_1_passthrough_tensor_handle.xhtml", null ],
          [ "ScopedTensorHandle", "classarmnn_1_1_scoped_tensor_handle.xhtml", null ]
        ] ]
      ] ],
      [ "IAclTensorHandle", "classarmnn_1_1_i_acl_tensor_handle.xhtml", [
        [ "IClTensorHandle", "classarmnn_1_1_i_cl_tensor_handle.xhtml", [
          [ "ClImportSubTensorHandle", "classarmnn_1_1_cl_import_sub_tensor_handle.xhtml", null ],
          [ "ClImportTensorHandle", "classarmnn_1_1_cl_import_tensor_handle.xhtml", null ],
          [ "ClSubTensorHandle", "classarmnn_1_1_cl_sub_tensor_handle.xhtml", null ],
          [ "ClTensorHandle", "classarmnn_1_1_cl_tensor_handle.xhtml", null ]
        ] ],
        [ "NeonSubTensorHandle", "classarmnn_1_1_neon_sub_tensor_handle.xhtml", null ],
        [ "NeonTensorHandle", "classarmnn_1_1_neon_tensor_handle.xhtml", null ]
      ] ],
      [ "MockTensorHandle", "classarmnn_1_1_mock_tensor_handle.xhtml", null ],
      [ "RefTensorHandle", "classarmnn_1_1_ref_tensor_handle.xhtml", null ],
      [ "SampleTensorHandle", "classsdb_1_1_sample_tensor_handle.xhtml", null ]
    ] ],
    [ "ITensorHandleFactory", "classarmnn_1_1_i_tensor_handle_factory.xhtml", [
      [ "ClImportTensorHandleFactory", "classarmnn_1_1_cl_import_tensor_handle_factory.xhtml", null ],
      [ "ClTensorHandleFactory", "classarmnn_1_1_cl_tensor_handle_factory.xhtml", null ],
      [ "MockTensorHandleFactory", "classarmnn_1_1_mock_tensor_handle_factory.xhtml", null ],
      [ "NeonTensorHandleFactory", "classarmnn_1_1_neon_tensor_handle_factory.xhtml", null ],
      [ "RefTensorHandleFactory", "classarmnn_1_1_ref_tensor_handle_factory.xhtml", null ],
      [ "SampleDynamicTensorHandleFactory", "classsdb_1_1_sample_dynamic_tensor_handle_factory.xhtml", null ]
    ] ],
    [ "iterator", null, [
      [ "TransformIterator< Function, Iterator, Category, T, Distance, Pointer, Reference >", "classarmnn_1_1_transform_iterator.xhtml", null ]
    ] ],
    [ "ITfLiteParser", "classarmnn_tf_lite_parser_1_1_i_tf_lite_parser.xhtml", null ],
    [ "ITimelineDecoder", null, [
      [ "TimelineMessageDecoder", "classarm_1_1pipe_1_1_timeline_message_decoder.xhtml", null ],
      [ "JSONTimelineDecoder", "classarmnn_1_1timelinedecoder_1_1_j_s_o_n_timeline_decoder.xhtml", null ]
    ] ],
    [ "IWorkingMemHandle", "classarmnn_1_1experimental_1_1_i_working_mem_handle.xhtml", [
      [ "WorkingMemHandle", "classarmnn_1_1experimental_1_1_working_mem_handle.xhtml", null ]
    ] ],
    [ "IWorkload", "classarmnn_1_1_i_workload.xhtml", [
      [ "BaseWorkload< QueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< QueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", null ],
        [ "FirstInputTypedWorkload< QueueDescriptor, DataType >", "classarmnn_1_1_first_input_typed_workload.xhtml", null ],
        [ "MultiTypedWorkload< QueueDescriptor, InputDataType, OutputDataType >", "classarmnn_1_1_multi_typed_workload.xhtml", [
          [ "ClConvertFp16ToFp32Workload", "classarmnn_1_1_cl_convert_fp16_to_fp32_workload.xhtml", null ],
          [ "ClConvertFp32ToFp16Workload", "classarmnn_1_1_cl_convert_fp32_to_fp16_workload.xhtml", null ],
          [ "NeonConvertBf16ToFp32Workload", "classarmnn_1_1_neon_convert_bf16_to_fp32_workload.xhtml", null ],
          [ "NeonConvertFp16ToFp32Workload", "classarmnn_1_1_neon_convert_fp16_to_fp32_workload.xhtml", null ],
          [ "NeonConvertFp32ToBf16Workload", "classarmnn_1_1_neon_convert_fp32_to_bf16_workload.xhtml", null ],
          [ "NeonConvertFp32ToFp16Workload", "classarmnn_1_1_neon_convert_fp32_to_fp16_workload.xhtml", null ],
          [ "RefConvertBf16ToFp32Workload", "classarmnn_1_1_ref_convert_bf16_to_fp32_workload.xhtml", null ],
          [ "RefConvertFp16ToFp32Workload", "classarmnn_1_1_ref_convert_fp16_to_fp32_workload.xhtml", null ],
          [ "RefConvertFp32ToBf16Workload", "classarmnn_1_1_ref_convert_fp32_to_bf16_workload.xhtml", null ],
          [ "RefConvertFp32ToFp16Workload", "classarmnn_1_1_ref_convert_fp32_to_fp16_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< QueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", null ],
        [ "RefBaseWorkload< QueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", null ],
        [ "TypedWorkload< QueueDescriptor, DataTypes >", "classarmnn_1_1_typed_workload.xhtml", [
          [ "ClBatchNormalizationFloatWorkload", "classarmnn_1_1_cl_batch_normalization_float_workload.xhtml", null ],
          [ "ClFloorFloatWorkload", "classarmnn_1_1_cl_floor_float_workload.xhtml", null ],
          [ "ClL2NormalizationFloatWorkload", "classarmnn_1_1_cl_l2_normalization_float_workload.xhtml", null ],
          [ "ClLstmFloatWorkload", "classarmnn_1_1_cl_lstm_float_workload.xhtml", null ],
          [ "ClNormalizationFloatWorkload", "classarmnn_1_1_cl_normalization_float_workload.xhtml", null ],
          [ "ClUnidirectionalSequenceLstmFloatWorkload", "classarmnn_1_1_cl_unidirectional_sequence_lstm_float_workload.xhtml", null ],
          [ "NeonFloorFloatWorkload", "classarmnn_1_1_neon_floor_float_workload.xhtml", null ],
          [ "NeonL2NormalizationFloatWorkload", "classarmnn_1_1_neon_l2_normalization_float_workload.xhtml", null ],
          [ "NeonLstmFloatWorkload", "classarmnn_1_1_neon_lstm_float_workload.xhtml", null ],
          [ "NeonNormalizationFloatWorkload", "classarmnn_1_1_neon_normalization_float_workload.xhtml", null ],
          [ "NeonUnidirectionalSequenceLstmFloatWorkload", "classarmnn_1_1_neon_unidirectional_sequence_lstm_float_workload.xhtml", null ],
          [ "RefFakeQuantizationFloat32Workload", "classarmnn_1_1_ref_fake_quantization_float32_workload.xhtml", null ]
        ] ]
      ] ],
      [ "NullWorkload", "classarmnn_1_1_null_workload.xhtml", null ],
      [ "BaseWorkload< AbsQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< AbsQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClAbsWorkload", "classarmnn_1_1_cl_abs_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< AbsQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonAbsWorkload", "classarmnn_1_1_neon_abs_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ActivationQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< ActivationQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClActivationWorkload", "classarmnn_1_1_cl_activation_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< ActivationQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonActivationWorkload", "classarmnn_1_1_neon_activation_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< ActivationQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefActivationWorkload", "classarmnn_1_1_ref_activation_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< AdditionQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< AdditionQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClAdditionWorkload", "classarmnn_1_1_cl_addition_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< AdditionQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonAdditionWorkload", "classarmnn_1_1_neon_addition_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ArgMinMaxQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< ArgMinMaxQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClArgMinMaxWorkload", "classarmnn_1_1_cl_arg_min_max_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< ArgMinMaxQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonArgMinMaxWorkload", "classarmnn_1_1_neon_arg_min_max_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< ArgMinMaxQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefArgMinMaxWorkload", "classarmnn_1_1_ref_arg_min_max_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< armnn::AdditionQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "SampleDynamicAdditionWorkload", "classsdb_1_1_sample_dynamic_addition_workload.xhtml", null ]
      ] ],
      [ "BaseWorkload< BatchNormalizationQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "NeonBaseWorkload< BatchNormalizationQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonBatchNormalizationWorkload", "classarmnn_1_1_neon_batch_normalization_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< BatchNormalizationQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefBatchNormalizationWorkload", "classarmnn_1_1_ref_batch_normalization_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< BatchToSpaceNdQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< BatchToSpaceNdQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClBatchToSpaceNdWorkload", "classarmnn_1_1_cl_batch_to_space_nd_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< BatchToSpaceNdQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonBatchToSpaceNdWorkload", "classarmnn_1_1_neon_batch_to_space_nd_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< BatchToSpaceNdQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefBatchToSpaceNdWorkload", "classarmnn_1_1_ref_batch_to_space_nd_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< CastQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< CastQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClCastWorkload", "classarmnn_1_1_cl_cast_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< CastQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonCastWorkload", "classarmnn_1_1_neon_cast_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< CastQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefCastWorkload", "classarmnn_1_1_ref_cast_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ChannelShuffleQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< ChannelShuffleQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClChannelShuffleWorkload", "classarmnn_1_1_cl_channel_shuffle_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< ChannelShuffleQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonChannelShuffleWorkload", "classarmnn_1_1_neon_channel_shuffle_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< ChannelShuffleQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefChannelShuffleWorkload", "classarmnn_1_1_ref_channel_shuffle_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ComparisonQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< ComparisonQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClComparisonWorkload", "classarmnn_1_1_cl_comparison_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< ComparisonQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonComparisonWorkload", "classarmnn_1_1_neon_comparison_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< ComparisonQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefComparisonWorkload", "classarmnn_1_1_ref_comparison_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ConcatQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< ConcatQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClConcatWorkload", "classarmnn_1_1_cl_concat_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< ConcatQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonConcatWorkload", "classarmnn_1_1_neon_concat_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< ConcatQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefConcatWorkload", "classarmnn_1_1_ref_concat_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ConstantQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< ConstantQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClConstantWorkload", "classarmnn_1_1_cl_constant_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< ConstantQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonConstantWorkload", "classarmnn_1_1_neon_constant_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< ConstantQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefConstantWorkload", "classarmnn_1_1_ref_constant_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< Convolution2dQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< Convolution2dQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClConvolution2dWorkload", "classarmnn_1_1_cl_convolution2d_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< Convolution2dQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonConvolution2dWorkload", "classarmnn_1_1_neon_convolution2d_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< Convolution2dQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefConvolution2dWorkload", "classarmnn_1_1_ref_convolution2d_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< Convolution3dQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< Convolution3dQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClConvolution3dWorkload", "classarmnn_1_1_cl_convolution3d_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< Convolution3dQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonConvolution3dWorkload", "classarmnn_1_1_neon_convolution3d_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< Convolution3dQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefConvolution3dWorkload", "classarmnn_1_1_ref_convolution3d_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< DebugQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "TypedWorkload< DebugQueueDescriptor, DataType >", "classarmnn_1_1_typed_workload.xhtml", [
          [ "RefDebugWorkload< DataType >", "classarmnn_1_1_ref_debug_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< DepthToSpaceQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< DepthToSpaceQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClDepthToSpaceWorkload", "classarmnn_1_1_cl_depth_to_space_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< DepthToSpaceQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonDepthToSpaceWorkload", "classarmnn_1_1_neon_depth_to_space_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< DepthToSpaceQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefDepthToSpaceWorkload", "classarmnn_1_1_ref_depth_to_space_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< DepthwiseConvolution2dQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< DepthwiseConvolution2dQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClDepthwiseConvolutionWorkload", "classarmnn_1_1_cl_depthwise_convolution_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< DepthwiseConvolution2dQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonDepthwiseConvolutionWorkload", "classarmnn_1_1_neon_depthwise_convolution_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< DepthwiseConvolution2dQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefDepthwiseConvolution2dWorkload", "classarmnn_1_1_ref_depthwise_convolution2d_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< DequantizeQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< DequantizeQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClDequantizeWorkload", "classarmnn_1_1_cl_dequantize_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< DequantizeQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonDequantizeWorkload", "classarmnn_1_1_neon_dequantize_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< DequantizeQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefDequantizeWorkload", "classarmnn_1_1_ref_dequantize_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< DetectionPostProcessQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "NeonBaseWorkload< DetectionPostProcessQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonDetectionPostProcessWorkload", "classarmnn_1_1_neon_detection_post_process_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< DetectionPostProcessQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefDetectionPostProcessWorkload", "classarmnn_1_1_ref_detection_post_process_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< DivisionQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< DivisionQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClDivisionWorkload", "classarmnn_1_1_cl_division_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< DivisionQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonDivisionWorkload", "classarmnn_1_1_neon_division_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ElementwiseUnaryQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< ElementwiseUnaryQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClExpWorkload", "classarmnn_1_1_cl_exp_workload.xhtml", null ],
          [ "ClLogicalNotWorkload", "classarmnn_1_1_cl_logical_not_workload.xhtml", null ],
          [ "ClLogWorkload", "classarmnn_1_1_cl_log_workload.xhtml", null ],
          [ "ClNegWorkload", "classarmnn_1_1_cl_neg_workload.xhtml", null ],
          [ "ClSinWorkload", "classarmnn_1_1_cl_sin_workload.xhtml", null ],
          [ "ClSqrtWorkload", "classarmnn_1_1_cl_sqrt_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< ElementwiseUnaryQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonExpWorkload", "classarmnn_1_1_neon_exp_workload.xhtml", null ],
          [ "NeonLogicalNotWorkload", "classarmnn_1_1_neon_logical_not_workload.xhtml", null ],
          [ "NeonLogWorkload", "classarmnn_1_1_neon_log_workload.xhtml", null ],
          [ "NeonNegWorkload", "classarmnn_1_1_neon_neg_workload.xhtml", null ],
          [ "NeonSinWorkload", "classarmnn_1_1_neon_sin_workload.xhtml", null ],
          [ "NeonSqrtWorkload", "classarmnn_1_1_neon_sqrt_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< ElementwiseUnaryQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefElementwiseUnaryWorkload", "classarmnn_1_1_ref_elementwise_unary_workload.xhtml", null ],
          [ "RefLogicalUnaryWorkload", "classarmnn_1_1_ref_logical_unary_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< FillQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< FillQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClFillWorkload", "classarmnn_1_1_cl_fill_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< FillQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonFillWorkload", "classarmnn_1_1_neon_fill_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< FillQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefFillWorkload", "classarmnn_1_1_ref_fill_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< FloorQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "RefBaseWorkload< FloorQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefFloorWorkload", "classarmnn_1_1_ref_floor_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< FullyConnectedQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< FullyConnectedQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClFullyConnectedWorkload", "classarmnn_1_1_cl_fully_connected_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< FullyConnectedQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonFullyConnectedWorkload", "classarmnn_1_1_neon_fully_connected_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< FullyConnectedQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefFullyConnectedWorkload", "classarmnn_1_1_ref_fully_connected_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< GatherNdQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< GatherNdQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClGatherNdWorkload", "classarmnn_1_1_cl_gather_nd_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< GatherNdQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonGatherNdWorkload", "classarmnn_1_1_neon_gather_nd_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< GatherNdQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefGatherNdWorkload", "classarmnn_1_1_ref_gather_nd_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< GatherQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< GatherQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClGatherWorkload", "classarmnn_1_1_cl_gather_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< GatherQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonGatherWorkload", "classarmnn_1_1_neon_gather_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< GatherQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefGatherWorkload", "classarmnn_1_1_ref_gather_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< InstanceNormalizationQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< InstanceNormalizationQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClInstanceNormalizationWorkload", "classarmnn_1_1_cl_instance_normalization_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< InstanceNormalizationQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonInstanceNormalizationWorkload", "classarmnn_1_1_neon_instance_normalization_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< InstanceNormalizationQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefInstanceNormalizationWorkload", "classarmnn_1_1_ref_instance_normalization_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< L2NormalizationQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "RefBaseWorkload< L2NormalizationQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefL2NormalizationWorkload", "classarmnn_1_1_ref_l2_normalization_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< LogicalBinaryQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< LogicalBinaryQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClLogicalAndWorkload", "classarmnn_1_1_cl_logical_and_workload.xhtml", null ],
          [ "ClLogicalOrWorkload", "classarmnn_1_1_cl_logical_or_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< LogicalBinaryQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonLogicalAndWorkload", "classarmnn_1_1_neon_logical_and_workload.xhtml", null ],
          [ "NeonLogicalOrWorkload", "classarmnn_1_1_neon_logical_or_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< LogicalBinaryQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefLogicalBinaryWorkload", "classarmnn_1_1_ref_logical_binary_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< LogSoftmaxQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< LogSoftmaxQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClLogSoftmaxWorkload", "classarmnn_1_1_cl_log_softmax_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< LogSoftmaxQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonLogSoftmaxWorkload", "classarmnn_1_1_neon_log_softmax_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< LogSoftmaxQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefLogSoftmaxWorkload", "classarmnn_1_1_ref_log_softmax_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< LstmQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "RefBaseWorkload< LstmQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefLstmWorkload", "classarmnn_1_1_ref_lstm_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< MapQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "MapWorkload", "classarmnn_1_1_map_workload.xhtml", null ]
      ] ],
      [ "BaseWorkload< MaximumQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< MaximumQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClMaximumWorkload", "classarmnn_1_1_cl_maximum_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< MaximumQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonMaximumWorkload", "classarmnn_1_1_neon_maximum_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< MeanQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< MeanQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClMeanWorkload", "classarmnn_1_1_cl_mean_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< MeanQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonMeanWorkload", "classarmnn_1_1_neon_mean_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< MeanQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefMeanWorkload", "classarmnn_1_1_ref_mean_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< MemCopyQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "CopyMemGenericWorkload", "classarmnn_1_1_copy_mem_generic_workload.xhtml", null ]
      ] ],
      [ "BaseWorkload< MemImportQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ImportMemGenericWorkload", "classarmnn_1_1_import_mem_generic_workload.xhtml", null ]
      ] ],
      [ "BaseWorkload< MemSyncQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "SyncMemGenericWorkload", "classarmnn_1_1_sync_mem_generic_workload.xhtml", null ]
      ] ],
      [ "BaseWorkload< MinimumQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< MinimumQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClMinimumWorkload", "classarmnn_1_1_cl_minimum_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< MinimumQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonMinimumWorkload", "classarmnn_1_1_neon_minimum_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< MultiplicationQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< MultiplicationQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClMultiplicationWorkload", "classarmnn_1_1_cl_multiplication_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< MultiplicationQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonMultiplicationWorkload", "classarmnn_1_1_neon_multiplication_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< NormalizationQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "RefBaseWorkload< NormalizationQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefNormalizationWorkload", "classarmnn_1_1_ref_normalization_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< PadQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< PadQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClPadWorkload", "classarmnn_1_1_cl_pad_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< PadQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonPadWorkload", "classarmnn_1_1_neon_pad_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< PadQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefPadWorkload", "classarmnn_1_1_ref_pad_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ParentDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "RefBaseWorkload< ParentDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefElementwiseWorkload< Functor, ParentDescriptor, DebugString >", "classarmnn_1_1_ref_elementwise_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< PermuteQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< PermuteQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClPermuteWorkload", "classarmnn_1_1_cl_permute_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< PermuteQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonPermuteWorkload", "classarmnn_1_1_neon_permute_workload.xhtml", null ]
        ] ],
        [ "TypedWorkload< PermuteQueueDescriptor, DataType >", "classarmnn_1_1_typed_workload.xhtml", [
          [ "RefPermuteWorkload< DataType >", "classarmnn_1_1_ref_permute_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< Pooling2dQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< Pooling2dQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClPooling2dWorkload", "classarmnn_1_1_cl_pooling2d_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< Pooling2dQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonPooling2dWorkload", "classarmnn_1_1_neon_pooling2d_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< Pooling2dQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefPooling2dWorkload", "classarmnn_1_1_ref_pooling2d_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< Pooling3dQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< Pooling3dQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClPooling3dWorkload", "classarmnn_1_1_cl_pooling3d_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< Pooling3dQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonPooling3dWorkload", "classarmnn_1_1_neon_pooling3d_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< Pooling3dQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefPooling3dWorkload", "classarmnn_1_1_ref_pooling3d_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< PreluQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< PreluQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClPreluWorkload", "classarmnn_1_1_cl_prelu_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< PreluQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonPreluWorkload", "classarmnn_1_1_neon_prelu_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< PreluQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefPreluWorkload", "classarmnn_1_1_ref_prelu_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< QLstmQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< QLstmQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClQLstmWorkload", "classarmnn_1_1_cl_q_lstm_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< QLstmQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonQLstmWorkload", "classarmnn_1_1_neon_q_lstm_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< QLstmQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefQLstmWorkload", "classarmnn_1_1_ref_q_lstm_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< QuantizedLstmQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< QuantizedLstmQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClQuantizedLstmWorkload", "classarmnn_1_1_cl_quantized_lstm_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< QuantizedLstmQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonQuantizedLstmWorkload", "classarmnn_1_1_neon_quantized_lstm_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< QuantizeQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< QuantizeQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClQuantizeWorkload", "classarmnn_1_1_cl_quantize_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< QuantizeQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonQuantizeWorkload", "classarmnn_1_1_neon_quantize_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< QuantizeQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefQuantizeWorkload", "classarmnn_1_1_ref_quantize_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< RankQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< RankQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClRankWorkload", "structarmnn_1_1_cl_rank_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< RankQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonRankWorkload", "structarmnn_1_1_neon_rank_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< RankQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefRankWorkload", "structarmnn_1_1_ref_rank_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ReduceQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< ReduceQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClReduceWorkload", "classarmnn_1_1_cl_reduce_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< ReduceQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonReduceWorkload", "classarmnn_1_1_neon_reduce_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< ReduceQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefReduceWorkload", "classarmnn_1_1_ref_reduce_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ReshapeQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< ReshapeQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClReshapeWorkload", "classarmnn_1_1_cl_reshape_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< ReshapeQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonReshapeWorkload", "classarmnn_1_1_neon_reshape_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< ReshapeQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefReshapeWorkload", "classarmnn_1_1_ref_reshape_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ResizeQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< ResizeQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClResizeWorkload", "classarmnn_1_1_cl_resize_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< ResizeQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonResizeWorkload", "classarmnn_1_1_neon_resize_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< ResizeQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefResizeWorkload", "classarmnn_1_1_ref_resize_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< RsqrtQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< RsqrtQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClRsqrtWorkload", "classarmnn_1_1_cl_rsqrt_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< RsqrtQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonRsqrtWorkload", "classarmnn_1_1_neon_rsqrt_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< ShapeQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "RefBaseWorkload< ShapeQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefShapeWorkload", "structarmnn_1_1_ref_shape_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< SliceQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< SliceQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClSliceWorkload", "classarmnn_1_1_cl_slice_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< SliceQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonSliceWorkload", "classarmnn_1_1_neon_slice_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< SliceQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefSliceWorkload", "classarmnn_1_1_ref_slice_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< SoftmaxQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< SoftmaxQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClSoftmaxWorkload", "classarmnn_1_1_cl_softmax_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< SoftmaxQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonSoftmaxWorkload", "classarmnn_1_1_neon_softmax_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< SoftmaxQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefSoftmaxWorkload", "classarmnn_1_1_ref_softmax_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< SpaceToBatchNdQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< SpaceToBatchNdQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClSpaceToBatchNdWorkload", "classarmnn_1_1_cl_space_to_batch_nd_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< SpaceToBatchNdQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonSpaceToBatchNdWorkload", "classarmnn_1_1_neon_space_to_batch_nd_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< SpaceToBatchNdQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefSpaceToBatchNdWorkload", "classarmnn_1_1_ref_space_to_batch_nd_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< SpaceToDepthQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< SpaceToDepthQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClSpaceToDepthWorkload", "classarmnn_1_1_cl_space_to_depth_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< SpaceToDepthQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonSpaceToDepthWorkload", "classarmnn_1_1_neon_space_to_depth_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< SpaceToDepthQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefSpaceToDepthWorkload", "classarmnn_1_1_ref_space_to_depth_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< SplitterQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< SplitterQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClSplitterWorkload", "classarmnn_1_1_cl_splitter_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< SplitterQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonSplitterWorkload", "classarmnn_1_1_neon_splitter_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< SplitterQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefSplitterWorkload", "classarmnn_1_1_ref_splitter_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< StackQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< StackQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClStackWorkload", "classarmnn_1_1_cl_stack_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< StackQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonStackWorkload", "classarmnn_1_1_neon_stack_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< StackQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefStackWorkload", "classarmnn_1_1_ref_stack_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< StridedSliceQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< StridedSliceQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClStridedSliceWorkload", "classarmnn_1_1_cl_strided_slice_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< StridedSliceQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonStridedSliceWorkload", "classarmnn_1_1_neon_strided_slice_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< StridedSliceQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefStridedSliceWorkload", "classarmnn_1_1_ref_strided_slice_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< SubtractionQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< SubtractionQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClSubtractionWorkload", "classarmnn_1_1_cl_subtraction_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< SubtractionQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonSubtractionWorkload", "classarmnn_1_1_neon_subtraction_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< TransposeConvolution2dQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< TransposeConvolution2dQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClTransposeConvolution2dWorkload", "classarmnn_1_1_cl_transpose_convolution2d_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< TransposeConvolution2dQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonTransposeConvolution2dWorkload", "classarmnn_1_1_neon_transpose_convolution2d_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< TransposeConvolution2dQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefTransposeConvolution2dWorkload", "classarmnn_1_1_ref_transpose_convolution2d_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< TransposeQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "ClBaseWorkload< TransposeQueueDescriptor >", "classarmnn_1_1_cl_base_workload.xhtml", [
          [ "ClTransposeWorkload", "classarmnn_1_1_cl_transpose_workload.xhtml", null ]
        ] ],
        [ "NeonBaseWorkload< TransposeQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonTransposeWorkload", "classarmnn_1_1_neon_transpose_workload.xhtml", null ]
        ] ],
        [ "TypedWorkload< TransposeQueueDescriptor, DataType >", "classarmnn_1_1_typed_workload.xhtml", [
          [ "RefTransposeWorkload< DataType >", "classarmnn_1_1_ref_transpose_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< UnidirectionalSequenceLstmQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "NeonBaseWorkload< UnidirectionalSequenceLstmQueueDescriptor >", "classarmnn_1_1_neon_base_workload.xhtml", [
          [ "NeonUnidirectionalSequenceLstmWorkload", "classarmnn_1_1_neon_unidirectional_sequence_lstm_workload.xhtml", null ]
        ] ],
        [ "RefBaseWorkload< UnidirectionalSequenceLstmQueueDescriptor >", "classarmnn_1_1_ref_base_workload.xhtml", [
          [ "RefUnidirectionalSequenceLstmWorkload", "classarmnn_1_1_ref_unidirectional_sequence_lstm_workload.xhtml", null ]
        ] ]
      ] ],
      [ "BaseWorkload< UnmapQueueDescriptor >", "classarmnn_1_1_base_workload.xhtml", [
        [ "UnmapWorkload", "classarmnn_1_1_unmap_workload.xhtml", null ]
      ] ]
    ] ],
    [ "IWorkloadFactory", "classarmnn_1_1_i_workload_factory.xhtml", [
      [ "MockWorkloadFactory", "classarmnn_1_1_mock_workload_factory.xhtml", null ],
      [ "RefWorkloadFactory", "classarmnn_1_1_ref_workload_factory.xhtml", null ],
      [ "WorkloadFactoryBase", "classarmnn_1_1_workload_factory_base.xhtml", [
        [ "ClWorkloadFactory", "classarmnn_1_1_cl_workload_factory.xhtml", null ],
        [ "NeonWorkloadFactory", "classarmnn_1_1_neon_workload_factory.xhtml", null ]
      ] ],
      [ "SampleDynamicWorkloadFactory", "classsdb_1_1_sample_dynamic_workload_factory.xhtml", null ]
    ] ],
    [ "JsonChildObject", "structarmnn_1_1_json_child_object.xhtml", null ],
    [ "JSONTimelineDecoder::JSONEntity", "structarmnn_1_1timelinedecoder_1_1_j_s_o_n_timeline_decoder_1_1_j_s_o_n_entity.xhtml", null ],
    [ "JsonUtils", "classarmnn_1_1_json_utils.xhtml", [
      [ "JsonPrinter", "classarmnn_1_1_json_printer.xhtml", null ],
      [ "ProfilingDetails", "classarmnn_1_1_profiling_details.xhtml", null ]
    ] ],
    [ "L2NormalizationDescriptorBuilder", "structarmnn_serializer_1_1_l2_normalization_descriptor_builder.xhtml", null ],
    [ "L2NormalizationLayerBuilder", "structarmnn_serializer_1_1_l2_normalization_layer_builder.xhtml", null ],
    [ "LayerBaseBuilder", "structarmnn_serializer_1_1_layer_base_builder.xhtml", null ],
    [ "Graph::LayerInGraph< InputLayer >", "classarmnn_1_1_graph_1_1_layer_in_graph_3_01_input_layer_01_4.xhtml", null ],
    [ "Graph::LayerInGraph< OutputLayer >", "classarmnn_1_1_graph_1_1_layer_in_graph_3_01_output_layer_01_4.xhtml", null ],
    [ "LayerSupportHandle", "classarmnn_1_1_layer_support_handle.xhtml", null ],
    [ "LayerTestResult< T, n >", "struct_layer_test_result.xhtml", null ],
    [ "LayerTraits< T >", "structarmnn_serializer_1_1_layer_traits.xhtml", null ],
    [ "LayerTraits< armnnSerializer::AbsLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_abs_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ActivationLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_activation_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::AdditionLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_addition_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ArgMinMaxLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_arg_min_max_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::BatchNormalizationLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_batch_normalization_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::BatchToSpaceNdLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_batch_to_space_nd_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::CastLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_cast_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ChannelShuffleLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_channel_shuffle_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ComparisonLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_comparison_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ConcatLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_concat_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ConstantLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_constant_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::Convolution2dLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_convolution2d_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::Convolution3dLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_convolution3d_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::DepthToSpaceLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_depth_to_space_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::DepthwiseConvolution2dLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_depthwise_convolution2d_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::DequantizeLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_dequantize_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::DetectionPostProcessLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_detection_post_process_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::DivisionLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_division_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ElementwiseUnaryLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_elementwise_unary_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::EqualLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_equal_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::FillLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_fill_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::FloorLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_floor_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::FullyConnectedLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_fully_connected_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::GatherLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_gather_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::GatherNdLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_gather_nd_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::GreaterLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_greater_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::InputLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_input_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::InstanceNormalizationLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_instance_normalization_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::L2NormalizationLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_l2_normalization_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::LogicalBinaryLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_logical_binary_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::LogSoftmaxLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_log_softmax_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::LstmLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_lstm_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::MaximumLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_maximum_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::MeanLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_mean_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::MergeLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_merge_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::MergerLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_merger_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::MinimumLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_minimum_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::MultiplicationLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_multiplication_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::NormalizationLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_normalization_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::OutputLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_output_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::PadLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_pad_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::PermuteLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_permute_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::Pooling2dLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_pooling2d_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::Pooling3dLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_pooling3d_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::PreluLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_prelu_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::QLstmLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_q_lstm_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::QuantizedLstmLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_quantized_lstm_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::QuantizeLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_quantize_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::RankLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_rank_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ReduceLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_reduce_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ReshapeLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_reshape_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ResizeBilinearLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_resize_bilinear_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ResizeLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_resize_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::RsqrtLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_rsqrt_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::ShapeLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_shape_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::SliceLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_slice_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::SoftmaxLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_softmax_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::SpaceToBatchNdLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_space_to_batch_nd_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::SpaceToDepthLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_space_to_depth_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::SplitterLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_splitter_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::StackLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_stack_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::StandInLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_stand_in_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::StridedSliceLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_strided_slice_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::SubtractionLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_subtraction_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::SwitchLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_switch_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::TransposeConvolution2dLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_transpose_convolution2d_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::TransposeLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_transpose_layer_01_4.xhtml", null ],
    [ "LayerTraits< armnnSerializer::UnidirectionalSequenceLstmLayer >", "structarmnn_serializer_1_1_layer_traits_3_01armnn_serializer_1_1_unidirectional_sequence_lstm_layer_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< Type >", "structarmnn_1_1_layer_type_of_impl.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Activation >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_activation_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Addition >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_addition_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::ArgMinMax >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_arg_min_max_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::BatchNormalization >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_batch_normalization_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::BatchToSpaceNd >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_batch_to_space_nd_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Cast >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_cast_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::ChannelShuffle >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_channel_shuffle_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Comparison >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_comparison_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Concat >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_concat_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Constant >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_constant_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::ConvertBf16ToFp32 >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_convert_bf16_to_fp32_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::ConvertFp16ToFp32 >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_convert_fp16_to_fp32_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::ConvertFp32ToBf16 >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_convert_fp32_to_bf16_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::ConvertFp32ToFp16 >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_convert_fp32_to_fp16_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Convolution2d >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_convolution2d_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Convolution3d >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_convolution3d_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Debug >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_debug_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::DepthToSpace >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_depth_to_space_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::DepthwiseConvolution2d >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_depthwise_convolution2d_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Dequantize >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_dequantize_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::DetectionPostProcess >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_detection_post_process_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Division >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_division_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::ElementwiseUnary >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_elementwise_unary_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::FakeQuantization >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_fake_quantization_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Fill >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_fill_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Floor >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_floor_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::FullyConnected >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_fully_connected_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Gather >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_gather_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::GatherNd >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_gather_nd_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Input >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_input_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::InstanceNormalization >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_instance_normalization_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::L2Normalization >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_l2_normalization_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::LogicalBinary >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_logical_binary_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::LogSoftmax >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_log_softmax_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Lstm >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_lstm_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Map >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_map_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Maximum >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_maximum_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Mean >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_mean_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::MemCopy >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_mem_copy_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::MemImport >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_mem_import_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Merge >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_merge_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Minimum >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_minimum_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Multiplication >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_multiplication_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Normalization >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_normalization_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Output >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_output_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Pad >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_pad_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Permute >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_permute_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Pooling2d >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_pooling2d_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Pooling3d >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_pooling3d_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::PreCompiled >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_pre_compiled_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Prelu >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_prelu_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::QLstm >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_q_lstm_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Quantize >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_quantize_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::QuantizedLstm >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_quantized_lstm_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Rank >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_rank_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Reduce >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_reduce_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Reshape >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_reshape_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Resize >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_resize_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Shape >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_shape_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Slice >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_slice_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Softmax >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_softmax_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::SpaceToBatchNd >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_space_to_batch_nd_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::SpaceToDepth >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_space_to_depth_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Splitter >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_splitter_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Stack >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_stack_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::StandIn >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_stand_in_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::StridedSlice >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_strided_slice_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Subtraction >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_subtraction_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Switch >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_switch_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Transpose >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_transpose_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::TransposeConvolution2d >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_transpose_convolution2d_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::UnidirectionalSequenceLstm >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_unidirectional_sequence_lstm_01_4.xhtml", null ],
    [ "LayerTypeOfImpl< LayerType::Unmap >", "structarmnn_1_1_layer_type_of_impl_3_01_layer_type_1_1_unmap_01_4.xhtml", null ],
    [ "LoadedNetwork", "classarmnn_1_1_loaded_network.xhtml", null ],
    [ "log< T >", "structarmnn_1_1log.xhtml", null ],
    [ "LogicalBinaryDescriptorBuilder", "structarmnn_serializer_1_1_logical_binary_descriptor_builder.xhtml", null ],
    [ "LogicalBinaryFunction< Functor >", "structarmnn_1_1_logical_binary_function.xhtml", null ],
    [ "LogicalBinaryLayerBuilder", "structarmnn_serializer_1_1_logical_binary_layer_builder.xhtml", null ],
    [ "LogicalUnaryFunction< Functor >", "structarmnn_1_1_logical_unary_function.xhtml", null ],
    [ "LogSink", "classarmnn_1_1_log_sink.xhtml", [
      [ "StandardOutputSink", "classarmnn_1_1_standard_output_sink.xhtml", null ]
    ] ],
    [ "LogSoftmaxDescriptorBuilder", "structarmnn_serializer_1_1_log_softmax_descriptor_builder.xhtml", null ],
    [ "LogSoftmaxLayerBuilder", "structarmnn_serializer_1_1_log_softmax_layer_builder.xhtml", null ],
    [ "LongDataBuilder", "structarmnn_serializer_1_1_long_data_builder.xhtml", null ],
    [ "LstmBasicParameters", "structarmnn_1_1_lstm_basic_parameters.xhtml", null ],
    [ "LstmDescriptorBuilder", "structarmnn_serializer_1_1_lstm_descriptor_builder.xhtml", null ],
    [ "LstmInputParams", "structarmnn_1_1_lstm_input_params.xhtml", null ],
    [ "LstmInputParamsBuilder", "structarmnn_serializer_1_1_lstm_input_params_builder.xhtml", null ],
    [ "LstmInputParamsInfo", "structarmnn_1_1_lstm_input_params_info.xhtml", null ],
    [ "LstmLayerBuilder", "structarmnn_serializer_1_1_lstm_layer_builder.xhtml", null ],
    [ "LstmOptCifgParameters", "structarmnn_1_1_lstm_opt_cifg_parameters.xhtml", null ],
    [ "LstmOptLayerNormParameters", "structarmnn_1_1_lstm_opt_layer_norm_parameters.xhtml", null ],
    [ "LstmOptPeepholeParameters", "structarmnn_1_1_lstm_opt_peephole_parameters.xhtml", null ],
    [ "LstmOptProjectionParameters", "structarmnn_1_1_lstm_opt_projection_parameters.xhtml", null ],
    [ "ManagedConstTensorHandle", "classarmnn_1_1_managed_const_tensor_handle.xhtml", null ],
    [ "ProfilerImpl::Marker", "structarmnn_1_1_profiler_impl_1_1_marker.xhtml", null ],
    [ "maximum< T >", "structarmnn_1_1maximum.xhtml", null ],
    [ "MaximumLayerBuilder", "structarmnn_serializer_1_1_maximum_layer_builder.xhtml", null ],
    [ "MeanDescriptorBuilder", "structarmnn_serializer_1_1_mean_descriptor_builder.xhtml", null ],
    [ "MeanLayerBuilder", "structarmnn_serializer_1_1_mean_layer_builder.xhtml", null ],
    [ "Measurement", "structarmnn_1_1_measurement.xhtml", null ],
    [ "MemBin", "structarmnn_1_1_mem_bin.xhtml", null ],
    [ "MemBlock", "structarmnn_1_1_mem_block.xhtml", null ],
    [ "MemoryManager", "classarmnn_1_1_memory_manager.xhtml", null ],
    [ "MergeLayerBuilder", "structarmnn_serializer_1_1_merge_layer_builder.xhtml", null ],
    [ "MergerLayerBuilder", "structarmnn_serializer_1_1_merger_layer_builder.xhtml", null ],
    [ "minimum< T >", "structarmnn_1_1minimum.xhtml", null ],
    [ "MinimumLayerBuilder", "structarmnn_serializer_1_1_minimum_layer_builder.xhtml", null ],
    [ "MnistDatabase", "class_mnist_database.xhtml", null ],
    [ "MockBackendInitialiser", "classarmnn_1_1_mock_backend_initialiser.xhtml", null ],
    [ "MockBackendProfilingService", "classarmnn_1_1_mock_backend_profiling_service.xhtml", null ],
    [ "MockImportBackendInitialiser", "classarmnn_1_1_mock_import_backend_initialiser.xhtml", null ],
    [ "JSONTimelineDecoder::Model", "structarmnn_1_1timelinedecoder_1_1_j_s_o_n_timeline_decoder_1_1_model.xhtml", null ],
    [ "ModelAccuracyChecker", "classarmnn_utils_1_1_model_accuracy_checker.xhtml", null ],
    [ "ModelRelationship", "structarm_1_1pipe_1_1_model_relationship.xhtml", null ],
    [ "MovePermuteUpImpl", "classarmnn_1_1optimizations_1_1_move_permute_up_impl.xhtml", null ],
    [ "MoveTransposeUpImpl", "classarmnn_1_1optimizations_1_1_move_transpose_up_impl.xhtml", null ],
    [ "MultiplicationLayerBuilder", "structarmnn_serializer_1_1_multiplication_layer_builder.xhtml", null ],
    [ "NetworkImpl", "classarmnn_1_1_network_impl.xhtml", null ],
    [ "NMSConfig", "structyolov3_1_1_n_m_s_config.xhtml", null ],
    [ "NormalizationDescriptorBuilder", "structarmnn_serializer_1_1_normalization_descriptor_builder.xhtml", null ],
    [ "NormalizationLayerBuilder", "structarmnn_serializer_1_1_normalization_layer_builder.xhtml", null ],
    [ "NormalizationParameters", "struct_normalization_parameters.xhtml", null ],
    [ "NoThrowStrategy", "structarmnn_1_1_no_throw_strategy.xhtml", null ],
    [ "OnnxParserImpl", "classarmnn_onnx_parser_1_1_onnx_parser_impl.xhtml", null ],
    [ "Optimization", "classarmnn_1_1_optimization.xhtml", [
      [ "ConvertConstants< Converter, Predicate >", "classarmnn_1_1optimizations_1_1_convert_constants.xhtml", null ],
      [ "OptimizeForTypeImpl< BaseType, Wrapped >", "classarmnn_1_1_optimize_for_type_impl.xhtml", [
        [ "OptimizeForType< BaseType, Wrapped >", "classarmnn_1_1_optimize_for_type.xhtml", null ]
      ] ],
      [ "OptimizeForTypeImpl< Layer, Wrapped >", "classarmnn_1_1_optimize_for_type_impl_3_01_layer_00_01_wrapped_01_4.xhtml", null ],
      [ "OptimizeForTypeImpl< BaseType, OptimizeForConnectionImpl< BaseType, ChildType, Wrapped > >", "classarmnn_1_1_optimize_for_type_impl.xhtml", [
        [ "OptimizeForConnection< BaseType, ChildType, Wrapped >", "classarmnn_1_1_optimize_for_connection.xhtml", null ]
      ] ],
      [ "OptimizeForTypeImpl< BaseType, OptimizeForExclusiveConnectionImpl< BaseType, ChildType, Wrapped > >", "classarmnn_1_1_optimize_for_type_impl.xhtml", [
        [ "OptimizeForExclusiveConnection< BaseType, ChildType, Wrapped >", "classarmnn_1_1_optimize_for_exclusive_connection.xhtml", null ]
      ] ]
    ] ],
    [ "OptimizationResult", "structarmnn_1_1_optimization_result.xhtml", null ],
    [ "OptimizationViews", "classarmnn_1_1_optimization_views.xhtml", null ],
    [ "OptimizeConsecutiveReshapesImpl", "classarmnn_1_1optimizations_1_1_optimize_consecutive_reshapes_impl.xhtml", null ],
    [ "OptimizedNetworkImpl", "classarmnn_1_1_optimized_network_impl.xhtml", null ],
    [ "OptimizeInverseConversionsImpl", "classarmnn_1_1optimizations_1_1_optimize_inverse_conversions_impl.xhtml", null ],
    [ "OptimizeInversePermutesImpl< PermuteType >", "classarmnn_1_1optimizations_1_1_optimize_inverse_permutes_impl.xhtml", null ],
    [ "Optimizer", "classarmnn_1_1_optimizer.xhtml", null ],
    [ "OptimizerOptions", "structarmnn_1_1_optimizer_options.xhtml", null ],
    [ "OptionalBase", "classarmnn_1_1_optional_base.xhtml", [
      [ "OptionalReferenceSwitch< IsReference, T >", "classarmnn_1_1_optional_reference_switch.xhtml", null ],
      [ "OptionalReferenceSwitch< true, T >", "classarmnn_1_1_optional_reference_switch_3_01true_00_01_t_01_4.xhtml", null ],
      [ "OptionalReferenceSwitch< std::is_reference< arm::pipe::IProfilingService & >::value, arm::pipe::IProfilingService & >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< arm::pipe::IProfilingService &>", "classarmnn_1_1_optional.xhtml", null ]
      ] ],
      [ "OptionalReferenceSwitch< std::is_reference< arm::pipe::ProfilingGuid >::value, arm::pipe::ProfilingGuid >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< arm::pipe::ProfilingGuid >", "classarmnn_1_1_optional.xhtml", null ]
      ] ],
      [ "OptionalReferenceSwitch< std::is_reference< armnn::BackendId >::value, armnn::BackendId >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< armnn::BackendId >", "classarmnn_1_1_optional.xhtml", null ]
      ] ],
      [ "OptionalReferenceSwitch< std::is_reference< armnn::DebugCallbackFunction >::value, armnn::DebugCallbackFunction >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< armnn::DebugCallbackFunction >", "classarmnn_1_1_optional.xhtml", null ]
      ] ],
      [ "OptionalReferenceSwitch< std::is_reference< armnn::LogSeverity >::value, armnn::LogSeverity >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< armnn::LogSeverity >", "classarmnn_1_1_optional.xhtml", null ]
      ] ],
      [ "OptionalReferenceSwitch< std::is_reference< armnn::TensorInfo >::value, armnn::TensorInfo >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< armnn::TensorInfo >", "classarmnn_1_1_optional.xhtml", null ]
      ] ],
      [ "OptionalReferenceSwitch< std::is_reference< armnnTfLiteParser::ITfLiteParser::TfLiteParserOptions >::value, armnnTfLiteParser::ITfLiteParser::TfLiteParserOptions >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< armnnTfLiteParser::ITfLiteParser::TfLiteParserOptions >", "classarmnn_1_1_optional.xhtml", null ]
      ] ],
      [ "OptionalReferenceSwitch< std::is_reference< int32_t >::value, int32_t >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< int32_t >", "classarmnn_1_1_optional.xhtml", null ]
      ] ],
      [ "OptionalReferenceSwitch< std::is_reference< std::string & >::value, std::string & >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< std::string &>", "classarmnn_1_1_optional.xhtml", null ]
      ] ],
      [ "OptionalReferenceSwitch< std::is_reference< std::string >::value, std::string >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< std::string >", "classarmnn_1_1_optional.xhtml", null ]
      ] ],
      [ "OptionalReferenceSwitch< std::is_reference< T >::value, T >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< T >", "classarmnn_1_1_optional.xhtml", null ]
      ] ],
      [ "OptionalReferenceSwitch< std::is_reference< unsigned int >::value, unsigned int >", "classarmnn_1_1_optional_reference_switch.xhtml", [
        [ "Optional< unsigned int >", "classarmnn_1_1_optional.xhtml", null ]
      ] ]
    ] ],
    [ "OriginsDescriptorBuilder", "structarmnn_serializer_1_1_origins_descriptor_builder.xhtml", null ],
    [ "OutputHandler", "classarmnn_1_1_output_handler.xhtml", null ],
    [ "OutputLayerBuilder", "structarmnn_serializer_1_1_output_layer_builder.xhtml", null ],
    [ "Graph::OutputLayersAccessor", "structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml", null ],
    [ "WorkingMemHandle::OutputMemDescriptorCoords", "structarmnn_1_1experimental_1_1_working_mem_handle_1_1_output_mem_descriptor_coords.xhtml", null ],
    [ "OutputSlotBuilder", "structarmnn_serializer_1_1_output_slot_builder.xhtml", null ],
    [ "PacketVersion", "structarmnn_1_1gatordmock_1_1_packet_version.xhtml", null ],
    [ "PadDescriptorBuilder", "structarmnn_serializer_1_1_pad_descriptor_builder.xhtml", null ],
    [ "PadLayerBuilder", "structarmnn_serializer_1_1_pad_layer_builder.xhtml", null ],
    [ "Params", "struct_inference_model_internal_1_1_params.xhtml", null ],
    [ "ParserFlatbuffersFixture", "struct_parser_flatbuffers_fixture.xhtml", null ],
    [ "ParserFlatbuffersSerializeFixture", "struct_parser_flatbuffers_serialize_fixture.xhtml", null ],
    [ "ParserPrototxtFixture< TParser >", "structarmnn_utils_1_1_parser_prototxt_fixture.xhtml", null ],
    [ "PermutationVector", "classarmnn_1_1_permutation_vector.xhtml", null ],
    [ "PermuteAndBatchToSpaceAsDepthToSpaceImpl< PermuteType >", "classarmnn_1_1optimizations_1_1_permute_and_batch_to_space_as_depth_to_space_impl.xhtml", null ],
    [ "PermuteAsReshapeImpl", "classarmnn_1_1optimizations_1_1_permute_as_reshape_impl.xhtml", null ],
    [ "PermuteDepthwiseConv2dWeightsImpl", "classarmnn_1_1optimizations_1_1_permute_depthwise_conv2d_weights_impl.xhtml", null ],
    [ "PermuteDescriptorBuilder", "structarmnn_serializer_1_1_permute_descriptor_builder.xhtml", null ],
    [ "PermuteLayerBuilder", "structarmnn_serializer_1_1_permute_layer_builder.xhtml", null ],
    [ "RefMemoryManager::Pool", "classarmnn_1_1_ref_memory_manager_1_1_pool.xhtml", null ],
    [ "SampleMemoryManager::Pool", "classsdb_1_1_sample_memory_manager_1_1_pool.xhtml", null ],
    [ "MockMemoryManager::Pool", "classarmnn_1_1_mock_memory_manager_1_1_pool.xhtml", null ],
    [ "Pooling2dDescriptorBuilder", "structarmnn_serializer_1_1_pooling2d_descriptor_builder.xhtml", null ],
    [ "Pooling2dLayerBuilder", "structarmnn_serializer_1_1_pooling2d_layer_builder.xhtml", null ],
    [ "Pooling3dDescriptorBuilder", "structarmnn_serializer_1_1_pooling3d_descriptor_builder.xhtml", null ],
    [ "Pooling3dLayerBuilder", "structarmnn_serializer_1_1_pooling3d_layer_builder.xhtml", null ],
    [ "PredicateResult", "classarmnn_1_1_predicate_result.xhtml", null ],
    [ "PreluLayerBuilder", "structarmnn_serializer_1_1_prelu_layer_builder.xhtml", null ],
    [ "ProfilerImpl", "classarmnn_1_1_profiler_impl.xhtml", null ],
    [ "ProfilerManager", "classarmnn_1_1_profiler_manager.xhtml", null ],
    [ "ProfilerImpl::ProfilingEventStats", "structarmnn_1_1_profiler_impl_1_1_profiling_event_stats.xhtml", null ],
    [ "ProfilingService", null, [
      [ "MockProfilingService", "classarm_1_1pipe_1_1_mock_profiling_service.xhtml", null ],
      [ "ProfilingServiceRuntimeHelper", "classarm_1_1pipe_1_1_profiling_service_runtime_helper.xhtml", null ],
      [ "SwapProfilingConnectionFactoryHelper", "classarm_1_1pipe_1_1_swap_profiling_connection_factory_helper.xhtml", null ]
    ] ],
    [ "ProgramBuilder", "structarmnn_1_1_program_builder.xhtml", null ],
    [ "ProgramOptions", "struct_program_options.xhtml", null ],
    [ "QLstmBasicParameters", "structarmnn_1_1_q_lstm_basic_parameters.xhtml", null ],
    [ "QLstmDescriptorBuilder", "structarmnn_serializer_1_1_q_lstm_descriptor_builder.xhtml", null ],
    [ "QLstmInputParamsBuilder", "structarmnn_serializer_1_1_q_lstm_input_params_builder.xhtml", null ],
    [ "QLstmLayerBuilder", "structarmnn_serializer_1_1_q_lstm_layer_builder.xhtml", null ],
    [ "QLstmOptCifgParameters", "structarmnn_1_1_q_lstm_opt_cifg_parameters.xhtml", null ],
    [ "QLstmOptLayerNormParameters", "structarmnn_1_1_q_lstm_opt_layer_norm_parameters.xhtml", null ],
    [ "QLstmOptPeepholeParameters", "structarmnn_1_1_q_lstm_opt_peephole_parameters.xhtml", null ],
    [ "QLstmOptProjectionParameters", "structarmnn_1_1_q_lstm_opt_projection_parameters.xhtml", null ],
    [ "QuantizedLstmInputParams", "structarmnn_1_1_quantized_lstm_input_params.xhtml", null ],
    [ "QuantizedLstmInputParamsBuilder", "structarmnn_serializer_1_1_quantized_lstm_input_params_builder.xhtml", null ],
    [ "QuantizedLstmInputParamsInfo", "structarmnn_1_1_quantized_lstm_input_params_info.xhtml", null ],
    [ "QuantizedLstmLayerBuilder", "structarmnn_serializer_1_1_quantized_lstm_layer_builder.xhtml", null ],
    [ "QuantizedLstmParameters", "structarmnn_1_1_quantized_lstm_parameters.xhtml", null ],
    [ "QuantizedMultiplierSmallerThanOne", "structarmnn_1_1_quantized_multiplier_smaller_than_one.xhtml", null ],
    [ "QuantizeLayerBuilder", "structarmnn_serializer_1_1_quantize_layer_builder.xhtml", null ],
    [ "QueueDescriptor", "structarmnn_1_1_queue_descriptor.xhtml", [
      [ "AbsQueueDescriptor", "structarmnn_1_1_abs_queue_descriptor.xhtml", null ],
      [ "AdditionQueueDescriptor", "structarmnn_1_1_addition_queue_descriptor.xhtml", null ],
      [ "CastQueueDescriptor", "structarmnn_1_1_cast_queue_descriptor.xhtml", null ],
      [ "ConstantQueueDescriptor", "structarmnn_1_1_constant_queue_descriptor.xhtml", null ],
      [ "ConvertBf16ToFp32QueueDescriptor", "structarmnn_1_1_convert_bf16_to_fp32_queue_descriptor.xhtml", null ],
      [ "ConvertFp16ToFp32QueueDescriptor", "structarmnn_1_1_convert_fp16_to_fp32_queue_descriptor.xhtml", null ],
      [ "ConvertFp32ToBf16QueueDescriptor", "structarmnn_1_1_convert_fp32_to_bf16_queue_descriptor.xhtml", null ],
      [ "ConvertFp32ToFp16QueueDescriptor", "structarmnn_1_1_convert_fp32_to_fp16_queue_descriptor.xhtml", null ],
      [ "DebugQueueDescriptor", "structarmnn_1_1_debug_queue_descriptor.xhtml", null ],
      [ "DequantizeQueueDescriptor", "structarmnn_1_1_dequantize_queue_descriptor.xhtml", null ],
      [ "DivisionQueueDescriptor", "structarmnn_1_1_division_queue_descriptor.xhtml", null ],
      [ "EqualQueueDescriptor", "structarmnn_1_1_equal_queue_descriptor.xhtml", null ],
      [ "FloorQueueDescriptor", "structarmnn_1_1_floor_queue_descriptor.xhtml", null ],
      [ "GatherNdQueueDescriptor", "structarmnn_1_1_gather_nd_queue_descriptor.xhtml", null ],
      [ "GreaterQueueDescriptor", "structarmnn_1_1_greater_queue_descriptor.xhtml", null ],
      [ "MapQueueDescriptor", "structarmnn_1_1_map_queue_descriptor.xhtml", null ],
      [ "MaximumQueueDescriptor", "structarmnn_1_1_maximum_queue_descriptor.xhtml", null ],
      [ "MemCopyQueueDescriptor", "structarmnn_1_1_mem_copy_queue_descriptor.xhtml", null ],
      [ "MemImportQueueDescriptor", "structarmnn_1_1_mem_import_queue_descriptor.xhtml", null ],
      [ "MemSyncQueueDescriptor", "structarmnn_1_1_mem_sync_queue_descriptor.xhtml", null ],
      [ "MergeQueueDescriptor", "structarmnn_1_1_merge_queue_descriptor.xhtml", null ],
      [ "MinimumQueueDescriptor", "structarmnn_1_1_minimum_queue_descriptor.xhtml", null ],
      [ "MultiplicationQueueDescriptor", "structarmnn_1_1_multiplication_queue_descriptor.xhtml", null ],
      [ "PreluQueueDescriptor", "structarmnn_1_1_prelu_queue_descriptor.xhtml", null ],
      [ "QuantizedLstmQueueDescriptor", "structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml", null ],
      [ "QuantizeQueueDescriptor", "structarmnn_1_1_quantize_queue_descriptor.xhtml", null ],
      [ "QueueDescriptorWithParameters< LayerDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", null ],
      [ "RankQueueDescriptor", "structarmnn_1_1_rank_queue_descriptor.xhtml", null ],
      [ "RsqrtQueueDescriptor", "structarmnn_1_1_rsqrt_queue_descriptor.xhtml", null ],
      [ "ShapeQueueDescriptor", "structarmnn_1_1_shape_queue_descriptor.xhtml", null ],
      [ "SubtractionQueueDescriptor", "structarmnn_1_1_subtraction_queue_descriptor.xhtml", null ],
      [ "SwitchQueueDescriptor", "structarmnn_1_1_switch_queue_descriptor.xhtml", null ],
      [ "UnmapQueueDescriptor", "structarmnn_1_1_unmap_queue_descriptor.xhtml", null ],
      [ "QueueDescriptorWithParameters< ActivationDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "ActivationQueueDescriptor", "structarmnn_1_1_activation_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< ArgMinMaxDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "ArgMinMaxQueueDescriptor", "structarmnn_1_1_arg_min_max_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< BatchNormalizationDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "BatchNormalizationQueueDescriptor", "structarmnn_1_1_batch_normalization_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< BatchToSpaceNdDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "BatchToSpaceNdQueueDescriptor", "structarmnn_1_1_batch_to_space_nd_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< ChannelShuffleDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "ChannelShuffleQueueDescriptor", "structarmnn_1_1_channel_shuffle_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< ComparisonDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "ComparisonQueueDescriptor", "structarmnn_1_1_comparison_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< Convolution2dDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "Convolution2dQueueDescriptor", "structarmnn_1_1_convolution2d_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< Convolution3dDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "Convolution3dQueueDescriptor", "structarmnn_1_1_convolution3d_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< DepthToSpaceDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "DepthToSpaceQueueDescriptor", "structarmnn_1_1_depth_to_space_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< DepthwiseConvolution2dDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "DepthwiseConvolution2dQueueDescriptor", "structarmnn_1_1_depthwise_convolution2d_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< DetectionPostProcessDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "DetectionPostProcessQueueDescriptor", "structarmnn_1_1_detection_post_process_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< ElementwiseUnaryDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "ElementwiseUnaryQueueDescriptor", "structarmnn_1_1_elementwise_unary_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< FakeQuantizationDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "FakeQuantizationQueueDescriptor", "structarmnn_1_1_fake_quantization_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< FillDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "FillQueueDescriptor", "structarmnn_1_1_fill_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< FullyConnectedDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "FullyConnectedQueueDescriptor", "structarmnn_1_1_fully_connected_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< GatherDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "GatherQueueDescriptor", "structarmnn_1_1_gather_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< InstanceNormalizationDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "InstanceNormalizationQueueDescriptor", "structarmnn_1_1_instance_normalization_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< L2NormalizationDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "L2NormalizationQueueDescriptor", "structarmnn_1_1_l2_normalization_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< LogicalBinaryDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "LogicalBinaryQueueDescriptor", "structarmnn_1_1_logical_binary_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< LogSoftmaxDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "LogSoftmaxQueueDescriptor", "structarmnn_1_1_log_softmax_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< LstmDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "LstmQueueDescriptor", "structarmnn_1_1_lstm_queue_descriptor.xhtml", null ],
        [ "UnidirectionalSequenceLstmQueueDescriptor", "structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< MeanDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "MeanQueueDescriptor", "structarmnn_1_1_mean_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< NormalizationDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "NormalizationQueueDescriptor", "structarmnn_1_1_normalization_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< OriginsDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "ConcatQueueDescriptor", "structarmnn_1_1_concat_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< PadDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "PadQueueDescriptor", "structarmnn_1_1_pad_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< PermuteDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "PermuteQueueDescriptor", "structarmnn_1_1_permute_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< Pooling2dDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "Pooling2dQueueDescriptor", "structarmnn_1_1_pooling2d_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< Pooling3dDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "Pooling3dQueueDescriptor", "structarmnn_1_1_pooling3d_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< PreCompiledDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "PreCompiledQueueDescriptor", "structarmnn_1_1_pre_compiled_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< QLstmDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "QLstmQueueDescriptor", "structarmnn_1_1_q_lstm_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< ReduceDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "ReduceQueueDescriptor", "structarmnn_1_1_reduce_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< ReshapeDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "ReshapeQueueDescriptor", "structarmnn_1_1_reshape_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< ResizeDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "ResizeQueueDescriptor", "structarmnn_1_1_resize_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< SliceDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "SliceQueueDescriptor", "structarmnn_1_1_slice_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< SoftmaxDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "SoftmaxQueueDescriptor", "structarmnn_1_1_softmax_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< SpaceToBatchNdDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "SpaceToBatchNdQueueDescriptor", "structarmnn_1_1_space_to_batch_nd_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< SpaceToDepthDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "SpaceToDepthQueueDescriptor", "structarmnn_1_1_space_to_depth_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< StackDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "StackQueueDescriptor", "structarmnn_1_1_stack_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< StridedSliceDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "StridedSliceQueueDescriptor", "structarmnn_1_1_strided_slice_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< TransposeConvolution2dDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "TransposeConvolution2dQueueDescriptor", "structarmnn_1_1_transpose_convolution2d_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< TransposeDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "TransposeQueueDescriptor", "structarmnn_1_1_transpose_queue_descriptor.xhtml", null ]
      ] ],
      [ "QueueDescriptorWithParameters< ViewsDescriptor >", "structarmnn_1_1_queue_descriptor_with_parameters.xhtml", [
        [ "SplitterQueueDescriptor", "structarmnn_1_1_splitter_queue_descriptor.xhtml", null ]
      ] ]
    ] ],
    [ "RangeTracker", "classarmnn_1_1_range_tracker.xhtml", null ],
    [ "RankLayerBuilder", "structarmnn_serializer_1_1_rank_layer_builder.xhtml", null ],
    [ "RedirectMembersToConstantInputsImpl", "classarmnn_1_1optimizations_1_1_redirect_members_to_constant_inputs_impl.xhtml", null ],
    [ "ReduceDescriptorBuilder", "structarmnn_serializer_1_1_reduce_descriptor_builder.xhtml", null ],
    [ "ReduceLayerBuilder", "structarmnn_serializer_1_1_reduce_layer_builder.xhtml", null ],
    [ "ReshapeDescriptorBuilder", "structarmnn_serializer_1_1_reshape_descriptor_builder.xhtml", null ],
    [ "ReshapeLayerBuilder", "structarmnn_serializer_1_1_reshape_layer_builder.xhtml", null ],
    [ "ResizeBilinearDescriptorBuilder", "structarmnn_serializer_1_1_resize_bilinear_descriptor_builder.xhtml", null ],
    [ "ResizeBilinearLayerBuilder", "structarmnn_serializer_1_1_resize_bilinear_layer_builder.xhtml", null ],
    [ "ResizeDescriptorBuilder", "structarmnn_serializer_1_1_resize_descriptor_builder.xhtml", null ],
    [ "ResizeLayerBuilder", "structarmnn_serializer_1_1_resize_layer_builder.xhtml", null ],
    [ "ResolveTypeImpl< DT >", "structarmnn_1_1_resolve_type_impl.xhtml", null ],
    [ "ResolveTypeImpl< DataType::BFloat16 >", "structarmnn_1_1_resolve_type_impl_3_01_data_type_1_1_b_float16_01_4.xhtml", null ],
    [ "ResolveTypeImpl< DataType::Boolean >", "structarmnn_1_1_resolve_type_impl_3_01_data_type_1_1_boolean_01_4.xhtml", null ],
    [ "ResolveTypeImpl< DataType::Float16 >", "structarmnn_1_1_resolve_type_impl_3_01_data_type_1_1_float16_01_4.xhtml", null ],
    [ "ResolveTypeImpl< DataType::Float32 >", "structarmnn_1_1_resolve_type_impl_3_01_data_type_1_1_float32_01_4.xhtml", null ],
    [ "ResolveTypeImpl< DataType::QAsymmS8 >", "structarmnn_1_1_resolve_type_impl_3_01_data_type_1_1_q_asymm_s8_01_4.xhtml", null ],
    [ "ResolveTypeImpl< DataType::QAsymmU8 >", "structarmnn_1_1_resolve_type_impl_3_01_data_type_1_1_q_asymm_u8_01_4.xhtml", null ],
    [ "ResolveTypeImpl< DataType::QSymmS16 >", "structarmnn_1_1_resolve_type_impl_3_01_data_type_1_1_q_symm_s16_01_4.xhtml", null ],
    [ "ResolveTypeImpl< DataType::QSymmS8 >", "structarmnn_1_1_resolve_type_impl_3_01_data_type_1_1_q_symm_s8_01_4.xhtml", null ],
    [ "ResolveTypeImpl< DataType::Signed32 >", "structarmnn_1_1_resolve_type_impl_3_01_data_type_1_1_signed32_01_4.xhtml", null ],
    [ "ResolveTypeImpl< DataType::Signed64 >", "structarmnn_1_1_resolve_type_impl_3_01_data_type_1_1_signed64_01_4.xhtml", null ],
    [ "rsqrt< T >", "structarmnn_1_1rsqrt.xhtml", null ],
    [ "RsqrtLayerBuilder", "structarmnn_serializer_1_1_rsqrt_layer_builder.xhtml", null ],
    [ "Rule", "structarmnn_1_1_rule.xhtml", [
      [ "BiasAndWeightsTypesCompatible", "structarmnn_1_1_bias_and_weights_types_compatible.xhtml", null ],
      [ "BiasAndWeightsTypesMatch", "structarmnn_1_1_bias_and_weights_types_match.xhtml", null ],
      [ "QuantizationParametersAreEqual", "structarmnn_1_1_quantization_parameters_are_equal.xhtml", null ],
      [ "ShapesAreBroadcastCompatible", "structarmnn_1_1_shapes_are_broadcast_compatible.xhtml", null ],
      [ "ShapesAreSameRank", "structarmnn_1_1_shapes_are_same_rank.xhtml", null ],
      [ "ShapesAreSameTotalSize", "structarmnn_1_1_shapes_are_same_total_size.xhtml", null ],
      [ "TensorNumDimensionsAreCorrect", "structarmnn_1_1_tensor_num_dimensions_are_correct.xhtml", null ],
      [ "TypeAnyOf", "structarmnn_1_1_type_any_of.xhtml", null ],
      [ "TypeIs", "structarmnn_1_1_type_is.xhtml", null ],
      [ "TypeNotPerAxisQuantized", "structarmnn_1_1_type_not_per_axis_quantized.xhtml", null ],
      [ "TypesAreEqual", "structarmnn_1_1_types_are_equal.xhtml", null ]
    ] ],
    [ "ScopedProfilingEvent", "classarmnn_1_1_scoped_profiling_event.xhtml", null ],
    [ "ScopedRecord", "structarmnn_1_1_scoped_record.xhtml", null ],
    [ "SelectiveComparer< T, isQuantized >", "struct_selective_comparer.xhtml", null ],
    [ "SelectiveComparer< T, false >", "struct_selective_comparer_3_01_t_00_01false_01_4.xhtml", null ],
    [ "SelectiveQuantizer< T, DoQuantize >", "structarmnn_utils_1_1_selective_quantizer.xhtml", null ],
    [ "SelectiveQuantizer< armnn::BFloat16, false >", "structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_b_float16_00_01false_01_4.xhtml", null ],
    [ "SelectiveQuantizer< armnn::Half, false >", "structarmnn_utils_1_1_selective_quantizer_3_01armnn_1_1_half_00_01false_01_4.xhtml", null ],
    [ "SelectiveQuantizer< T, false >", "structarmnn_utils_1_1_selective_quantizer_3_01_t_00_01false_01_4.xhtml", null ],
    [ "SendCounterPacket", null, [
      [ "SendCounterPacketTest", "classarm_1_1pipe_1_1_send_counter_packet_test.xhtml", null ]
    ] ],
    [ "SerializedGraphBuilder", "structarmnn_serializer_1_1_serialized_graph_builder.xhtml", null ],
    [ "ISerializer::SerializerImpl", "classarmnn_serializer_1_1_i_serializer_1_1_serializer_impl.xhtml", null ],
    [ "ShapeLayerBuilder", "structarmnn_serializer_1_1_shape_layer_builder.xhtml", null ],
    [ "ShortDataBuilder", "structarmnn_serializer_1_1_short_data_builder.xhtml", null ],
    [ "SimpleLogger< Level >", "classarmnn_1_1_simple_logger.xhtml", null ],
    [ "sin< T >", "structarmnn_1_1sin.xhtml", null ],
    [ "SliceDescriptorBuilder", "structarmnn_serializer_1_1_slice_descriptor_builder.xhtml", null ],
    [ "SliceLayerBuilder", "structarmnn_serializer_1_1_slice_layer_builder.xhtml", null ],
    [ "SoftmaxDescriptorBuilder", "structarmnn_serializer_1_1_softmax_descriptor_builder.xhtml", null ],
    [ "SoftmaxLayerBuilder", "structarmnn_serializer_1_1_softmax_layer_builder.xhtml", null ],
    [ "SpaceToBatchNdDescriptorBuilder", "structarmnn_serializer_1_1_space_to_batch_nd_descriptor_builder.xhtml", null ],
    [ "SpaceToBatchNdLayerBuilder", "structarmnn_serializer_1_1_space_to_batch_nd_layer_builder.xhtml", null ],
    [ "SpaceToDepthDescriptorBuilder", "structarmnn_serializer_1_1_space_to_depth_descriptor_builder.xhtml", null ],
    [ "SpaceToDepthLayerBuilder", "structarmnn_serializer_1_1_space_to_depth_layer_builder.xhtml", null ],
    [ "SplitterLayerBuilder", "structarmnn_serializer_1_1_splitter_layer_builder.xhtml", null ],
    [ "sqrt< T >", "structarmnn_1_1sqrt.xhtml", null ],
    [ "SquashEqualSiblingsImpl< Comparable >", "classarmnn_1_1optimizations_1_1_squash_equal_siblings_impl.xhtml", null ],
    [ "StackDescriptorBuilder", "structarmnn_serializer_1_1_stack_descriptor_builder.xhtml", null ],
    [ "StackLayerBuilder", "structarmnn_serializer_1_1_stack_layer_builder.xhtml", null ],
    [ "StandInDescriptorBuilder", "structarmnn_serializer_1_1_stand_in_descriptor_builder.xhtml", null ],
    [ "StandInLayerBuilder", "structarmnn_serializer_1_1_stand_in_layer_builder.xhtml", null ],
    [ "BackendRegistry::StaticRegistryInitializer", "structarmnn_1_1_backend_registry_1_1_static_registry_initializer.xhtml", null ],
    [ "StreamRedirector", "structarm_1_1pipe_1_1_stream_redirector.xhtml", null ],
    [ "StridedSliceDescriptorBuilder", "structarmnn_serializer_1_1_strided_slice_descriptor_builder.xhtml", null ],
    [ "StridedSliceLayerBuilder", "structarmnn_serializer_1_1_strided_slice_layer_builder.xhtml", null ],
    [ "StringifyLayerParameters< LayerParameter >", "structarmnn_1_1_stringify_layer_parameters.xhtml", null ],
    [ "StringifyLayerParameters< ActivationDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_activation_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< BatchNormalizationDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_batch_normalization_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< BatchToSpaceNdDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_batch_to_space_nd_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< ChannelShuffleDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_channel_shuffle_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< ComparisonDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_comparison_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< Convolution2dDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_convolution2d_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< Convolution3dDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_convolution3d_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< DepthwiseConvolution2dDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_depthwise_convolution2d_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< DetectionPostProcessDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_detection_post_process_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< ElementwiseUnaryDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_elementwise_unary_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< FakeQuantizationDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_fake_quantization_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< FullyConnectedDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_fully_connected_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< L2NormalizationDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_l2_normalization_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< LstmDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_lstm_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< MeanDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_mean_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< NormalizationDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_normalization_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< OriginsDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_origins_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< PadDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_pad_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< PermuteDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_permute_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< Pooling2dDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_pooling2d_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< Pooling3dDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_pooling3d_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< PreCompiledDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_pre_compiled_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< ReduceDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_reduce_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< ReshapeDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_reshape_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< ResizeDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_resize_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< SoftmaxDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_softmax_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< SpaceToBatchNdDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_space_to_batch_nd_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< SpaceToDepthDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_space_to_depth_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< StackDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_stack_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< StridedSliceDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_strided_slice_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< TransposeConvolution2dDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_transpose_convolution2d_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< TransposeDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_transpose_descriptor_01_4.xhtml", null ],
    [ "StringifyLayerParameters< ViewsDescriptor >", "structarmnn_1_1_stringify_layer_parameters_3_01_views_descriptor_01_4.xhtml", null ],
    [ "StringMapping", "structarmnn_1_1_string_mapping.xhtml", null ],
    [ "SubgraphView", "classarmnn_1_1_subgraph_view.xhtml", null ],
    [ "SubgraphViewSelector", "classarmnn_1_1_subgraph_view_selector.xhtml", null ],
    [ "OptimizationViews::SubstitutionPair", "structarmnn_1_1_optimization_views_1_1_substitution_pair.xhtml", null ],
    [ "SubtractionLayerBuilder", "structarmnn_serializer_1_1_subtraction_layer_builder.xhtml", null ],
    [ "SwitchLayerBuilder", "structarmnn_serializer_1_1_switch_layer_builder.xhtml", null ],
    [ "Table", null, [
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ],
      [ "FLATBUFFERS_FINAL_CLASS", "structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml", null ]
    ] ],
    [ "TensorBufferArrayView< DataType >", "classarmnn_1_1_tensor_buffer_array_view.xhtml", null ],
    [ "TensorHandleFactoryRegistry", "classarmnn_1_1_tensor_handle_factory_registry.xhtml", null ],
    [ "TensorInfo", "classarmnn_1_1_tensor_info.xhtml", null ],
    [ "TensorInfoBuilder", "structarmnn_serializer_1_1_tensor_info_builder.xhtml", null ],
    [ "TensorMemory", "structarmnn_1_1_tensor_memory.xhtml", null ],
    [ "TensorPrinter", "struct_tensor_printer.xhtml", null ],
    [ "TensorShape", "classarmnn_1_1_tensor_shape.xhtml", null ],
    [ "TestBlock", "struct_test_block.xhtml", null ],
    [ "TfLiteParserImpl", "classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml", null ],
    [ "ITfLiteParser::TfLiteParserOptions", "structarmnn_tf_lite_parser_1_1_i_tf_lite_parser_1_1_tf_lite_parser_options.xhtml", null ],
    [ "Threadpool", "classarmnn_1_1experimental_1_1_threadpool.xhtml", null ],
    [ "ThrowingStrategy", "structarmnn_1_1_throwing_strategy.xhtml", null ],
    [ "TimelineModel", "classarm_1_1pipe_1_1_timeline_model.xhtml", null ],
    [ "TransposeAsReshapeImpl", "classarmnn_1_1optimizations_1_1_transpose_as_reshape_impl.xhtml", null ],
    [ "TransposeConvolution2dDescriptorBuilder", "structarmnn_serializer_1_1_transpose_convolution2d_descriptor_builder.xhtml", null ],
    [ "TransposeConvolution2dLayerBuilder", "structarmnn_serializer_1_1_transpose_convolution2d_layer_builder.xhtml", null ],
    [ "TransposeDescriptorBuilder", "structarmnn_serializer_1_1_transpose_descriptor_builder.xhtml", null ],
    [ "TransposeLayerBuilder", "structarmnn_serializer_1_1_transpose_layer_builder.xhtml", null ],
    [ "UintVectorBuilder", "structarmnn_serializer_1_1_uint_vector_builder.xhtml", null ],
    [ "UnidirectionalSequenceLstmDescriptorBuilder", "structarmnn_serializer_1_1_unidirectional_sequence_lstm_descriptor_builder.xhtml", null ],
    [ "UnidirectionalSequenceLstmLayerBuilder", "structarmnn_serializer_1_1_unidirectional_sequence_lstm_layer_builder.xhtml", null ],
    [ "BackendOptions::Var", "classarmnn_1_1_backend_options_1_1_var.xhtml", null ],
    [ "SplitterQueueDescriptor::ViewOrigin", "structarmnn_1_1_splitter_queue_descriptor_1_1_view_origin.xhtml", null ],
    [ "ConcatQueueDescriptor::ViewOrigin", "structarmnn_1_1_concat_queue_descriptor_1_1_view_origin.xhtml", null ],
    [ "ViewsDescriptorBuilder", "structarmnn_serializer_1_1_views_descriptor_builder.xhtml", null ],
    [ "VisitorNoThrowPolicy", "structarmnn_1_1_visitor_no_throw_policy.xhtml", null ],
    [ "VisitorThrowingPolicy", "structarmnn_1_1_visitor_throwing_policy.xhtml", null ],
    [ "WorkingMemDescriptor", "structarmnn_1_1experimental_1_1_working_mem_descriptor.xhtml", null ],
    [ "WorkloadDataCollector", "classarmnn_1_1_workload_data_collector.xhtml", null ],
    [ "WorkloadInfo", "structarmnn_1_1_workload_info.xhtml", null ],
    [ "Wrapped", null, [
      [ "OptimizeForConnectionImpl< BaseType, ChildType, Wrapped >", "classarmnn_1_1_optimize_for_connection_impl.xhtml", [
        [ "OptimizeForTypeImpl< BaseType, OptimizeForConnectionImpl< BaseType, ChildType, Wrapped > >", "classarmnn_1_1_optimize_for_type_impl.xhtml", null ]
      ] ],
      [ "OptimizeForExclusiveConnectionImpl< BaseType, ChildType, Wrapped >", "classarmnn_1_1_optimize_for_exclusive_connection_impl.xhtml", [
        [ "OptimizeForTypeImpl< BaseType, OptimizeForExclusiveConnectionImpl< BaseType, ChildType, Wrapped > >", "classarmnn_1_1_optimize_for_type_impl.xhtml", null ]
      ] ],
      [ "OptimizeForTypeImpl< BaseType, Wrapped >", "classarmnn_1_1_optimize_for_type_impl.xhtml", null ],
      [ "OptimizeForTypeImpl< Layer, Wrapped >", "classarmnn_1_1_optimize_for_type_impl_3_01_layer_00_01_wrapped_01_4.xhtml", null ]
    ] ],
    [ "YoloBoundingBox", "struct_yolo_bounding_box.xhtml", null ],
    [ "YoloDatabase", "class_yolo_database.xhtml", null ],
    [ "YoloDetectedObject", "struct_yolo_detected_object.xhtml", null ],
    [ "YoloTestCaseData", "class_yolo_test_case_data.xhtml", null ],
    [ "Base", null, [
      [ "PerAxisIterator< T, Base >", "classarmnn_1_1_per_axis_iterator.xhtml", null ],
      [ "TypedIterator< T, Base >", "classarmnn_1_1_typed_iterator.xhtml", null ]
    ] ]
];