aboutsummaryrefslogtreecommitdiff
path: root/23.05/functions_m.xhtml
blob: 16fe86a6b1bc65d5b1f302b7af57091b7dc2230d (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
<!-- Copyright (c) 2020 ARM Limited. -->
<!--                                 -->
<!-- SPDX-License-Identifier: MIT    -->
<!--                                 -->
<!-- HTML header for doxygen 1.8.13-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.17"/>
<meta name="robots" content="NOINDEX, NOFOLLOW" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>ArmNN: Class Members</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/x-mathjax-config">
  MathJax.Hub.Config({
    extensions: ["tex2jax.js"],
    jax: ["input/TeX","output/HTML-CSS"],
});
</script>
<script type="text/javascript" async="async" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <img alt="ArmNN" src="Arm_NN_horizontal_blue.png" style="max-width: 10rem; margin-top: .5rem; margin-left 10px"/>
  <td style="padding-left: 0.5em;">
   <div id="projectname">
   &#160;<span id="projectnumber">23.05</span>
   </div>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.17 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
$(function() {
  initMenu('',true,false,'search.php','Search');
  $(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
  <div id="nav-tree">
    <div id="nav-tree-contents">
      <div id="nav-sync" class="sync"></div>
    </div>
  </div>
  <div id="splitbar" style="-moz-user-select:none;" 
       class="ui-resizable-handle">
  </div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('functions_m.xhtml',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
     onmouseover="return searchBox.OnSearchSelectShow()"
     onmouseout="return searchBox.OnSearchSelectHide()"
     onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>

<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0" 
        name="MSearchResults" id="MSearchResults">
</iframe>
</div>

<div class="contents">
<div class="textblock">Here is a list of all class members with links to the classes they belong to:</div>

<h3><a id="index_m"></a>- m -</h3><ul>
<li>m_A
: <a class="el" href="structarmnn_1_1_activation_descriptor.xhtml#a017b2990003a014234f13e999dc7c689">ActivationDescriptor</a>
</li>
<li>m_ActivationFunc
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#ae1b07ed928036004bd257169e5aeeef4">LstmDescriptor</a>
</li>
<li>m_AdditionalInfoObject
: <a class="el" href="classarmnn_1_1_layer.xhtml#ac7170f79bd0eadb1b6153e359c023cc0">Layer</a>
, <a class="el" href="structarmnn_1_1_queue_descriptor.xhtml#a2f2e6134cabedfc58aa53fe38a2b8a67">QueueDescriptor</a>
</li>
<li>m_AdjointX
: <a class="el" href="structarmnn_1_1_batch_mat_mul_descriptor.xhtml#a0cf8306be7d301de0f095fff9901a525">BatchMatMulDescriptor</a>
</li>
<li>m_AdjointY
: <a class="el" href="structarmnn_1_1_batch_mat_mul_descriptor.xhtml#ad945fc98770356dd886a68e98a52e26b">BatchMatMulDescriptor</a>
</li>
<li>m_AlignCorners
: <a class="el" href="structarmnn_1_1_resize_descriptor.xhtml#ae1a4b3b6c60552509b89747cebb900a2">ResizeDescriptor</a>
</li>
<li>m_Alignment
: <a class="el" href="structarmnn_1_1_allocator.xhtml#a84b04a7eb9cb29c23dac4fe55eb1d78c">Allocator</a>
, <a class="el" href="structarmnn_1_1_memory_info.xhtml#a84b04a7eb9cb29c23dac4fe55eb1d78c">MemoryInfo</a>
</li>
<li>m_Allocator
: <a class="el" href="classarmnn_1_1_base_memory_manager.xhtml#af7ed9932a9a8e740e3a8ce1df613b9c7">BaseMemoryManager</a>
</li>
<li>m_AllowExpandedDims
: <a class="el" href="structarmnn_1_1_optimizer_options.xhtml#a9ef8ddbeee4b869e4c68eb2ed278b8d9">OptimizerOptions</a>
, <a class="el" href="structarmnn_1_1_optimizer_options_opaque_impl.xhtml#a9ef8ddbeee4b869e4c68eb2ed278b8d9">OptimizerOptionsOpaqueImpl</a>
, <a class="el" href="structarmnn_1_1_queue_descriptor.xhtml#a9ef8ddbeee4b869e4c68eb2ed278b8d9">QueueDescriptor</a>
, <a class="el" href="structarmnn_tf_lite_parser_1_1_i_tf_lite_parser_1_1_tf_lite_parser_options.xhtml#a9ef8ddbeee4b869e4c68eb2ed278b8d9">ITfLiteParser::TfLiteParserOptions</a>
</li>
<li>m_Alpha
: <a class="el" href="structarmnn_1_1_normalization_descriptor.xhtml#a174279be57d7596eeb04c6b7f7510f99">NormalizationDescriptor</a>
</li>
<li>m_Anchors
: <a class="el" href="classarmnn_1_1_detection_post_process_layer.xhtml#a6dc8f4e1c0a2109b2a8412251c2cf7b0">DetectionPostProcessLayer</a>
, <a class="el" href="structarmnn_1_1_detection_post_process_queue_descriptor.xhtml#aeb542471c225031a9922db3433f40b56">DetectionPostProcessQueueDescriptor</a>
</li>
<li>m_AsyncEnabled
: <a class="el" href="structarmnn_1_1_i_network_properties.xhtml#ad3ab02a7f6310b35c59ca78b509905ca">INetworkProperties</a>
</li>
<li>m_Axis
: <a class="el" href="structarmnn_1_1_arg_min_max_descriptor.xhtml#a214c3636fdf0ea5bac8edb42d0e6c7f0">ArgMinMaxDescriptor</a>
, <a class="el" href="structarmnn_1_1_channel_shuffle_descriptor.xhtml#ab218de7805899c8412d75d1fd1d846d2">ChannelShuffleDescriptor</a>
, <a class="el" href="structarmnn_1_1_gather_descriptor.xhtml#a35d11c7d509d1adbae1ae01c58394a7f">GatherDescriptor</a>
, <a class="el" href="structarmnn_1_1_mean_descriptor.xhtml#a1f0d67b087c491248bd1cde3ff995a95">MeanDescriptor</a>
, <a class="el" href="structarmnn_1_1_softmax_descriptor.xhtml#a214c3636fdf0ea5bac8edb42d0e6c7f0">SoftmaxDescriptor</a>
, <a class="el" href="structarmnn_1_1_stack_descriptor.xhtml#ab218de7805899c8412d75d1fd1d846d2">StackDescriptor</a>
</li>
<li>m_AxisDimensionality
: <a class="el" href="classarmnn_1_1_per_axis_iterator.xhtml#a735cd5349c13cbde70c59b4ff306d6f8">PerAxisIterator&lt; T, Base &gt;</a>
</li>
<li>m_AxisFactor
: <a class="el" href="classarmnn_1_1_per_axis_iterator.xhtml#ac5c7a20def4940cda6745d0ef519b852">PerAxisIterator&lt; T, Base &gt;</a>
</li>
<li>m_AxisIndex
: <a class="el" href="classarmnn_1_1_per_axis_iterator.xhtml#aeaa9859f0e4c9c2f02ea8fd6f345a38c">PerAxisIterator&lt; T, Base &gt;</a>
</li>
<li>m_B
: <a class="el" href="structarmnn_1_1_activation_descriptor.xhtml#a28c4c9cb15f6be3499abbc46b356060b">ActivationDescriptor</a>
</li>
<li>m_BackendOptions
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options.xhtml#aecebc69597fe0d38a3964031c6eeb0a8">IRuntime::CreationOptions</a>
</li>
<li>m_Backends
: <a class="el" href="structarmnn__driver_1_1_conversion_data.xhtml#af3239731a47cf4c08a040c42ee855edc">ConversionData</a>
</li>
<li>m_BasicParameters
: <a class="el" href="classarmnn_1_1_lstm_layer.xhtml#a8838b317568861294a9df608221f185e">LstmLayer</a>
, <a class="el" href="classarmnn_1_1_q_lstm_layer.xhtml#aada2b9060461ecf785d483eee0dc071a">QLstmLayer</a>
, <a class="el" href="classarmnn_1_1_unidirectional_sequence_lstm_layer.xhtml#a8838b317568861294a9df608221f185e">UnidirectionalSequenceLstmLayer</a>
</li>
<li>m_Begin
: <a class="el" href="structarmnn_1_1_slice_descriptor.xhtml#a4939f00778f08d6c6fec6f74c0a59b7e">SliceDescriptor</a>
, <a class="el" href="structarmnn_1_1_strided_slice_descriptor.xhtml#a118fe06b7c2599da60398ee311ede923">StridedSliceDescriptor</a>
</li>
<li>m_BeginMask
: <a class="el" href="structarmnn_1_1_strided_slice_descriptor.xhtml#a61081be1483984e33db452c75d569f51">StridedSliceDescriptor</a>
</li>
<li>m_Beta
: <a class="el" href="classarmnn_1_1_batch_normalization_layer.xhtml#a7645e8ead378db5ad17eadbdb9df4da6">BatchNormalizationLayer</a>
, <a class="el" href="structarmnn_1_1_batch_normalization_queue_descriptor.xhtml#addb90eb7f4baa493fce64fdb7f140018">BatchNormalizationQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_instance_normalization_descriptor.xhtml#a8275d51ef9a584feb95726ea0522f6e5">InstanceNormalizationDescriptor</a>
, <a class="el" href="structarmnn_1_1_normalization_descriptor.xhtml#a8275d51ef9a584feb95726ea0522f6e5">NormalizationDescriptor</a>
, <a class="el" href="structarmnn_1_1_softmax_descriptor.xhtml#a8275d51ef9a584feb95726ea0522f6e5">SoftmaxDescriptor</a>
</li>
<li>m_Bias
: <a class="el" href="classarmnn_1_1_transpose_convolution2d_layer.xhtml#aab303f5700f75ebd4216e39ad2f74a24">TransposeConvolution2dLayer</a>
, <a class="el" href="structarmnn_1_1_transpose_convolution2d_queue_descriptor.xhtml#a1f3f6acdd5436ccf488d5ee3e9e60c02">TransposeConvolution2dQueueDescriptor</a>
</li>
<li>m_BiasEnabled
: <a class="el" href="structarmnn_1_1_convolution2d_descriptor.xhtml#aea202e14d8874cefd9a0f778022b7e25">Convolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#aea202e14d8874cefd9a0f778022b7e25">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_depthwise_convolution2d_descriptor.xhtml#aea202e14d8874cefd9a0f778022b7e25">DepthwiseConvolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_fully_connected_descriptor.xhtml#aea202e14d8874cefd9a0f778022b7e25">FullyConnectedDescriptor</a>
, <a class="el" href="structarmnn_1_1_transpose_convolution2d_descriptor.xhtml#aea202e14d8874cefd9a0f778022b7e25">TransposeConvolution2dDescriptor</a>
</li>
<li>m_BiasTensorInfo
: <a class="el" href="structarmnn_1_1_workload_info.xhtml#a00c11ec4cda30e66fb6b6c25b3e4541b">WorkloadInfo</a>
</li>
<li>m_BindingId
: <a class="el" href="structarmnn_deserializer_1_1_binding_point_info.xhtml#a663b3104ec65e4e08b5e37fb42942087">BindingPointInfo</a>
</li>
<li>m_BlockShape
: <a class="el" href="structarmnn_1_1_batch_to_space_nd_descriptor.xhtml#a02e143524aefddd40b485fcf7dea6696">BatchToSpaceNdDescriptor</a>
, <a class="el" href="structarmnn_1_1_space_to_batch_nd_descriptor.xhtml#a02e143524aefddd40b485fcf7dea6696">SpaceToBatchNdDescriptor</a>
</li>
<li>m_BlockSize
: <a class="el" href="structarmnn_1_1_space_to_depth_descriptor.xhtml#a6c6b8957f1e176867e5fb05b1a1a1486">SpaceToDepthDescriptor</a>
</li>
<li>m_Buffer
: <a class="el" href="structarmnn_1_1_buffer_storage.xhtml#a9cf5acb7d9fb6392c16b6d642b869143">BufferStorage</a>
</li>
<li>m_BufferSize
: <a class="el" href="structarmnn_1_1_buffer_storage.xhtml#afcd55b6ce066b6a3ddfcbbc1c483213f">BufferStorage</a>
</li>
<li>m_CapabilityClass
: <a class="el" href="structarmnn_1_1_capability.xhtml#a71c402102c91305c6948f517eed6b710">Capability</a>
</li>
<li>m_CapturePeriod
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options_1_1_external_profiling_options.xhtml#a2239347f38747f993c324bdd8b1eb146">IRuntime::CreationOptions::ExternalProfilingOptions</a>
</li>
<li>m_CellBias
: <a class="el" href="structarmnn_1_1_lstm_basic_parameters.xhtml#a21a90800797f1e122bc44d7022001558">LstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a4a9d678146f572808a361dbdc5489f38">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ab173a067eeb7295d84f5327bcc05a6c1">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a6e9593869b82984de198fed27f72cdcf">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_basic_parameters.xhtml#a21a90800797f1e122bc44d7022001558">QLstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a6e9593869b82984de198fed27f72cdcf">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a4a9d678146f572808a361dbdc5489f38">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#ab173a067eeb7295d84f5327bcc05a6c1">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#a21a90800797f1e122bc44d7022001558">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#a6e9593869b82984de198fed27f72cdcf">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a6e9593869b82984de198fed27f72cdcf">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_CellClip
: <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#ac81fb0e66dc623dc37c77f219f53a6d3">QLstmDescriptor</a>
</li>
<li>m_CellIntermediateScale
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#a0477ee1b44ace6090119178eea78cb0b">LstmDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#a0477ee1b44ace6090119178eea78cb0b">QLstmDescriptor</a>
</li>
<li>m_CellLayerNormWeights
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#ad0b8c32bb5381f4cc999093ba3b98b43">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a567622530e51eaa2e82c9790a3a43f02">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_layer_norm_parameters.xhtml#a1f9668b1a4c275966aadeec9a4c11347">LstmOptLayerNormParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#aeef6f1ac3efad8ec8b0a7118652b64c9">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_layer_norm_parameters.xhtml#a1f9668b1a4c275966aadeec9a4c11347">QLstmOptLayerNormParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#aeef6f1ac3efad8ec8b0a7118652b64c9">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#aeef6f1ac3efad8ec8b0a7118652b64c9">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_CellToForgetWeights
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a35b112e30c3eb153806a2a8c16d178e3">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a1ddc4634491d95d37fe15049decadb8c">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_peephole_parameters.xhtml#a0ccce0cf0ae71e89b20dfa48645494c8">LstmOptPeepholeParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a20c10fcb26657477377d07b7b1e13120">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_peephole_parameters.xhtml#a0ccce0cf0ae71e89b20dfa48645494c8">QLstmOptPeepholeParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a20c10fcb26657477377d07b7b1e13120">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a20c10fcb26657477377d07b7b1e13120">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_CellToInputWeights
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a484bafa2f8453a7c5a4a00b92a61b006">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ab99b2297c5a17114926b8b47c693fe43">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_peephole_parameters.xhtml#a9eb0e6bb91acbf59117a1460ce1dfd29">LstmOptPeepholeParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a951b7c90b862138071a298065f16be61">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_peephole_parameters.xhtml#a9eb0e6bb91acbf59117a1460ce1dfd29">QLstmOptPeepholeParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a951b7c90b862138071a298065f16be61">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a951b7c90b862138071a298065f16be61">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_CellToOutputWeights
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#afe204ca375b74e9a72640c9227918d0a">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a16b4d4acd2a0d6d533ff3fe8b8e71765">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_peephole_parameters.xhtml#aeff3e3b8715c568fdff74a25ec40facb">LstmOptPeepholeParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#aa09f7bdb9fd0d06b6386e412a4e72dd6">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_peephole_parameters.xhtml#aeff3e3b8715c568fdff74a25ec40facb">QLstmOptPeepholeParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#aa09f7bdb9fd0d06b6386e412a4e72dd6">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#aa09f7bdb9fd0d06b6386e412a4e72dd6">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_Children
: <a class="el" href="structarmnn_1_1_json_child_object.xhtml#af1e596fc699bb55613aa48e8fb321fae">JsonChildObject</a>
</li>
<li>m_CifgEnabled
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#ad474e5c51a0b194ef32e812b86c0cbdb">LstmDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#ad474e5c51a0b194ef32e812b86c0cbdb">QLstmDescriptor</a>
</li>
<li>m_CifgParameters
: <a class="el" href="classarmnn_1_1_lstm_layer.xhtml#a0e940dfa428f4eb429f8bc0d138b20af">LstmLayer</a>
, <a class="el" href="classarmnn_1_1_q_lstm_layer.xhtml#af53c478cc73821d29a83100b69de84c3">QLstmLayer</a>
, <a class="el" href="classarmnn_1_1_unidirectional_sequence_lstm_layer.xhtml#a0e940dfa428f4eb429f8bc0d138b20af">UnidirectionalSequenceLstmLayer</a>
</li>
<li>m_ClippingThresCell
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#a531a3907ec13d3772370da88030191a5">LstmDescriptor</a>
</li>
<li>m_ClippingThresProj
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#a86e88bef0df4df96df752b4b8955a3af">LstmDescriptor</a>
</li>
<li>m_ClTunedParameters
: <a class="el" href="classarmnn__driver_1_1_armnn_device.xhtml#a16977c5a21ac23ba6dfb783a98eb172c">ArmnnDevice</a>
</li>
<li>m_ConstantWeights
: <a class="el" href="structarmnn_1_1_fully_connected_descriptor.xhtml#a2d3dcfc10f90adedc995b64211dab6e9">FullyConnectedDescriptor</a>
</li>
<li>m_ConvolutionMethod
: <a class="el" href="structarmnn_1_1_workload_info.xhtml#ab236e9e1e9749f12ac8a28e7311b72ea">WorkloadInfo</a>
</li>
<li>m_Count
: <a class="el" href="structarmnn_1_1_profiler_impl_1_1_profiling_event_stats.xhtml#a1bf817b905316b6a2e823652eb156e5e">ProfilerImpl::ProfilingEventStats</a>
</li>
<li>m_Crops
: <a class="el" href="structarmnn_1_1_batch_to_space_nd_descriptor.xhtml#a3941f674c071c9503e00d2b59e92e454">BatchToSpaceNdDescriptor</a>
</li>
<li>m_CustomAllocator
: <a class="el" href="structarmnn_1_1_allocator.xhtml#a454dc02f777e9e66b9e798d4f4a647b5">Allocator</a>
, <a class="el" href="classarmnn_1_1_cl_backend.xhtml#af1937f516c364d9d99cb502249e7179d">ClBackend</a>
</li>
<li>m_CustomAllocatorMap
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options.xhtml#a939528f239e70c85f833c87c5fe41d83">IRuntime::CreationOptions</a>
</li>
<li>m_Data
: <a class="el" href="classarmnn_1_1_base_workload.xhtml#afb8d2c8817c75de9d01a4c0e0d5c160b">BaseWorkload&lt; QueueDescriptor &gt;</a>
, <a class="el" href="structarmnn_1_1experimental_1_1_execution_data.xhtml#ad2b382076f26f48cd44783cfca2e3642">ExecutionData</a>
, <a class="el" href="structarmnn_1_1_tensor_memory.xhtml#ad2b382076f26f48cd44783cfca2e3642">TensorMemory</a>
</li>
<li>m_DataLayout
: <a class="el" href="structarmnn_1_1_batch_normalization_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">BatchNormalizationDescriptor</a>
, <a class="el" href="structarmnn_1_1_batch_to_space_nd_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">BatchToSpaceNdDescriptor</a>
, <a class="el" href="structarmnn_1_1_convolution2d_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">Convolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_depthwise_convolution2d_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">DepthwiseConvolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_instance_normalization_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">InstanceNormalizationDescriptor</a>
, <a class="el" href="structarmnn_1_1_l2_normalization_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">L2NormalizationDescriptor</a>
, <a class="el" href="structarmnn_1_1_normalization_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">NormalizationDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">Pooling3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_resize_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">ResizeDescriptor</a>
, <a class="el" href="structarmnn_1_1_space_to_batch_nd_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">SpaceToBatchNdDescriptor</a>
, <a class="el" href="structarmnn_1_1_space_to_depth_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">SpaceToDepthDescriptor</a>
, <a class="el" href="structarmnn_1_1_strided_slice_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">StridedSliceDescriptor</a>
, <a class="el" href="structarmnn_1_1_transpose_convolution2d_descriptor.xhtml#a6089e1ca91914015777ea780a513131a">TransposeConvolution2dDescriptor</a>
</li>
<li>m_DataLayoutX
: <a class="el" href="structarmnn_1_1_batch_mat_mul_descriptor.xhtml#aedca000a005e091c23191e82d7e81b1d">BatchMatMulDescriptor</a>
</li>
<li>m_DataLayoutY
: <a class="el" href="structarmnn_1_1_batch_mat_mul_descriptor.xhtml#aaf7828880989b4b9378d3e86aa6dc843">BatchMatMulDescriptor</a>
</li>
<li>m_Debug
: <a class="el" href="structarmnn_1_1_optimizer_options.xhtml#a69eb14082d40fa0a3cff50457344a5e0">OptimizerOptions</a>
, <a class="el" href="structarmnn_1_1_optimizer_options_opaque_impl.xhtml#a69eb14082d40fa0a3cff50457344a5e0">OptimizerOptionsOpaqueImpl</a>
</li>
<li>m_DebugToFile
: <a class="el" href="structarmnn_1_1_optimizer_options.xhtml#afc07add3304c3d79293acb881c2168df">OptimizerOptions</a>
, <a class="el" href="structarmnn_1_1_optimizer_options_opaque_impl.xhtml#afc07add3304c3d79293acb881c2168df">OptimizerOptionsOpaqueImpl</a>
</li>
<li>m_DefaultStrategy
: <a class="el" href="classarmnn_1_1_strategy_base.xhtml#a9a0391eb40693be520f3092c130c2a57">StrategyBase&lt; DefaultStrategy &gt;</a>
</li>
<li>m_DepthwiseConvolutionLayer
: <a class="el" href="classarmnn_1_1_cl_depthwise_convolution_workload.xhtml#ac0fba9c7a56b1982e9aa8ca10b5df71b">ClDepthwiseConvolutionWorkload</a>
</li>
<li>m_DetailsToStdOutMethod
: <a class="el" href="classarmnn_1_1_profiler_impl.xhtml#aee2a1b7405b64c6f48a5b62c0877d935">ProfilerImpl</a>
</li>
<li>m_DetectionsPerClass
: <a class="el" href="structarmnn_1_1_detection_post_process_descriptor.xhtml#a7e2f87544b8bc7e497e1dec8d3ca4055">DetectionPostProcessDescriptor</a>
</li>
<li>m_DilationX
: <a class="el" href="structarmnn_1_1_convolution2d_descriptor.xhtml#aa3c6a77a963a98ccb8ea7b8fd008a8c1">Convolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#aa3c6a77a963a98ccb8ea7b8fd008a8c1">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_depthwise_convolution2d_descriptor.xhtml#aa3c6a77a963a98ccb8ea7b8fd008a8c1">DepthwiseConvolution2dDescriptor</a>
</li>
<li>m_DilationY
: <a class="el" href="structarmnn_1_1_convolution2d_descriptor.xhtml#a302b688d88dd73cde0fb1faef6679907">Convolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#a302b688d88dd73cde0fb1faef6679907">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_depthwise_convolution2d_descriptor.xhtml#a302b688d88dd73cde0fb1faef6679907">DepthwiseConvolution2dDescriptor</a>
</li>
<li>m_DilationZ
: <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#a16543bce17aa2e4d6e81c88f74227192">Convolution3dDescriptor</a>
</li>
<li>m_DimMappings
: <a class="el" href="structarmnn_1_1_permute_descriptor.xhtml#a14433af2b223695b40d8c8f8ba2ebb8f">PermuteDescriptor</a>
, <a class="el" href="structarmnn_1_1_transpose_descriptor.xhtml#a14433af2b223695b40d8c8f8ba2ebb8f">TransposeDescriptor</a>
</li>
<li>m_DynamicBackendsPath
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options.xhtml#ae43cf4b5df0068ee6a9151c98947248b">IRuntime::CreationOptions</a>
</li>
<li>m_DynamicInputsEncountered
: <a class="el" href="structarmnn__driver_1_1_conversion_data.xhtml#a094e06eb84b3b80533c0f961f0f472de">ConversionData</a>
</li>
<li>m_EllipsisMask
: <a class="el" href="structarmnn_1_1_strided_slice_descriptor.xhtml#af996d82c47e43a16f4c8faa6c6b3e030">StridedSliceDescriptor</a>
</li>
<li>m_EnableGpuProfiling
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options.xhtml#a2fe8c3eadf4f4f9c0c664a24a2a298f9">IRuntime::CreationOptions</a>
</li>
<li>m_EnableProfiling
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options_1_1_external_profiling_options.xhtml#a26d42007440bb01a1a6d0ab3b5a657ee">IRuntime::CreationOptions::ExternalProfilingOptions</a>
</li>
<li>m_End
: <a class="el" href="structarmnn_1_1_strided_slice_descriptor.xhtml#aa68194dd6258ab5b04123005a066ea25">StridedSliceDescriptor</a>
</li>
<li>m_EndMask
: <a class="el" href="structarmnn_1_1_strided_slice_descriptor.xhtml#ac37e49c0d6e6e54f9d2015d0f11f8ee7">StridedSliceDescriptor</a>
</li>
<li>m_EndOfLife
: <a class="el" href="structarmnn_1_1_mem_block.xhtml#afb654a0f03aca4f7f73a9008fab83b11">MemBlock</a>
</li>
<li>m_Eps
: <a class="el" href="structarmnn_1_1_batch_normalization_descriptor.xhtml#a11c821c7524251004a72ed13c510853c">BatchNormalizationDescriptor</a>
, <a class="el" href="structarmnn_1_1_instance_normalization_descriptor.xhtml#a11c821c7524251004a72ed13c510853c">InstanceNormalizationDescriptor</a>
, <a class="el" href="structarmnn_1_1_l2_normalization_descriptor.xhtml#a11c821c7524251004a72ed13c510853c">L2NormalizationDescriptor</a>
</li>
<li>m_Error
: <a class="el" href="structarmnn_1_1_optimization_result.xhtml#a41a657cfacb52a80a73575c5c730ab88">OptimizationResult</a>
</li>
<li>m_EventSequence
: <a class="el" href="classarmnn_1_1_profiler_impl.xhtml#a6c8819e2b32bf401c10505919ad8368c">ProfilerImpl</a>
</li>
<li>m_ExportEnabled
: <a class="el" href="structarmnn_1_1_i_network_properties.xhtml#a042fb9a87ffa70730766d19505d80490">INetworkProperties</a>
, <a class="el" href="structarmnn_1_1_optimizer_options.xhtml#a0054f53e4e70bb39c000bcf240627b18">OptimizerOptions</a>
, <a class="el" href="structarmnn_1_1_optimizer_options_opaque_impl.xhtml#a0054f53e4e70bb39c000bcf240627b18">OptimizerOptionsOpaqueImpl</a>
</li>
<li>m_ExternalMemoryManagementEnabled
: <a class="el" href="structarmnn_1_1_i_network_properties.xhtml#a3c8b24dc3a0157ea817042c518bf8d87">INetworkProperties</a>
</li>
<li>m_File
: <a class="el" href="structarmnn_1_1_check_location.xhtml#a97b4339c57e59efc136e6304bd23b3c8">CheckLocation</a>
</li>
<li>m_FileFormat
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options_1_1_external_profiling_options.xhtml#aeec9a6408083ab1b6bf7fa3e566ebe46">IRuntime::CreationOptions::ExternalProfilingOptions</a>
</li>
<li>m_FileOnly
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options_1_1_external_profiling_options.xhtml#ad8f8cb971cad412664cd7df58df7eb1e">IRuntime::CreationOptions::ExternalProfilingOptions</a>
</li>
<li>m_ForgetGateBias
: <a class="el" href="structarmnn_1_1_lstm_basic_parameters.xhtml#af7f44bcc5b6cf669268a9ac0ff1446be">LstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#ace7a1f1f1041b412b7d8ef82b95ff352">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a21626d0b91f8942c3ef8e48e17db9f21">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a29fa293fffbf9c6f00cd75db1dc0a52a">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_basic_parameters.xhtml#af7f44bcc5b6cf669268a9ac0ff1446be">QLstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a29fa293fffbf9c6f00cd75db1dc0a52a">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#ace7a1f1f1041b412b7d8ef82b95ff352">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a21626d0b91f8942c3ef8e48e17db9f21">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#af7f44bcc5b6cf669268a9ac0ff1446be">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#a29fa293fffbf9c6f00cd75db1dc0a52a">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a29fa293fffbf9c6f00cd75db1dc0a52a">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_ForgetIntermediateScale
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#afec7f36158448f723b426a9527acb189">LstmDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#afec7f36158448f723b426a9527acb189">QLstmDescriptor</a>
</li>
<li>m_ForgetLayerNormWeights
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#af0f796fba1a2be9c56b4c9ee534577ee">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a513ad7774e0f8969ab68d91a04ecca65">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_layer_norm_parameters.xhtml#af03d5f9789e673011a9fa19a699530db">LstmOptLayerNormParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#ad9442e26aa79f896da5f404ab825a9c8">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_layer_norm_parameters.xhtml#af03d5f9789e673011a9fa19a699530db">QLstmOptLayerNormParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#ad9442e26aa79f896da5f404ab825a9c8">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#ad9442e26aa79f896da5f404ab825a9c8">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_Function
: <a class="el" href="structarmnn_1_1_activation_descriptor.xhtml#af10fa7883e3579950f477bee92a64844">ActivationDescriptor</a>
, <a class="el" href="structarmnn_1_1_arg_min_max_descriptor.xhtml#ab1ae6f520bb1a4da191a0ae907477f23">ArgMinMaxDescriptor</a>
, <a class="el" href="structarmnn_1_1_check_location.xhtml#a46e3b4b140e2c550342337b5fcceb9c6">CheckLocation</a>
</li>
<li>m_Gamma
: <a class="el" href="classarmnn_1_1_batch_normalization_layer.xhtml#a5da51be22147d174ff661810c32675b0">BatchNormalizationLayer</a>
, <a class="el" href="structarmnn_1_1_batch_normalization_queue_descriptor.xhtml#a96ee5ab4a7d2d8a4634b77d4eb9a949f">BatchNormalizationQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_instance_normalization_descriptor.xhtml#a5e078fd505aef7bccaa05c8058e096cc">InstanceNormalizationDescriptor</a>
</li>
<li>m_GpuAccTunedParameters
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options.xhtml#a515d755116f35e5b3ab30b7a78a712f1">IRuntime::CreationOptions</a>
</li>
<li>m_Graph
: <a class="el" href="structarmnn_1_1_graph_1_1_input_layers_accessor.xhtml#ab082a6092f0fdb886a45c56c4ab51a31">Graph::InputLayersAccessor</a>
, <a class="el" href="structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml#ab082a6092f0fdb886a45c56c4ab51a31">Graph::OutputLayersAccessor</a>
</li>
<li>m_Guid
: <a class="el" href="classarmnn_1_1_base_workload.xhtml#a4c2b3ca86eec6c199364671af267cd2c">BaseWorkload&lt; QueueDescriptor &gt;</a>
, <a class="el" href="structarmnn_1_1_debug_queue_descriptor.xhtml#a04f1026633579df1913f80db2877ce8c">DebugQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_json_child_object.xhtml#ac88c84096e38ee76d66597683dae2a5f">JsonChildObject</a>
</li>
<li>m_HalfPixelCenters
: <a class="el" href="structarmnn_1_1_resize_descriptor.xhtml#a4022d5107338aaf5eb7abebf78a1360b">ResizeDescriptor</a>
</li>
<li>m_HasValue
: <a class="el" href="classarmnn_1_1_optional_base.xhtml#a53e87efb7e1b2df3dc4420dafaf2ee7e">OptionalBase</a>
</li>
<li>m_HeuristicsHandle
: <a class="el" href="classarmnn_1_1_cl_tuned_parameters.xhtml#a62ba3e64c27e46626d23ac9248f8b5fe">ClTunedParameters</a>
</li>
<li>m_HiddenStateScale
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#af8f724af7210b52529216feefa993c98">LstmDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#af8f724af7210b52529216feefa993c98">QLstmDescriptor</a>
</li>
<li>m_HiddenStateZeroPoint
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#a4556cbd764d4848d8ad0637a9eed580d">LstmDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#a4556cbd764d4848d8ad0637a9eed580d">QLstmDescriptor</a>
</li>
<li>m_Id
: <a class="el" href="classarmnn_1_1_cl_import_tensor_handle_factory.xhtml#ad06ff11632a67e02c68b756c6439bc44">ClImportTensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_cl_tensor_handle_factory.xhtml#ad06ff11632a67e02c68b756c6439bc44">ClTensorHandleFactory</a>
, <a class="el" href="structarmnn_1_1_profiler_impl_1_1_marker.xhtml#a9be18087caca4704995bf26463f4b46a">ProfilerImpl::Marker</a>
</li>
<li>m_IgnoredBackends
: <a class="el" href="structarmnn_1_1_backend_settings.xhtml#a552a322b7e66b580caf4652f262687db">BackendSettings</a>
</li>
<li>m_ImportEnabled
: <a class="el" href="structarmnn_1_1_i_network_properties.xhtml#a111a52fb2bd24aee9fc125f28c2eb1cb">INetworkProperties</a>
, <a class="el" href="structarmnn_1_1_optimizer_options.xhtml#a05c1bba6ba3ecc1339d4c4c10c0d8890">OptimizerOptions</a>
, <a class="el" href="structarmnn_1_1_optimizer_options_opaque_impl.xhtml#a05c1bba6ba3ecc1339d4c4c10c0d8890">OptimizerOptionsOpaqueImpl</a>
</li>
<li>m_IncomingCaptureFile
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options_1_1_external_profiling_options.xhtml#a36dd18e4f73d470e3234d72198aa5fef">IRuntime::CreationOptions::ExternalProfilingOptions</a>
</li>
<li>m_Index
: <a class="el" href="structarmnn_1_1_mem_block.xhtml#a33204e9c0c3d6dc19cec97536ce9527b">MemBlock</a>
, <a class="el" href="classarmnn_1_1_per_axis_iterator.xhtml#a271b1a398c11fb4bf8603119041562c9">PerAxisIterator&lt; T, Base &gt;</a>
</li>
<li>m_InferAndValidate
: <a class="el" href="structarmnn_tf_lite_parser_1_1_i_tf_lite_parser_1_1_tf_lite_parser_options.xhtml#ad9e70e3709afbaa45bf9c3cfa0148b2b">ITfLiteParser::TfLiteParserOptions</a>
</li>
<li>m_InputGateBias
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a9e081a9b94defb30d1558dc912507e0e">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a042ea9d6d3842b87f112db126e806a93">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_cifg_parameters.xhtml#a85684ffb2d12d0d04fbd188591488a2c">LstmOptCifgParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a44eb7524badcca9b2073359e3814c98b">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_cifg_parameters.xhtml#a85684ffb2d12d0d04fbd188591488a2c">QLstmOptCifgParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a44eb7524badcca9b2073359e3814c98b">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a9e081a9b94defb30d1558dc912507e0e">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a042ea9d6d3842b87f112db126e806a93">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#a85684ffb2d12d0d04fbd188591488a2c">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#a44eb7524badcca9b2073359e3814c98b">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a44eb7524badcca9b2073359e3814c98b">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_InputIntermediateScale
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#a09e1f097944f61cc901240f9300364cf">LstmDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#a09e1f097944f61cc901240f9300364cf">QLstmDescriptor</a>
</li>
<li>m_InputLayerNormWeights
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a0cd848f65ec31778d708852f0042fe37">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ab8c7712c0c6bc427dede8c76945e8f89">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_layer_norm_parameters.xhtml#a47786528c742271a3937535426934219">LstmOptLayerNormParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a1dbad32cad5c0437e1272f59fedf52ea">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_layer_norm_parameters.xhtml#a47786528c742271a3937535426934219">QLstmOptLayerNormParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a1dbad32cad5c0437e1272f59fedf52ea">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a1dbad32cad5c0437e1272f59fedf52ea">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_Inputs
: <a class="el" href="structarmnn_1_1experimental_1_1_working_mem_descriptor.xhtml#a4b50e46a6810018f3edecfb68b2a76b3">WorkingMemDescriptor</a>
, <a class="el" href="structarmnn_1_1_queue_descriptor.xhtml#a4b50e46a6810018f3edecfb68b2a76b3">QueueDescriptor</a>
</li>
<li>m_InputShape
: <a class="el" href="structarmnn_1_1_stack_descriptor.xhtml#a2bea87b470268bb0b73457c3733dbc04">StackDescriptor</a>
</li>
<li>m_InputSlotCoords
: <a class="el" href="structarmnn_1_1experimental_1_1_working_mem_handle_1_1_input_mem_descriptor_coords.xhtml#a2164ead5e3ecbddcf0d86b088ede3dfb">WorkingMemHandle::InputMemDescriptorCoords</a>
, <a class="el" href="structarmnn_1_1experimental_1_1_working_mem_handle_1_1_output_mem_descriptor_coords.xhtml#a2164ead5e3ecbddcf0d86b088ede3dfb">WorkingMemHandle::OutputMemDescriptorCoords</a>
</li>
<li>m_InputSource
: <a class="el" href="structarmnn_1_1_i_network_properties.xhtml#a53d95b257e52b0fd292ba6d40d3c5dc3">INetworkProperties</a>
</li>
<li>m_InputTensorInfos
: <a class="el" href="structarmnn_1_1_workload_info.xhtml#ac97905bfa0daab357b91df1347600309">WorkloadInfo</a>
</li>
<li>m_InputToCellWeights
: <a class="el" href="structarmnn_1_1_lstm_basic_parameters.xhtml#ad3f42762262330534a4be0dde29a1318">LstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a49e11acda22742cbaf6f1b259ead0d84">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#af07c65d3b7886a00f10c69093e76a341">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a841439e3b8dc157a7368b19c9ecb7d03">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_basic_parameters.xhtml#ad3f42762262330534a4be0dde29a1318">QLstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a841439e3b8dc157a7368b19c9ecb7d03">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a49e11acda22742cbaf6f1b259ead0d84">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#af07c65d3b7886a00f10c69093e76a341">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#ad3f42762262330534a4be0dde29a1318">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#a841439e3b8dc157a7368b19c9ecb7d03">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a841439e3b8dc157a7368b19c9ecb7d03">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_InputToForgetWeights
: <a class="el" href="structarmnn_1_1_lstm_basic_parameters.xhtml#aafad117fb253359c1d472c9faefe49ef">LstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a31da1ead6794dd64571afdd0b6efc771">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a4b3f6e6f2268416ffd7a34fda95ffd0b">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#aab77f54a037658ca9b2bf9cc8a1fadf1">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_basic_parameters.xhtml#aafad117fb253359c1d472c9faefe49ef">QLstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#aab77f54a037658ca9b2bf9cc8a1fadf1">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a31da1ead6794dd64571afdd0b6efc771">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a4b3f6e6f2268416ffd7a34fda95ffd0b">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#aafad117fb253359c1d472c9faefe49ef">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#aab77f54a037658ca9b2bf9cc8a1fadf1">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#aab77f54a037658ca9b2bf9cc8a1fadf1">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_InputToInputWeights
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#affcee5f4ab5994a21bee3b78b4e43de3">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a15f9f65126ad3d4d82d6c19d0662ae01">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_cifg_parameters.xhtml#a281954ff495d27f7a29e42a98768c670">LstmOptCifgParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#ab160eba2493d5fe52185c0986dcb190c">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_cifg_parameters.xhtml#a281954ff495d27f7a29e42a98768c670">QLstmOptCifgParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#ab160eba2493d5fe52185c0986dcb190c">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#affcee5f4ab5994a21bee3b78b4e43de3">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a15f9f65126ad3d4d82d6c19d0662ae01">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#a281954ff495d27f7a29e42a98768c670">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#ab160eba2493d5fe52185c0986dcb190c">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#ab160eba2493d5fe52185c0986dcb190c">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_InputToOutputWeights
: <a class="el" href="structarmnn_1_1_lstm_basic_parameters.xhtml#a3d4f6f42e10ba6f808a5244bb7853e7e">LstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a6e30c7b3451da3ea9cf4259fb602e6e6">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a33242cb43250f04f1736161ca8ad2db9">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a17ba1c8bcc71a55a95b2a3913f8cb203">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_basic_parameters.xhtml#a3d4f6f42e10ba6f808a5244bb7853e7e">QLstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a17ba1c8bcc71a55a95b2a3913f8cb203">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a6e30c7b3451da3ea9cf4259fb602e6e6">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a33242cb43250f04f1736161ca8ad2db9">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#a3d4f6f42e10ba6f808a5244bb7853e7e">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#a17ba1c8bcc71a55a95b2a3913f8cb203">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a17ba1c8bcc71a55a95b2a3913f8cb203">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_InterLayerMemoryGroup
: <a class="el" href="classarmnn_1_1_base_memory_manager.xhtml#a2fb34dc01d4d29d2de9eb6b29a106634">BaseMemoryManager</a>
</li>
<li>m_InterLayerMemoryMgr
: <a class="el" href="classarmnn_1_1_base_memory_manager.xhtml#a078a5c4f5cce47d82cd4b3002bcb827a">BaseMemoryManager</a>
</li>
<li>m_IntraLayerMemoryMgr
: <a class="el" href="classarmnn_1_1_base_memory_manager.xhtml#afcae38d24590739d2f0aa4362b6a58ed">BaseMemoryManager</a>
</li>
<li>m_IntraLayerTensors
: <a class="el" href="structarmnn_1_1_memory_requirements.xhtml#a35195fd10bb12128c81da2689a125bbd">MemoryRequirements</a>
</li>
<li>m_Iterator
: <a class="el" href="classarmnn_1_1_per_axis_iterator.xhtml#abb7c5ac687cb1779a8c73d24cb903cec">PerAxisIterator&lt; T, Base &gt;</a>
, <a class="el" href="classarmnn_1_1_typed_iterator.xhtml#abb7c5ac687cb1779a8c73d24cb903cec">TypedIterator&lt; T, Base &gt;</a>
</li>
<li>m_K
: <a class="el" href="structarmnn_1_1_normalization_descriptor.xhtml#a8526ea7cf860d8e7f8340e9f9354f9f0">NormalizationDescriptor</a>
</li>
<li>m_KeepDims
: <a class="el" href="structarmnn_1_1_mean_descriptor.xhtml#a28e0548abfc4e79c48f29a3d11a062e9">MeanDescriptor</a>
, <a class="el" href="structarmnn_1_1_reduce_descriptor.xhtml#a28e0548abfc4e79c48f29a3d11a062e9">ReduceDescriptor</a>
</li>
<li>m_Label
: <a class="el" href="structarmnn_1_1_json_child_object.xhtml#ad6838c8d76c8f55b8bc4f9b85b921999">JsonChildObject</a>
</li>
<li>m_LayerBindingId
: <a class="el" href="structarmnn_1_1experimental_1_1_working_mem_handle_1_1_input_mem_descriptor_coords.xhtml#a147c24da9123341cca03441ec6224e71">WorkingMemHandle::InputMemDescriptorCoords</a>
</li>
<li>m_LayerBindingIds
: <a class="el" href="structarmnn_1_1experimental_1_1_working_mem_handle_1_1_output_mem_descriptor_coords.xhtml#a0460a16f2db17e30246bf4a669823dbe">WorkingMemHandle::OutputMemDescriptorCoords</a>
</li>
<li>m_LayerDetailsList
: <a class="el" href="structarmnn_1_1_json_child_object.xhtml#a07bfc1d2f927d78121f97a1acf109f5c">JsonChildObject</a>
</li>
<li>m_LayerName
: <a class="el" href="structarmnn_1_1_debug_queue_descriptor.xhtml#a2b4595e9b6c840810995558801be6f6c">DebugQueueDescriptor</a>
</li>
<li>m_LayerNormEnabled
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#a4a8ec49f130084445d44297549254780">LstmDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#a4a8ec49f130084445d44297549254780">QLstmDescriptor</a>
</li>
<li>m_LayerNormParameters
: <a class="el" href="classarmnn_1_1_lstm_layer.xhtml#a46864a690d016b7e00eb51a5bfe8e966">LstmLayer</a>
, <a class="el" href="classarmnn_1_1_q_lstm_layer.xhtml#ab43a687e3d705b3b0414d6fedb869e9d">QLstmLayer</a>
, <a class="el" href="classarmnn_1_1_unidirectional_sequence_lstm_layer.xhtml#a46864a690d016b7e00eb51a5bfe8e966">UnidirectionalSequenceLstmLayer</a>
</li>
<li>m_LayerOutput
: <a class="el" href="classarmnn_1_1_constant_layer.xhtml#ad0c4b8ee0efd8f9336571cbeab8a53fe">ConstantLayer</a>
, <a class="el" href="structarmnn_1_1_constant_queue_descriptor.xhtml#acd77c51cdb162e2b541bc8b474290b7a">ConstantQueueDescriptor</a>
</li>
<li>m_LayerOutputToFile
: <a class="el" href="structarmnn_1_1_debug_queue_descriptor.xhtml#a2640d85f95461c8b2e45f696cf210ced">DebugQueueDescriptor</a>
</li>
<li>m_Line
: <a class="el" href="structarmnn_1_1_check_location.xhtml#acd649cad8a9b65a4a2730de8b13a1ff5">CheckLocation</a>
</li>
<li>m_LocalPacketHandlers
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options_1_1_external_profiling_options.xhtml#abaf0a782881de8cba2d411a09c2559fa">IRuntime::CreationOptions::ExternalProfilingOptions</a>
</li>
<li>m_Major
: <a class="el" href="structarmnn_1_1_backend_version.xhtml#aa98a6e78930567c2d9cdcf320eaddb7a">BackendVersion</a>
</li>
<li>m_Max
: <a class="el" href="structarmnn_1_1_fake_quantization_descriptor.xhtml#ad3729c591f7bfda7ad9ef9927d8a1bd6">FakeQuantizationDescriptor</a>
, <a class="el" href="structarmnn_1_1_fake_quantization_queue_descriptor.xhtml#ad9b3054e90dc8118c9f7146a2a940e1b">FakeQuantizationQueueDescriptor</a>
</li>
<li>m_MaxClassesPerDetection
: <a class="el" href="structarmnn_1_1_detection_post_process_descriptor.xhtml#a9ae2c9796692ebeafe19a4d3f09c8ea8">DetectionPostProcessDescriptor</a>
</li>
<li>m_MaxDetections
: <a class="el" href="structarmnn_1_1_detection_post_process_descriptor.xhtml#ae72089bcab60ac175557f4241b16a014">DetectionPostProcessDescriptor</a>
</li>
<li>m_MaxMs
: <a class="el" href="structarmnn_1_1_profiler_impl_1_1_profiling_event_stats.xhtml#a7a2e04ecfcc33687bd52a9f57bb3c73b">ProfilerImpl::ProfilingEventStats</a>
</li>
<li>m_Mean
: <a class="el" href="classarmnn_1_1_batch_normalization_layer.xhtml#a2dfc280952c7939299c304fcbf855b97">BatchNormalizationLayer</a>
, <a class="el" href="structarmnn_1_1_batch_normalization_queue_descriptor.xhtml#a0ae7224f556b0d008d060f847c8f8901">BatchNormalizationQueueDescriptor</a>
</li>
<li>m_Measurements
: <a class="el" href="structarmnn_1_1_json_child_object.xhtml#a0421b0c85b01c7b031c6fb3cf66b55a3">JsonChildObject</a>
</li>
<li>m_MemBlocks
: <a class="el" href="structarmnn_1_1_mem_bin.xhtml#aeb1783f0f3f528e11f9ce70f0214f8bb">MemBin</a>
</li>
<li>m_MemoryArea
: <a class="el" href="classarmnn_1_1_base_tensor.xhtml#aba26e5decca8be8786d8a5faf2e06a49">BaseTensor&lt; MemoryType &gt;</a>
</li>
<li>m_MemoryOptimizerStrategyMap
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options.xhtml#a6e8601cb2ffa03a83dbfae67b598ba4e">IRuntime::CreationOptions</a>
</li>
<li>m_MemPools
: <a class="el" href="structarmnn__driver_1_1_conversion_data.xhtml#acb740de896710dbc576f5eaf7a9cfeaa">ConversionData</a>
</li>
<li>m_MemSize
: <a class="el" href="structarmnn_1_1_mem_bin.xhtml#a08e50de8fcc7560644bdabc7356bb270">MemBin</a>
, <a class="el" href="structarmnn_1_1_mem_block.xhtml#ac972eed0c811e23b9e1060cee4ac5a53">MemBlock</a>
</li>
<li>m_Method
: <a class="el" href="structarmnn_1_1_resize_descriptor.xhtml#a869254cb56968986a78a79e1d6d4a86b">ResizeDescriptor</a>
</li>
<li>m_Min
: <a class="el" href="structarmnn_1_1_fake_quantization_descriptor.xhtml#a4c14a8e0d126891dd0c38e7584312bfd">FakeQuantizationDescriptor</a>
, <a class="el" href="structarmnn_1_1_fake_quantization_queue_descriptor.xhtml#a0473c3f5fd1ad36876416dd5555f336d">FakeQuantizationQueueDescriptor</a>
</li>
<li>m_MinMs
: <a class="el" href="structarmnn_1_1_profiler_impl_1_1_profiling_event_stats.xhtml#acf82cb43aa8ac450a64249b1339edcd6">ProfilerImpl::ProfilingEventStats</a>
</li>
<li>m_Minor
: <a class="el" href="structarmnn_1_1_backend_version.xhtml#a421dbc9bee3ebd2721de5c82e6cd7d20">BackendVersion</a>
</li>
<li>m_MLGOTuner
: <a class="el" href="classarmnn_1_1_cl_backend_context.xhtml#ae8e5298350dd502b4d47da1eb91c4eeb">ClBackendContext</a>
</li>
<li>m_MLGOTuningFile
: <a class="el" href="classarmnn_1_1_cl_backend_context.xhtml#afdd26db2e2aa79da77addaa93e9ce2e4">ClBackendContext</a>
</li>
<li>m_Mode
: <a class="el" href="classarmnn_1_1_cl_tuned_parameters.xhtml#a22f392e24a1f2155875e3063a7491e4d">ClTunedParameters</a>
</li>
<li>m_ModelOptions
: <a class="el" href="structarmnn_1_1_optimizer_options.xhtml#a71194277c60153a5f86539f5d39f01db">OptimizerOptions</a>
, <a class="el" href="structarmnn_1_1_optimizer_options_opaque_impl.xhtml#a71194277c60153a5f86539f5d39f01db">OptimizerOptionsOpaqueImpl</a>
</li>
<li>m_Name
: <a class="el" href="structarmnn_1_1_measurement.xhtml#ab13844df5477a9ab8f13069e3d8abad6">Measurement</a>
</li>
<li>m_Network
: <a class="el" href="structarmnn__driver_1_1_conversion_data.xhtml#a2db3ae8d422f17d455e0ba0cb6291d2a">ConversionData</a>
</li>
<li>m_NetworkIdentifier
: <a class="el" href="structarmnn_utils_1_1_parser_prototxt_fixture.xhtml#a0b81fa34e5ca505b9880755f702fafe7">ParserPrototxtFixture&lt; TParser &gt;</a>
</li>
<li>m_NewAxisMask
: <a class="el" href="structarmnn_1_1_strided_slice_descriptor.xhtml#a7c91eda2b331d607bae92cd8ebf50bb9">StridedSliceDescriptor</a>
</li>
<li>m_NmsIouThreshold
: <a class="el" href="structarmnn_1_1_detection_post_process_descriptor.xhtml#a53c8a7f33a40e1e240256bcfcf41b101">DetectionPostProcessDescriptor</a>
</li>
<li>m_NmsScoreThreshold
: <a class="el" href="structarmnn_1_1_detection_post_process_descriptor.xhtml#a4392dd6b4862cc9cf95ae8f1001ba592">DetectionPostProcessDescriptor</a>
</li>
<li>m_NormChannelType
: <a class="el" href="structarmnn_1_1_normalization_descriptor.xhtml#afe1f0f09d49ad2befc01f8789187b7dd">NormalizationDescriptor</a>
</li>
<li>m_NormMethodType
: <a class="el" href="structarmnn_1_1_normalization_descriptor.xhtml#a05945f080edf694b631960728b87aadb">NormalizationDescriptor</a>
</li>
<li>m_NormSize
: <a class="el" href="structarmnn_1_1_normalization_descriptor.xhtml#aa70c05f1aad12fbd9d9ec43ea4557b03">NormalizationDescriptor</a>
</li>
<li>m_NotifyOnEvent
: <a class="el" href="classarmnn_1_1_graph_observable.xhtml#a5294e0648bebd5643078b96f32e5f9fe">GraphObservable&lt; ObservedType &gt;</a>
</li>
<li>m_NumClasses
: <a class="el" href="structarmnn_1_1_detection_post_process_descriptor.xhtml#a3a04b0ccee4bb2f21721ee5045e83df4">DetectionPostProcessDescriptor</a>
</li>
<li>m_NumGroups
: <a class="el" href="structarmnn_1_1_channel_shuffle_descriptor.xhtml#a1953d00371489c32ebded5a42eabc0cf">ChannelShuffleDescriptor</a>
</li>
<li>m_NumInputs
: <a class="el" href="structarmnn_1_1_stack_descriptor.xhtml#aed6086070440ceb94129bef06f70173f">StackDescriptor</a>
, <a class="el" href="structarmnn_1_1_stand_in_descriptor.xhtml#aed6086070440ceb94129bef06f70173f">StandInDescriptor</a>
</li>
<li>m_NumInputSlots
: <a class="el" href="structarmnn_1_1_pre_compiled_descriptor.xhtml#aebc22128191c14a59356453600833344">PreCompiledDescriptor</a>
</li>
<li>m_NumOutputs
: <a class="el" href="structarmnn_1_1_stand_in_descriptor.xhtml#abb8a2d2bb8cc594c26aaa70c820ac5cc">StandInDescriptor</a>
</li>
<li>m_NumOutputSlots
: <a class="el" href="structarmnn_1_1_pre_compiled_descriptor.xhtml#a19244e2574820c8ab69b1559d8638a61">PreCompiledDescriptor</a>
</li>
<li>m_ObservedObjects
: <a class="el" href="classarmnn_1_1_graph_observable.xhtml#a1aef6df25b42119780dc05b880f4a429">GraphObservable&lt; ObservedType &gt;</a>
</li>
<li>m_Offset
: <a class="el" href="structarmnn_1_1_mem_block.xhtml#a7fa2df31ffac52484e0612a31fd4256d">MemBlock</a>
, <a class="el" href="structarmnn_1_1_tensor_memory.xhtml#a7fa2df31ffac52484e0612a31fd4256d">TensorMemory</a>
</li>
<li>m_Operation
: <a class="el" href="structarmnn_1_1_comparison_descriptor.xhtml#a865dc4f43cb0ff01a1dcf78036912fd1">ComparisonDescriptor</a>
, <a class="el" href="structarmnn_1_1_elementwise_binary_descriptor.xhtml#a7e4ece533ef2cb0f251e11c47a17371c">ElementwiseBinaryDescriptor</a>
, <a class="el" href="structarmnn_1_1_elementwise_unary_descriptor.xhtml#afe768be66897eb3d73284424e3239b23">ElementwiseUnaryDescriptor</a>
, <a class="el" href="structarmnn_1_1_logical_binary_descriptor.xhtml#a32c95d929d2e2e0fa7fc1a3a25865eb0">LogicalBinaryDescriptor</a>
</li>
<li>m_Options
: <a class="el" href="classarmnn__driver_1_1_armnn_device.xhtml#a33bc6665817301bb3bf1699189c23ae3">ArmnnDevice</a>
</li>
<li>m_Origin
: <a class="el" href="structarmnn_1_1_concat_queue_descriptor_1_1_view_origin.xhtml#af2f0a8c9eb32861711c0ce30b7986c44">ConcatQueueDescriptor::ViewOrigin</a>
, <a class="el" href="structarmnn_1_1_splitter_queue_descriptor_1_1_view_origin.xhtml#af2f0a8c9eb32861711c0ce30b7986c44">SplitterQueueDescriptor::ViewOrigin</a>
</li>
<li>m_OutgoingCaptureFile
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options_1_1_external_profiling_options.xhtml#aa0d6aa79d683bc79d20d4ddcf7db87db">IRuntime::CreationOptions::ExternalProfilingOptions</a>
</li>
<li>m_Output_Type
: <a class="el" href="structarmnn_1_1_arg_min_max_descriptor.xhtml#abce784834696eb928c620f1fafe71a8d">ArgMinMaxDescriptor</a>
</li>
<li>m_OutputGateBias
: <a class="el" href="structarmnn_1_1_lstm_basic_parameters.xhtml#a950c538e326db48f4c26a354c2b982e3">LstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a8c0f6d48705f40c5590dde09be262222">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a48cb83dcb58c786ea36f5d37695e75b1">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a5ff4158b1b363b898d0da04c42d37ce0">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_basic_parameters.xhtml#a950c538e326db48f4c26a354c2b982e3">QLstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a5ff4158b1b363b898d0da04c42d37ce0">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a8c0f6d48705f40c5590dde09be262222">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a48cb83dcb58c786ea36f5d37695e75b1">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#a950c538e326db48f4c26a354c2b982e3">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#a5ff4158b1b363b898d0da04c42d37ce0">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a5ff4158b1b363b898d0da04c42d37ce0">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_OutputHandlers
: <a class="el" href="classarmnn_1_1_layer.xhtml#aa44d91037bba52ba0dec6577509ade3b">Layer</a>
</li>
<li>m_OutputIntermediateScale
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#aa43409f9b457352c95c89f20ce5d844d">LstmDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#aa43409f9b457352c95c89f20ce5d844d">QLstmDescriptor</a>
</li>
<li>m_OutputLayerNormWeights
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a9b18daea2e9f42386055326fd016519a">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a9935ad8aff43cf1e0622bf6d82710513">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_layer_norm_parameters.xhtml#a9c441c2706cbd0e925c02cdcb8916669">LstmOptLayerNormParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a0e0f66bd03c88f3d2dc666f581d3cf12">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_layer_norm_parameters.xhtml#a9c441c2706cbd0e925c02cdcb8916669">QLstmOptLayerNormParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a0e0f66bd03c88f3d2dc666f581d3cf12">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a0e0f66bd03c88f3d2dc666f581d3cf12">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_OutputNetworkDetailsMethod
: <a class="el" href="structarmnn_1_1_i_network_properties.xhtml#abbc76b61436b870aed2c8592690e9a70">INetworkProperties</a>
</li>
<li>m_Outputs
: <a class="el" href="structarmnn_1_1experimental_1_1_working_mem_descriptor.xhtml#a6abd491bb99ffe88bd472c1ae5a1ed1a">WorkingMemDescriptor</a>
, <a class="el" href="structarmnn_1_1_queue_descriptor.xhtml#a6abd491bb99ffe88bd472c1ae5a1ed1a">QueueDescriptor</a>
</li>
<li>m_OutputShape
: <a class="el" href="structarmnn_1_1_transpose_convolution2d_descriptor.xhtml#a78f5b213a603b55d0fabea389e89f203">TransposeConvolution2dDescriptor</a>
</li>
<li>m_OutputShapeEnabled
: <a class="el" href="structarmnn_1_1_transpose_convolution2d_descriptor.xhtml#a9bc46a2ad56319786bad30be9ab2dc6a">TransposeConvolution2dDescriptor</a>
</li>
<li>m_OutputShapeRounding
: <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#affb5b68b3eba3ed45a06c7cde7781962">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#affb5b68b3eba3ed45a06c7cde7781962">Pooling3dDescriptor</a>
</li>
<li>m_OutputSlotCoords
: <a class="el" href="structarmnn_1_1experimental_1_1_working_mem_handle_1_1_output_mem_descriptor_coords.xhtml#a9a3da982146e249244c81b347aaafa40">WorkingMemHandle::OutputMemDescriptorCoords</a>
</li>
<li>m_OutputSlotForOperand
: <a class="el" href="structarmnn__driver_1_1_conversion_data.xhtml#a4df0c61eb897ecc9271a4a85604066ea">ConversionData</a>
</li>
<li>m_OutputSlotId
: <a class="el" href="structarmnn_1_1_tensor_memory.xhtml#a0948ebfd3dcfd15456e3306d13d69b95">TensorMemory</a>
</li>
<li>m_OutputSlotIndex
: <a class="el" href="structarmnn_1_1_memory_info.xhtml#add7faa7aeccf7aafc41972c3b0a8baa2">MemoryInfo</a>
</li>
<li>m_OutputSource
: <a class="el" href="structarmnn_1_1_i_network_properties.xhtml#a3266436db920d1ca96b0afaadacf3972">INetworkProperties</a>
</li>
<li>m_OutputTensorInfos
: <a class="el" href="structarmnn_1_1_workload_info.xhtml#a67b178f8a836bc1e52b8de109760adfd">WorkloadInfo</a>
</li>
<li>m_PadBack
: <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#a11d5c25face9b54e90f79ee8bdc1d0fb">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#a11d5c25face9b54e90f79ee8bdc1d0fb">Pooling3dDescriptor</a>
</li>
<li>m_PadBottom
: <a class="el" href="structarmnn_1_1_convolution2d_descriptor.xhtml#aa9e49717ebdb741e8c767741647fc618">Convolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#aa9e49717ebdb741e8c767741647fc618">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_depthwise_convolution2d_descriptor.xhtml#aa9e49717ebdb741e8c767741647fc618">DepthwiseConvolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#aa9e49717ebdb741e8c767741647fc618">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#aa9e49717ebdb741e8c767741647fc618">Pooling3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_transpose_convolution2d_descriptor.xhtml#aa9e49717ebdb741e8c767741647fc618">TransposeConvolution2dDescriptor</a>
</li>
<li>m_PaddingMethod
: <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#a8c29d6ea9b4186d69aad5961c910939c">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#a8c29d6ea9b4186d69aad5961c910939c">Pooling3dDescriptor</a>
</li>
<li>m_PaddingMode
: <a class="el" href="structarmnn_1_1_pad_descriptor.xhtml#a66f2c989f51ab6116de4380390250b69">PadDescriptor</a>
</li>
<li>m_PadFront
: <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#a83ca447892f460dabaa2f87d3dc3db61">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#a83ca447892f460dabaa2f87d3dc3db61">Pooling3dDescriptor</a>
</li>
<li>m_PadLeft
: <a class="el" href="structarmnn_1_1_convolution2d_descriptor.xhtml#ac18546ebbebbb32fe0a03baa9bf2c600">Convolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#ac18546ebbebbb32fe0a03baa9bf2c600">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_depthwise_convolution2d_descriptor.xhtml#ac18546ebbebbb32fe0a03baa9bf2c600">DepthwiseConvolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#ac18546ebbebbb32fe0a03baa9bf2c600">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#ac18546ebbebbb32fe0a03baa9bf2c600">Pooling3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_transpose_convolution2d_descriptor.xhtml#ac18546ebbebbb32fe0a03baa9bf2c600">TransposeConvolution2dDescriptor</a>
</li>
<li>m_PadList
: <a class="el" href="structarmnn_1_1_pad_descriptor.xhtml#a85f98c94e11f65a6b73f831735c040f3">PadDescriptor</a>
, <a class="el" href="structarmnn_1_1_space_to_batch_nd_descriptor.xhtml#a85f98c94e11f65a6b73f831735c040f3">SpaceToBatchNdDescriptor</a>
</li>
<li>m_PadRight
: <a class="el" href="structarmnn_1_1_convolution2d_descriptor.xhtml#a002bc30e590d78cbb4f4d12171055ca7">Convolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#a002bc30e590d78cbb4f4d12171055ca7">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_depthwise_convolution2d_descriptor.xhtml#a002bc30e590d78cbb4f4d12171055ca7">DepthwiseConvolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#a002bc30e590d78cbb4f4d12171055ca7">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#a002bc30e590d78cbb4f4d12171055ca7">Pooling3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_transpose_convolution2d_descriptor.xhtml#a002bc30e590d78cbb4f4d12171055ca7">TransposeConvolution2dDescriptor</a>
</li>
<li>m_PadTop
: <a class="el" href="structarmnn_1_1_convolution2d_descriptor.xhtml#a56b51f56cef50cdfa554258eecdab046">Convolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#a56b51f56cef50cdfa554258eecdab046">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_depthwise_convolution2d_descriptor.xhtml#a56b51f56cef50cdfa554258eecdab046">DepthwiseConvolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#a56b51f56cef50cdfa554258eecdab046">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#a56b51f56cef50cdfa554258eecdab046">Pooling3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_transpose_convolution2d_descriptor.xhtml#a56b51f56cef50cdfa554258eecdab046">TransposeConvolution2dDescriptor</a>
</li>
<li>m_PadValue
: <a class="el" href="structarmnn_1_1_pad_descriptor.xhtml#a410fa919f78af0f0f100bd1594eca4ab">PadDescriptor</a>
</li>
<li>m_Param
: <a class="el" href="classarmnn_1_1_layer_with_parameters.xhtml#ad32ac22bc72e28dfd6b466d143c8e262">LayerWithParameters&lt; Parameters &gt;</a>
</li>
<li>m_Parameters
: <a class="el" href="structarmnn_1_1_queue_descriptor_with_parameters.xhtml#aad91b9bbf7aa365d304febe79a3d1333">QueueDescriptorWithParameters&lt; LayerDescriptor &gt;</a>
</li>
<li>m_Parents
: <a class="el" href="classarmnn_1_1_profiler_impl.xhtml#a7cccdda9e15c719d099c0699a14e5f87">ProfilerImpl</a>
</li>
<li>m_Parser
: <a class="el" href="structarmnn_utils_1_1_parser_prototxt_fixture.xhtml#a8d1364ba09a94795405d6f70c11a79b8">ParserPrototxtFixture&lt; TParser &gt;</a>
</li>
<li>m_PeepholeEnabled
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#a2837b4396f20c956952d1a7286cab5f8">LstmDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#a2837b4396f20c956952d1a7286cab5f8">QLstmDescriptor</a>
</li>
<li>m_PeepholeParameters
: <a class="el" href="classarmnn_1_1_lstm_layer.xhtml#a4efa0f4d46817ab94e36c8507c26f276">LstmLayer</a>
, <a class="el" href="classarmnn_1_1_q_lstm_layer.xhtml#a4855b2b34766d4972a999e324ab88ee5">QLstmLayer</a>
, <a class="el" href="classarmnn_1_1_unidirectional_sequence_lstm_layer.xhtml#a4efa0f4d46817ab94e36c8507c26f276">UnidirectionalSequenceLstmLayer</a>
</li>
<li>m_PoolDepth
: <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#acc978b36fd5d949bc781d7638e6e08b9">Pooling3dDescriptor</a>
</li>
<li>m_PoolHeight
: <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#a5699e8606c37d18c03910b242cd1b010">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#a5699e8606c37d18c03910b242cd1b010">Pooling3dDescriptor</a>
</li>
<li>m_PoolType
: <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#a0031997bf43bd2747656c31e4977793a">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#a0031997bf43bd2747656c31e4977793a">Pooling3dDescriptor</a>
</li>
<li>m_PoolWidth
: <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#a6d8fb685cc1ff224f25aa127fcf62c86">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#a6d8fb685cc1ff224f25aa127fcf62c86">Pooling3dDescriptor</a>
</li>
<li>m_PreCompiledObject
: <a class="el" href="structarmnn_1_1_pre_compiled_queue_descriptor.xhtml#aa1fedd1a6371526cb68cc5cc58c87465">PreCompiledQueueDescriptor</a>
</li>
<li>m_PreferredBackends
: <a class="el" href="structarmnn_1_1_backend_settings.xhtml#ae6d0506ac92f9ba9529d019847144aa3">BackendSettings</a>
</li>
<li>m_ProfilingDetails
: <a class="el" href="classarmnn_1_1_profiler_impl.xhtml#a2384be7d839af91fcc72825e7e33111c">ProfilerImpl</a>
</li>
<li>m_ProfilingEnabled
: <a class="el" href="structarmnn_1_1_i_network_properties.xhtml#a7e26a8e7f1878d82bef452ef3531eaeb">INetworkProperties</a>
, <a class="el" href="structarmnn_1_1_optimizer_options.xhtml#a1b1892da2aaf7eaedaa38671d56b7f19">OptimizerOptions</a>
, <a class="el" href="structarmnn_1_1_optimizer_options_opaque_impl.xhtml#a1b1892da2aaf7eaedaa38671d56b7f19">OptimizerOptionsOpaqueImpl</a>
, <a class="el" href="classarmnn_1_1_profiler_impl.xhtml#a1b1892da2aaf7eaedaa38671d56b7f19">ProfilerImpl</a>
</li>
<li>m_ProfilingOptions
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options.xhtml#a30412a91cadff138686eaeb12f5357cc">IRuntime::CreationOptions</a>
</li>
<li>m_ProjectionBias
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a44b0e6b16708df7f0d2bbab141688aaa">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ae22fc962c59e7c24986718f5af0020db">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_projection_parameters.xhtml#aa840abfe1cb869bce3d6daaebd2e86a7">LstmOptProjectionParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#ac668b31de6fb0f19d4c793d5ed3c3316">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_projection_parameters.xhtml#aa840abfe1cb869bce3d6daaebd2e86a7">QLstmOptProjectionParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#ac668b31de6fb0f19d4c793d5ed3c3316">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#ac668b31de6fb0f19d4c793d5ed3c3316">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_ProjectionClip
: <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#aa6a518b65088f34803b3214334bdff61">QLstmDescriptor</a>
</li>
<li>m_ProjectionEnabled
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#a6c9de81fc65b3c4924cab11907075a17">LstmDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_descriptor.xhtml#a6c9de81fc65b3c4924cab11907075a17">QLstmDescriptor</a>
</li>
<li>m_ProjectionParameters
: <a class="el" href="classarmnn_1_1_lstm_layer.xhtml#a3d3e6d0c3e6e570d9f831489c3bd14ce">LstmLayer</a>
, <a class="el" href="classarmnn_1_1_q_lstm_layer.xhtml#a3cbbd914f0d16664e785e30ffbe0dbf3">QLstmLayer</a>
, <a class="el" href="classarmnn_1_1_unidirectional_sequence_lstm_layer.xhtml#a3d3e6d0c3e6e570d9f831489c3bd14ce">UnidirectionalSequenceLstmLayer</a>
</li>
<li>m_ProjectionWeights
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#ab03e6e1514f74427916c892f473fe04c">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ac6fb4a3a8e7e8a359ac34badc8178b1a">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_projection_parameters.xhtml#aa8f5cf5d5130fefb77d2327dca341591">LstmOptProjectionParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a3ead2ef8da00b2709d561d85996fc513">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_projection_parameters.xhtml#aa8f5cf5d5130fefb77d2327dca341591">QLstmOptProjectionParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a3ead2ef8da00b2709d561d85996fc513">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a3ead2ef8da00b2709d561d85996fc513">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_ProtectedMode
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options.xhtml#ad89c99e4063390ba824022c60b885561">IRuntime::CreationOptions</a>
</li>
<li>m_Prototext
: <a class="el" href="structarmnn_utils_1_1_parser_prototxt_fixture.xhtml#a5ca0f757171382fbf7fa5b05b447b024">ParserPrototxtFixture&lt; TParser &gt;</a>
</li>
<li>m_QuantizedLstmParameters
: <a class="el" href="classarmnn_1_1_quantized_lstm_layer.xhtml#ad3c37b52145c3cf1b4856c0df008a468">QuantizedLstmLayer</a>
</li>
<li>m_RecurrentToCellWeights
: <a class="el" href="structarmnn_1_1_lstm_basic_parameters.xhtml#a608ed1a3d4135921ce33a286a87a072b">LstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a1759754ccb88ecc9af44f3aae6e244ee">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a6c7873a3320a59a63aa26c006db905c0">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#ac18c8b8b2039267d8282e91b4162d8aa">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_basic_parameters.xhtml#a608ed1a3d4135921ce33a286a87a072b">QLstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#ac18c8b8b2039267d8282e91b4162d8aa">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a1759754ccb88ecc9af44f3aae6e244ee">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a6c7873a3320a59a63aa26c006db905c0">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#a608ed1a3d4135921ce33a286a87a072b">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#ac18c8b8b2039267d8282e91b4162d8aa">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#ac18c8b8b2039267d8282e91b4162d8aa">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_RecurrentToForgetWeights
: <a class="el" href="structarmnn_1_1_lstm_basic_parameters.xhtml#a1dd41cd674924907643cb088070a65d3">LstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#ae83131e16df1cace69395a5f99bc5ecb">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a11b90bd2694aa7f4b434aadd75fbb1c2">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#adf8571dd1867ee91082bd005f94f2610">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_basic_parameters.xhtml#a1dd41cd674924907643cb088070a65d3">QLstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#adf8571dd1867ee91082bd005f94f2610">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#ae83131e16df1cace69395a5f99bc5ecb">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a11b90bd2694aa7f4b434aadd75fbb1c2">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#a1dd41cd674924907643cb088070a65d3">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#adf8571dd1867ee91082bd005f94f2610">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#adf8571dd1867ee91082bd005f94f2610">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_RecurrentToInputWeights
: <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a435d3651482bbfcc11263b4e4e0c900f">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a9ab864961ded72f5ce7ea4eb9921f826">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_opt_cifg_parameters.xhtml#addfb6b081817510deb924c8fb5ce216c">LstmOptCifgParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a299587d4f3fca029492700f3e2585bd8">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_opt_cifg_parameters.xhtml#addfb6b081817510deb924c8fb5ce216c">QLstmOptCifgParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a299587d4f3fca029492700f3e2585bd8">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a435d3651482bbfcc11263b4e4e0c900f">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a9ab864961ded72f5ce7ea4eb9921f826">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#addfb6b081817510deb924c8fb5ce216c">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#a299587d4f3fca029492700f3e2585bd8">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a299587d4f3fca029492700f3e2585bd8">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_RecurrentToOutputWeights
: <a class="el" href="structarmnn_1_1_lstm_basic_parameters.xhtml#addad136e04521a1d31cbebf7280c312e">LstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params.xhtml#a56b81ca8ba4b4937e0787e4951f043fc">LstmInputParams</a>
, <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#af434b509cd5232ef762c4b21b2dfaae0">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_lstm_queue_descriptor.xhtml#a4c27716f61bb68e8ea0bd4e8389ba01a">LstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_q_lstm_basic_parameters.xhtml#addad136e04521a1d31cbebf7280c312e">QLstmBasicParameters</a>
, <a class="el" href="structarmnn_1_1_q_lstm_queue_descriptor.xhtml#a4c27716f61bb68e8ea0bd4e8389ba01a">QLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a56b81ca8ba4b4937e0787e4951f043fc">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#af434b509cd5232ef762c4b21b2dfaae0">QuantizedLstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_parameters.xhtml#addad136e04521a1d31cbebf7280c312e">QuantizedLstmParameters</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_queue_descriptor.xhtml#a4c27716f61bb68e8ea0bd4e8389ba01a">QuantizedLstmQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_unidirectional_sequence_lstm_queue_descriptor.xhtml#a4c27716f61bb68e8ea0bd4e8389ba01a">UnidirectionalSequenceLstmQueueDescriptor</a>
</li>
<li>m_ReduceFp32ToBf16
: <a class="el" href="structarmnn_1_1_optimizer_options.xhtml#a11f463726addcc1d2845266997d79e9c">OptimizerOptions</a>
, <a class="el" href="structarmnn_1_1_optimizer_options_opaque_impl.xhtml#a11f463726addcc1d2845266997d79e9c">OptimizerOptionsOpaqueImpl</a>
</li>
<li>m_ReduceFp32ToFp16
: <a class="el" href="structarmnn_1_1_optimizer_options.xhtml#a6e1a42622ca43dafc7ba8e684c016eb4">OptimizerOptions</a>
, <a class="el" href="structarmnn_1_1_optimizer_options_opaque_impl.xhtml#a6e1a42622ca43dafc7ba8e684c016eb4">OptimizerOptionsOpaqueImpl</a>
</li>
<li>m_ReduceOperation
: <a class="el" href="structarmnn_1_1_reduce_descriptor.xhtml#aa57c67b1da0011b1abb30170146e870f">ReduceDescriptor</a>
</li>
<li>m_ReplacementSubgraph
: <a class="el" href="structarmnn_1_1_optimization_views_1_1_substitution_pair.xhtml#a02ba9897455deabc6626270fd88d6f4f">OptimizationViews::SubstitutionPair</a>
</li>
<li>m_Res
: <a class="el" href="structarmnn_1_1_rule.xhtml#a56ff3471540bd0e390495d3537db42e6">Rule</a>
</li>
<li>m_Runtime
: <a class="el" href="classarmnn__driver_1_1_armnn_device.xhtml#aefd699eb0838261fbe9770d511f63f24">ArmnnDevice</a>
, <a class="el" href="structarmnn_utils_1_1_parser_prototxt_fixture.xhtml#aefd699eb0838261fbe9770d511f63f24">ParserPrototxtFixture&lt; TParser &gt;</a>
</li>
<li>m_ScaleH
: <a class="el" href="structarmnn_1_1_detection_post_process_descriptor.xhtml#aa61510cbd529870182e918ac6e8b9d72">DetectionPostProcessDescriptor</a>
</li>
<li>m_ScaleW
: <a class="el" href="structarmnn_1_1_detection_post_process_descriptor.xhtml#ab509802c659de19929f18bad14a35c58">DetectionPostProcessDescriptor</a>
</li>
<li>m_ScaleX
: <a class="el" href="structarmnn_1_1_detection_post_process_descriptor.xhtml#ae64523937ea910030ad66fee6fddd51f">DetectionPostProcessDescriptor</a>
</li>
<li>m_ScaleY
: <a class="el" href="structarmnn_1_1_detection_post_process_descriptor.xhtml#a7a2156ec7d9c012ce00bbcc6afcb9028">DetectionPostProcessDescriptor</a>
</li>
<li>m_SelectedBackends
: <a class="el" href="structarmnn_1_1_backend_settings.xhtml#aa09ac75b83067c5ed455f2bb35c7c98d">BackendSettings</a>
</li>
<li>m_ShapeInferenceMethod
: <a class="el" href="classarmnn_1_1_layer.xhtml#afe508761cc8318b15329ba4acf7fbfec">Layer</a>
</li>
<li>m_shapeInferenceMethod
: <a class="el" href="structarmnn_1_1_optimizer_options.xhtml#a9416d94a8aad7cdfa47eb35e825cbda5">OptimizerOptions</a>
, <a class="el" href="structarmnn_1_1_optimizer_options_opaque_impl.xhtml#a9416d94a8aad7cdfa47eb35e825cbda5">OptimizerOptionsOpaqueImpl</a>
</li>
<li>m_ShrinkAxisMask
: <a class="el" href="structarmnn_1_1_strided_slice_descriptor.xhtml#a6d0384878432cfc9652b7ae8bc59506f">StridedSliceDescriptor</a>
</li>
<li>m_SingleInputName
: <a class="el" href="structarmnn_utils_1_1_parser_prototxt_fixture.xhtml#a2f8365158b7c75e43897fbe804b7fc4f">ParserPrototxtFixture&lt; TParser &gt;</a>
</li>
<li>m_SingleOutputName
: <a class="el" href="structarmnn_utils_1_1_parser_prototxt_fixture.xhtml#add32b4d209a5b5d6ea6db94b9894ad75">ParserPrototxtFixture&lt; TParser &gt;</a>
</li>
<li>m_SingleOutputShape
: <a class="el" href="structarmnn_utils_1_1_parser_prototxt_fixture.xhtml#a2da3f1bce243a9798902db85891fd733">ParserPrototxtFixture&lt; TParser &gt;</a>
</li>
<li>m_Size
: <a class="el" href="structarmnn_1_1_memory_info.xhtml#a4b9e2e2b5358e3996f35175558709e1c">MemoryInfo</a>
, <a class="el" href="structarmnn_1_1_slice_descriptor.xhtml#ab52cabf19232290fa6b49828ba957ac0">SliceDescriptor</a>
</li>
<li>m_SlotIndex
: <a class="el" href="structarmnn_1_1_debug_queue_descriptor.xhtml#ab53d42063d018ffebfceb019b26bf65a">DebugQueueDescriptor</a>
</li>
<li>m_StandInLayerForUnsupported
: <a class="el" href="structarmnn_tf_lite_parser_1_1_i_tf_lite_parser_1_1_tf_lite_parser_options.xhtml#a8675330934407606641327cec4bb29f4">ITfLiteParser::TfLiteParserOptions</a>
</li>
<li>m_Start
: <a class="el" href="classarmnn_1_1_per_axis_iterator.xhtml#a45aad47b4af330fd2b690eb3dde14512">PerAxisIterator&lt; T, Base &gt;</a>
, <a class="el" href="classarmnn_1_1_typed_iterator.xhtml#a45aad47b4af330fd2b690eb3dde14512">TypedIterator&lt; T, Base &gt;</a>
</li>
<li>m_StartOfLife
: <a class="el" href="structarmnn_1_1_mem_block.xhtml#a709b862a06a33e0f77e0d5cfb95daaf3">MemBlock</a>
</li>
<li>m_Stride
: <a class="el" href="structarmnn_1_1_strided_slice_descriptor.xhtml#a0d53caff836b84204adbd1c28752a201">StridedSliceDescriptor</a>
</li>
<li>m_StrideX
: <a class="el" href="structarmnn_1_1_convolution2d_descriptor.xhtml#afe6a3377c4531315354def9023c8fdda">Convolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#afe6a3377c4531315354def9023c8fdda">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_depthwise_convolution2d_descriptor.xhtml#afe6a3377c4531315354def9023c8fdda">DepthwiseConvolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#afe6a3377c4531315354def9023c8fdda">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#afe6a3377c4531315354def9023c8fdda">Pooling3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_transpose_convolution2d_descriptor.xhtml#afe6a3377c4531315354def9023c8fdda">TransposeConvolution2dDescriptor</a>
</li>
<li>m_StrideY
: <a class="el" href="structarmnn_1_1_convolution2d_descriptor.xhtml#ac1fe174bbadfb39a2b636940c2e647c8">Convolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#ac1fe174bbadfb39a2b636940c2e647c8">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_depthwise_convolution2d_descriptor.xhtml#ac1fe174bbadfb39a2b636940c2e647c8">DepthwiseConvolution2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling2d_descriptor.xhtml#ac1fe174bbadfb39a2b636940c2e647c8">Pooling2dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#ac1fe174bbadfb39a2b636940c2e647c8">Pooling3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_transpose_convolution2d_descriptor.xhtml#ac1fe174bbadfb39a2b636940c2e647c8">TransposeConvolution2dDescriptor</a>
</li>
<li>m_StrideZ
: <a class="el" href="structarmnn_1_1_convolution3d_descriptor.xhtml#a5164336f6a1b15be0d434a6bbf7289da">Convolution3dDescriptor</a>
, <a class="el" href="structarmnn_1_1_pooling3d_descriptor.xhtml#a5164336f6a1b15be0d434a6bbf7289da">Pooling3dDescriptor</a>
</li>
<li>m_Subject
: <a class="el" href="classarmnn_1_1_graph_observable.xhtml#aec60d37066c40f5583a91535545a2469">GraphObservable&lt; ObservedType &gt;</a>
</li>
<li>m_SubstitutableSubgraph
: <a class="el" href="structarmnn_1_1_optimization_views_1_1_substitution_pair.xhtml#aa5e6108bf6fefef2d1affa6d89d23d3c">OptimizationViews::SubstitutionPair</a>
</li>
<li>m_SupportedBackends
: <a class="el" href="structarmnn_1_1_backend_settings.xhtml#a0b160952af61b24d88125d66ed6d43c1">BackendSettings</a>
</li>
<li>m_TargetHeight
: <a class="el" href="structarmnn_1_1_resize_descriptor.xhtml#a46c3fa15c46fb0d1dcdc24d0ea5cb5cd">ResizeDescriptor</a>
</li>
<li>m_TargetShape
: <a class="el" href="structarmnn_1_1_reshape_descriptor.xhtml#a1178f4dafdda81f59c15145ec327f7d9">ReshapeDescriptor</a>
</li>
<li>m_TargetWidth
: <a class="el" href="structarmnn_1_1_resize_descriptor.xhtml#adcf5037208faac36c0788239a073f75c">ResizeDescriptor</a>
</li>
<li>m_TensorInfo
: <a class="el" href="structarmnn_deserializer_1_1_binding_point_info.xhtml#aa308d10e76e29f09e44a933a2d091a79">BindingPointInfo</a>
</li>
<li>m_TensorMemoryVector
: <a class="el" href="structarmnn_1_1_buffer_storage.xhtml#a0d6a6b862d9630effce75d8ca18254ba">BufferStorage</a>
</li>
<li>m_TimelineEnabled
: <a class="el" href="structarmnn_1_1_i_runtime_1_1_creation_options_1_1_external_profiling_options.xhtml#a5b304d775657afbf1fb724af57add374">IRuntime::CreationOptions::ExternalProfilingOptions</a>
</li>
<li>m_TimeMajor
: <a class="el" href="structarmnn_1_1_lstm_descriptor.xhtml#a3dcd10ca3ea2e132558b1e2814668c15">LstmDescriptor</a>
</li>
<li>m_TotalMs
: <a class="el" href="structarmnn_1_1_profiler_impl_1_1_profiling_event_stats.xhtml#a987e938e13b0c6d0864b7473497816a2">ProfilerImpl::ProfilingEventStats</a>
</li>
<li>m_TransposeWeightMatrix
: <a class="el" href="structarmnn_1_1_fully_connected_descriptor.xhtml#a281fcaec86e17c97f7b8402633f6b55a">FullyConnectedDescriptor</a>
</li>
<li>m_TransposeX
: <a class="el" href="structarmnn_1_1_batch_mat_mul_descriptor.xhtml#acb441bb8db19bcce78d15cdd8ceb5ea0">BatchMatMulDescriptor</a>
</li>
<li>m_TransposeY
: <a class="el" href="structarmnn_1_1_batch_mat_mul_descriptor.xhtml#a112b466e5d2ab9d1887178adbe3afa1c">BatchMatMulDescriptor</a>
</li>
<li>m_Tuner
: <a class="el" href="classarmnn_1_1_cl_tuned_parameters.xhtml#af6747d9aa587bd8b4ded70fbdcbe1d4a">ClTunedParameters</a>
</li>
<li>m_TuningLevel
: <a class="el" href="classarmnn_1_1_cl_tuned_parameters.xhtml#ab277b661f23f9ff45b28027f47a126ef">ClTunedParameters</a>
</li>
<li>m_Type
: <a class="el" href="structarmnn_1_1_json_child_object.xhtml#a1af12f2a754bc2b9e0875672e1d4fdab">JsonChildObject</a>
</li>
<li>m_type
: <a class="el" href="classarmnn__driver_1_1_unsupported_operand.xhtml#adbccd9c087443cf759711a3e62da9a84">UnsupportedOperand&lt; OperandType &gt;</a>
</li>
<li>m_Unit
: <a class="el" href="structarmnn_1_1_json_child_object.xhtml#ae8cbdbf41275a03335d8a68d4c62ac20">JsonChildObject</a>
, <a class="el" href="structarmnn_1_1_measurement.xhtml#ad38344c3d8a2840586bccc4cae0dc56d">Measurement</a>
</li>
<li>m_UseRegularNms
: <a class="el" href="structarmnn_1_1_detection_post_process_descriptor.xhtml#a7ed9bc7c26df67d274d5dd4cd83adf0f">DetectionPostProcessDescriptor</a>
</li>
<li>m_UsingCustomAllocator
: <a class="el" href="classarmnn_1_1_cl_backend.xhtml#adda2579a4649278c81f18a1d3915b3a0">ClBackend</a>
</li>
<li>m_Value
: <a class="el" href="structarmnn_1_1_capability.xhtml#aa91a80665dbcb26482c00320829db601">Capability</a>
, <a class="el" href="structarmnn_1_1_fill_descriptor.xhtml#ab3ebc5cf4a617d43371a4cb7fecdeb32">FillDescriptor</a>
, <a class="el" href="structarmnn_1_1_measurement.xhtml#ac2b559d9ddbdc9bf665c30eece9f426e">Measurement</a>
</li>
<li>m_Variance
: <a class="el" href="classarmnn_1_1_batch_normalization_layer.xhtml#a7d38a70f30295f365c3a98fc7fa4a229">BatchNormalizationLayer</a>
, <a class="el" href="structarmnn_1_1_batch_normalization_queue_descriptor.xhtml#a744e5178444c4b7bc4d516f4bbee8fcd">BatchNormalizationQueueDescriptor</a>
</li>
<li>m_vAxis
: <a class="el" href="structarmnn_1_1_reduce_descriptor.xhtml#aa1c6fc8c96404252f1072632fc5acb59">ReduceDescriptor</a>
</li>
<li>m_ViewOrigins
: <a class="el" href="structarmnn_1_1_concat_queue_descriptor.xhtml#ab1794eb3e74c9700cd3d500fc06dc2e5">ConcatQueueDescriptor</a>
, <a class="el" href="structarmnn_1_1_splitter_queue_descriptor.xhtml#ab1794eb3e74c9700cd3d500fc06dc2e5">SplitterQueueDescriptor</a>
</li>
<li>m_Warning
: <a class="el" href="structarmnn_1_1_optimization_result.xhtml#a1f68424ba084c388888042ae6c37cbda">OptimizationResult</a>
</li>
<li>m_Weight
: <a class="el" href="classarmnn_1_1_transpose_convolution2d_layer.xhtml#a6266a703017d7296f87cc4923df2d725">TransposeConvolution2dLayer</a>
, <a class="el" href="structarmnn_1_1_transpose_convolution2d_queue_descriptor.xhtml#a9a8a6e0c6074b895eb2ff9a16e5003a5">TransposeConvolution2dQueueDescriptor</a>
</li>
<li>m_WeightsTensorInfo
: <a class="el" href="structarmnn_1_1_workload_info.xhtml#afd0d41a1e6de4c1565b7f4bfd04b4abc">WorkloadInfo</a>
</li>
<li>make_region()
: <a class="el" href="classarmnn_1_1_cl_backend_1_1_cl_backend_custom_allocator_wrapper.xhtml#abf2dabeaea489183b26da69ab593165b">ClBackend::ClBackendCustomAllocatorWrapper</a>
</li>
<li>MakeLoadedNetwork()
: <a class="el" href="classarmnn_1_1_loaded_network.xhtml#af75dd30cff3d42ff35ddd2b625b7e9ae">LoadedNetwork</a>
</li>
<li>Manage()
: <a class="el" href="classarmnn_1_1_cl_import_sub_tensor_handle.xhtml#a19aa18d78d5ac31e3a3c8f782f0e8606">ClImportSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cl_import_tensor_handle.xhtml#a19aa18d78d5ac31e3a3c8f782f0e8606">ClImportTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cl_sub_tensor_handle.xhtml#a19aa18d78d5ac31e3a3c8f782f0e8606">ClSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cl_tensor_handle.xhtml#a19aa18d78d5ac31e3a3c8f782f0e8606">ClTensorHandle</a>
, <a class="el" href="classarmnn_1_1_const_tensor_handle.xhtml#a19aa18d78d5ac31e3a3c8f782f0e8606">ConstTensorHandle</a>
, <a class="el" href="classarmnn_1_1_i_tensor_handle.xhtml#a04149d0f9b9c54c05e95693111490daf">ITensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_sub_tensor_handle.xhtml#a19aa18d78d5ac31e3a3c8f782f0e8606">NeonSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle.xhtml#a19aa18d78d5ac31e3a3c8f782f0e8606">NeonTensorHandle</a>
, <a class="el" href="classarmnn_1_1_ref_memory_manager.xhtml#a58ec3071d0aa2d9a41d63ecd7eb27fa7">RefMemoryManager</a>
, <a class="el" href="classarmnn_1_1_ref_tensor_handle.xhtml#aca21728cdaa75f9d656d25ae7200ade5">RefTensorHandle</a>
, <a class="el" href="classarmnn_1_1_tosa_ref_memory_manager.xhtml#aeb67eea822d8ab80b2c2ff8f984af586">TosaRefMemoryManager</a>
, <a class="el" href="classarmnn_1_1_tosa_ref_tensor_handle.xhtml#aca21728cdaa75f9d656d25ae7200ade5">TosaRefTensorHandle</a>
, <a class="el" href="classsdb_1_1_sample_memory_manager.xhtml#ad77e2ff0dd2e7e4c129dd05307404b2d">SampleMemoryManager</a>
, <a class="el" href="classsdb_1_1_sample_tensor_handle.xhtml#aca21728cdaa75f9d656d25ae7200ade5">SampleTensorHandle</a>
</li>
<li>ManagedConstTensorHandle()
: <a class="el" href="classarmnn_1_1_managed_const_tensor_handle.xhtml#a9c4705e243516ab9e98e0916da6cabd0">ManagedConstTensorHandle</a>
</li>
<li>map()
: <a class="el" href="classarmnn_1_1_cl_backend_1_1_cl_backend_custom_allocator_memory_region.xhtml#af540d8670cb2ccdec5a30fd2471c2e85">ClBackend::ClBackendCustomAllocatorMemoryRegion</a>
</li>
<li>Map()
: <a class="el" href="classarmnn_1_1_cl_import_sub_tensor_handle.xhtml#abe9956a614f816b4181a47a046e42db9">ClImportSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cl_import_tensor_handle.xhtml#abe9956a614f816b4181a47a046e42db9">ClImportTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cl_sub_tensor_handle.xhtml#abe9956a614f816b4181a47a046e42db9">ClSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cl_tensor_handle.xhtml#abe9956a614f816b4181a47a046e42db9">ClTensorHandle</a>
, <a class="el" href="classarmnn_1_1_const_tensor_handle.xhtml#acc3fcce7a100cc3b64247519f22e37fc">ConstTensorHandle</a>
, <a class="el" href="classarmnn_1_1_i_tensor_handle.xhtml#a270c8f844df649b9b0599c1e4db44cd3">ITensorHandle</a>
, <a class="el" href="classarmnn_1_1_managed_const_tensor_handle.xhtml#a85e02725184184331cc2e3b00642be47">ManagedConstTensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_sub_tensor_handle.xhtml#acc3fcce7a100cc3b64247519f22e37fc">NeonSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle.xhtml#acc3fcce7a100cc3b64247519f22e37fc">NeonTensorHandle</a>
, <a class="el" href="classarmnn_1_1_ref_tensor_handle.xhtml#adc70d69d2748d1432e4999d4af361f3b">RefTensorHandle</a>
, <a class="el" href="classarmnn_1_1_tosa_ref_tensor_handle.xhtml#adc70d69d2748d1432e4999d4af361f3b">TosaRefTensorHandle</a>
, <a class="el" href="classsdb_1_1_sample_tensor_handle.xhtml#adc70d69d2748d1432e4999d4af361f3b">SampleTensorHandle</a>
</li>
<li>MapLayer()
: <a class="el" href="classarmnn_1_1_map_layer.xhtml#a282022809d6fec9d0df282c2ac3262f4">MapLayer</a>
</li>
<li>MapWorkload()
: <a class="el" href="classarmnn_1_1_map_workload.xhtml#a6415f89399d2def2964bc721dfb5f854">MapWorkload</a>
</li>
<li>Max()
: <a class="el" href="classarmnn_1_1_b_float16.xhtml#a62b171b39ea69724817f5fe08169ca7d">BFloat16</a>
</li>
<li>MAX_STRING_ID
: <a class="el" href="structarmnn_1_1_string_mapping.xhtml#a4e7b349a05a558fa6792c71c11a6bf11a2834f8182f216d07e2f6311e9e6b7d98">StringMapping</a>
</li>
<li>MaximumLayer()
: <a class="el" href="classarmnn_1_1_maximum_layer.xhtml#a8eb69aeb6aa744acb9e9573b076645a8">MaximumLayer</a>
</li>
<li>mean
: <a class="el" href="classarmnn_1_1_i_layer_support.xhtml#a895a8451e0799b95d65caf7ffe0a32d7">ILayerSupport</a>
</li>
<li>MeanDescriptor()
: <a class="el" href="structarmnn_1_1_mean_descriptor.xhtml#a71ab37b5cafc60ab26a1728354cafe77">MeanDescriptor</a>
</li>
<li>MeanLayer()
: <a class="el" href="classarmnn_1_1_mean_layer.xhtml#a08526b2efde1012437fb5992370dcfce">MeanLayer</a>
</li>
<li>Measurement()
: <a class="el" href="structarmnn_1_1_measurement.xhtml#a78e6023cb54a56d22efb3af4bc1e7880">Measurement</a>
</li>
<li>measureTimings
: <a class="el" href="structarmnn__driver_1_1_canonical_execution_context.xhtml#aeb7cb4ac5b343a8eb2efd91aeee37743">CanonicalExecutionContext</a>
</li>
<li>MemBlock()
: <a class="el" href="structarmnn_1_1_mem_block.xhtml#aaa6babfc701410e0df93d41ccc2deff8">MemBlock</a>
</li>
<li>MemCopyLayer()
: <a class="el" href="classarmnn_1_1_mem_copy_layer.xhtml#a0efa5a23fb9c8995199059e05b6049bf">MemCopyLayer</a>
</li>
<li>MemImportLayer()
: <a class="el" href="classarmnn_1_1_mem_import_layer.xhtml#a465d31defb949b75c6f0c3be7b4b0ddb">MemImportLayer</a>
</li>
<li>MemoryAffinity
: <a class="el" href="classarmnn_1_1_base_memory_manager.xhtml#aaadc6dca70e0b3cc64ae0aba17be0aae">BaseMemoryManager</a>
</li>
<li>MemSyncOutputs()
: <a class="el" href="classarmnn_1_1experimental_1_1_working_mem_handle.xhtml#a7487c3835e842582920969f2663bcc30">WorkingMemHandle</a>
</li>
<li>MergeLayer()
: <a class="el" href="classarmnn_1_1_merge_layer.xhtml#ac220a2c0b19567545aafa75d0b1525bf">MergeLayer</a>
</li>
<li>MinimumLayer()
: <a class="el" href="classarmnn_1_1_minimum_layer.xhtml#af819f35acbadda1a4bcb3b262e27fe34">MinimumLayer</a>
</li>
<li>MinMaxRange
: <a class="el" href="classarmnn_1_1_range_tracker.xhtml#a997e96288bdb106c922202e3f33d5d7b">RangeTracker</a>
</li>
<li>MockTensorHandleFactory()
: <a class="el" href="classarmnn_1_1_mock_tensor_handle_factory.xhtml#ace8b483995aa8034b28b811e7a8668fa">MockTensorHandleFactory</a>
</li>
<li>Mode
: <a class="el" href="classarmnn_1_1_i_gpu_acc_tuned_parameters.xhtml#a46c8a310cf4c094f8c80e1cb8dc1f911">IGpuAccTunedParameters</a>
</li>
<li>Model
: <a class="el" href="classarmnn__driver_1_1_converter.xhtml#a923b39ec5f83672f50289cbaf5de6798">Converter</a>
</li>
<li>ModelAccuracyChecker()
: <a class="el" href="classarmnn_utils_1_1_model_accuracy_checker.xhtml#a143dac91f5ef85d672e7bccb0358e3f7">ModelAccuracyChecker</a>
</li>
<li>ModelPtr
: <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#abfc86471394295357a23b3addd0b5b1c">TfLiteParserImpl</a>
</li>
<li>ModelToINetworkTransformer()
: <a class="el" href="classarmnn__driver_1_1_model_to_i_network_transformer.xhtml#ab4cafc079ba2dc8700c2f92b81dc410b">ModelToINetworkTransformer</a>
</li>
<li>MoveAllConnections()
: <a class="el" href="classarmnn_1_1_output_slot.xhtml#a19d30f83e90f2612e6aec510715f790d">OutputSlot</a>
</li>
<li>MovePermuteUpImpl()
: <a class="el" href="classarmnn_1_1optimizations_1_1_move_permute_up_impl.xhtml#a62800e5070ee59063b2e80f785f32db6">MovePermuteUpImpl</a>
</li>
<li>MoveTransposeUpImpl()
: <a class="el" href="classarmnn_1_1optimizations_1_1_move_transpose_up_impl.xhtml#a742678831654006eaaf7fceee1ca27eb">MoveTransposeUpImpl</a>
</li>
<li>MultiplicationLayer()
: <a class="el" href="classarmnn_1_1_multiplication_layer.xhtml#a1d693ca78863a10287bbcfb4dc309d9f">MultiplicationLayer</a>
</li>
<li>MultiTypedWorkload()
: <a class="el" href="classarmnn_1_1_multi_typed_workload.xhtml#ab020f6e4ccf7b3e8b3c0a88dccf89d50">MultiTypedWorkload&lt; QueueDescriptor, InputDataType, OutputDataType &gt;</a>
</li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
  <ul>
    <li class="footer">Generated on Thu May 18 2023 10:35:52 for ArmNN by
    <a href="http://www.doxygen.org/index.html">
    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
  </ul>
</div>
</body>
</html>