aboutsummaryrefslogtreecommitdiff
path: root/21.02/functions_g.xhtml
blob: 63efdc7f97d2633a4819f0b32813813e85cdec1c (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
<!-- 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.13"/>
<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>
<script type="text/javascript">
  $(document).ready(initResizable);
</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" 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">21.02</span>
   </div>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
  initMenu('',true,false,'search.php','Search');
  $(document).ready(function() { init_search(); });
});
</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">
$(document).ready(function(){initNavTree('functions_g.xhtml','');});
</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_g"></a>- g -</h3><ul>
<li>gamma()
: <a class="el" href="structarmnn_serializer_1_1_f_l_a_t_b_u_f_f_e_r_s___f_i_n_a_l___c_l_a_s_s.xhtml#a60ba2d17dfb34ba8968148238cf77ddc">FLATBUFFERS_FINAL_CLASS</a>
</li>
<li>GatherDescriptor()
: <a class="el" href="structarmnn_1_1_gather_descriptor.xhtml#a66ec23a1fc5e43a66c07e593f68e3188">GatherDescriptor</a>
</li>
<li>GatherDescriptorBuilder()
: <a class="el" href="structarmnn_serializer_1_1_gather_descriptor_builder.xhtml#ae9b6981198b4b459926610c23c1fca98">GatherDescriptorBuilder</a>
</li>
<li>GatherLayer()
: <a class="el" href="classarmnn_1_1_gather_layer.xhtml#ab742f5579ee7cef7407a3f8556f07912">GatherLayer</a>
</li>
<li>GatherLayerBuilder()
: <a class="el" href="structarmnn_serializer_1_1_gather_layer_builder.xhtml#ac255577d882b0b559d3b703a8486f0c0">GatherLayerBuilder</a>
</li>
<li>GatordMockService()
: <a class="el" href="classarmnn_1_1gatordmock_1_1_gatord_mock_service.xhtml#a61fd54e09f02c8b6b575608fc4741285">GatordMockService</a>
</li>
<li>GenerateDetectionPostProcessJsonString()
: <a class="el" href="struct_parser_flatbuffers_fixture.xhtml#ab77021b45ae36342092fac96ec3534b7">ParserFlatbuffersFixture</a>
</li>
<li>GenerateStaticId()
: <a class="el" href="classarmnn_1_1profiling_1_1_i_profiling_guid_generator.xhtml#a9aff9f95b721c2dd1d229b9816261f1b">IProfilingGuidGenerator</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_profiling_service.xhtml#afd19633513acfc3ae294aa90b1e13a04">MockProfilingService</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_guid_generator.xhtml#afd19633513acfc3ae294aa90b1e13a04">ProfilingGuidGenerator</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#afd19633513acfc3ae294aa90b1e13a04">ProfilingService</a>
</li>
<li>Get()
: <a class="el" href="classarmnn_1_1_backend_id.xhtml#af7445617163d3f07c47b92ae56c6cf8b">BackendId</a>
, <a class="el" href="classarmnn_1_1_b_float16_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">BFloat16Decoder</a>
, <a class="el" href="classarmnn_1_1_b_float16_encoder.xhtml#ab9bae3d911834d08935b893a361ebc93">BFloat16Encoder</a>
, <a class="el" href="classarmnn_1_1_boolean_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">BooleanDecoder</a>
, <a class="el" href="classarmnn_1_1_boolean_decoder_bool.xhtml#ad0d1305aff56a43843db1e91916ffd1d">BooleanDecoderBool</a>
, <a class="el" href="classarmnn_1_1_boolean_encoder.xhtml#ad0d1305aff56a43843db1e91916ffd1d">BooleanEncoder</a>
, <a class="el" href="classarmnn_1_1_decoder.xhtml#ac729108381e2340bea12877971713ecb">Decoder&lt; IType &gt;</a>
, <a class="el" href="classarmnn_1_1_encoder.xhtml#ac729108381e2340bea12877971713ecb">Encoder&lt; IType &gt;</a>
, <a class="el" href="classarmnn_1_1_float16_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">Float16Decoder</a>
, <a class="el" href="classarmnn_1_1_float16_encoder.xhtml#ab9bae3d911834d08935b893a361ebc93">Float16Encoder</a>
, <a class="el" href="classarmnn_1_1_float32_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">Float32Decoder</a>
, <a class="el" href="classarmnn_1_1_float32_encoder.xhtml#ab9bae3d911834d08935b893a361ebc93">Float32Encoder</a>
, <a class="el" href="classarmnn_1_1_int32_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">Int32Decoder</a>
, <a class="el" href="classarmnn_1_1_int32_encoder.xhtml#ab9bae3d911834d08935b893a361ebc93">Int32Encoder</a>
, <a class="el" href="classarmnn_1_1_int32_to_int32t_decoder.xhtml#a5102cf799a649f2eb7879ac0842f95ef">Int32ToInt32tDecoder</a>
, <a class="el" href="classarmnn_1_1_int32_to_int32t_encoder.xhtml#a5102cf799a649f2eb7879ac0842f95ef">Int32ToInt32tEncoder</a>
, <a class="el" href="classarmnn_1_1_q_a_symm8_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">QASymm8Decoder</a>
, <a class="el" href="classarmnn_1_1_q_a_symm8_encoder.xhtml#ab9bae3d911834d08935b893a361ebc93">QASymm8Encoder</a>
, <a class="el" href="classarmnn_1_1_q_a_symm_s8_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">QASymmS8Decoder</a>
, <a class="el" href="classarmnn_1_1_q_a_symm_s8_encoder.xhtml#ab9bae3d911834d08935b893a361ebc93">QASymmS8Encoder</a>
, <a class="el" href="classarmnn_1_1_q_symm16_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">QSymm16Decoder</a>
, <a class="el" href="classarmnn_1_1_q_symm16_encoder.xhtml#ab9bae3d911834d08935b893a361ebc93">QSymm16Encoder</a>
, <a class="el" href="classarmnn_1_1_q_symm8_per_axis_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">QSymm8PerAxisDecoder</a>
, <a class="el" href="classarmnn_1_1_q_symm8_per_axis_encoder.xhtml#a970f7aa8f60abfc7fbf2a5c00d33100b">QSymm8PerAxisEncoder</a>
, <a class="el" href="classarmnn_1_1_q_symm_s8_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">QSymmS8Decoder</a>
, <a class="el" href="classarmnn_1_1_q_symm_s8_encoder.xhtml#ab9bae3d911834d08935b893a361ebc93">QSymmS8Encoder</a>
, <a class="el" href="classarmnn_1_1_scaled_int32_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">ScaledInt32Decoder</a>
, <a class="el" href="classarmnn_1_1_scaled_int32_per_axis_decoder.xhtml#ab9bae3d911834d08935b893a361ebc93">ScaledInt32PerAxisDecoder</a>
, <a class="el" href="classarmnn_1_1_simple_logger.xhtml#a59e0938e18c610b3596598363c01a01c">SimpleLogger&lt; Level &gt;</a>
, <a class="el" href="structarmnn_1_1_string_mapping.xhtml#a7ba59369a8a52d5b1f7a6e48ea3be7b8">StringMapping</a>
, <a class="el" href="classarmnn_1_1_tensor_buffer_array_view.xhtml#ab3a2cf851173535ea07b9d87eaf3ca01">TensorBufferArrayView&lt; DataType &gt;</a>
</li>
<li>GetAbsoluteCounterValue()
: <a class="el" href="classarmnn_1_1profiling_1_1_i_read_counter_values.xhtml#a03314ab6bef471fc1155fec64491cc3f">IReadCounterValues</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#a5a8454419fcb43e456ad6ad1b2143402">ProfilingService</a>
</li>
<li>GetAccuracy()
: <a class="el" href="classarmnn_utils_1_1_model_accuracy_checker.xhtml#ad6ddd3b77dd12eb33875d58a391b2412">ModelAccuracyChecker</a>
</li>
<li>GetActiveBackends()
: <a class="el" href="classarmnn_1_1profiling_1_1_capture_data.xhtml#ae2a1f8f8ed6bb8676cdf908e1f22e5e7">CaptureData</a>
</li>
<li>GetActiveCounters()
: <a class="el" href="classarmnn_1_1profiling_1_1_backend_profiling.xhtml#a54b66ce39aa9a413d8d68f6e2569af45">BackendProfiling</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_backend_profiling.xhtml#a33b3b8d541860022fe9edecfee7284d6">IBackendProfiling</a>
</li>
<li>GetAdditionalInformation()
: <a class="el" href="classarmnn_1_1_layer.xhtml#aefb14147290b6b928c5fc924ba035acc">Layer</a>
, <a class="el" href="structarmnn_1_1_queue_descriptor.xhtml#a0428f0a7927f8c29264d9c9a287840da">QueueDescriptor</a>
</li>
<li>GetAllQuantizationParams()
: <a class="el" href="class_inference_model.xhtml#ade1a8545be49b1c10e724ea8536907c7">InferenceModel&lt; IParser, TDataType &gt;</a>
</li>
<li>GetApiVersion()
: <a class="el" href="classarmnn_1_1_i_backend_internal.xhtml#a878b8f50d8a2f92ed624803e9f6968ae">IBackendInternal</a>
</li>
<li>GetArmnnOutputSlotForCaffeTop()
: <a class="el" href="classarmnn_caffe_parser_1_1_i_caffe_parser_1_1_caffe_parser_impl.xhtml#a9650b8810d4e6734b255ca25d495fe06">ICaffeParser::CaffeParserImpl</a>
</li>
<li>GetAttributes()
: <a class="el" href="classarmnn_1_1profiling_1_1_entity.xhtml#afbf87da618557922cc087388b794a79b">Entity</a>
</li>
<li>GetAttributeSet()
: <a class="el" href="classarmnn_1_1_dot_defaults.xhtml#a721c9bf7f2e6a2d88d340253ccc19815">DotDefaults</a>
, <a class="el" href="classarmnn_1_1_dot_edge.xhtml#a721c9bf7f2e6a2d88d340253ccc19815">DotEdge</a>
, <a class="el" href="classarmnn_1_1_dot_node.xhtml#a721c9bf7f2e6a2d88d340253ccc19815">DotNode</a>
</li>
<li>GetAvailablePreferredBackends()
: <a class="el" href="structarmnn_1_1_backend_settings.xhtml#ad4ca579528452c669b45f3f35300fd4e">BackendSettings</a>
</li>
<li>GetBackend()
: <a class="el" href="classarmnn_1_1_dynamic_backend.xhtml#a9d10388a851fc1a748c3e385f484b52a">DynamicBackend</a>
</li>
<li>GetBackendHint()
: <a class="el" href="classarmnn_1_1_layer.xhtml#a6ff80e440308295056b57e2adaa42888">Layer</a>
</li>
<li>GetBackendId()
: <a class="el" href="structarmnn_1_1_backend_options.xhtml#a4a33da17aee21f4877eda951d7d5babd">BackendOptions</a>
, <a class="el" href="classarmnn_1_1_cl_workload_factory.xhtml#ae2cd7e29596b68884bfaade25f8f0dc0">ClWorkloadFactory</a>
, <a class="el" href="classarmnn_1_1_dynamic_backend.xhtml#a6deb5373920ee59a800eca6b01085654">DynamicBackend</a>
, <a class="el" href="classarmnn_1_1_event.xhtml#aa58c448afeade37f3b23f4842d46d9b5">Event</a>
, <a class="el" href="classarmnn_1_1_i_workload_factory.xhtml#a9f7e4296485d2812e7996089149c96d1">IWorkloadFactory</a>
, <a class="el" href="classarmnn_1_1_layer.xhtml#afdb1d37740e7a083b625d669588b6a0e">Layer</a>
, <a class="el" href="classarmnn_1_1_neon_workload_factory.xhtml#ae2cd7e29596b68884bfaade25f8f0dc0">NeonWorkloadFactory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_counter_id_map.xhtml#a332eb20cab18c17fb869168dc493514e">CounterIdMap</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_mappings.xhtml#a8c03a58ac20b34e541bad78df16859e8">ICounterMappings</a>
, <a class="el" href="classarmnn_1_1_ref_workload_factory.xhtml#ae2cd7e29596b68884bfaade25f8f0dc0">RefWorkloadFactory</a>
, <a class="el" href="classsdb_1_1_sample_dynamic_workload_factory.xhtml#ae5dac93c38aa9f9108f89b7f4acc2beb">SampleDynamicWorkloadFactory</a>
</li>
<li>GetBackendIds()
: <a class="el" href="classarmnn_1_1_backend_registry.xhtml#a570cb1835ec73000a7954ba75257904f">BackendRegistry</a>
</li>
<li>GetBackendIdsAsString()
: <a class="el" href="classarmnn_1_1_backend_registry.xhtml#ae1de2f7ca1db17f45f97155e239b8b45">BackendRegistry</a>
</li>
<li>GetBackendOptions()
: <a class="el" href="classarmnn_delegate_1_1_delegate_options.xhtml#a601170c5bc75674017b891c58f9f175b">DelegateOptions</a>
</li>
<li>GetBackendPaths()
: <a class="el" href="classarmnn_1_1_dynamic_backend_utils.xhtml#a6d47980f97dd4d3aab24d818f8474dce">DynamicBackendUtils</a>
</li>
<li>GetBackendPathsImpl()
: <a class="el" href="classarmnn_1_1_dynamic_backend_utils.xhtml#a5d8cade961d9ea50a19a382c974d1ce5">DynamicBackendUtils</a>
</li>
<li>GetBackendPathsImplTest()
: <a class="el" href="class_test_dynamic_backend_utils.xhtml#ae905a2c700ca7d4b71fd64fe01e5580d">TestDynamicBackendUtils</a>
</li>
<li>GetBackendProfiling()
: <a class="el" href="classarmnn_1_1_mock_backend_profiling_context.xhtml#a5d24e91b1e41268d821891ced802b811">MockBackendProfilingContext</a>
</li>
<li>GetBackends()
: <a class="el" href="classarmnn_delegate_1_1_delegate_options.xhtml#ad95feca4087d8e42ecacc1950a3d3901">DelegateOptions</a>
</li>
<li>GetBackendVersion()
: <a class="el" href="classarmnn_1_1_dynamic_backend.xhtml#a74db049ad0000a58b9a58a6cd6d88feb">DynamicBackend</a>
</li>
<li>GetBackwardCompatibleFavoriteHandleFactory()
: <a class="el" href="classarmnn_1_1_i_backend_internal.xhtml#a6ccbb386cc96a5336a8295a3c25d33dd">IBackendInternal</a>
</li>
<li>GetBaseLayer()
: <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#ab3dff510bec873d3e4ffe5cdfa71f1cd">IDeserializer::DeserializerImpl</a>
</li>
<li>GetBindingId()
: <a class="el" href="classarmnn_1_1_bindable_layer.xhtml#a7352bd7421ce8b5e86281b995848ed82">BindableLayer</a>
</li>
<li>GetBindingInfo()
: <a class="el" href="classarmnn_caffe_parser_1_1_i_caffe_parser_1_1_caffe_parser_impl.xhtml#afb7e4da478bab76261963479baad5788">ICaffeParser::CaffeParserImpl</a>
, <a class="el" href="structarmnn_tf_parser_1_1_i_tf_parser_1_1_tf_parser_impl.xhtml#ac41a09541f963e43c9a9300e8c28eb06">ITfParser::TfParserImpl</a>
</li>
<li>GetBindingLayerInfo()
: <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#afcc87bf0e20779861dd5d01a4bedcda9">IDeserializer::DeserializerImpl</a>
</li>
<li>GetBuffer()
: <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#a720f0206e377dd1808acc94b3b12c538">TfLiteParserImpl</a>
</li>
<li>GetBufferManager()
: <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#a4c6219fe49caa747ddfb5092f008c922">ProfilingService</a>
</li>
<li>GetCachedNetworkFilePath()
: <a class="el" href="classarmnn_1_1_cl_backend_model_context.xhtml#af63da34dc5a594a3a3458fca1f83571e">ClBackendModelContext</a>
</li>
<li>GetCapabilities()
: <a class="el" href="classarmnn_1_1_i_tensor_handle_factory.xhtml#a73fbbe9df988c8cabddea04a8dcb9323">ITensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle_factory.xhtml#a110d0689e19a29ace8a181f37a1cc6b1">NeonTensorHandleFactory</a>
</li>
<li>GetCaptureData()
: <a class="el" href="classarmnn_1_1profiling_1_1_holder.xhtml#a95c8634416821480a8140c87054718f6">Holder</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_profiling_service.xhtml#ac4e831d7fe03198d15e7212c7d40c96c">IProfilingService</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_profiling_service.xhtml#aff23669159bfc39106dc16d50c0a6e5f">MockProfilingService</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#aff23669159bfc39106dc16d50c0a6e5f">ProfilingService</a>
</li>
<li>GetCapturePeriod()
: <a class="el" href="classarmnn_1_1profiling_1_1_capture_data.xhtml#a8386da56facf23364a6005a4769bf962">CaptureData</a>
</li>
<li>GetCategories()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#af55b37f13ace15889ce8a0b18dda3ed9">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#a718a75d4c178cf3f687b3f27b8f55091">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#af55b37f13ace15889ce8a0b18dda3ed9">MockCounterDirectory</a>
</li>
<li>GetCategory()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#aab31f60f412b119002a465e13d5165f0">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#a90890aee41059d8fed244538acc4044f">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#a739170f2a39056dd19a09216092fd089">MockCounterDirectory</a>
</li>
<li>GetCategoryCount()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#a4626db62503c13042a745a40399f8317">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#ab43b0472c37fe51694977ae9b4132404">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#a4626db62503c13042a745a40399f8317">MockCounterDirectory</a>
</li>
<li>GetCellBias()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ad5f4be37766b41f342dd196cb1c6e141">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a89f3c8b72e3a802240156915141de5ca">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#ad5f4be37766b41f342dd196cb1c6e141">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetCellLayerNormWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#aaf1af3bc828c5daa4a5c0bac28f63cc3">LstmInputParamsInfo</a>
</li>
<li>GetCellToForgetWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a0e31db1891d11bbe0d8556c01e9812ef">LstmInputParamsInfo</a>
</li>
<li>GetCellToInputWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a36fa9439fda2e72234411956a1c7e64f">LstmInputParamsInfo</a>
</li>
<li>GetCellToOutputWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a35825b1ec5bc2b14c8eac60887dbcf19">LstmInputParamsInfo</a>
</li>
<li>GetChannelsIndex()
: <a class="el" href="classarmnn_utils_1_1_data_layout_indexed.xhtml#a861b2621ee46e4b63379988b360b8cd9">DataLayoutIndexed</a>
</li>
<li>GetChild()
: <a class="el" href="structarmnn_1_1_json_child_object.xhtml#aa6fe48cf02c47c65b66d1d65ad3fa438">JsonChildObject</a>
</li>
<li>GetChildren()
: <a class="el" href="classarmnn_1_1profiling_1_1_entity.xhtml#a7eaa67e8393af5b3a139b0e8ef410fd7">Entity</a>
</li>
<li>GetCommandFile()
: <a class="el" href="classarmnn_1_1gatordmock_1_1_command_line_processor.xhtml#afc0b543e840606e43193b7d037c07c03">CommandLineProcessor</a>
</li>
<li>GetCommittedSize()
: <a class="el" href="classarmnn_1_1profiling_1_1_mock_stream_counter_buffer.xhtml#a0a0b47bcd9b2b00de2c82761705cfd58">MockStreamCounterBuffer</a>
</li>
<li>GetComputeDevicesAsBackendIds()
: <a class="el" href="struct_inference_model_1_1_command_line_options.xhtml#a56f7be77245196289f2bf0cce1dca31c">InferenceModel&lt; IParser, TDataType &gt;::CommandLineOptions</a>
</li>
<li>GetConcatAxis()
: <a class="el" href="structarmnn_1_1_origins_descriptor.xhtml#a379929e3b277f1ef94f3ce645870589d">OriginsDescriptor</a>
</li>
<li>GetConnectedOutputSlot()
: <a class="el" href="classarmnn_1_1_input_slot.xhtml#a9effd325a6d512a3f8ff4bd207d53255">InputSlot</a>
</li>
<li>GetConnection()
: <a class="el" href="classarmnn_1_1_i_input_slot.xhtml#a81fbf6103761e55061b62ba989b00f10">IInputSlot</a>
, <a class="el" href="classarmnn_1_1_input_slot.xhtml#a3153abb7c0c0a84629079b2fac7db54f">InputSlot</a>
, <a class="el" href="classarmnn_1_1_i_output_slot.xhtml#a9fffb92dc6d2edd5258d574a5862fc83">IOutputSlot</a>
, <a class="el" href="classarmnn_1_1_output_slot.xhtml#a048e8c1536cf6b8871b093a73a4a3a85">OutputSlot</a>
</li>
<li>GetConnections()
: <a class="el" href="classarmnn_1_1_output_slot.xhtml#a50b562d4a4edc64d7d8abcca056f0b8c">OutputSlot</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_entity.xhtml#ae6ec0b6860c4580c1d7e257c5dc59bcf">Entity</a>
</li>
<li>GetConstantTensorsByRef()
: <a class="el" href="classarmnn_1_1_batch_normalization_layer.xhtml#abe659a5afa7523f5dbc04bcba9b31f1a">BatchNormalizationLayer</a>
, <a class="el" href="classarmnn_1_1_constant_layer.xhtml#a8107df0f1cbbd67eaf174d9459f3669d">ConstantLayer</a>
, <a class="el" href="classarmnn_1_1_convolution2d_layer.xhtml#abe659a5afa7523f5dbc04bcba9b31f1a">Convolution2dLayer</a>
, <a class="el" href="classarmnn_1_1_depthwise_convolution2d_layer.xhtml#abe659a5afa7523f5dbc04bcba9b31f1a">DepthwiseConvolution2dLayer</a>
, <a class="el" href="classarmnn_1_1_detection_post_process_layer.xhtml#abe659a5afa7523f5dbc04bcba9b31f1a">DetectionPostProcessLayer</a>
, <a class="el" href="classarmnn_1_1_fully_connected_layer.xhtml#abe659a5afa7523f5dbc04bcba9b31f1a">FullyConnectedLayer</a>
, <a class="el" href="classarmnn_1_1_layer.xhtml#afbeac2d77ecaadc3e303a163b4146961">Layer</a>
, <a class="el" href="classarmnn_1_1_lstm_layer.xhtml#abe659a5afa7523f5dbc04bcba9b31f1a">LstmLayer</a>
, <a class="el" href="classarmnn_1_1_q_lstm_layer.xhtml#abe659a5afa7523f5dbc04bcba9b31f1a">QLstmLayer</a>
, <a class="el" href="classarmnn_1_1_quantized_lstm_layer.xhtml#abe659a5afa7523f5dbc04bcba9b31f1a">QuantizedLstmLayer</a>
, <a class="el" href="classarmnn_1_1_transpose_convolution2d_layer.xhtml#abe659a5afa7523f5dbc04bcba9b31f1a">TransposeConvolution2dLayer</a>
</li>
<li>GetConstInputIndex()
: <a class="el" href="structarmnn_tf_parser_1_1_i_tf_parser_1_1_tf_parser_impl.xhtml#a82bb92947dc9e0f04d4242910d6cbc65">ITfParser::TfParserImpl</a>
</li>
<li>GetConstTensor()
: <a class="el" href="classarmnn_1_1_const_cpu_tensor_handle.xhtml#a3a76fc8b348e13d5a6ac1240c96ebef4">ConstCpuTensorHandle</a>
</li>
<li>GetContents()
: <a class="el" href="classarmnn_1_1_dot_node.xhtml#a1734bc659f144a8465e22d4b53b8f580">DotNode</a>
</li>
<li>GetContext()
: <a class="el" href="classarmnn_1_1_mock_backend_profiling_service.xhtml#ae0e8de63fb5fb93f646543e89a0e1386">MockBackendProfilingService</a>
</li>
<li>GetConvolutionMethod()
: <a class="el" href="classarmnn_1_1_cl_convolution2d_workload.xhtml#a71044720ef6341c8d11795b5d234c8cd">ClConvolution2dWorkload</a>
, <a class="el" href="classarmnn_1_1_neon_convolution2d_workload.xhtml#a71044720ef6341c8d11795b5d234c8cd">NeonConvolution2dWorkload</a>
</li>
<li>GetCount()
: <a class="el" href="classarmnn_1_1profiling_1_1_test_functor_a.xhtml#a9cbf98c17d6b7027e60c59fb8ad69a85">TestFunctorA</a>
</li>
<li>GetCounter()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#aefdd6df4feb698935d16311be966fda5">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#a81881e3910b23455b46ec30c8420c695">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#ab2aecc9a0ed092f50b752d30a40bb31a">MockCounterDirectory</a>
</li>
<li>GetCounterCount()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#ad9062caad1836f8e6b810e4e97bb19d1">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#acab78d0987a9cca5a9cac957be610a7d">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_read_counter_values.xhtml#acab78d0987a9cca5a9cac957be610a7d">IReadCounterValues</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#ad9062caad1836f8e6b810e4e97bb19d1">MockCounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#ad9062caad1836f8e6b810e4e97bb19d1">ProfilingService</a>
</li>
<li>GetCounterDirectory()
: <a class="el" href="classarmnn_1_1profiling_1_1_directory_capture_command_handler.xhtml#adfaa32654e05eab63b2adc34b2138475">DirectoryCaptureCommandHandler</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#adfaa32654e05eab63b2adc34b2138475">ProfilingService</a>
</li>
<li>GetCounterIds()
: <a class="el" href="classarmnn_1_1profiling_1_1_capture_data.xhtml#a47fc9ce6c654658dfeb9f8ed2071885e">CaptureData</a>
</li>
<li>GetCounterMappingRegistry()
: <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#a04f78379965ef10275613dd265fd0607">ProfilingService</a>
</li>
<li>GetCounterMappings()
: <a class="el" href="classarmnn_1_1profiling_1_1_i_profiling_service.xhtml#a743ad7374bfc124be30eebeb93206acd">IProfilingService</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_profiling_service.xhtml#a37bec1c830464c365aa4434edd0de35a">MockProfilingService</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#aed969262d8bf6d59eb8f65fb89d47959">ProfilingService</a>
</li>
<li>GetCounterRegistrationInterface()
: <a class="el" href="classarmnn_1_1profiling_1_1_backend_profiling.xhtml#a0ac323cf9d8c03c718065cd775bc2a48">BackendProfiling</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_backend_profiling.xhtml#a3af5b700b06e401119749bd3a80bacf0">IBackendProfiling</a>
</li>
<li>GetCounterRegistry()
: <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#ad5fffd20c7356754964d06ae73f72293">ProfilingService</a>
</li>
<li>GetCounters()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#a6d7f92b987338cab6cbfbad8d53a9738">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#ad9fa9b8364fcaa2c940ef8e78eff8df2">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#a6d7f92b987338cab6cbfbad8d53a9738">MockCounterDirectory</a>
</li>
<li>GetCounterSet()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#ad368fc6d788ff64cc25cafe2b40265c6">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#a67693dcf840ffeadc066ce77ef7b2044">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#af96ac62d23f06a90b7e36fca3f13367b">MockCounterDirectory</a>
</li>
<li>GetCounterSetCount()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#ae3b7dbaa7317dacbcec25f30f6a16075">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#aef59fdca57a5bb822e22cacfc5836fab">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#ae3b7dbaa7317dacbcec25f30f6a16075">MockCounterDirectory</a>
</li>
<li>GetCounterSets()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#afcb72c4151fd72abfffcb7dae0ed2817">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#a8908490db3b8a0003a639ac56b956cee">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#afcb72c4151fd72abfffcb7dae0ed2817">MockCounterDirectory</a>
</li>
<li>GetCounterStatus()
: <a class="el" href="classarmnn_1_1profiling_1_1_backend_profiling.xhtml#a23d09d59f5da5d396a89c9543204dce3">BackendProfiling</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_backend_profiling.xhtml#ab159fe93b4a4357f55b55920e03b9af6">IBackendProfiling</a>
</li>
<li>GetCsvFileDirectory()
: <a class="el" href="classarmnn_quantizer_1_1_command_line_processor.xhtml#aa33615da82b80ab2e379d7b2069e3644">CommandLineProcessor</a>
</li>
<li>GetCsvFileName()
: <a class="el" href="classarmnn_quantizer_1_1_command_line_processor.xhtml#a2e9f3f315ce159881394511e49b827b2">CommandLineProcessor</a>
</li>
<li>GetCurrentState()
: <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#ad8d263669817cf577760710ff6c96bb9">ProfilingService</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_state_machine.xhtml#ad8d263669817cf577760710ff6c96bb9">ProfilingStateMachine</a>
</li>
<li>GetData()
: <a class="el" href="classarmnn_1_1_base_workload.xhtml#a965cf380c7adf547d0f14b3f6d1da249">BaseWorkload&lt; QueueDescriptor &gt;</a>
, <a class="el" href="classarmnn_1_1_output_handler.xhtml#afe3429ac30b180c11f01ea0f9f546f0e">OutputHandler</a>
</li>
<li>GetDataForEntry()
: <a class="el" href="classarmnn_quantizer_1_1_quantization_input.xhtml#a72a7550077aa69af30ec1f47b1722079">QuantizationInput</a>
</li>
<li>GetDataLayout()
: <a class="el" href="classarmnn_utils_1_1_data_layout_indexed.xhtml#a7d8b3d755b6ca8f5533657969efb06c4">DataLayoutIndexed</a>
</li>
<li>GetDataType()
: <a class="el" href="classarmnn_1_1_base_tensor.xhtml#aea909c7327109228ef618d459015def3">BaseTensor&lt; MemoryType &gt;</a>
, <a class="el" href="classarmnn_1_1_cl_sub_tensor_handle.xhtml#ad3e63bb560123889f1ec98e40c5f8279">ClSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cl_tensor_handle.xhtml#ad3e63bb560123889f1ec98e40c5f8279">ClTensorHandle</a>
, <a class="el" href="classarmnn_1_1_i_acl_tensor_handle.xhtml#a3767f569fc55323ddf7b2ee57987d9c5">IAclTensorHandle</a>
, <a class="el" href="classarmnn_1_1_i_cl_tensor_handle.xhtml#a3767f569fc55323ddf7b2ee57987d9c5">IClTensorHandle</a>
, <a class="el" href="structarmnn_1_1_i_quantization_scheme.xhtml#ad23181f9f8fcc85758f62c49fc7ca23f">IQuantizationScheme</a>
, <a class="el" href="classarmnn_1_1_layer.xhtml#aea909c7327109228ef618d459015def3">Layer</a>
, <a class="el" href="classarmnn_1_1_neon_sub_tensor_handle.xhtml#ad3e63bb560123889f1ec98e40c5f8279">NeonSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle.xhtml#ad3e63bb560123889f1ec98e40c5f8279">NeonTensorHandle</a>
, <a class="el" href="structarmnn_1_1_q_asymm_s8_quantization_scheme.xhtml#a57d67416d97cb7138e43656b43feb797">QAsymmS8QuantizationScheme</a>
, <a class="el" href="structarmnn_1_1_q_asymm_u8_quantization_scheme.xhtml#a57d67416d97cb7138e43656b43feb797">QAsymmU8QuantizationScheme</a>
, <a class="el" href="structarmnn_1_1_q_symm16_quantization_scheme.xhtml#a57d67416d97cb7138e43656b43feb797">QSymm16QuantizationScheme</a>
, <a class="el" href="structarmnn_1_1_q_symm_s8_quantization_scheme.xhtml#a57d67416d97cb7138e43656b43feb797">QSymmS8QuantizationScheme</a>
, <a class="el" href="classarmnn_1_1_tensor_info.xhtml#aea909c7327109228ef618d459015def3">TensorInfo</a>
</li>
<li>GetDebugCallbackFunction()
: <a class="el" href="classarmnn_delegate_1_1_delegate_options.xhtml#a88eb9e3a0ed5f64cfc6fe460d1621520">DelegateOptions</a>
</li>
<li>GetDelegate()
: <a class="el" href="classarmnn_delegate_1_1_delegate.xhtml#a97720329f3bac994c9a5f09389beb9a4">Delegate</a>
</li>
<li>GetDeltaCounterValue()
: <a class="el" href="classarmnn_1_1profiling_1_1_i_read_counter_values.xhtml#a4d2478902a75d38fd9acd57829d125f3">IReadCounterValues</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#a8f9bcec7e9c0fb2fe463c120a0fb43fe">ProfilingService</a>
</li>
<li>GetDevice()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#aa898e858d26d200fbc3788ac6d14fd90">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#a228989d3c53e86e779567ca5c2033ec2">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#a5fa9a7091e79fb9c5c0af5f663c71df1">MockCounterDirectory</a>
</li>
<li>GetDeviceCount()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#ad742b37bc2beb568e083225f3fd8160b">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#aecd5912045fd41fe41dc96c9844f6deb">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#ad742b37bc2beb568e083225f3fd8160b">MockCounterDirectory</a>
</li>
<li>GetDevices()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_directory.xhtml#ac9bdbed464222fa06875096a4f373ca8">CounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_directory.xhtml#a98e6769cb933d30bfd3ca25f61bd8438">ICounterDirectory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_counter_directory.xhtml#ac9bdbed464222fa06875096a4f373ca8">MockCounterDirectory</a>
</li>
<li>GetDeviceSpec()
: <a class="el" href="classarmnn_1_1_i_runtime.xhtml#a25db7b8e6fc90f8418439ccd33aaf184">IRuntime</a>
, <a class="el" href="structarmnn_1_1_runtime_impl.xhtml#ace3a3fbd42ff981af628e91fbeb254d5">RuntimeImpl</a>
</li>
<li>GetDimensionality()
: <a class="el" href="classarmnn_1_1_tensor_shape.xhtml#a5a212540c00931bd2a4b4041beda33ae">TensorShape</a>
</li>
<li>GetDimensionSpecificity()
: <a class="el" href="classarmnn_1_1_tensor_shape.xhtml#a3919600d4aa8d5cd801a0e0740f62308">TensorShape</a>
</li>
<li>GetDirectoryCaptureCommandHandler()
: <a class="el" href="classarmnn_1_1gatordmock_1_1_gatord_mock_service.xhtml#a7f980dbcb21ac67ae197f2781d67532c">GatordMockService</a>
</li>
<li>GetDynamicBackends()
: <a class="el" href="classarmnn_1_1_device_spec.xhtml#a2a52bc9548350a186cdb8f9565eed4f0">DeviceSpec</a>
</li>
<li>GetEdgeStrategies()
: <a class="el" href="classarmnn_1_1_output_slot.xhtml#a29ce2fa137002ecdafe9ad28e441a36d">OutputSlot</a>
</li>
<li>GetEdgeStrategyForConnection()
: <a class="el" href="classarmnn_1_1_output_slot.xhtml#a5b481a458c19fd3807b6e04b94b9b174">OutputSlot</a>
</li>
<li>GetEntities()
: <a class="el" href="classarmnn_1_1profiling_1_1_timeline_model.xhtml#a973d9336fed9123e64fef84162a9b9c0">TimelineModel</a>
</li>
<li>GetEntryPoint()
: <a class="el" href="classarmnn_1_1_dynamic_backend_utils.xhtml#a3964c90252556ffae5242cc6a69d8b3c">DynamicBackendUtils</a>
</li>
<li>GetErrors()
: <a class="el" href="classarmnn_1_1profiling_1_1_timeline_model.xhtml#af65ad290e953c59b8b3e2db0037f9a9c">TimelineModel</a>
</li>
<li>GetEventClass()
: <a class="el" href="classarmnn_1_1profiling_1_1_event_obj.xhtml#afa5096ea3c5430280ea07e1b093fe5a5">EventObj</a>
</li>
<li>GetEventClasses()
: <a class="el" href="classarmnn_1_1profiling_1_1_timeline_model.xhtml#a8454924a69c533d39d222a71e59c4d6b">TimelineModel</a>
</li>
<li>GetEventColor()
: <a class="el" href="classarmnn_1_1_profiler_impl.xhtml#ac2afea56b7e3ffcc81f49f15febf88f1">ProfilerImpl</a>
</li>
<li>GetEvents()
: <a class="el" href="classarmnn_1_1profiling_1_1_entity.xhtml#a8820fb58faf6eaaf1cf0c50a9f58b7d5">Entity</a>
</li>
<li>GetExecutions()
: <a class="el" href="classarmnn_1_1profiling_1_1_entity.xhtml#aa2ecfd450eca1e985c51aa53b406d590">Entity</a>
</li>
<li>GetExportFlags()
: <a class="el" href="classarmnn_1_1_cl_tensor_handle_factory.xhtml#a4d6272060edbc0c5ed7d43db78cc65c6">ClTensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_i_tensor_handle_factory.xhtml#a9892b82652ffac03f1e4e7ad93906078">ITensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle_factory.xhtml#a4d6272060edbc0c5ed7d43db78cc65c6">NeonTensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_ref_tensor_handle_factory.xhtml#a4d6272060edbc0c5ed7d43db78cc65c6">RefTensorHandleFactory</a>
, <a class="el" href="classsdb_1_1_sample_dynamic_tensor_handle_factory.xhtml#a41fdf4ac768c977ea1b0f2b326532021">SampleDynamicTensorHandleFactory</a>
</li>
<li>GetFactory()
: <a class="el" href="classarmnn_1_1_backend_registry.xhtml#afc0c63ca8db8957b58826f6d7bd231b2">BackendRegistry</a>
, <a class="el" href="classarmnn_1_1_tensor_handle_factory_registry.xhtml#ae5ecc42140a12c855554a4a621fc8456">TensorHandleFactoryRegistry</a>
</li>
<li>GetFactoryFunction()
: <a class="el" href="classarmnn_1_1_dynamic_backend.xhtml#a4c24f07cb0b4bff43655dfdbd5eac539">DynamicBackend</a>
</li>
<li>GetFailedSubgraphs()
: <a class="el" href="classarmnn_1_1_optimization_views.xhtml#ad5fee4381bf82ffa37658dddf4d1fa01">OptimizationViews</a>
</li>
<li>GetFileName()
: <a class="el" href="classarmnn_quantizer_1_1_quantization_input.xhtml#ac2cfc1ed70af1cbc07e22a93679b1e2f">QuantizationInput</a>
</li>
<li>GetFlatBufferBuilder()
: <a class="el" href="classarmnn_serializer_1_1_serializer_strategy.xhtml#ab409abc02fdc367d3b95e6c14500616a">SerializerStrategy</a>
</li>
<li>GetForgetGateBias()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ac81393ef433b0c7c337f9f0d55f41ae4">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a715696f29b5376cbb8aaec0b77a092af">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#ac81393ef433b0c7c337f9f0d55f41ae4">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetForgetLayerNormWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ab50b4ccb0b84f6427996f76083a4107a">LstmInputParamsInfo</a>
</li>
<li>GetGlobalId()
: <a class="el" href="classarmnn_1_1profiling_1_1_counter_id_map.xhtml#a40f23e39c9e564d9276caa8d8331aa47">CounterIdMap</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_counter_mappings.xhtml#a83e6db8d13e21158334ca6722b20fa67">ICounterMappings</a>
</li>
<li>GetGraph()
: <a class="el" href="classarmnn_1_1_network_impl.xhtml#afe0a4f719f9752a405e71878da7012ba">NetworkImpl</a>
, <a class="el" href="classarmnn_1_1_optimization_views.xhtml#a49800ad35ea869aa5569519760d3b339">OptimizationViews</a>
, <a class="el" href="classarmnn_1_1_optimized_network_impl.xhtml#a49800ad35ea869aa5569519760d3b339">OptimizedNetworkImpl</a>
</li>
<li>GetGraphForTesting
: <a class="el" href="classarmnn_1_1_i_optimized_network.xhtml#a519b2b784c275693e37a9b6c693342eb">IOptimizedNetwork</a>
</li>
<li>GetGuid()
: <a class="el" href="classarmnn_1_1_base_workload.xhtml#a29c2c6dd77c6fe10674fc6876751cbce">BaseWorkload&lt; QueueDescriptor &gt;</a>
, <a class="el" href="classarmnn_1_1_i_connectable_layer.xhtml#afb5e65c770f6cee222db8af7581541a6">IConnectableLayer</a>
, <a class="el" href="classarmnn_1_1_i_optimized_network.xhtml#ab986223ec7e4f04929cb47c74a27aa93">IOptimizedNetwork</a>
, <a class="el" href="classarmnn_1_1_i_workload.xhtml#acb0f384aead510900e20318cabe58a59">IWorkload</a>
, <a class="el" href="classarmnn_1_1_layer.xhtml#a8dc12f0ee5b232d397bd18ced1a72a64">Layer</a>
, <a class="el" href="classarmnn_1_1_optimized_network_impl.xhtml#a4b5307d79bb600abb79af46a7bc4f89d">OptimizedNetworkImpl</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_connection.xhtml#a1f13df7f1aaa03369c46ab37b055e8d3">Connection</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_entity.xhtml#a1f13df7f1aaa03369c46ab37b055e8d3">Entity</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_event_class_obj.xhtml#a1f13df7f1aaa03369c46ab37b055e8d3">EventClassObj</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_event_obj.xhtml#a1f13df7f1aaa03369c46ab37b055e8d3">EventObj</a>
, <a class="el" href="structarmnn_1_1timelinedecoder_1_1_j_s_o_n_timeline_decoder_1_1_j_s_o_n_entity.xhtml#aba119e4096cda4655eadffdadc627143">JSONTimelineDecoder::JSONEntity</a>
</li>
<li>GetHandleFactoryPreferences()
: <a class="el" href="classarmnn_1_1_cl_backend.xhtml#a63559c7f206c265f5fff5ffcc8a58e3e">ClBackend</a>
, <a class="el" href="classarmnn_1_1_i_backend_internal.xhtml#ac5d107c5672f446603b6e6b92bce6244">IBackendInternal</a>
, <a class="el" href="classarmnn_1_1_mock_import_backend.xhtml#a63559c7f206c265f5fff5ffcc8a58e3e">MockImportBackend</a>
, <a class="el" href="classarmnn_1_1_neon_backend.xhtml#a63559c7f206c265f5fff5ffcc8a58e3e">NeonBackend</a>
, <a class="el" href="classarmnn_1_1_ref_backend.xhtml#a63559c7f206c265f5fff5ffcc8a58e3e">RefBackend</a>
</li>
<li>GetHead()
: <a class="el" href="classarmnn_1_1profiling_1_1_connection.xhtml#a6701d3ffc96bafe38e18a85ba7fc4bf7">Connection</a>
</li>
<li>GetHeadersAccepted()
: <a class="el" href="classarmnn_1_1profiling_1_1_i_local_packet_handler.xhtml#a798760e433b8fe7801de8427169004ca">ILocalPacketHandler</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_request_counters_packet_handler.xhtml#a0729ebfcf0d2e4717b94f212fac0bc0c">RequestCountersPacketHandler</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_stream_meta_data_processor.xhtml#a0729ebfcf0d2e4717b94f212fac0bc0c">StreamMetaDataProcessor</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_test_timeline_packet_handler.xhtml#a0729ebfcf0d2e4717b94f212fac0bc0c">TestTimelinePacketHandler</a>
</li>
<li>GetHeight()
: <a class="el" href="class_inference_test_image.xhtml#a0983225e32025d901ce6547170892f56">InferenceTestImage</a>
</li>
<li>GetHeightIndex()
: <a class="el" href="classarmnn_utils_1_1_data_layout_indexed.xhtml#a61c00316c443adc233c24e85c6c5b740">DataLayoutIndexed</a>
</li>
<li>GetId()
: <a class="el" href="classarmnn_1_1_cl_backend.xhtml#a6c6c3d137a7792e264a89cc40ea94bb0">ClBackend</a>
, <a class="el" href="classarmnn_1_1_cl_tensor_handle_factory.xhtml#a0f624341aa5ff798d7a678f612994b98">ClTensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_i_backend.xhtml#aa9fc23b7155bd678232eeb351059b748">IBackend</a>
, <a class="el" href="classarmnn_1_1_i_tensor_handle_factory.xhtml#a4afcbe1ccd8f71ba118f210f2a591a4c">ITensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_mock_backend.xhtml#a6c6c3d137a7792e264a89cc40ea94bb0">MockBackend</a>
, <a class="el" href="classarmnn_1_1_mock_import_backend.xhtml#a6c6c3d137a7792e264a89cc40ea94bb0">MockImportBackend</a>
, <a class="el" href="classarmnn_1_1_neon_backend.xhtml#a6c6c3d137a7792e264a89cc40ea94bb0">NeonBackend</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle_factory.xhtml#a0f624341aa5ff798d7a678f612994b98">NeonTensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_ref_backend.xhtml#a6c6c3d137a7792e264a89cc40ea94bb0">RefBackend</a>
, <a class="el" href="classarmnn_1_1_ref_tensor_handle_factory.xhtml#a0f624341aa5ff798d7a678f612994b98">RefTensorHandleFactory</a>
, <a class="el" href="classsdb_1_1_sample_dynamic_tensor_handle_factory.xhtml#a0f624341aa5ff798d7a678f612994b98">SampleDynamicTensorHandleFactory</a>
</li>
<li>GetIdStatic()
: <a class="el" href="classarmnn_1_1_cl_backend.xhtml#a177af502214bbc8123fbb4a3c4f0a1b8">ClBackend</a>
, <a class="el" href="classarmnn_1_1_cl_tensor_handle_factory.xhtml#acdecb5b442434112c2cc8fc48c0ea922">ClTensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_mock_backend.xhtml#a177af502214bbc8123fbb4a3c4f0a1b8">MockBackend</a>
, <a class="el" href="classarmnn_1_1_mock_import_backend.xhtml#a177af502214bbc8123fbb4a3c4f0a1b8">MockImportBackend</a>
, <a class="el" href="classarmnn_1_1_neon_backend.xhtml#a177af502214bbc8123fbb4a3c4f0a1b8">NeonBackend</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle_factory.xhtml#acdecb5b442434112c2cc8fc48c0ea922">NeonTensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_ref_backend.xhtml#a177af502214bbc8123fbb4a3c4f0a1b8">RefBackend</a>
, <a class="el" href="classarmnn_1_1_ref_tensor_handle_factory.xhtml#acdecb5b442434112c2cc8fc48c0ea922">RefTensorHandleFactory</a>
, <a class="el" href="classsdb_1_1_sample_dynamic_tensor_handle_factory.xhtml#acdecb5b442434112c2cc8fc48c0ea922">SampleDynamicTensorHandleFactory</a>
</li>
<li>GetImportFlags()
: <a class="el" href="classarmnn_1_1_cl_tensor_handle_factory.xhtml#aa1d3334a17a9f136fe65ed833fbf68b4">ClTensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_i_tensor_handle.xhtml#a55cddc2dbb32d680cd85b635ba370e48">ITensorHandle</a>
, <a class="el" href="classarmnn_1_1_i_tensor_handle_factory.xhtml#ab17a7eb3afac8667ace153b0fe2f82fe">ITensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle.xhtml#aa1d3334a17a9f136fe65ed833fbf68b4">NeonTensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle_factory.xhtml#aa1d3334a17a9f136fe65ed833fbf68b4">NeonTensorHandleFactory</a>
, <a class="el" href="classarmnn_1_1_ref_tensor_handle.xhtml#ada8abaac0e81a715dedadf76aaadcbac">RefTensorHandle</a>
, <a class="el" href="classarmnn_1_1_ref_tensor_handle_factory.xhtml#aa1d3334a17a9f136fe65ed833fbf68b4">RefTensorHandleFactory</a>
, <a class="el" href="classsdb_1_1_sample_dynamic_tensor_handle_factory.xhtml#aee9d48f47adbe05d645a8a93805cf29b">SampleDynamicTensorHandleFactory</a>
, <a class="el" href="classsdb_1_1_sample_tensor_handle.xhtml#a086c9e516f9913f6f704eb8386458446">SampleTensorHandle</a>
</li>
<li>GetIndex()
: <a class="el" href="classarmnn_utils_1_1_data_layout_indexed.xhtml#a1e25d8623da985a43597b5756c73b206">DataLayoutIndexed</a>
</li>
<li>GetInfo()
: <a class="el" href="classarmnn_1_1_base_tensor.xhtml#a8aeddebdcf02e1832b22203c08a6b678">BaseTensor&lt; MemoryType &gt;</a>
</li>
<li>GetInputBindingInfo()
: <a class="el" href="class_inference_model.xhtml#a9a28e0c17604e5a945409f994c020212">InferenceModel&lt; IParser, TDataType &gt;</a>
</li>
<li>GetInputBindingInfos()
: <a class="el" href="class_inference_model.xhtml#a0e0f3330fc1e6c1fa1d99d731490c483">InferenceModel&lt; IParser, TDataType &gt;</a>
</li>
<li>GetInputFileName()
: <a class="el" href="classarmnn_quantizer_1_1_command_line_processor.xhtml#a71f5ab806743bf42f0556299af110015">CommandLineProcessor</a>
</li>
<li>GetInputGateBias()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ae1d5a487fcd13852927c8a2b9f9dfeb6">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#aba6d12c9d5671017b6711b80316069ff">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#ae1d5a487fcd13852927c8a2b9f9dfeb6">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetInputIds()
: <a class="el" href="classarmnn_serializer_1_1_serializer_strategy.xhtml#ab590ced8474cd5e0fa28912231b93f61">SerializerStrategy</a>
</li>
<li>GetInputLayerNormWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a3d2f638ba83ae5dad0094c006220c232">LstmInputParamsInfo</a>
</li>
<li>GetInputLayers()
: <a class="el" href="classarmnn_1_1_graph.xhtml#a919fb58873ef3a6549e4490e226f2eae">Graph</a>
</li>
<li>GetInputParsedTfOperationsChecked()
: <a class="el" href="structarmnn_tf_parser_1_1_i_tf_parser_1_1_tf_parser_impl.xhtml#ae295ca8b7d19bb5e6db3f93bd4561ee0">ITfParser::TfParserImpl</a>
</li>
<li>GetInputQuantizationParams()
: <a class="el" href="class_inference_model.xhtml#a066580d185559e2efdcb6cedd1709b9c">InferenceModel&lt; IParser, TDataType &gt;</a>
</li>
<li>GetInputs()
: <a class="el" href="classarmnn_caffe_parser_1_1_i_caffe_parser_1_1_caffe_parser_impl.xhtml#a2f8fbd66c1a39a06d61fcb6536387d64">ICaffeParser::CaffeParserImpl</a>
, <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#ac337f5478049cba1da222da655be49cc">IDeserializer::DeserializerImpl</a>
, <a class="el" href="classarmnn_onnx_parser_1_1_onnx_parser_impl.xhtml#a7cf8b801043e1eccd5e6db1325eaa4fe">OnnxParserImpl</a>
, <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#a342a58ab95b91af13b24dd4bdc7e09bb">TfLiteParserImpl</a>
</li>
<li>GetInputSize()
: <a class="el" href="class_inference_model.xhtml#a679e4b22a845c8d7f58f6ca6a5df625f">InferenceModel&lt; IParser, TDataType &gt;</a>
</li>
<li>GetInputSlot()
: <a class="el" href="classarmnn_1_1_i_connectable_layer.xhtml#a6ec9e0eb66d7d6a01240492a0b18104c">IConnectableLayer</a>
, <a class="el" href="classarmnn_1_1_layer.xhtml#acf8b8e23bf647836592982f97088d375">Layer</a>
, <a class="el" href="classarmnn_1_1_subgraph_view.xhtml#affe284f25c7940ffa692a4d2005591ff">SubgraphView</a>
</li>
<li>GetInputSlots()
: <a class="el" href="classarmnn_1_1_layer.xhtml#af5f530544d09a44d726f24702b67b35b">Layer</a>
, <a class="el" href="classarmnn_1_1_subgraph_view.xhtml#a0b066a26219bcae83ca3e1d7f60fb123">SubgraphView</a>
</li>
<li>GetInputTensorIds()
: <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#a8b4b0b88a5e79a88b8b60db76398f575">TfLiteParserImpl</a>
</li>
<li>GetInputTensorInfo
: <a class="el" href="classarmnn_1_1_i_network.xhtml#a0ec772587bcadc2fd02cc0e882efcfe8">INetwork</a>
, <a class="el" href="classarmnn_1_1_i_runtime.xhtml#aa198ca53eeb01b6e2134da924ec36405">IRuntime</a>
, <a class="el" href="classarmnn_1_1_loaded_network.xhtml#af616683424cb40d83b5a923db7f06f11">LoadedNetwork</a>
, <a class="el" href="structarmnn_1_1_runtime_impl.xhtml#aa198ca53eeb01b6e2134da924ec36405">RuntimeImpl</a>
</li>
<li>GetInputToCellWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a3b3c26330a05bf4ea40f8a6b402be354">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a928f70dd19a2b0d3e9b75c27a2099c44">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a3b3c26330a05bf4ea40f8a6b402be354">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetInputToForgetWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a7dac08f19a1b235d5256d39136848a09">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a339c19855613274cf0ea13921af9e5a3">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a7dac08f19a1b235d5256d39136848a09">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetInputToInputWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#afa2b04197a764428a8c3a648de8058fc">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a23d6133552ba91cc0571517896792ea4">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#afa2b04197a764428a8c3a648de8058fc">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetInputToOutputWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a800adf0f61e84d706060f63037c1a336">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a477440c44fe870fb6f2486bf68214395">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a800adf0f61e84d706060f63037c1a336">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetInstance()
: <a class="el" href="classarmnn_1_1_profiler_manager.xhtml#a93857080c2523bf3395e7aa7e6024d5c">ProfilerManager</a>
</li>
<li>GetInterLayerManager()
: <a class="el" href="classarmnn_1_1_base_memory_manager.xhtml#a3107a84f3ebba890f5056e81a89854b3">BaseMemoryManager</a>
</li>
<li>GetInterLayerMemoryGroup()
: <a class="el" href="classarmnn_1_1_base_memory_manager.xhtml#a481f11f45ac6c278d41e97545429e4ad">BaseMemoryManager</a>
</li>
<li>GetIntraLayerManager()
: <a class="el" href="classarmnn_1_1_base_memory_manager.xhtml#a59ad43b7336a480674d77d18ab1b022d">BaseMemoryManager</a>
</li>
<li>GetJSONEntityString()
: <a class="el" href="classarmnn_1_1timelinedecoder_1_1_j_s_o_n_timeline_decoder.xhtml#ab7f65845e8fd6aeaebd152e9ecda4031">JSONTimelineDecoder</a>
</li>
<li>GetJSONString()
: <a class="el" href="classarmnn_1_1timelinedecoder_1_1_j_s_o_n_timeline_decoder.xhtml#aee623039a8883d5bbad213f6e68336de">JSONTimelineDecoder</a>
</li>
<li>GetKernels()
: <a class="el" href="classarmnn_1_1_neon_interceptor_scheduler.xhtml#ac050f766763f2140578363b25f324617">NeonInterceptorScheduler</a>
</li>
<li>GetLabelMap()
: <a class="el" href="classarmnn_1_1profiling_1_1_timeline_model.xhtml#a2eca8535e0d05235e5e07abc1c124799">TimelineModel</a>
</li>
<li>GetLayerBindingIds()
: <a class="el" href="classarmnn_quantizer_1_1_quantization_input.xhtml#a9de59439f4028bc1dc7564a453228de9">QuantizationInput</a>
</li>
<li>GetLayerName()
: <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#af2e5b4595b6abc056779ecd12bd271c2">IDeserializer::DeserializerImpl</a>
</li>
<li>GetLayers()
: <a class="el" href="classarmnn_1_1_subgraph_view.xhtml#ac8ac9809196ec980b8472fbc8367697a">SubgraphView</a>
</li>
<li>GetLayerSupport()
: <a class="el" href="classarmnn_1_1_cl_backend.xhtml#a93d4285a3ea5e4e3b35578484d889daa">ClBackend</a>
, <a class="el" href="classarmnn_1_1_i_backend_internal.xhtml#ad86597efa7c25997572c80dc29f3104a">IBackendInternal</a>
, <a class="el" href="classarmnn_1_1_mock_backend.xhtml#a93d4285a3ea5e4e3b35578484d889daa">MockBackend</a>
, <a class="el" href="classarmnn_1_1_mock_import_backend.xhtml#a93d4285a3ea5e4e3b35578484d889daa">MockImportBackend</a>
, <a class="el" href="classarmnn_1_1_neon_backend.xhtml#a93d4285a3ea5e4e3b35578484d889daa">NeonBackend</a>
, <a class="el" href="classarmnn_1_1_ref_backend.xhtml#a93d4285a3ea5e4e3b35578484d889daa">RefBackend</a>
</li>
<li>GetLoggingSeverity()
: <a class="el" href="classarmnn_delegate_1_1_delegate_options.xhtml#ad0c06976f83fdc6c393ad85ea23d97b6">DelegateOptions</a>
</li>
<li>GetLstmDescriptor()
: <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#af7bb02c61c6a5663121da024b7e042e8">IDeserializer::DeserializerImpl</a>
</li>
<li>GetLstmInputParams()
: <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#a327a399d46f8216c9f4c1eea5f18a542">IDeserializer::DeserializerImpl</a>
</li>
<li>GetMeasurements()
: <a class="el" href="classarmnn_1_1_event.xhtml#aa75e3a38ab9fee7b2ad5522e746ad0af">Event</a>
, <a class="el" href="classarmnn_1_1_instrument.xhtml#a4055fcf05306a7478db7e192cf1e679d">Instrument</a>
, <a class="el" href="classarmnn_1_1_neon_timer.xhtml#a86ea36032637c02c045f2d433036a203">NeonTimer</a>
, <a class="el" href="classarmnn_1_1_open_cl_timer.xhtml#a86ea36032637c02c045f2d433036a203">OpenClTimer</a>
, <a class="el" href="classarmnn_1_1_wall_clock_timer.xhtml#a86ea36032637c02c045f2d433036a203">WallClockTimer</a>
</li>
<li>GetMemoryArea()
: <a class="el" href="classarmnn_1_1_base_tensor.xhtml#aa81f67ac64f0c249e26499600c45d996">BaseTensor&lt; MemoryType &gt;</a>
</li>
<li>GetMinMaxRange()
: <a class="el" href="classarmnn_1_1_network_quantizer.xhtml#a3618dd686c52c451000bea3e20931ac8">NetworkQuantizer</a>
</li>
<li>GetMockProfilingConnection()
: <a class="el" href="classarmnn_1_1profiling_1_1_swap_profiling_connection_factory_helper.xhtml#a8ccd73b0bb970c18b05a0bc63fcd0279">SwapProfilingConnectionFactoryHelper</a>
</li>
<li>GetModel()
: <a class="el" href="classarmnn_1_1timelinedecoder_1_1_j_s_o_n_timeline_decoder.xhtml#a81dffedad39d89f959b6119bd8519681">JSONTimelineDecoder</a>
</li>
<li>GetModelOptions()
: <a class="el" href="classarmnn_1_1_optimized_network_impl.xhtml#a57af53ce1f71db54aec12422e7016fad">OptimizedNetworkImpl</a>
</li>
<li>GetModelOptionsForTesting
: <a class="el" href="classarmnn_1_1_i_optimized_network.xhtml#aa25c1acd249228c82a687d713673725a">IOptimizedNetwork</a>
</li>
<li>GetName()
: <a class="el" href="structarmnn_1_1_backend_options_1_1_backend_option.xhtml#a9a98946a64f3893b085f650932c9dfee">BackendOptions::BackendOption</a>
, <a class="el" href="classarmnn_1_1_cl_permute_workload.xhtml#aba53afc20ccec8d0bfe48da712f050cd">ClPermuteWorkload</a>
, <a class="el" href="classarmnn_1_1_cl_transpose_workload.xhtml#aba53afc20ccec8d0bfe48da712f050cd">ClTransposeWorkload</a>
, <a class="el" href="classarmnn_1_1_event.xhtml#a55466a39638bb671b24a82941aa37d77">Event</a>
, <a class="el" href="classarmnn_1_1_i_connectable_layer.xhtml#afcc1c3a20bd2860e0ddd21674389246f">IConnectableLayer</a>
, <a class="el" href="classarmnn_1_1_instrument.xhtml#afcc1c3a20bd2860e0ddd21674389246f">Instrument</a>
, <a class="el" href="classarmnn_1_1_layer.xhtml#a7ddf0cf6f620d59c10e63495ace795d0">Layer</a>
, <a class="el" href="classarmnn_1_1_neon_permute_workload.xhtml#aba53afc20ccec8d0bfe48da712f050cd">NeonPermuteWorkload</a>
, <a class="el" href="classarmnn_1_1_neon_timer.xhtml#ad47edad463024345ce1409153c259215">NeonTimer</a>
, <a class="el" href="classarmnn_1_1_neon_transpose_workload.xhtml#aba53afc20ccec8d0bfe48da712f050cd">NeonTransposeWorkload</a>
, <a class="el" href="classarmnn_1_1_open_cl_timer.xhtml#a7ddf0cf6f620d59c10e63495ace795d0">OpenClTimer</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_event_class_obj.xhtml#a5b52ba705bd2cbff2d8ba9a1fb0b39d8">EventClassObj</a>
, <a class="el" href="classarmnn_1_1_ref_debug_workload.xhtml#aba53afc20ccec8d0bfe48da712f050cd">RefDebugWorkload&lt; DataType &gt;</a>
, <a class="el" href="classarmnn_1_1_ref_permute_workload.xhtml#aba53afc20ccec8d0bfe48da712f050cd">RefPermuteWorkload&lt; DataType &gt;</a>
, <a class="el" href="classarmnn_1_1_ref_transpose_workload.xhtml#aba53afc20ccec8d0bfe48da712f050cd">RefTransposeWorkload&lt; DataType &gt;</a>
, <a class="el" href="structarmnn_1_1timelinedecoder_1_1_j_s_o_n_timeline_decoder_1_1_j_s_o_n_entity.xhtml#a8facce7acc5e95194c232b9bbd1363d5">JSONTimelineDecoder::JSONEntity</a>
, <a class="el" href="classarmnn_1_1_wall_clock_timer.xhtml#ad47edad463024345ce1409153c259215">WallClockTimer</a>
</li>
<li>GetNameStr()
: <a class="el" href="classarmnn_1_1_layer.xhtml#a9a97cb6d32661a57fc33bd29b8e41ff4">Layer</a>
</li>
<li>GetNetworkGuid()
: <a class="el" href="classarmnn_1_1_loaded_network.xhtml#ac8be6c967db9e797ade32fa3db497422">LoadedNetwork</a>
</li>
<li>GetNetworkInputBindingInfo()
: <a class="el" href="classarmnn_caffe_parser_1_1_i_caffe_parser_1_1_caffe_parser_impl.xhtml#a8b053a6c449d0814cc831c916c126668">ICaffeParser::CaffeParserImpl</a>
, <a class="el" href="classarmnn_caffe_parser_1_1_i_caffe_parser.xhtml#a8b053a6c449d0814cc831c916c126668">ICaffeParser</a>
, <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#a5de68e32eabd643f55a35f288ba10294">IDeserializer::DeserializerImpl</a>
, <a class="el" href="classarmnn_deserializer_1_1_i_deserializer.xhtml#a5de68e32eabd643f55a35f288ba10294">IDeserializer</a>
, <a class="el" href="classarmnn_onnx_parser_1_1_i_onnx_parser.xhtml#a8b053a6c449d0814cc831c916c126668">IOnnxParser</a>
, <a class="el" href="classarmnn_onnx_parser_1_1_onnx_parser_impl.xhtml#a8b053a6c449d0814cc831c916c126668">OnnxParserImpl</a>
, <a class="el" href="classarmnn_tf_lite_parser_1_1_i_tf_lite_parser.xhtml#a913d452e7766210b59a69d3c658b2862">ITfLiteParser</a>
, <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#a913d452e7766210b59a69d3c658b2862">TfLiteParserImpl</a>
, <a class="el" href="classarmnn_tf_parser_1_1_i_tf_parser.xhtml#a8b053a6c449d0814cc831c916c126668">ITfParser</a>
, <a class="el" href="structarmnn_tf_parser_1_1_i_tf_parser_1_1_tf_parser_impl.xhtml#a8b053a6c449d0814cc831c916c126668">ITfParser::TfParserImpl</a>
</li>
<li>GetNetworkOutputBindingInfo()
: <a class="el" href="classarmnn_caffe_parser_1_1_i_caffe_parser_1_1_caffe_parser_impl.xhtml#a4b1fdcb1985af12dd1848a9ffa5d3271">ICaffeParser::CaffeParserImpl</a>
, <a class="el" href="classarmnn_caffe_parser_1_1_i_caffe_parser.xhtml#a4b1fdcb1985af12dd1848a9ffa5d3271">ICaffeParser</a>
, <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#a2f66de823cd61765a40407fee754655e">IDeserializer::DeserializerImpl</a>
, <a class="el" href="classarmnn_deserializer_1_1_i_deserializer.xhtml#a2f66de823cd61765a40407fee754655e">IDeserializer</a>
, <a class="el" href="classarmnn_onnx_parser_1_1_i_onnx_parser.xhtml#a4b1fdcb1985af12dd1848a9ffa5d3271">IOnnxParser</a>
, <a class="el" href="classarmnn_onnx_parser_1_1_onnx_parser_impl.xhtml#a4b1fdcb1985af12dd1848a9ffa5d3271">OnnxParserImpl</a>
, <a class="el" href="classarmnn_tf_lite_parser_1_1_i_tf_lite_parser.xhtml#a59139faede3a07a43c4c8f86bb03dc43">ITfLiteParser</a>
, <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#a59139faede3a07a43c4c8f86bb03dc43">TfLiteParserImpl</a>
, <a class="el" href="classarmnn_tf_parser_1_1_i_tf_parser.xhtml#a4b1fdcb1985af12dd1848a9ffa5d3271">ITfParser</a>
, <a class="el" href="structarmnn_tf_parser_1_1_i_tf_parser_1_1_tf_parser_impl.xhtml#a4b1fdcb1985af12dd1848a9ffa5d3271">ITfParser::TfParserImpl</a>
</li>
<li>GetNextGuid()
: <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#ad6a0ab3d6679dded1eb2e1838becf79e">ProfilingService</a>
</li>
<li>GetNormalizationDescriptor()
: <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#a920251d49a8f32085d458ba23f776800">IDeserializer::DeserializerImpl</a>
</li>
<li>GetNumberOfInputs()
: <a class="el" href="classarmnn_quantizer_1_1_quantization_input.xhtml#a28c7b05540e1e68de490368b19a43655">QuantizationInput</a>
</li>
<li>GetNumberOfThreads()
: <a class="el" href="classarmnn_1_1_neon_backend_model_context.xhtml#ab496797d400c4976d0d4b15b110bf7d9">NeonBackendModelContext</a>
</li>
<li>GetNumBytes()
: <a class="el" href="classarmnn_1_1_base_tensor.xhtml#abcbdfb544ece4c31d0b37715ad0f3be0">BaseTensor&lt; MemoryType &gt;</a>
, <a class="el" href="classarmnn_1_1_tensor_info.xhtml#abcbdfb544ece4c31d0b37715ad0f3be0">TensorInfo</a>
</li>
<li>GetNumChannels()
: <a class="el" href="class_inference_test_image.xhtml#a5a1e22b2882917bcd82a14328ff2c5d6">InferenceTestImage</a>
</li>
<li>GetNumConnections()
: <a class="el" href="classarmnn_1_1_i_output_slot.xhtml#aab97b09d9ee85a105883949abcae52f3">IOutputSlot</a>
, <a class="el" href="classarmnn_1_1_output_slot.xhtml#a25b0119c02aece1d341b99953d169c0f">OutputSlot</a>
</li>
<li>GetNumDimensions()
: <a class="el" href="classarmnn_1_1_base_tensor.xhtml#a157e27d41e9f6b21f0d3c025fa47dc24">BaseTensor&lt; MemoryType &gt;</a>
, <a class="el" href="structarmnn_1_1_broadcast_loop.xhtml#a0ed4f8b0f36ff2a60cbc4faf3be5d2f7">BroadcastLoop</a>
, <a class="el" href="structarmnn_1_1_origins_descriptor.xhtml#a78e8266be865fdd92cadd04d6e25ae1f">OriginsDescriptor</a>
, <a class="el" href="classarmnn_1_1_tensor_info.xhtml#a157e27d41e9f6b21f0d3c025fa47dc24">TensorInfo</a>
, <a class="el" href="classarmnn_1_1_tensor_shape.xhtml#a157e27d41e9f6b21f0d3c025fa47dc24">TensorShape</a>
, <a class="el" href="structarmnn_1_1_views_descriptor.xhtml#a78e8266be865fdd92cadd04d6e25ae1f">ViewsDescriptor</a>
</li>
<li>GetNumElements()
: <a class="el" href="classarmnn_1_1_base_tensor.xhtml#a8846406ac37fbd2204f0be16ee05d5b7">BaseTensor&lt; MemoryType &gt;</a>
, <a class="el" href="classarmnn_1_1_tensor_info.xhtml#a8846406ac37fbd2204f0be16ee05d5b7">TensorInfo</a>
, <a class="el" href="classarmnn_1_1_tensor_shape.xhtml#a8846406ac37fbd2204f0be16ee05d5b7">TensorShape</a>
, <a class="el" href="class_inference_test_image.xhtml#a8846406ac37fbd2204f0be16ee05d5b7">InferenceTestImage</a>
</li>
<li>GetNumInputs()
: <a class="el" href="classarmnn_1_1_graph.xhtml#a8d8179a4a0703602a5d7dbb6e92eaf69">Graph</a>
</li>
<li>GetNumInputSlots()
: <a class="el" href="classarmnn_1_1_i_connectable_layer.xhtml#a9c2cba04b6d7ace4fc2a2436b82a5a63">IConnectableLayer</a>
, <a class="el" href="classarmnn_1_1_layer.xhtml#abc0660dc440c8a285b456c9ef6383c26">Layer</a>
, <a class="el" href="classarmnn_1_1_subgraph_view.xhtml#a6cbf14f4d57ef2de2cfed9a903db1643">SubgraphView</a>
</li>
<li>GetNumLayers()
: <a class="el" href="classarmnn_1_1_graph.xhtml#afdf8eb85585a798ad0e936bde884d87b">Graph</a>
</li>
<li>GetNumOutputs()
: <a class="el" href="classarmnn_1_1_graph.xhtml#a604654b453ec291a503d62a0beb849d3">Graph</a>
</li>
<li>GetNumOutputSlots()
: <a class="el" href="classarmnn_1_1_i_connectable_layer.xhtml#ac2dac3b61c94de52093616be4ab17f8d">IConnectableLayer</a>
, <a class="el" href="classarmnn_1_1_layer.xhtml#a1594bddc87d6477df300317658f566bb">Layer</a>
, <a class="el" href="classarmnn_1_1_subgraph_view.xhtml#a59a4100374e80a3504f4bb4d13695d0b">SubgraphView</a>
</li>
<li>GetNumViews()
: <a class="el" href="structarmnn_1_1_origins_descriptor.xhtml#a35546e7b56e6e972a495b48748478ede">OriginsDescriptor</a>
, <a class="el" href="structarmnn_1_1_views_descriptor.xhtml#a35546e7b56e6e972a495b48748478ede">ViewsDescriptor</a>
</li>
<li>GetOptimizations()
: <a class="el" href="classarmnn_1_1_cl_backend.xhtml#a87acb43c72272d9db21c547d4f4996cb">ClBackend</a>
, <a class="el" href="classarmnn_1_1_i_backend_internal.xhtml#ad870e6e2951ea3693d9f89a7bf77d695">IBackendInternal</a>
, <a class="el" href="classarmnn_1_1_mock_backend.xhtml#a87acb43c72272d9db21c547d4f4996cb">MockBackend</a>
, <a class="el" href="classarmnn_1_1_mock_import_backend.xhtml#a87acb43c72272d9db21c547d4f4996cb">MockImportBackend</a>
, <a class="el" href="classarmnn_1_1_neon_backend.xhtml#a87acb43c72272d9db21c547d4f4996cb">NeonBackend</a>
, <a class="el" href="classarmnn_1_1_ref_backend.xhtml#a87acb43c72272d9db21c547d4f4996cb">RefBackend</a>
</li>
<li>GetOptimizerOptions()
: <a class="el" href="classarmnn_delegate_1_1_delegate_options.xhtml#a7a24e0a6cebcc7d3383b83baac556be4">DelegateOptions</a>
</li>
<li>GetOption()
: <a class="el" href="structarmnn_1_1_backend_options.xhtml#a6eb7000b48e63e0e05b94dbc36dd6c30">BackendOptions</a>
</li>
<li>GetOptionCount()
: <a class="el" href="structarmnn_1_1_backend_options.xhtml#aac6574986901c29b5e0b81083c13502f">BackendOptions</a>
</li>
<li>GetOrigins()
: <a class="el" href="structarmnn_1_1_views_descriptor.xhtml#a88d7c8ef4baba3690a4d25eec350ecb3">ViewsDescriptor</a>
</li>
<li>GetOutputBindingInfo()
: <a class="el" href="class_inference_model.xhtml#a325f1c17b5ff2153cae944e3c62820a2">InferenceModel&lt; IParser, TDataType &gt;</a>
</li>
<li>GetOutputBindingInfos()
: <a class="el" href="class_inference_model.xhtml#ac0b73049e00e7013f5cc6ae7fcaedcd4">InferenceModel&lt; IParser, TDataType &gt;</a>
</li>
<li>GetOutputDirectoryName()
: <a class="el" href="classarmnn_quantizer_1_1_command_line_processor.xhtml#a4358b78a2efe952366bc32b0d54e663e">CommandLineProcessor</a>
</li>
<li>GetOutputFileName()
: <a class="el" href="classarmnn_quantizer_1_1_command_line_processor.xhtml#a98ba4e2ee687673cbf7546788c8ea099">CommandLineProcessor</a>
</li>
<li>GetOutputGateBias()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ae0da94ba17ce67b95b5b9d6e5adc4271">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a1691bf16df2cabf1a4b82aecbb021f31">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#ae0da94ba17ce67b95b5b9d6e5adc4271">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetOutputHandler()
: <a class="el" href="classarmnn_1_1_layer.xhtml#af2c0edc7ea62a8baaec4d3d9b2b09256">Layer</a>
, <a class="el" href="classarmnn_1_1_output_slot.xhtml#ab00cd1d8962a1927d0302901cb8410d7">OutputSlot</a>
</li>
<li>GetOutputIds()
: <a class="el" href="classarmnn_serializer_1_1_serializer_strategy.xhtml#a05c5792591b9e83396c09ab21143cc44">SerializerStrategy</a>
</li>
<li>GetOutputLayerNormWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a045674b768295e617d7060f96f162366">LstmInputParamsInfo</a>
</li>
<li>GetOutputLayers()
: <a class="el" href="classarmnn_1_1_dynamic_quantization_strategy.xhtml#a2004cc285dba7f2d4e69352e60a9a7a0">DynamicQuantizationStrategy</a>
, <a class="el" href="classarmnn_1_1_graph.xhtml#aa311c7fe7e05406c9ff4e4ed3ba09825">Graph</a>
</li>
<li>GetOutputs()
: <a class="el" href="classarmnn_1_1test_1_1_inference_model_test_case.xhtml#ae7a175231eff460f6d32272930049ca2">InferenceModelTestCase&lt; TModel &gt;</a>
, <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#a9069127d4430d97fe0f2c53fb2c32ab9">IDeserializer::DeserializerImpl</a>
, <a class="el" href="classarmnn_onnx_parser_1_1_onnx_parser_impl.xhtml#ad116319e33228bc23ec505887d3eee4d">OnnxParserImpl</a>
, <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#a279d0891900c191d5a0139e5c11fe488">TfLiteParserImpl</a>
</li>
<li>GetOutputSize()
: <a class="el" href="class_inference_model.xhtml#a8282dddf88e0deb3c414235e20a6cb2c">InferenceModel&lt; IParser, TDataType &gt;</a>
</li>
<li>GetOutputSlot()
: <a class="el" href="classarmnn_1_1_i_connectable_layer.xhtml#a75bfde3503c1b21c397bb095f55db990">IConnectableLayer</a>
, <a class="el" href="classarmnn_1_1_layer.xhtml#abbd71844785bb2f00a81baca30ea5ff0">Layer</a>
, <a class="el" href="classarmnn_1_1_subgraph_view.xhtml#a66fd1c3ee6399e0bef2de8a5b9a59592">SubgraphView</a>
</li>
<li>GetOutputSlots()
: <a class="el" href="classarmnn_1_1_layer.xhtml#a98cdff4e0b45f4c80bfcedaf926e16e0">Layer</a>
, <a class="el" href="classarmnn_1_1_subgraph_view.xhtml#a4b924dd808b6a155518d552c7ef3728f">SubgraphView</a>
</li>
<li>GetOutputTensorIds()
: <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#afe6c475f92d02dd1eb12acd746e4736f">TfLiteParserImpl</a>
</li>
<li>GetOutputTensorInfo()
: <a class="el" href="classarmnn_1_1_i_runtime.xhtml#a81c83702b94931626c6d84a3fa915362">IRuntime</a>
, <a class="el" href="classarmnn_1_1_loaded_network.xhtml#a2b6b57945bc68f659e08d28c8a015e91">LoadedNetwork</a>
, <a class="el" href="structarmnn_1_1_runtime_impl.xhtml#a81c83702b94931626c6d84a3fa915362">RuntimeImpl</a>
</li>
<li>GetOwningLayer()
: <a class="el" href="classarmnn_1_1_input_slot.xhtml#a7ddaf04177053a536f0e7be83a642bc6">InputSlot</a>
, <a class="el" href="classarmnn_1_1_output_slot.xhtml#a7ddaf04177053a536f0e7be83a642bc6">OutputSlot</a>
</li>
<li>GetOwningLayerGuid()
: <a class="el" href="classarmnn_1_1_i_output_slot.xhtml#ad0c3555b126975ad6b3e250fe2a59534">IOutputSlot</a>
, <a class="el" href="classarmnn_1_1_output_slot.xhtml#a6bd5f82d7627668e46dee6a6c699480b">OutputSlot</a>
</li>
<li>GetPacketsReceivedCount()
: <a class="el" href="classarmnn_1_1gatordmock_1_1_gatord_mock_service.xhtml#a4c9761eec8e1cd0bd73c6cdf2c2eda89">GatordMockService</a>
</li>
<li>GetParameters()
: <a class="el" href="classarmnn_1_1_layer_with_parameters.xhtml#a502c06a1b13e6d90a6cbf47c081f1444">LayerWithParameters&lt; Parameters &gt;</a>
</li>
<li>GetParent()
: <a class="el" href="classarmnn_1_1_cl_sub_tensor_handle.xhtml#ab6c52b35388890f2c563afbebfb456a6">ClSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cl_tensor_handle.xhtml#ab6c52b35388890f2c563afbebfb456a6">ClTensorHandle</a>
, <a class="el" href="classarmnn_1_1_const_cpu_tensor_handle.xhtml#ab6c52b35388890f2c563afbebfb456a6">ConstCpuTensorHandle</a>
, <a class="el" href="classarmnn_1_1_i_tensor_handle.xhtml#a437893b8dcf58a0b68b70e1ad7933be6">ITensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_sub_tensor_handle.xhtml#ab6c52b35388890f2c563afbebfb456a6">NeonSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle.xhtml#ab6c52b35388890f2c563afbebfb456a6">NeonTensorHandle</a>
, <a class="el" href="classarmnn_1_1_ref_tensor_handle.xhtml#ab6c52b35388890f2c563afbebfb456a6">RefTensorHandle</a>
, <a class="el" href="classsdb_1_1_sample_tensor_handle.xhtml#ab6c52b35388890f2c563afbebfb456a6">SampleTensorHandle</a>
</li>
<li>GetParentEvent()
: <a class="el" href="classarmnn_1_1_event.xhtml#a0ef4ff725b1ce859c6ef32e99e92dba3">Event</a>
</li>
<li>GetPassId()
: <a class="el" href="classarmnn_quantizer_1_1_quantization_input.xhtml#ac2427714ec0d689f7afa72aaa7c6f7c4">QuantizationInput</a>
</li>
<li>GetPermutation()
: <a class="el" href="classarmnn_1_1_permute_layer.xhtml#afe072d52231a2b18497797a6537c0f81">PermuteLayer</a>
, <a class="el" href="classarmnn_1_1_transpose_layer.xhtml#afe072d52231a2b18497797a6537c0f81">TransposeLayer</a>
</li>
<li>GetPixelAs3Channels()
: <a class="el" href="class_inference_test_image.xhtml#a97a4644e316893df9dd2ab73cdd08d33">InferenceTestImage</a>
</li>
<li>GetPointer()
: <a class="el" href="classarmnn_1_1_ref_memory_manager.xhtml#ab236ab01a8959f4b273b388c09548238">RefMemoryManager</a>
, <a class="el" href="classarmnn_1_1_ref_memory_manager_1_1_pool.xhtml#a6a5db07a5f1fad654e844c52bf702384">RefMemoryManager::Pool</a>
, <a class="el" href="classsdb_1_1_sample_memory_manager.xhtml#ab236ab01a8959f4b273b388c09548238">SampleMemoryManager</a>
, <a class="el" href="classsdb_1_1_sample_memory_manager_1_1_pool.xhtml#a6a5db07a5f1fad654e844c52bf702384">SampleMemoryManager::Pool</a>
</li>
<li>GetPoolingDescriptor()
: <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#a271f00048f7e48392794c2eee17c1e2c">IDeserializer::DeserializerImpl</a>
</li>
<li>GetPosInGraph()
: <a class="el" href="classarmnn_1_1_graph.xhtml#ac7ed5efddd83499ff642cc65f3f66a14">Graph</a>
</li>
<li>GetPriority()
: <a class="el" href="classarmnn_1_1_layer.xhtml#af97a07195a67a638605b3c325763c2dd">Layer</a>
</li>
<li>GetProfiler()
: <a class="el" href="classarmnn_1_1_event.xhtml#a2ca2ecaf265fd35ad98a4c6aa339ca03">Event</a>
, <a class="el" href="classarmnn_1_1_i_runtime.xhtml#af87d0743d1266e264c3197a32299f4b2">IRuntime</a>
, <a class="el" href="classarmnn_1_1_loaded_network.xhtml#aee8e1cb09e0d4dcbe64df111c5edd55e">LoadedNetwork</a>
, <a class="el" href="classarmnn_1_1_profiler_manager.xhtml#a3756986bc88b9b212d3f983c70c5c129">ProfilerManager</a>
, <a class="el" href="structarmnn_1_1_runtime_impl.xhtml#af87d0743d1266e264c3197a32299f4b2">RuntimeImpl</a>
</li>
<li>GetProfilerEventSequenceSize
: <a class="el" href="classarmnn_1_1_i_profiler.xhtml#a64f137d035aca340f3b5624acd5bdc9a">IProfiler</a>
</li>
<li>GetProfilingBufferManager()
: <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service_runtime_helper.xhtml#a33b6add40a385911fe653ac446124deb">ProfilingServiceRuntimeHelper</a>
</li>
<li>GetProfilingConnection()
: <a class="el" href="classarmnn_1_1profiling_1_1_i_profiling_connection_factory.xhtml#a18f247c2a53095da228e441270536b03">IProfilingConnectionFactory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_profiling_connection_factory.xhtml#a7b486986bc169a2c637e6c49cb3dfe73">MockProfilingConnectionFactory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_connection_factory.xhtml#a627a4a9df4ecd888a1cf3380c5563d50">ProfilingConnectionFactory</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#aaf454291f8070b3d7b947b1d616b93f9">ProfilingService</a>
</li>
<li>GetProfilingGuidGenerator()
: <a class="el" href="classarmnn_1_1profiling_1_1_backend_profiling.xhtml#a281672bed6fd49540270725a3eea867b">BackendProfiling</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_backend_profiling.xhtml#a9b9e803df01765cbfe9c9148fe757db5">IBackendProfiling</a>
</li>
<li>GetProfilingService
: <a class="el" href="structarmnn_1_1_runtime_impl.xhtml#aff65942646ba035d5f2a775fa9358ff4">RuntimeImpl</a>
</li>
<li>GetProjectionBias()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a9f2cce936b4df49c487eaca513bf55ca">LstmInputParamsInfo</a>
</li>
<li>GetProjectionWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a18038725f71bb5c5bd03c02cc164f879">LstmInputParamsInfo</a>
</li>
<li>GetQLstmDescriptor()
: <a class="el" href="classarmnn_deserializer_1_1_i_deserializer_1_1_deserializer_impl.xhtml#a57e32d26ac8c87b118e77da920481123">IDeserializer::DeserializerImpl</a>
</li>
<li>GetQuantizationDataSet()
: <a class="el" href="classarmnn_quantizer_1_1_command_line_processor.xhtml#ab15c4ff152f368723ed71c2bb5a89be9">CommandLineProcessor</a>
</li>
<li>GetQuantizationDim()
: <a class="el" href="classarmnn_1_1_tensor_info.xhtml#a8b8fc85ce966c035d789cf22db5088a1">TensorInfo</a>
</li>
<li>GetQuantizationOffset()
: <a class="el" href="classarmnn_1_1_tensor_info.xhtml#a770b51078da02f44a819e9f95d8058b5">TensorInfo</a>
</li>
<li>GetQuantizationParams()
: <a class="el" href="class_inference_model.xhtml#a1a09727b3f781272e702516fffb7d97f">InferenceModel&lt; IParser, TDataType &gt;</a>
</li>
<li>GetQuantizationScale()
: <a class="el" href="classarmnn_1_1_tensor_info.xhtml#a047ca888c43bd7fb5702853bf72410d0">TensorInfo</a>
</li>
<li>GetQuantizationScales()
: <a class="el" href="classarmnn_1_1_tensor_info.xhtml#a8bc11f1fa23ef42532f9fdd04d355270">TensorInfo</a>
</li>
<li>GetQuantizationScheme()
: <a class="el" href="classarmnn_quantizer_1_1_command_line_processor.xhtml#a65f6aca5479ebf0814123ff8f1a528e3">CommandLineProcessor</a>
</li>
<li>GetRange()
: <a class="el" href="classarmnn_1_1_range_tracker.xhtml#a507bae23f59e94b4161886ebe663cdf4">RangeTracker</a>
</li>
<li>GetReadableBuffer()
: <a class="el" href="classarmnn_1_1profiling_1_1_buffer_manager.xhtml#abce8709dc1b666a26f427ba7ff08b737">BufferManager</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_buffer_manager.xhtml#acc2e97eddda6324261ba202634cc8ef8">IBufferManager</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_buffer_manager.xhtml#abce8709dc1b666a26f427ba7ff08b737">MockBufferManager</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_stream_counter_buffer.xhtml#abce8709dc1b666a26f427ba7ff08b737">MockStreamCounterBuffer</a>
</li>
<li>GetReadableData()
: <a class="el" href="classarmnn_1_1profiling_1_1_i_read_only_packet_buffer.xhtml#a43a27876dafdccf067777f84a97e6664">IReadOnlyPacketBuffer</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_packet_buffer.xhtml#a9a7614d7b084e33f72045ed161eb95bc">MockPacketBuffer</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_packet_buffer.xhtml#a58557b0c5413d3c20ddd80e31eaccaed">PacketBuffer</a>
</li>
<li>GetReadableSize()
: <a class="el" href="classarmnn_1_1profiling_1_1_mock_stream_counter_buffer.xhtml#ab158e7cd554e5f65e77bad0c4d448474">MockStreamCounterBuffer</a>
</li>
<li>GetReadSize()
: <a class="el" href="classarmnn_1_1profiling_1_1_mock_stream_counter_buffer.xhtml#a7233f6a0ab843a226dc07c72edd76168">MockStreamCounterBuffer</a>
</li>
<li>GetRecurrentToCellWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ae5bfdd423b16f990c1713ef9f91f947b">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a63e34dd3e41262e750f7a54de8ca81d1">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#ae5bfdd423b16f990c1713ef9f91f947b">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetRecurrentToForgetWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#a534af7e4f3a6d50a6dab05abc245133d">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a8ad69d6d46b4b12f47fbe6032c9b7a18">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#a534af7e4f3a6d50a6dab05abc245133d">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetRecurrentToInputWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#ad159f9edbddeeb6cf6ff0ba042481ba8">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#ad2e53e6428416a65ae4ba566207cc6bf">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#ad159f9edbddeeb6cf6ff0ba042481ba8">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetRecurrentToOutputWeights()
: <a class="el" href="structarmnn_1_1_lstm_input_params_info.xhtml#afe4d25acd31b98dee6f6b28d4d756071">LstmInputParamsInfo</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params.xhtml#a94645f29b99800c2e57acc4832519a53">QuantizedLstmInputParams</a>
, <a class="el" href="structarmnn_1_1_quantized_lstm_input_params_info.xhtml#afe4d25acd31b98dee6f6b28d4d756071">QuantizedLstmInputParamsInfo</a>
</li>
<li>GetRelatedLayerNames()
: <a class="el" href="classarmnn_1_1_layer.xhtml#a5e5520194ea4042fe07b0bf53c28f634">Layer</a>
</li>
<li>GetScale()
: <a class="el" href="classarmnn_1_1_q_symm8_per_axis_decoder.xhtml#a0a9f4904bad49e255fc7ecb69499ac9b">QSymm8PerAxisDecoder</a>
, <a class="el" href="classarmnn_1_1_q_symm8_per_axis_encoder.xhtml#a0a9f4904bad49e255fc7ecb69499ac9b">QSymm8PerAxisEncoder</a>
, <a class="el" href="classarmnn_1_1_scaled_int32_per_axis_decoder.xhtml#a0a9f4904bad49e255fc7ecb69499ac9b">ScaledInt32PerAxisDecoder</a>
</li>
<li>GetSendCounterPacket()
: <a class="el" href="classarmnn_1_1profiling_1_1_i_profiling_service.xhtml#af39c79e2dbf841cf43cfcf1e5f2a30cb">IProfilingService</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_profiling_service.xhtml#a28c5bcb3adea9e2476255acf1fc0647e">MockProfilingService</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#a28c5bcb3adea9e2476255acf1fc0647e">ProfilingService</a>
</li>
<li>GetSendTimelinePacket()
: <a class="el" href="classarmnn_1_1profiling_1_1_backend_profiling.xhtml#a24eb027ca494ee70c27e6322494325d8">BackendProfiling</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_backend_profiling.xhtml#af3bab90857bb0cd2363f654cdd257e34">IBackendProfiling</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_profiling_service.xhtml#a33877b12b685ae752dc1227fe14d9441">IProfilingService</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_profiling_service.xhtml#a81f774c9319ff5d5b5bf4875e816d989">MockProfilingService</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#a71c4eb6e11d491f84df504cf7f5a6337">ProfilingService</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_timeline_packet_writer_factory.xhtml#a169a8836d1862bc9ed922e124e905302">TimelinePacketWriterFactory</a>
</li>
<li>GetSerializedLayers()
: <a class="el" href="classarmnn_serializer_1_1_serializer_strategy.xhtml#a05e611493d1b74287eed5e3af7594538">SerializerStrategy</a>
</li>
<li>GetShape()
: <a class="el" href="classarmnn_1_1_base_tensor.xhtml#a8b5d0f8a24e9d9238f412260a552acf8">BaseTensor&lt; MemoryType &gt;</a>
, <a class="el" href="classarmnn_1_1_cl_sub_tensor_handle.xhtml#a8e8d2fbabcac19f9e12779080ddff54e">ClSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cl_tensor_handle.xhtml#a8e8d2fbabcac19f9e12779080ddff54e">ClTensorHandle</a>
, <a class="el" href="classarmnn_1_1_const_cpu_tensor_handle.xhtml#a8e8d2fbabcac19f9e12779080ddff54e">ConstCpuTensorHandle</a>
, <a class="el" href="classarmnn_1_1_i_tensor_handle.xhtml#affd5aae75cad90f472f96cfd25a13f29">ITensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_sub_tensor_handle.xhtml#a8e8d2fbabcac19f9e12779080ddff54e">NeonSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle.xhtml#a8e8d2fbabcac19f9e12779080ddff54e">NeonTensorHandle</a>
, <a class="el" href="classarmnn_1_1_ref_tensor_handle.xhtml#a8e8d2fbabcac19f9e12779080ddff54e">RefTensorHandle</a>
, <a class="el" href="classarmnn_1_1_tensor_info.xhtml#a8b5d0f8a24e9d9238f412260a552acf8">TensorInfo</a>
, <a class="el" href="classsdb_1_1_sample_tensor_handle.xhtml#a62be7a258e366d990a80a5242bc419cd">SampleTensorHandle</a>
</li>
<li>GetShapeInferenceMethod()
: <a class="el" href="classarmnn_1_1_layer.xhtml#a3560e0733f829e5194887d014a133144">Layer</a>
</li>
<li>GetSharedObjects()
: <a class="el" href="classarmnn_1_1_dynamic_backend_utils.xhtml#a48e1fb944c3ef4086365aedcadb4c311">DynamicBackendUtils</a>
</li>
<li>GetSize()
: <a class="el" href="classarmnn_1_1_permutation_vector.xhtml#a490ec6b59006d1fe1ec2ea30e69fb97c">PermutationVector</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_i_read_only_packet_buffer.xhtml#a60eae84cd5c7f05de36f64c1fdc0001c">IReadOnlyPacketBuffer</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_packet_buffer.xhtml#ab03338cef0f6b48d46effb2c2a64407d">MockPacketBuffer</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_packet_buffer.xhtml#ab03338cef0f6b48d46effb2c2a64407d">PacketBuffer</a>
</li>
<li>GetSizeInBytes()
: <a class="el" href="class_inference_test_image.xhtml#acd495024dcb50f4081d5c05a1e66d210">InferenceTestImage</a>
</li>
<li>GetSlotIndex()
: <a class="el" href="classarmnn_1_1_input_slot.xhtml#a3f1b6ae1550775ac9eef0cac0ea4266f">InputSlot</a>
</li>
<li>GetStartForAxis()
: <a class="el" href="structarmnn_1_1_strided_slice_descriptor.xhtml#add849c1188ee7ff60774755b746aa526">StridedSliceDescriptor</a>
</li>
<li>GetStaticId()
: <a class="el" href="classarmnn_1_1profiling_1_1_profiling_service.xhtml#a881aa03d7b35e6d0acd783f2aaa22ac9">ProfilingService</a>
</li>
<li>GetStopForAxis()
: <a class="el" href="structarmnn_1_1_strided_slice_descriptor.xhtml#afc4731b55776f71af1e14c799c6e6e2c">StridedSliceDescriptor</a>
</li>
<li>GetStream()
: <a class="el" href="classarmnn_1_1_dot_base.xhtml#a99131c6a3da28cceeeb67d732ff39d7d">DotBase</a>
</li>
<li>GetStrides()
: <a class="el" href="classarmnn_1_1_cl_sub_tensor_handle.xhtml#a967f220393d291f71dabce0c06bf9b6c">ClSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cl_tensor_handle.xhtml#a967f220393d291f71dabce0c06bf9b6c">ClTensorHandle</a>
, <a class="el" href="classarmnn_1_1_const_cpu_tensor_handle.xhtml#a967f220393d291f71dabce0c06bf9b6c">ConstCpuTensorHandle</a>
, <a class="el" href="classarmnn_1_1_i_tensor_handle.xhtml#a30c3e09ce55369b66469443a4ca5ef03">ITensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_sub_tensor_handle.xhtml#a967f220393d291f71dabce0c06bf9b6c">NeonSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle.xhtml#a967f220393d291f71dabce0c06bf9b6c">NeonTensorHandle</a>
, <a class="el" href="classarmnn_1_1_ref_tensor_handle.xhtml#a967f220393d291f71dabce0c06bf9b6c">RefTensorHandle</a>
, <a class="el" href="classsdb_1_1_sample_tensor_handle.xhtml#abaed8901397a5d1238b88d0c1dec8d5b">SampleTensorHandle</a>
</li>
<li>GetSubgraphCount()
: <a class="el" href="classarmnn_tf_lite_parser_1_1_i_tf_lite_parser.xhtml#a1b7aed8466cc5792966d271a65285d0e">ITfLiteParser</a>
, <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#a1b7aed8466cc5792966d271a65285d0e">TfLiteParserImpl</a>
</li>
<li>GetSubgraphInputs()
: <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#a20518e431cb501b172371b850e6c3ec7">TfLiteParserImpl</a>
</li>
<li>GetSubgraphInputTensorNames()
: <a class="el" href="classarmnn_tf_lite_parser_1_1_i_tf_lite_parser.xhtml#afe1ea028d8fcb9942c204d4415ff3319">ITfLiteParser</a>
, <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#afe1ea028d8fcb9942c204d4415ff3319">TfLiteParserImpl</a>
</li>
<li>GetSubgraphOutputs()
: <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#a1bd7b663eb19e2355b6aa5c36232d6fc">TfLiteParserImpl</a>
</li>
<li>GetSubgraphOutputTensorNames()
: <a class="el" href="classarmnn_tf_lite_parser_1_1_i_tf_lite_parser.xhtml#a949070abe70fabe18cc1eb29d5853f47">ITfLiteParser</a>
, <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#a949070abe70fabe18cc1eb29d5853f47">TfLiteParserImpl</a>
</li>
<li>GetSubstitutions()
: <a class="el" href="classarmnn_1_1_optimization_views.xhtml#af57a6b0e88fd56f8dba7c5cb23871283">OptimizationViews</a>
</li>
<li>GetSupportedBackends()
: <a class="el" href="classarmnn_1_1_device_spec.xhtml#a89d4c29e22db837f787e2171b8a71892">DeviceSpec</a>
, <a class="el" href="classarmnn_1_1_i_device_spec.xhtml#a9e5847ef27016a08de6751040a17cbaa">IDeviceSpec</a>
</li>
<li>GetTail()
: <a class="el" href="classarmnn_1_1profiling_1_1_connection.xhtml#aed3bd92b869d1566f705d456348f6229">Connection</a>
</li>
<li>GetTensor()
: <a class="el" href="classarmnn_1_1_cl_sub_tensor_handle.xhtml#acc4bae0ff435653e44b6e6eed89c08fa">ClSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cl_tensor_handle.xhtml#ab9c5e9d2f0654981bdc8fff0ff902d51">ClTensorHandle</a>
, <a class="el" href="classarmnn_1_1_cpu_tensor_handle.xhtml#ac1e740b316dcd4f95d2031bc811f8e77">CpuTensorHandle</a>
, <a class="el" href="classarmnn_1_1_i_acl_tensor_handle.xhtml#a326e78519af5570a5921c6aa39968a20">IAclTensorHandle</a>
, <a class="el" href="classarmnn_1_1_i_cl_tensor_handle.xhtml#a11512b9ce51a09d07d34334eb4caa5b5">IClTensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_sub_tensor_handle.xhtml#ab18b27bb871248e2ba3120eb557dcfe4">NeonSubTensorHandle</a>
, <a class="el" href="classarmnn_1_1_neon_tensor_handle.xhtml#ab18b27bb871248e2ba3120eb557dcfe4">NeonTensorHandle</a>
</li>
<li>GetTensorHandleFactoryId()
: <a class="el" href="classarmnn_1_1_output_slot.xhtml#af303cf872a3f95e29992e45224e4cf8e">OutputSlot</a>
</li>
<li>GetTensorInfo()
: <a class="el" href="classarmnn_1_1_const_cpu_tensor_handle.xhtml#a66e8f43a5b42b500871ed96e15419567">ConstCpuTensorHandle</a>
, <a class="el" href="classarmnn_1_1_i_output_slot.xhtml#a9943775a364fc4ab53b85ac88f311886">IOutputSlot</a>
, <a class="el" href="classarmnn_1_1_output_handler.xhtml#a66e8f43a5b42b500871ed96e15419567">OutputHandler</a>
, <a class="el" href="classarmnn_1_1_output_slot.xhtml#ada2ad7d1caeeb4ef6195c8925fad6a65">OutputSlot</a>
, <a class="el" href="classarmnn_1_1_ref_tensor_handle.xhtml#a66e8f43a5b42b500871ed96e15419567">RefTensorHandle</a>
, <a class="el" href="classarmnn_quantizer_1_1_input_layer_strategy.xhtml#a92c60f374eb3e8a6cdbce39cb57c1db4">InputLayerStrategy</a>
, <a class="el" href="classarmnn_quantizer_1_1_input_layer_visitor.xhtml#a92c60f374eb3e8a6cdbce39cb57c1db4">InputLayerVisitor</a>
, <a class="el" href="classsdb_1_1_sample_tensor_handle.xhtml#a1292fa227a4ab978d2b932e709d2eb3d">SampleTensorHandle</a>
</li>
<li>GetTestCase()
: <a class="el" href="classarmnn_1_1test_1_1_classifier_test_case_provider.xhtml#ab5ab4ef07d28ff282c5e3109deed810e">ClassifierTestCaseProvider&lt; TDatabase, InferenceModel &gt;</a>
, <a class="el" href="classarmnn_1_1test_1_1_i_inference_test_case_provider.xhtml#a04734602cd9aa5125174458128b3b418">IInferenceTestCaseProvider</a>
, <a class="el" href="class_yolo_test_case_provider.xhtml#a61a75d35706bb8dd986431ae6aec3440">YoloTestCaseProvider&lt; Model &gt;</a>
</li>
<li>GetTestCaseData()
: <a class="el" href="class_caffe_preprocessor.xhtml#a21e0733780e895c0baf0072c51cbfd23">CaffePreprocessor</a>
, <a class="el" href="class_cifar10_database.xhtml#ae1e69b726d674896305197f6a439201e">Cifar10Database</a>
, <a class="el" href="class_image_preprocessor.xhtml#afc05b2b7e914f9737812e66f5583b04c">ImagePreprocessor&lt; TDataType &gt;</a>
, <a class="el" href="class_mnist_database.xhtml#a4808453ec85548b752bcc6d4c1bc90b2">MnistDatabase</a>
, <a class="el" href="class_yolo_database.xhtml#a4b1e13e320d157200130d2161a8d2070">YoloDatabase</a>
</li>
<li>GetTestCaseId()
: <a class="el" href="classarmnn_1_1test_1_1_inference_model_test_case.xhtml#a4ab19ef735b92c4d4f688f0659e5565e">InferenceModelTestCase&lt; TModel &gt;</a>
</li>
<li>GetTfInputNodes()
: <a class="el" href="structarmnn_tf_parser_1_1_i_tf_parser_1_1_tf_parser_impl.xhtml#a9e7a394f59e8d223a79e3db798803c1c">ITfParser::TfParserImpl</a>
</li>
<li>GetThreadId()
: <a class="el" href="classarmnn_1_1profiling_1_1_event_obj.xhtml#abf77eb3b423813ee588b43f3aec13ace">EventObj</a>
</li>
<li>GetTimelineDecoder()
: <a class="el" href="classarmnn_1_1gatordmock_1_1_gatord_mock_service.xhtml#ae52624d07e7ca9bd28070467217caba9">GatordMockService</a>
</li>
<li>GetTimelineDirectoryCaptureCommandHandler()
: <a class="el" href="classarmnn_1_1gatordmock_1_1_gatord_mock_service.xhtml#a450b29f889e2693f7f7a88cc8af12b6e">GatordMockService</a>
</li>
<li>GetTimelineModel()
: <a class="el" href="classarmnn_1_1profiling_1_1_test_timeline_packet_handler.xhtml#a0df1f236af1d810c22098adbfc00a1a3">TestTimelinePacketHandler</a>
</li>
<li>GetTimelineUtils()
: <a class="el" href="classarmnn_1_1profiling_1_1_timeline_utility_methods.xhtml#a0e5c863245b8d7dc5e874c0c66eebae1">TimelineUtilityMethods</a>
</li>
<li>GetTimeStamp()
: <a class="el" href="classarmnn_1_1profiling_1_1_event_obj.xhtml#a0e695954838b179b737ed355fb43e44b">EventObj</a>
</li>
<li>GetType()
: <a class="el" href="classarmnn_1_1_i_connectable_layer.xhtml#adceb04ae84c524e4d01881e3754a4d59">IConnectableLayer</a>
, <a class="el" href="structarmnn_1_1_json_child_object.xhtml#ab2362f3a4cf7169947bb0d8e44aa94ad">JsonChildObject</a>
, <a class="el" href="classarmnn_1_1_layer.xhtml#ad8e15c530c929ab823d89ae9fd2d3f11">Layer</a>
, <a class="el" href="structarmnn_1_1timelinedecoder_1_1_j_s_o_n_timeline_decoder_1_1_j_s_o_n_entity.xhtml#ae69b41a16636c29011702a68774e43ca">JSONTimelineDecoder::JSONEntity</a>
</li>
<li>GetUdsNamespace()
: <a class="el" href="classarmnn_1_1gatordmock_1_1_command_line_processor.xhtml#a40e03b7685895e3d6fc5e45b0889f3f5">CommandLineProcessor</a>
</li>
<li>GetUntouchedSubgraphs()
: <a class="el" href="classarmnn_1_1_optimization_views.xhtml#a3b4dae097ce086ce94079d09cce18703">OptimizationViews</a>
</li>
<li>GetValue()
: <a class="el" href="structarmnn_1_1_backend_options_1_1_backend_option.xhtml#a9dd404db54065d13616225910db3dec4">BackendOptions::BackendOption</a>
</li>
<li>GetVersion()
: <a class="el" href="classarmnn_caffe_parser_1_1_i_caffe_parser_1_1_caffe_parser_impl.xhtml#aa09a8bb02eed50715082d8b7fccd2f8d">ICaffeParser::CaffeParserImpl</a>
, <a class="el" href="classarmnn_delegate_1_1_delegate.xhtml#a89e146682a5ef74a29b957b70a4cbd4e">Delegate</a>
, <a class="el" href="classarmnn_onnx_parser_1_1_onnx_parser_impl.xhtml#aa09a8bb02eed50715082d8b7fccd2f8d">OnnxParserImpl</a>
, <a class="el" href="classarmnn_tf_lite_parser_1_1_tf_lite_parser_impl.xhtml#aa09a8bb02eed50715082d8b7fccd2f8d">TfLiteParserImpl</a>
, <a class="el" href="structarmnn_tf_parser_1_1_i_tf_parser_1_1_tf_parser_impl.xhtml#aa09a8bb02eed50715082d8b7fccd2f8d">ITfParser::TfParserImpl</a>
</li>
<li>GetVersionTable()
: <a class="el" href="classarmnn_serializer_1_1_serializer_strategy.xhtml#a7594572286ad32d17d57eaa4cdde53f9">SerializerStrategy</a>
</li>
<li>GetViewOrigin()
: <a class="el" href="structarmnn_1_1_origins_descriptor.xhtml#ab78e6fe963508c1ac5c00d04bb3361a3">OriginsDescriptor</a>
, <a class="el" href="structarmnn_1_1_views_descriptor.xhtml#ab78e6fe963508c1ac5c00d04bb3361a3">ViewsDescriptor</a>
</li>
<li>GetViewSizes()
: <a class="el" href="structarmnn_1_1_views_descriptor.xhtml#a3c1ab47a0a319413b3a4b5757ed5b80b">ViewsDescriptor</a>
</li>
<li>GetWidth()
: <a class="el" href="class_inference_test_image.xhtml#a4ec823e49ce46950b3d4cee1efff050b">InferenceTestImage</a>
</li>
<li>GetWidthIndex()
: <a class="el" href="classarmnn_utils_1_1_data_layout_indexed.xhtml#a414e6f95548e6f7a01d5028b55ad3941">DataLayoutIndexed</a>
</li>
<li>GetWritableData()
: <a class="el" href="classarmnn_1_1profiling_1_1_i_packet_buffer.xhtml#a0dd0b11d60c79e8c89ed1b851a45030d">IPacketBuffer</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_mock_packet_buffer.xhtml#afedc435235efffdfab1fb0670f52d7c1">MockPacketBuffer</a>
, <a class="el" href="classarmnn_1_1profiling_1_1_packet_buffer.xhtml#a229b663a5b1c2dd9b97ded0513771fc9">PacketBuffer</a>
</li>
<li>GetWrittenDataSize()
: <a class="el" href="classarmnn_1_1profiling_1_1_mock_profiling_connection.xhtml#adc32d741a992ea6f9af3f9e65aebf34d">MockProfilingConnection</a>
</li>
<li>Graph()
: <a class="el" href="classarmnn_1_1_graph.xhtml#ab3790d678e488ba10868a9a0b0c324a6">Graph</a>
, <a class="el" href="classarmnn_1_1_layer.xhtml#afab89afd724f1b07b1aaad6bdc61c47a">Layer</a>
</li>
<li>GraphObservable()
: <a class="el" href="classarmnn_1_1_graph_observable.xhtml#a6378a5e7096305c780b445b9af484d55">GraphObservable&lt; ObservedType &gt;</a>
</li>
<li>GraphPtr
: <a class="el" href="classarmnn_onnx_parser_1_1_onnx_parser_impl.xhtml#ac81510b21cb2b5719cce34474ad01675">OnnxParserImpl</a>
</li>
<li>GraphUniquePtr
: <a class="el" href="classarmnn_1_1_i_backend_internal.xhtml#a5d9d4ef183078690e3306320dc74b945">IBackendInternal</a>
</li>
<li>GreaterLayerBuilder()
: <a class="el" href="structarmnn_serializer_1_1_greater_layer_builder.xhtml#a5f30d8fc40836c9f1b302fea3d172b77">GreaterLayerBuilder</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 Fri Mar 19 2021 15:26:16 for ArmNN by
    <a href="http://www.doxygen.org/index.html">
    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
  </ul>
</div>
</body>
</html>