aboutsummaryrefslogtreecommitdiff
path: root/21.02/globals_c.xhtml
blob: fd9e514396b8da9d79bcab29bf6b779cdbd19f5e (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
<!-- 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: File 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('globals_c.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 file members with links to the files they belong to:</div>

<h3><a id="index_c"></a>- c -</h3><ul>
<li>CAFFE_PARSER_MAJOR_VERSION
: <a class="el" href="include_2armnn_caffe_parser_2_version_8hpp.xhtml#a5612e6630e9949b2f47f6e28531f31c3">Version.hpp</a>
</li>
<li>CAFFE_PARSER_MINOR_VERSION
: <a class="el" href="include_2armnn_caffe_parser_2_version_8hpp.xhtml#a591004cc81b4b408feb4d5d8c12dd816">Version.hpp</a>
</li>
<li>CAFFE_PARSER_PATCH_VERSION
: <a class="el" href="include_2armnn_caffe_parser_2_version_8hpp.xhtml#a955418536d40e3fa722a6b95f2767db8">Version.hpp</a>
</li>
<li>CAFFE_PARSER_VERSION
: <a class="el" href="include_2armnn_caffe_parser_2_version_8hpp.xhtml#af3d53d50a9ddd493c4b40e44a82e2b44">Version.hpp</a>
</li>
<li>CalcL2Norm()
: <a class="el" href="_l2_normalization_8cpp.xhtml#a0803d66b952b025bab27f6204aabae55">L2Normalization.cpp</a>
</li>
<li>CaptureDataReadThreadImpl()
: <a class="el" href="_profiling_tests_8cpp.xhtml#ad95829dbe631cef66652fb42784d9d23">ProfilingTests.cpp</a>
</li>
<li>CaptureDataWriteThreadImpl()
: <a class="el" href="_profiling_tests_8cpp.xhtml#ab7f1426bff6283557173d80c0d193b8b">ProfilingTests.cpp</a>
</li>
<li>CHECK_BUFFER
: <a class="el" href="_tf_lite_parser_8cpp.xhtml#a7c88d54e3f895030c70330a4c9d76a7a">TfLiteParser.cpp</a>
</li>
<li>CHECK_BUFFER_SIZE
: <a class="el" href="_tf_lite_parser_8cpp.xhtml#ae6440b8ea95cf981cd7bbffa52c22fe1">TfLiteParser.cpp</a>
</li>
<li>CHECK_CONST_TENSOR_PTR
: <a class="el" href="_deserializer_8cpp.xhtml#a637ba180b64a3cd1a4f83d048a030772">Deserializer.cpp</a>
</li>
<li>CHECK_CONST_TENSOR_SIZE
: <a class="el" href="_deserializer_8cpp.xhtml#aa6fd9c6c98bdd08620d75cac3a2e17e6">Deserializer.cpp</a>
</li>
<li>CHECK_DATA_FORMAT
: <a class="el" href="_tf_parser_8cpp.xhtml#a3fb047570644cae325aa88d3cd7bb96e">TfParser.cpp</a>
</li>
<li>CHECK_GRAPH
: <a class="el" href="_deserializer_8cpp.xhtml#ab90eef134463f7b44cd4c9cfb2529825">Deserializer.cpp</a>
</li>
<li>CHECK_LAYERS
: <a class="el" href="_deserializer_8cpp.xhtml#aa6798881c467e8e1a1906303f6d9e26d">Deserializer.cpp</a>
</li>
<li>CHECK_LOCATION
: <a class="el" href="_exceptions_8hpp.xhtml#aa3be76aec4ce713822a5ea1ecbb7bc61">Exceptions.hpp</a>
</li>
<li>CHECK_MODEL
: <a class="el" href="_tf_lite_parser_8cpp.xhtml#afbe702264a4e175da37c4941c0894bdb">TfLiteParser.cpp</a>
</li>
<li>CHECK_OK
: <a class="el" href="_tf_lite_yolo_v3_big-_armnn_8cpp.xhtml#a7013f680e1a8d40e50dc330d57d0ec9a">TfLiteYoloV3Big-Armnn.cpp</a>
</li>
<li>CHECK_PADDING_TYPE
: <a class="el" href="_tf_parser_8cpp.xhtml#aab838eb7734e531bb5be6f6dece673bf">TfParser.cpp</a>
</li>
<li>CHECK_SUBGRAPH
: <a class="el" href="_tf_lite_parser_8cpp.xhtml#a315ccf3e3cb207b1fbd10a2ad3e6333a">TfLiteParser.cpp</a>
</li>
<li>CHECK_SUPPORTED_FUSED_ACTIVATION
: <a class="el" href="_tf_lite_parser_8cpp.xhtml#ac578671d13bca92fee7f492110247cbf">TfLiteParser.cpp</a>
</li>
<li>CHECK_TENSOR
: <a class="el" href="_tf_lite_parser_8cpp.xhtml#aa1664dc13adbc85ac12fb584b76bfdae">TfLiteParser.cpp</a>
</li>
<li>CHECK_TENSOR_PTR
: <a class="el" href="_deserializer_8cpp.xhtml#ae38d96fe05581ea025713b3e781c5a43">Deserializer.cpp</a>
, <a class="el" href="_tf_lite_parser_8cpp.xhtml#ae38d96fe05581ea025713b3e781c5a43">TfLiteParser.cpp</a>
</li>
<li>CHECK_VALID_DATATYPE
: <a class="el" href="_onnx_parser_8cpp.xhtml#a71cae957feb9162183d6f62fd549ffe1">OnnxParser.cpp</a>
</li>
<li>CHECK_VALID_SIZE
: <a class="el" href="_verification_helpers_8hpp.xhtml#a479b2821a7a2cbb8fa8eb7f60a47065d">VerificationHelpers.hpp</a>
</li>
<li>CheckAccuracy()
: <a class="el" href="_tf_lite_yolo_v3_big-_armnn_8cpp.xhtml#acde339995fb755d7ac7341ffa28f32b4">TfLiteYoloV3Big-Armnn.cpp</a>
</li>
<li>CheckClTuningParameter()
: <a class="el" href="_execute_network_params_8cpp.xhtml#a1271e91c17f407e0f4912edffcd44942">ExecuteNetworkParams.cpp</a>
</li>
<li>CheckDynamicGuid()
: <a class="el" href="_profiling_guid_test_8cpp.xhtml#a2d6b6f951fa2ee4f4a8fcc48b236c698">ProfilingGuidTest.cpp</a>
</li>
<li>CHECKED_INT32
: <a class="el" href="_verification_helpers_8hpp.xhtml#aa693ef8620e450b6362938828002f2a6">VerificationHelpers.hpp</a>
</li>
<li>CHECKED_NON_NEGATIVE
: <a class="el" href="_verification_helpers_8hpp.xhtml#aaef93dc9a69f51b59f3cdd0ff0165927">VerificationHelpers.hpp</a>
</li>
<li>CheckLayers()
: <a class="el" href="_optimization_views_tests_8cpp.xhtml#a6c81e7ec0af6eeda194d2bd8cd40eccf">OptimizationViewsTests.cpp</a>
</li>
<li>CheckModelFormat()
: <a class="el" href="_execute_network_params_8cpp.xhtml#a4da63fa4fda7dbcd1f71f813fbd527eb">ExecuteNetworkParams.cpp</a>
</li>
<li>CheckNumberOfInputSlot()
: <a class="el" href="_graph_utils_8cpp.xhtml#a4c04337db4d5f380219a005657a8223b">GraphUtils.cpp</a>
, <a class="el" href="_graph_utils_8hpp.xhtml#a4c04337db4d5f380219a005657a8223b">GraphUtils.hpp</a>
</li>
<li>CheckNumberOfOutputSlot()
: <a class="el" href="_graph_utils_8cpp.xhtml#aada2e27f100807f5786eecb03390ba58">GraphUtils.cpp</a>
, <a class="el" href="_graph_utils_8hpp.xhtml#aada2e27f100807f5786eecb03390ba58">GraphUtils.hpp</a>
</li>
<li>CheckOption()
: <a class="el" href="_execute_network_program_options_8cpp.xhtml#a92f95e137ba2edcad2985993626afe4d">ExecuteNetworkProgramOptions.cpp</a>
</li>
<li>CheckOptionDependencies()
: <a class="el" href="_execute_network_program_options_8cpp.xhtml#a06da09814964b4b241ca4420e98de8f3">ExecuteNetworkProgramOptions.cpp</a>
</li>
<li>CheckOptionDependency()
: <a class="el" href="_execute_network_program_options_8cpp.xhtml#aae003ac0bcd37e3d9d7b4998e4faff5d">ExecuteNetworkProgramOptions.cpp</a>
</li>
<li>CheckOrder()
: <a class="el" href="_graph_utils_8cpp.xhtml#a21d963c71be62057ed99b5007e7bbbfd">GraphUtils.cpp</a>
, <a class="el" href="_graph_utils_8hpp.xhtml#a21d963c71be62057ed99b5007e7bbbfd">GraphUtils.hpp</a>
</li>
<li>CheckRelatedLayers()
: <a class="el" href="_test_utils_8hpp.xhtml#a5feebf8a18dcfe73ccc0c97c82fcb032">TestUtils.hpp</a>
</li>
<li>CheckRequiredOptions()
: <a class="el" href="_cxxopts_utils_8hpp.xhtml#a54dc0f90125fe080b8d0c503e542ca77">CxxoptsUtils.hpp</a>
, <a class="el" href="_execute_network_program_options_8cpp.xhtml#a8d5885121779cccab1967e42a461dd89">ExecuteNetworkProgramOptions.cpp</a>
</li>
<li>CheckSequence()
: <a class="el" href="_test_utils_8hpp.xhtml#a0eedb278f57355b47fa983450d4e378c">TestUtils.hpp</a>
</li>
<li>CheckStaticGuid()
: <a class="el" href="_profiling_guid_test_8cpp.xhtml#a9a903afe841d40eb02a7981501b6dbce">ProfilingGuidTest.cpp</a>
</li>
<li>CheckTensor()
: <a class="el" href="_tensor_test_8cpp.xhtml#ad80e179ec400af9d2547f172f3ca05f3">TensorTest.cpp</a>
</li>
<li>CheckTimelineDirectory()
: <a class="el" href="_gatord_mock_tests_8cpp.xhtml#aa9e55a43e26d350d55ef8ed99cd0b44e">GatordMockTests.cpp</a>
</li>
<li>CheckTimelinePackets()
: <a class="el" href="_gatord_mock_tests_8cpp.xhtml#a176f89f0b782dec05cef139f5b91101d">GatordMockTests.cpp</a>
</li>
<li>ClContextControlFixture
: <a class="el" href="_cl_context_control_fixture_8hpp.xhtml#ab41dc82879148bd7da5e19a2df965988">ClContextControlFixture.hpp</a>
</li>
<li>Clip()
: <a class="el" href="_lstm_utils_8cpp.xhtml#ad5b8e4843a3b303d5b56c0a70dbfd1bf">LstmUtils.cpp</a>
, <a class="el" href="_lstm_utils_8hpp.xhtml#ad5b8e4843a3b303d5b56c0a70dbfd1bf">LstmUtils.hpp</a>
</li>
<li>ClipVector()
: <a class="el" href="_lstm_utils_8cpp.xhtml#a117781e8e9b7321722bbdd8ff74b484a">LstmUtils.cpp</a>
, <a class="el" href="_lstm_utils_8hpp.xhtml#a117781e8e9b7321722bbdd8ff74b484a">LstmUtils.hpp</a>
</li>
<li>CloseInvalidHandleTestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#aec7460101cf2fd4f798d287654783143">DynamicBackendTests.hpp</a>
</li>
<li>ClProfilingContextControlFixture
: <a class="el" href="_cl_context_control_fixture_8hpp.xhtml#ab4650f31dd8aac968df44faa047da4fc">ClContextControlFixture.hpp</a>
</li>
<li>Compare()
: <a class="el" href="_common_test_utils_8hpp.xhtml#ae828f1d70436f4ad1e74a5c4ecf96929">CommonTestUtils.hpp</a>
</li>
<li>CompareActivationInt16Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a67a7fa8c32816472fde1b4042795f789">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#af570c70b327791541f5bbf2c13e99e3f">ActivationTestImpl.hpp</a>
</li>
<li>CompareActivationTest()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a38a8471de26d70e7bcc13861948b009a">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#a3fe7773804a82637c66799f5f106e31e">ActivationTestImpl.hpp</a>
</li>
<li>CompareActivationTestImpl()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a0e54b6eef4277787b60869d72ed1015f">ActivationTestImpl.cpp</a>
</li>
<li>CompareActivationUint8Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a98bbb7ff1347e911e6505cc5345b9b17">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#aba70ea96ebdef661aeb5cc77c631312c">ActivationTestImpl.hpp</a>
</li>
<li>CompareAdditionTest()
: <a class="el" href="_addition_test_impl_8cpp.xhtml#ac1b5a61a67e59c98458071a03c53d77a">AdditionTestImpl.cpp</a>
, <a class="el" href="_addition_test_impl_8hpp.xhtml#ab84db14e0ba47387c09067873daefca2">AdditionTestImpl.hpp</a>
</li>
<li>CompareBatchNormTest()
: <a class="el" href="_batch_normalization_test_impl_8cpp.xhtml#a89ebdd47ffb99633bb054124fe26c973">BatchNormalizationTestImpl.cpp</a>
, <a class="el" href="_batch_normalization_test_impl_8hpp.xhtml#a4f9bc9429cb69d93753208a42d25b637">BatchNormalizationTestImpl.hpp</a>
</li>
<li>CompareBoundedReLuTest()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#afabbbadee3467a572cac32e1253b073b">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#afabbbadee3467a572cac32e1253b073b">ActivationTestImpl.hpp</a>
</li>
<li>CompareConstTensor()
: <a class="el" href="_serializer_test_utils_8cpp.xhtml#a104f74b01c30ad4a17d765309a9731bd">SerializerTestUtils.cpp</a>
, <a class="el" href="_serializer_test_utils_8hpp.xhtml#a104f74b01c30ad4a17d765309a9731bd">SerializerTestUtils.hpp</a>
</li>
<li>CompareConstTensorData()
: <a class="el" href="_serializer_test_utils_8hpp.xhtml#ac67c744dcc3724ed775868c5b0ba22e3">SerializerTestUtils.hpp</a>
</li>
<li>CompareConvolution2dTest()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a450ab121f9d99c26cfa82084b743ea6f">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a6a885deaaf7b59c13ca6c94dce9e8b36">Conv2dTestImpl.hpp</a>
</li>
<li>CompareConvolution2dTestImpl()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a7c7c49dfc7e8054f4c84929a1b86f4e0">Conv2dTestImpl.cpp</a>
</li>
<li>CompareDepthwiseConvolution2dFloatTest()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a91334b97ca9cf0a8e006653cd9b7ff16">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a91334b97ca9cf0a8e006653cd9b7ff16">Conv2dTestImpl.hpp</a>
</li>
<li>CompareDepthwiseConvolution2dTest()
: <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a121bc9a1c827575e6025192be0926bff">Conv2dTestImpl.hpp</a>
</li>
<li>CompareDepthwiseConvolution2dTestImpl()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a65191a03dfa8bb05dafac2c627dcf8da">Conv2dTestImpl.cpp</a>
</li>
<li>CompareDepthwiseConvolution2dUint8Test()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a5d8371b1081cd00d8271524f6cd512f1">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a5d8371b1081cd00d8271524f6cd512f1">Conv2dTestImpl.hpp</a>
</li>
<li>CompareIClTensorHandleShape()
: <a class="el" href="_cl_create_workload_tests_8cpp.xhtml#a6355f6187af6b3d95c55b85ac79a732e">ClCreateWorkloadTests.cpp</a>
</li>
<li>CompareMultiplicationTest()
: <a class="el" href="_multiplication_test_impl_8cpp.xhtml#a3bdade8177c916a6b9e191e06eb6b728">MultiplicationTestImpl.cpp</a>
, <a class="el" href="_multiplication_test_impl_8hpp.xhtml#ac73d55da3081f8bf640dfb7f354ff1c1">MultiplicationTestImpl.hpp</a>
</li>
<li>CompareNormalizationTest()
: <a class="el" href="_normalization_test_impl_8cpp.xhtml#ae870619402a115dba288c691958aec3c">NormalizationTestImpl.cpp</a>
, <a class="el" href="_normalization_test_impl_8hpp.xhtml#a5ccc4dc332c67af9b59e23f62d3d4ed2">NormalizationTestImpl.hpp</a>
</li>
<li>CompareOutput()
: <a class="el" href="_profiling_test_utils_8cpp.xhtml#a574e305ad5b7b33c40fc025580e30dee">ProfilingTestUtils.cpp</a>
, <a class="el" href="_profiling_test_utils_8hpp.xhtml#a574e305ad5b7b33c40fc025580e30dee">ProfilingTestUtils.hpp</a>
</li>
<li>ComparePooling2dInt16Test()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#a6f431ecff87308a54cc3dde327b368ff">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#a6f431ecff87308a54cc3dde327b368ff">Pooling2dTestImpl.hpp</a>
</li>
<li>ComparePooling2dTest()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#ac2d7d039990aea21189c39d5c721b488">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#ac2d7d039990aea21189c39d5c721b488">Pooling2dTestImpl.hpp</a>
</li>
<li>ComparePooling2dUint8Test()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#a60a9b8d416252310b0fe082cdd8ef95f">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#a60a9b8d416252310b0fe082cdd8ef95f">Pooling2dTestImpl.hpp</a>
</li>
<li>CompareRefTestFunction()
: <a class="el" href="_unit_tests_8hpp.xhtml#a2d8f71b48349370e1d5c0a9b39e3d162">UnitTests.hpp</a>
</li>
<li>CompareRefTestFunctionUsingTensorHandleFactory()
: <a class="el" href="_unit_tests_8hpp.xhtml#a82ab208235e164dca8c02f925e03dc44">UnitTests.hpp</a>
</li>
<li>CompareSoftmaxTest()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#a14632b64d972e828f2846b7c573deab9">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#a68419c202a13d276d49c4f2fb03646c1">SoftmaxTestImpl.hpp</a>
</li>
<li>CompareSoftmaxUint8Test()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#aec92c92c6f7285c4c59a6bbc7d7640d5">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#a41973d9e7e7582b7a3ce78847923d4ef">SoftmaxTestImpl.hpp</a>
</li>
<li>CompareTensors()
: <a class="el" href="_tensor_helpers_8hpp.xhtml#aa5a4b75c5fa1d312b4f3615b2315ff58">TensorHelpers.hpp</a>
</li>
<li>CompareTestResultIfSupported()
: <a class="el" href="_unit_tests_8hpp.xhtml#acbe506e0365feeed352effe52b1e4852">UnitTests.hpp</a>
</li>
<li>Concat1dTest()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a6b08fab8b8a00113a020b10b311f745e">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#ab8220058ed03ce1bfb0778c8cab3de00">ConcatTestImpl.hpp</a>
</li>
<li>Concat1dTestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a6f4024f1c2bb14620c566ede118e0c4b">ConcatTestImpl.cpp</a>
</li>
<li>Concat1dUint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ad3d1e6175529a26ba9698955b7cc0d8e">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a587c146d14bc903593d666ec60b0b49e">ConcatTestImpl.hpp</a>
</li>
<li>Concat2dDim0DiffInputDimsTest()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a37fb7480d960917baf48e8d06f7b2b66">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a05f39b02c140b707b8fb11d0116b250e">ConcatTestImpl.hpp</a>
</li>
<li>Concat2dDim0DiffInputDimsTestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#aa298272bc356453c2814543fd0e2cb5f">ConcatTestImpl.cpp</a>
</li>
<li>Concat2dDim0DiffInputDimsUint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a2e6ce64cef93db0d06b69c4f249fac35">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a8dffa45ae372dbede82bdb741bdfef3c">ConcatTestImpl.hpp</a>
</li>
<li>Concat2dDim0Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ac56cadc167dab69f6fd407d2084ed170">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#ae20568d2c28cd57ac16c48ced2a57790">ConcatTestImpl.hpp</a>
</li>
<li>Concat2dDim0TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a01c3919ddf83b3f3c527cc8433bbddff">ConcatTestImpl.cpp</a>
</li>
<li>Concat2dDim0Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#aa101efe51ecfbd0e64eeba18ffa49f52">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#aff1341e10235f1795762b1d1095ecf4b">ConcatTestImpl.hpp</a>
</li>
<li>Concat2dDim1DiffInputDimsTest()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a5e7803092126fd2862fdd8a2ed90e32a">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a5941eca58661b95a628ed44fef3342c6">ConcatTestImpl.hpp</a>
</li>
<li>Concat2dDim1DiffInputDimsTestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#af1042834da8c73c7d8f46160b0b73b45">ConcatTestImpl.cpp</a>
</li>
<li>Concat2dDim1DiffInputDimsUint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a06290d393dfb595552fc39fd894d964a">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#adfa4be1ded3f85405d00bbb29daf802d">ConcatTestImpl.hpp</a>
</li>
<li>Concat2dDim1Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a6dcfe04840950ab1bcf8f1790aa05502">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#abb422df45da62171791c11fd78eeab65">ConcatTestImpl.hpp</a>
</li>
<li>Concat2dDim1TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ae36ae7043e1761dcfcac538fa29c47d6">ConcatTestImpl.cpp</a>
</li>
<li>Concat2dDim1Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#aa8e37b566b2e5c533fb357eb560e1834">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#ad2234fe7fbfbfdfb5b21102e6b0058ac">ConcatTestImpl.hpp</a>
</li>
<li>Concat2dTestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a11311cacab78cfb69270c6fba87702e7">ConcatTestImpl.cpp</a>
</li>
<li>Concat3dDim0DiffInputDimsTest()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a8260222560c2abfbea0f87869ae22062">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a4e079485ce4f5e002f96e6e4ce1e2662">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dDim0DiffInputDimsTestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#aa97b8ca791f9380d2b678ff2ec923985">ConcatTestImpl.cpp</a>
</li>
<li>Concat3dDim0DiffInputDimsUint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a0035d52bb64343a205f1e2702ed6f52a">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a0d9a73b3d2399435b5a440537aae0fb6">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dDim0Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ae4c24060b33c16216f2faf4a7ef7c7ff">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a553f8e0b4c45a27211a0db518f0a6298">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dDim0TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a6552cacc8f771f0e210949d56193c8d7">ConcatTestImpl.cpp</a>
</li>
<li>Concat3dDim0Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#adbfedf414aac270a5e285d057bfb58b6">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a53d309d9482909084c164413aa68467a">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dDim1DiffInputDimsTest()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#aa6de98235dbd3060d428f6bb77b428ce">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a03078758d0a241f00e2e6e68ed7379a9">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dDim1DiffInputDimsTestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a8ce943ec73def7b13345b918d787d7ca">ConcatTestImpl.cpp</a>
</li>
<li>Concat3dDim1DiffInputDimsUint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a23e070d290a76ea49b3dc802c315f852">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#aa71ef9dd8cce482564352b21fa017551">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dDim1Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a23c0f7c8c79ce30cccbd65f39d692ed6">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#ab459b2dd37ee6e8b571833480c824408">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dDim1TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a4e2a03f3c7e369896b804e963cfca10c">ConcatTestImpl.cpp</a>
</li>
<li>Concat3dDim1Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ad9172e664679c6174261e811c017071d">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a429f624579e1b6ed42b14197fc362310">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dDim2DiffInputDimsTest()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ab8a589490e332bc749972d21b7dff9a4">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#ae6abe39eda8d2acd37f46b42a5e8b16e">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dDim2DiffInputDimsTestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a08b924fe6933a0c221cc0194dffb2b7d">ConcatTestImpl.cpp</a>
</li>
<li>Concat3dDim2DiffInputDimsUint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#aa36dd3325483a70d872b4009321dcf40">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#ad8be274610d7ec7bc0ed8f064c21f0ec">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dDim2Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a47256d5dd1d5c65c719c40b2bfc7cc96">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a7d39bba5f0a9f984266f9d84a425d7c7">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dDim2TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#af7bc28cdb723e0cea4c0b860f40fa47e">ConcatTestImpl.cpp</a>
</li>
<li>Concat3dDim2Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ae8b0de60ee1ba3c2d5e4507195496399">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a935316c06a7178dbc199694e7971b54c">ConcatTestImpl.hpp</a>
</li>
<li>Concat3dTestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ac8fc5aa4f5e286f98708650f6a8682a6">ConcatTestImpl.cpp</a>
</li>
<li>Concat4dDiffShapeDim0Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a972c1ddee6e494e695dc10e0982142b5">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a3f94cface3893686bb6776ed4926fcda">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDiffShapeDim0TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a4b3d058400cdae1f9f42bca0bd4cdd78">ConcatTestImpl.cpp</a>
</li>
<li>Concat4dDiffShapeDim0Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ae0683139ba76b335575fe37d96a26e2a">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#ab9608e4ae205d0de8b1a6036583e8ca7">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDiffShapeDim1Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a79c356d8f1e3b0585635ee9b5a9e41a3">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#ad787ee57d74366f6a8aedb5bc94dc086">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDiffShapeDim1TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a8f747abd7bf17b57c3178c077a8e1949">ConcatTestImpl.cpp</a>
</li>
<li>Concat4dDiffShapeDim1Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a978768350bd24bb2d8b4a25459c265c7">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#ae5fc2fc93f2f994d76cd24b77e1c7f80">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDiffShapeDim2Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a5d244b77eab878c84d0bdf67ef387d3c">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a957f8b14b7676797dcde1fc860e86b37">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDiffShapeDim2TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a05eed8a9797d93f01639ca03025058f0">ConcatTestImpl.cpp</a>
</li>
<li>Concat4dDiffShapeDim2Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ae0420c81890c5a5e7ecb20fb9d8c14d5">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a288ea85d287604fd5e470f5e16d3ad91">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDiffShapeDim3Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a63a31f32393eda0ec427511ab8da5e55">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#aa1c653d6aa6b4ccb38f5c8abd7e08aa0">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDiffShapeDim3TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a4a9959df06e443a3e38d234564ad7736">ConcatTestImpl.cpp</a>
</li>
<li>Concat4dDiffShapeDim3Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#aff509d223f51a5d7ce024c7911f466f6">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a6621bf4fe6c56c6d1a5c7af4b529fa45">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDim0Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a1662cadf61dca494a38d44fb32f116cc">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a11f8865a287d1048effbe34be448f4eb">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDim0TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a198a5812a5bf73d54928ec978f8cf7af">ConcatTestImpl.cpp</a>
</li>
<li>Concat4dDim0Uint8Test()
: <a class="el" href="_concat_test_impl_8hpp.xhtml#a3fed8fe700e7e517f65343aeb4df616c">ConcatTestImpl.hpp</a>
, <a class="el" href="_concat_test_impl_8cpp.xhtml#afc881fff20745a31065e74be62b33346">ConcatTestImpl.cpp</a>
</li>
<li>Concat4dDim1Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a6e54f02f06e0a3eac39e726a091290df">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a9157ab7bc07208ca47303155d2cd12b8">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDim1TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a65992de6287260bcb4be7a4852a22c9c">ConcatTestImpl.cpp</a>
</li>
<li>Concat4dDim1Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a80c04e457e56741a208b6d84d77bae66">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a9f38aae9785430bfe5e111b9372dacfc">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDim2Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a27d4b7293d9b404c73850981d3496a50">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a6e5e4396531527fadc52f3636d1bf73a">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDim2TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a0047c671718849c74d3bdbd38385f807">ConcatTestImpl.cpp</a>
</li>
<li>Concat4dDim2Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a8bcb164c6900742857a84e7c73fa7fe6">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#ab7ea1667cddecaedea53dbbefd2fea75">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dDim3Test()
: <a class="el" href="_concat_test_impl_8hpp.xhtml#aeb4067152ce120e31043b8477a787261">ConcatTestImpl.hpp</a>
, <a class="el" href="_concat_test_impl_8cpp.xhtml#a410d43ad354ebb8995b7d9bc5b2c686c">ConcatTestImpl.cpp</a>
</li>
<li>Concat4dDim3TestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a9b4987fbd28822cfde9a5fcbf50793a5">ConcatTestImpl.cpp</a>
</li>
<li>Concat4dDim3Uint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ac222f8d0e05afd4cb187d2bafde9b46f">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#aa70d3cab4cbde75c62db08cc3b0d567e">ConcatTestImpl.hpp</a>
</li>
<li>Concat4dTestImpl()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a597f0b89f3fb6389802de4a51c979b17">ConcatTestImpl.cpp</a>
</li>
<li>ConcatBFloat16Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#ab37c1b501e6ffae4fb1d3e42860a7d1f">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a22bf322f7a53aa372791ac2e90411efb">ConcatTestImpl.hpp</a>
</li>
<li>ConcatDifferentInputOutputQParamInt16Test()
: <a class="el" href="_concat_test_impl_8hpp.xhtml#ad06f16800a01737c2b3acbebf8a49486">ConcatTestImpl.hpp</a>
</li>
<li>ConcatDifferentInputOutputQParamTest()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a460c8d79a829f1ed16f088c12acf41f3">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a9c875c9398293adbbab5ba306375958f">ConcatTestImpl.hpp</a>
</li>
<li>ConcatDifferentInputOutputQParamTest&lt; DataType::QAsymmU8 &gt;()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a2dd0106c61c88d5da7b9991047eb5658">ConcatTestImpl.cpp</a>
</li>
<li>ConcatDifferentInputOutputQParamTest&lt; DataType::QSymmS16 &gt;()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a1806e357d4915bf413d1b5957f24b927">ConcatTestImpl.cpp</a>
</li>
<li>ConcatDifferentInputOutputQParamUint8Test()
: <a class="el" href="_concat_test_impl_8hpp.xhtml#ad78d60176fc6a26457e7e4a32e2ff47a">ConcatTestImpl.hpp</a>
</li>
<li>Concatenate()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a1035b2d9f77d4a2200919945e1502de2">ConcatTestImpl.cpp</a>
</li>
<li>ConcatFloat16Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#af8d15f0030605e3aa9d3679bbd207ae7">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a0fe26145da52f8562b32f068e20005ae">ConcatTestImpl.hpp</a>
</li>
<li>ConcatTest()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a2e952c053f3d7a035671a994352e2bc9">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#aa522d5b67ae3d8dbb1e51ad245578926">ConcatTestImpl.hpp</a>
</li>
<li>ConcatUint16Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a80b1bff1d772096f5a10a26167425ded">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a9943b5dddb420292860d038bf59c0c7e">ConcatTestImpl.hpp</a>
</li>
<li>ConcatUint8DifferentQParamsTest()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a2f6ac42e5f7a238f07a6bd5869ef767d">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a7e1c4089ee308ca4903fa8d2df351ebc">ConcatTestImpl.hpp</a>
</li>
<li>ConcatUint8Test()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a4332f7562287037bac9aed90d11a2db9">ConcatTestImpl.cpp</a>
, <a class="el" href="_concat_test_impl_8hpp.xhtml#a56611b98963e6b152447b8117dcb7451">ConcatTestImpl.hpp</a>
</li>
<li>ConfigureLoggingTest()
: <a class="el" href="_unit_tests_8hpp.xhtml#af9e4dd62da9266a1364032ada0267f9b">UnitTests.hpp</a>
</li>
<li>Connect()
: <a class="el" href="_test_utils_8cpp.xhtml#a0b295acb179f15eb3fb862b32008f782">TestUtils.cpp</a>
, <a class="el" href="_test_utils_8hpp.xhtml#a6229539fdf0a5a0f667620174a69fe5a">TestUtils.hpp</a>
</li>
<li>ConstantCreateNoContent2Fixture
: <a class="el" href="armnn_tf_parser_2test_2_constant_8cpp.xhtml#a471e064466c235b85ac8f04456dd95a8">Constant.cpp</a>
</li>
<li>ConstantCreateNoContentFixture
: <a class="el" href="armnn_tf_parser_2test_2_constant_8cpp.xhtml#a2c5c03bf4a420a8fa5d89047d2c08f3f">Constant.cpp</a>
</li>
<li>ConstantCreateNoShape2Fixture
: <a class="el" href="armnn_tf_parser_2test_2_constant_8cpp.xhtml#a14059fb3ba5b5d6d0ac8f5a35db94d6f">Constant.cpp</a>
</li>
<li>ConstantCreateNoShape3Fixture
: <a class="el" href="armnn_tf_parser_2test_2_constant_8cpp.xhtml#a3bd7a83fc67ffc33a2d558c140e844ca">Constant.cpp</a>
</li>
<li>ConstantCreateNoShapeFixture
: <a class="el" href="armnn_tf_parser_2test_2_constant_8cpp.xhtml#a888ba2dbdfbbb4461114793efefa0d65">Constant.cpp</a>
</li>
<li>ConstantCreateNoValueList2Fixture
: <a class="el" href="armnn_tf_parser_2test_2_constant_8cpp.xhtml#ab277b12e119b8a307fc3c5f26438dc11">Constant.cpp</a>
</li>
<li>ConstantCreateNoValueListFixture
: <a class="el" href="armnn_tf_parser_2test_2_constant_8cpp.xhtml#a18d828fbc0b6c66c22282270fb05d714">Constant.cpp</a>
</li>
<li>ConstantInt16CustomQuantizationScaleAndOffsetTest()
: <a class="el" href="_constant_test_impl_8cpp.xhtml#a27b8ed07d6b0bf3db126f41829df7022">ConstantTestImpl.cpp</a>
, <a class="el" href="_constant_test_impl_8hpp.xhtml#a27b8ed07d6b0bf3db126f41829df7022">ConstantTestImpl.hpp</a>
</li>
<li>ConstantInt16SimpleQuantizationScaleNoOffsetTest()
: <a class="el" href="_constant_test_impl_8cpp.xhtml#afc3abb18214cec1e56c0977b64fa0816">ConstantTestImpl.cpp</a>
, <a class="el" href="_constant_test_impl_8hpp.xhtml#afc3abb18214cec1e56c0977b64fa0816">ConstantTestImpl.hpp</a>
</li>
<li>ConstantLinearActivationInt16Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a1ff5e9c94a9862b4e10cfd407edd1144">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#a1ff5e9c94a9862b4e10cfd407edd1144">ActivationTestImpl.hpp</a>
</li>
<li>ConstantLinearActivationTest()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a6c39ee38ff9ba4a4d2a773cc59d874d5">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#a6c39ee38ff9ba4a4d2a773cc59d874d5">ActivationTestImpl.hpp</a>
</li>
<li>ConstantLinearActivationTestCommon()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#afc6867f503e2bdbe9d42eee7361d1f91">ActivationTestImpl.cpp</a>
</li>
<li>ConstantLinearActivationUint8Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#ae67353055c8f500c9cf58f686b78a2e0">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#ae67353055c8f500c9cf58f686b78a2e0">ActivationTestImpl.hpp</a>
</li>
<li>ConstantMaxValueListFixture
: <a class="el" href="armnn_tf_parser_2test_2_constant_8cpp.xhtml#a78c6ef98f11a8c70808772346efc226f">Constant.cpp</a>
</li>
<li>ConstantMultipleValueListFixture
: <a class="el" href="armnn_tf_parser_2test_2_constant_8cpp.xhtml#a7dbdc42478a8953623dcfb132a0eab62">Constant.cpp</a>
</li>
<li>ConstantSingleValueListFixture
: <a class="el" href="armnn_tf_parser_2test_2_constant_8cpp.xhtml#a2e5ce1508f5cd8339a589dd10ae00efd">Constant.cpp</a>
</li>
<li>ConstantsVector2QuantizedLstmInputParams()
: <a class="el" href="_lstm_serialization_tests_8cpp.xhtml#a5b74bdb50eae6e911a1eb4c3a311f536">LstmSerializationTests.cpp</a>
</li>
<li>ConstantTest()
: <a class="el" href="_constant_test_impl_8hpp.xhtml#aebc0ad3ae73f2e97f0ed7b71fa610e15">ConstantTestImpl.hpp</a>
, <a class="el" href="_constant_test_impl_8cpp.xhtml#aebc0ad3ae73f2e97f0ed7b71fa610e15">ConstantTestImpl.cpp</a>
</li>
<li>ConstantUint8CustomQuantizationScaleAndOffsetTest()
: <a class="el" href="_constant_test_impl_8hpp.xhtml#adfc4b8fe34bd764529472ff4a1ad8eb4">ConstantTestImpl.hpp</a>
, <a class="el" href="_constant_test_impl_8cpp.xhtml#adfc4b8fe34bd764529472ff4a1ad8eb4">ConstantTestImpl.cpp</a>
</li>
<li>ConstantUint8SimpleQuantizationScaleNoOffsetTest()
: <a class="el" href="_constant_test_impl_8hpp.xhtml#ae67d8e1a86950591f2ef572ae0310a10">ConstantTestImpl.hpp</a>
, <a class="el" href="_constant_test_impl_8cpp.xhtml#ae67d8e1a86950591f2ef572ae0310a10">ConstantTestImpl.cpp</a>
</li>
<li>ConstantVector2LstmInputParams()
: <a class="el" href="_lstm_serialization_tests_8cpp.xhtml#a0a3344924b451a5e8bdfeaa02d9e7688">LstmSerializationTests.cpp</a>
</li>
<li>CONSTRUCT_IN_PLACE
: <a class="el" href="_optional_8hpp.xhtml#acbec11f88a308826fa811f370d363a4a">Optional.hpp</a>
</li>
<li>Contains()
: <a class="el" href="_common_test_utils_8hpp.xhtml#a5fa64e793b38cf9074e6fcdb2c9c7293">CommonTestUtils.hpp</a>
</li>
<li>ConvertBf16ToFp32Test()
: <a class="el" href="_convert_bf16_to_fp32_test_impl_8cpp.xhtml#a72c71ccbf53cf4db9727ec413f9ff2b3">ConvertBf16ToFp32TestImpl.cpp</a>
, <a class="el" href="_convert_bf16_to_fp32_test_impl_8hpp.xhtml#a72c71ccbf53cf4db9727ec413f9ff2b3">ConvertBf16ToFp32TestImpl.hpp</a>
</li>
<li>ConvertFp32ToBf16Test()
: <a class="el" href="_convert_fp32_to_bf16_test_impl_8hpp.xhtml#ab5f25cb940a8784de15951d1bf6ebfdc">ConvertFp32ToBf16TestImpl.hpp</a>
, <a class="el" href="_convert_fp32_to_bf16_test_impl_8cpp.xhtml#ab5f25cb940a8784de15951d1bf6ebfdc">ConvertFp32ToBf16TestImpl.cpp</a>
</li>
<li>ConvertToDataType()
: <a class="el" href="_data_type_utils_8hpp.xhtml#a0e6e88f90154180e9cf19c4f04de70c7">DataTypeUtils.hpp</a>
</li>
<li>Convolution1dTest()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a7fde274ea5d168e2941e90ff6475262b">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a7fde274ea5d168e2941e90ff6475262b">Conv2dTestImpl.hpp</a>
</li>
<li>Convolution1dTestImpl()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a4805ba0c9778e2cb91b9f4a76019852b">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution1dUint8Test()
: <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a2a6493bf0e6583e7d0535f6d01323bfc">Conv2dTestImpl.hpp</a>
, <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a2a6493bf0e6583e7d0535f6d01323bfc">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d2x2Dilation2x2Padding2x2Stride3x3Test()
: <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a130df3a88eb9a5bf1aaec61642a702d0">Conv2dTestImpl.hpp</a>
, <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a130df3a88eb9a5bf1aaec61642a702d0">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d2x2Dilation2x2Padding2x2Stride3x3Test&lt; armnn::DataType::BFloat16, armnn::DataType::BFloat16 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#af9891b2aabb86e12eba8918b6ce7afc5">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d2x2Dilation2x2Padding2x2Stride3x3Test&lt; armnn::DataType::Float32, armnn::DataType::Float32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#aa5948e6b92ecece59bd18ad7a0251aa2">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d2x2Dilation2x2Padding2x2Stride3x3Test&lt; armnn::DataType::QAsymmS8, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a4a2075219592014b7e90c2a5a54c06a9">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d2x2Dilation2x2Padding2x2Stride3x3Test&lt; armnn::DataType::QAsymmU8, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a6a5d000966f8ab887de661f805340a0f">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d2x2Dilation2x2Padding2x2Stride3x3Test&lt; armnn::DataType::QSymmS16, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#af5ad3b29bb7c8ea2055faf03d109ed8a">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d2x3x3Dilation3x3Test()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a24ba5e372ff9e8c7603cd380d3673bff">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a24ba5e372ff9e8c7603cd380d3673bff">Conv2dTestImpl.hpp</a>
</li>
<li>Convolution2d2x3x3Dilation3x3Test&lt; armnn::DataType::BFloat16, armnn::DataType::BFloat16 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#ab8f5144f3fb4d5ee7fd9f84adf45a259">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d2x3x3Dilation3x3Test&lt; armnn::DataType::Float32, armnn::DataType::Float32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#ae2dc50dcbb2fb18f4ea7e49ff7faf526">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d2x3x3Dilation3x3Test&lt; armnn::DataType::QAsymmS8, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#afa3d2f62e73c2523f73002ac9c6987b9">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d2x3x3Dilation3x3Test&lt; armnn::DataType::QAsymmU8, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a9ca40c2db3f4848b2a18c6e00ae01a1b">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d2x3x3Dilation3x3Test&lt; armnn::DataType::QSymmS16, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a5733d7c5bde0c4616c418b0496514dca">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d3x3Dilation3x3Test()
: <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a0192d5e1143e77fb9c07f43cac008aa5">Conv2dTestImpl.hpp</a>
, <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a0192d5e1143e77fb9c07f43cac008aa5">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d3x3Dilation3x3Test&lt; armnn::DataType::BFloat16, armnn::DataType::BFloat16 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a6276e43d267ec00701848978b42a6382">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d3x3Dilation3x3Test&lt; armnn::DataType::Float32, armnn::DataType::Float32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a3ed4b9b6c229e41b82cdbe619bd27c0d">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d3x3Dilation3x3Test&lt; armnn::DataType::QAsymmS8, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#af4b9d2a329d6dd53ced121734ba7ca93">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d3x3Dilation3x3Test&lt; armnn::DataType::QAsymmU8, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a318d1322f246132cdf99bea2934a7c49">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d3x3Dilation3x3Test&lt; armnn::DataType::QSymmS16, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a47f68992c0aaa5f196f2b0074b176ac3">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d3x3DilationTestCommon()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a9680e910e263c8d6824c9ddcc1c135a4">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d3x3Stride2x2BFloat16SmallValueTest()
: <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a9573a516a902021f7b24fc8a8172ea8e">Conv2dTestImpl.hpp</a>
, <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a9573a516a902021f7b24fc8a8172ea8e">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2d3x3Stride2x2BFloat16Test()
: <a class="el" href="_conv2d_test_impl_8hpp.xhtml#afba5868ef96cceb570cc4b8223f3019c">Conv2dTestImpl.hpp</a>
, <a class="el" href="_conv2d_test_impl_8cpp.xhtml#afba5868ef96cceb570cc4b8223f3019c">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2dAsymmetricPaddingLargerThanHalfKernelSizeTest
: <a class="el" href="_ref_layer_tests_8cpp.xhtml#ab13c0878487d1cbf0201d506302ac33c">RefLayerTests.cpp</a>
, <a class="el" href="_conv2d_test_impl_8cpp.xhtml#ab1b3e3dfbd3807989911b05b5830f7ea">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#ab1b3e3dfbd3807989911b05b5830f7ea">Conv2dTestImpl.hpp</a>
</li>
<li>Convolution2dAsymmetricPaddingLargerThanHalfKernelSizeTestCommon()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a71b5e8d33736d32c974e4fff9206f998">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2dAsymmetricPaddingTest
: <a class="el" href="_cl_layer_tests_8cpp.xhtml#a6150d203b2dac434d75cc5e9a930b37f">ClLayerTests.cpp</a>
, <a class="el" href="_neon_layer_tests_8cpp.xhtml#a6150d203b2dac434d75cc5e9a930b37f">NeonLayerTests.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a0431327604bbd8051635e8ebd215e620">Conv2dTestImpl.hpp</a>
, <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a0431327604bbd8051635e8ebd215e620">Conv2dTestImpl.cpp</a>
</li>
<li>Convolution2dInferOutputShapeTest()
: <a class="el" href="_infer_output_tests_8hpp.xhtml#a3f1ec6ab0066448f4438bbe852b4f3e2">InferOutputTests.hpp</a>
</li>
<li>Convolution2dPerAxisQuantTest()
: <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a3db9032b7a4530846a78babe58a1b2dd">Conv2dTestImpl.hpp</a>
, <a class="el" href="_cl_layer_tests_8cpp.xhtml#a3e0ba1035cfa2cd7f070f2ae9f01f65f">ClLayerTests.cpp</a>
, <a class="el" href="_ref_layer_tests_8cpp.xhtml#ae3ba3af4749fa2975db496ee0d2788a8">RefLayerTests.cpp</a>
, <a class="el" href="_neon_layer_tests_8cpp.xhtml#a2a1f3833cedd8620547e09219c01db55">NeonLayerTests.cpp</a>
, <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a3db9032b7a4530846a78babe58a1b2dd">Conv2dTestImpl.cpp</a>
</li>
<li>CopyDataFromITensorHandle()
: <a class="el" href="_tensor_copy_utils_8cpp.xhtml#a99b626c58a926dc7d6df78d22ec186c8">TensorCopyUtils.cpp</a>
, <a class="el" href="_tensor_copy_utils_8hpp.xhtml#ab5dfed8358e500ed523d78090ec78e88">TensorCopyUtils.hpp</a>
</li>
<li>CopyDataToITensorHandle()
: <a class="el" href="_tensor_copy_utils_8hpp.xhtml#ae15f1a3c55d2db87683577de9fa4437c">TensorCopyUtils.hpp</a>
, <a class="el" href="_tensor_copy_utils_8cpp.xhtml#ae15f1a3c55d2db87683577de9fa4437c">TensorCopyUtils.cpp</a>
</li>
<li>CopyVector()
: <a class="el" href="_lstm_utils_8cpp.xhtml#a00d8a623c04f1120f6fee3fe38d1cee9">LstmUtils.cpp</a>
, <a class="el" href="_lstm_utils_8hpp.xhtml#a00d8a623c04f1120f6fee3fe38d1cee9">LstmUtils.hpp</a>
</li>
<li>CopyViaSplitterFloat16Test()
: <a class="el" href="_splitter_test_impl_8hpp.xhtml#a1ff233f3179fa9ce3a80ae456bbb9e8b">SplitterTestImpl.hpp</a>
, <a class="el" href="_splitter_test_impl_8cpp.xhtml#a1ff233f3179fa9ce3a80ae456bbb9e8b">SplitterTestImpl.cpp</a>
</li>
<li>CopyViaSplitterFloat32Test()
: <a class="el" href="_splitter_test_impl_8cpp.xhtml#aaa54cb9a063b9453f453622c4521a035">SplitterTestImpl.cpp</a>
, <a class="el" href="_splitter_test_impl_8hpp.xhtml#aaa54cb9a063b9453f453622c4521a035">SplitterTestImpl.hpp</a>
</li>
<li>CopyViaSplitterInt16Test()
: <a class="el" href="_splitter_test_impl_8hpp.xhtml#a432bea508d3e2565091bb27aacb883ff">SplitterTestImpl.hpp</a>
, <a class="el" href="_splitter_test_impl_8cpp.xhtml#a432bea508d3e2565091bb27aacb883ff">SplitterTestImpl.cpp</a>
</li>
<li>CopyViaSplitterUint8Test()
: <a class="el" href="_splitter_test_impl_8hpp.xhtml#a288952c7a06bf77dfaddaf70ba03f2f5">SplitterTestImpl.hpp</a>
, <a class="el" href="_splitter_test_impl_8cpp.xhtml#a288952c7a06bf77dfaddaf70ba03f2f5">SplitterTestImpl.cpp</a>
</li>
<li>CreateBackendObject()
: <a class="el" href="_common_test_utils_8hpp.xhtml#a7a4090354279f08b1e27244bab25aa86">CommonTestUtils.hpp</a>
, <a class="el" href="_common_test_utils_8cpp.xhtml#a7a4090354279f08b1e27244bab25aa86">CommonTestUtils.cpp</a>
</li>
<li>CreateConvolution2dGraph()
: <a class="el" href="_optimizer_tests_8cpp.xhtml#a5065b32dd0aa2c08ef75e953ebedbc16">OptimizerTests.cpp</a>
</li>
<li>CreateDepthwiseConvolution2dGraph()
: <a class="el" href="_optimizer_tests_8cpp.xhtml#acd97facea671e23ec3e8b33c6c2ea321">OptimizerTests.cpp</a>
</li>
<li>CreateDescriptorForConcat()
: <a class="el" href="_concat_test_impl_8cpp.xhtml#a908c80ff86d48fe1bc7cd4d4b1d00147">ConcatTestImpl.cpp</a>
</li>
<li>CreateDynamicBackendObjectInvalidHandleTestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#ac98b3660d8c88c80c02fdcdab25a534f">DynamicBackendTests.hpp</a>
</li>
<li>CreateDynamicBackendObjectInvalidInterface1TestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#acfd92844ff506a69381848c62b5f396d">DynamicBackendTests.hpp</a>
</li>
<li>CreateDynamicBackendObjectInvalidInterface2TestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#a2733fc49ff574659904cbc558c6b2bac">DynamicBackendTests.hpp</a>
</li>
<li>CreateDynamicBackendObjectInvalidInterface3TestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#a47d1d68ab62ac387a9d8253d08260fc4">DynamicBackendTests.hpp</a>
</li>
<li>CreateDynamicBackendObjectInvalidInterface4TestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#a307ee2e89a7a9dd574674a69da91addd">DynamicBackendTests.hpp</a>
</li>
<li>CreateDynamicBackendObjectInvalidInterface5TestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#a925a53b0f85afbe661c251b858b01601">DynamicBackendTests.hpp</a>
</li>
<li>CreateDynamicBackendObjectInvalidInterface6TestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#a8f879660cb144117a50465429197ce0c">DynamicBackendTests.hpp</a>
</li>
<li>CreateDynamicBackendObjectInvalidInterface7TestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#ab831071920946c5e8562471793882ac4">DynamicBackendTests.hpp</a>
</li>
<li>CreateDynamicBackendsAllInvalidTestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#ae6308c78a8fdab82f4929b07dc439cd9">DynamicBackendTests.hpp</a>
</li>
<li>CreateDynamicBackendsMixedTypesTestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#a1f89ff6d66212524954282edcda4082b">DynamicBackendTests.hpp</a>
</li>
<li>CreateDynamicBackendsNoPathsTestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#a40efe1578a402125bd0efbc29eecb225">DynamicBackendTests.hpp</a>
</li>
<li>CreateDynamicBackendsTestImpl()
: <a class="el" href="_dynamic_backend_tests_8hpp.xhtml#a76c94b7ce857689477dcac09aba1858f">DynamicBackendTests.hpp</a>
</li>
<li>CreateGatherGraph()
: <a class="el" href="_optimizer_tests_8cpp.xhtml#aa4e793c84e5dfea800d4dba921651e5b">OptimizerTests.cpp</a>
</li>
<li>CreateInputsFrom()
: <a class="el" href="_common_test_utils_8cpp.xhtml#a9892eac8f1b8ed9cea0baf643fb6d951">CommonTestUtils.cpp</a>
, <a class="el" href="_common_test_utils_8hpp.xhtml#ac0a6b75ad3de58ac7d36f88bd8866078">CommonTestUtils.hpp</a>
</li>
<li>CreateMockService()
: <a class="el" href="_gatord_mock_main_8cpp.xhtml#aa9eb906c29d6ae82f7d9386afdf297d2">GatordMockMain.cpp</a>
</li>
<li>CreateOutputsFrom()
: <a class="el" href="_common_test_utils_8hpp.xhtml#aff493fee27236e9ddc581e48c4b931a9">CommonTestUtils.hpp</a>
, <a class="el" href="_common_test_utils_8cpp.xhtml#ae405c72b6d52a1bf4b3471032e76e3f0">CommonTestUtils.cpp</a>
</li>
<li>CreatePooling2dGraph()
: <a class="el" href="_optimizer_tests_8cpp.xhtml#a4756218150e4ca0da09d0ecc390a7a17">OptimizerTests.cpp</a>
</li>
<li>CreatePreluLayerHelper()
: <a class="el" href="_infer_output_tests_8hpp.xhtml#aef8723faea6131aaa1d535a17630df42">InferOutputTests.hpp</a>
</li>
<li>CreateResizeBilinearGraph()
: <a class="el" href="_optimizer_tests_8cpp.xhtml#aefb2c7f14f687a9432490a1bdee05458">OptimizerTests.cpp</a>
</li>
<li>CreateStackLayerHelper()
: <a class="el" href="_infer_output_tests_8hpp.xhtml#adad94ff1ff901704556db7b602d46a05">InferOutputTests.hpp</a>
</li>
<li>CreateSubgraphViewFrom()
: <a class="el" href="_common_test_utils_8hpp.xhtml#abf999283bc03f1bafd01680149ed7e3e">CommonTestUtils.hpp</a>
, <a class="el" href="_common_test_utils_8cpp.xhtml#a3ed487c53d08c08186837be90030a855">CommonTestUtils.cpp</a>
</li>
<li>CreateWorkload()
: <a class="el" href="_elementwise_unary_test_impl_8hpp.xhtml#aa50938ed8f91e09acd4af904dcf5543a">ElementwiseUnaryTestImpl.hpp</a>
, <a class="el" href="_elementwise_unary_test_impl_8cpp.xhtml#aa50938ed8f91e09acd4af904dcf5543a">ElementwiseUnaryTestImpl.cpp</a>
, <a class="el" href="_elementwise_test_impl_8hpp.xhtml#ab6921db5d86507f5b126af1cc516adb9">ElementwiseTestImpl.hpp</a>
</li>
<li>CreateWorkload&lt; armnn::AdditionQueueDescriptor &gt;()
: <a class="el" href="_addition_test_impl_8cpp.xhtml#a5f3caae0b1541a904067544dd37655f0">AdditionTestImpl.cpp</a>
</li>
<li>CreateWorkload&lt; armnn::DivisionQueueDescriptor &gt;()
: <a class="el" href="_division_test_impl_8cpp.xhtml#afaae70402fa37637d28397769b9a8ff6">DivisionTestImpl.cpp</a>
</li>
<li>CreateWorkload&lt; armnn::MaximumQueueDescriptor &gt;()
: <a class="el" href="_maximum_test_impl_8cpp.xhtml#a4c4cf71e210daf73f88c730a8350a505">MaximumTestImpl.cpp</a>
</li>
<li>CreateWorkload&lt; armnn::MinimumQueueDescriptor &gt;()
: <a class="el" href="_minimum_test_impl_8cpp.xhtml#a1e17bf0a5a7623e80896966531eeb142">MinimumTestImpl.cpp</a>
</li>
<li>CreateWorkload&lt; armnn::MultiplicationQueueDescriptor &gt;()
: <a class="el" href="_multiplication_test_impl_8cpp.xhtml#afe5e97a88b2d352eca70414a7d652135">MultiplicationTestImpl.cpp</a>
</li>
<li>CreateWorkload&lt; armnn::SubtractionQueueDescriptor &gt;()
: <a class="el" href="_subtraction_test_impl_8cpp.xhtml#a0f20088e478c30fc8b85adc95ee3ebd9">SubtractionTestImpl.cpp</a>
</li>
<li>CreatNetwork()
: <a class="el" href="_fuse_batch_norm_tests_8cpp.xhtml#a007cb6b1e66b629cdff3e267a81f42e4">FuseBatchNormTests.cpp</a>
</li>
<li>CXXOPTS_VECTOR_DELIMITER
: <a class="el" href="_armnn_converter_8cpp.xhtml#a564e0c1dcc7d9a5202f36755f4fb07c7">ArmnnConverter.cpp</a>
, <a class="el" href="_execute_network_program_options_8hpp.xhtml#a564e0c1dcc7d9a5202f36755f4fb07c7">ExecuteNetworkProgramOptions.hpp</a>
</li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
  <ul>
    <li class="footer">Generated on Thu Feb 25 2021 17:28:04 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>