aboutsummaryrefslogtreecommitdiff
path: root/21.02/globals_s.xhtml
blob: 515e45d8224b6d53dfdbe79f99916f0fd41e55e7 (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
<!-- 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_s.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_s"></a>- s -</h3><ul>
<li>S_BOOL
: <a class="el" href="_tf_lite_yolo_v3_big-_armnn_8cpp.xhtml#a76fd844e3661f9b37921804c97b0f973">TfLiteYoloV3Big-Armnn.cpp</a>
</li>
<li>scores()
: <a class="el" href="_neon_end_to_end_tests_8cpp.xhtml#a0348e6bb67ace72535bd105219bb6237">NeonEndToEndTests.cpp</a>
</li>
<li>scoresInfo()
: <a class="el" href="_neon_end_to_end_tests_8cpp.xhtml#abfa50e55ee160bfc64d8c3bb3dc40cc4">NeonEndToEndTests.cpp</a>
</li>
<li>SelectiveCompare()
: <a class="el" href="_tensor_helpers_8hpp.xhtml#a833e7db5d5f7e93102e80de57a602cf7">TensorHelpers.hpp</a>
</li>
<li>SelectiveCompareBoolean()
: <a class="el" href="_tensor_helpers_8hpp.xhtml#a617427516e17888a138c16d3af503cfd">TensorHelpers.hpp</a>
</li>
<li>SerializeNetwork()
: <a class="el" href="_serializer_test_utils_8hpp.xhtml#a228162aa622e2e39abb4f498c761ab5e">SerializerTestUtils.hpp</a>
, <a class="el" href="_serializer_test_utils_8cpp.xhtml#a228162aa622e2e39abb4f498c761ab5e">SerializerTestUtils.cpp</a>
</li>
<li>SetActivationParameters()
: <a class="el" href="_lstm_utils_8cpp.xhtml#afc83b9418e9721cee21de245cb8533de">LstmUtils.cpp</a>
, <a class="el" href="_lstm_utils_8hpp.xhtml#afc83b9418e9721cee21de245cb8533de">LstmUtils.hpp</a>
</li>
<li>SetQuantizationOffset()
: <a class="el" href="_neon_end_to_end_tests_8cpp.xhtml#aec48a5a5ab6ecf86c8db0f6d0859fe2f">NeonEndToEndTests.cpp</a>
</li>
<li>SetQuantizationScale()
: <a class="el" href="_neon_end_to_end_tests_8cpp.xhtml#a522a440dc1e26bed45fd3f68be8484e9">NeonEndToEndTests.cpp</a>
</li>
<li>SetWeightAndBias()
: <a class="el" href="_common_test_utils_8hpp.xhtml#acacca57727df8ccf5c5597e6026da814">CommonTestUtils.hpp</a>
</li>
<li>Simple3dAxisSoftmaxTest()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#a2f98e881f910c374dae115a18eebc077">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#a6e8a487834d46990b765ca7df57af9f7">SoftmaxTestImpl.hpp</a>
</li>
<li>Simple3dSoftmaxFloat16Test()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#a85b85f17da5920b81cd0cb2d3477c234">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#a85b85f17da5920b81cd0cb2d3477c234">SoftmaxTestImpl.hpp</a>
</li>
<li>Simple3dSoftmaxTest()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#a3bf0788640509f4f33b302578ac80b7f">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#a8c2b9d48b1d6a1aeec50187d55b74332">SoftmaxTestImpl.hpp</a>
</li>
<li>Simple3dSoftmaxUint16Test()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#afbb6f20378aa4b413ce218692a14faaa">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#afbb6f20378aa4b413ce218692a14faaa">SoftmaxTestImpl.hpp</a>
</li>
<li>Simple3dSoftmaxUint8Test()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#ac8bdec035fd0687ff56316bd5436e17f">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#ac8bdec035fd0687ff56316bd5436e17f">SoftmaxTestImpl.hpp</a>
</li>
<li>Simple4dAxisSoftmaxTest()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#ae16e9e44f9cf9bdb5460875b1ec3b551">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#a683e68d6893c261c69ac25523a348750">SoftmaxTestImpl.hpp</a>
</li>
<li>Simple4dSoftmaxFloat16Test()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#a5edfd63a67aa3ee02b9e52baed58ef7e">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#a5edfd63a67aa3ee02b9e52baed58ef7e">SoftmaxTestImpl.hpp</a>
</li>
<li>Simple4dSoftmaxTest()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#a4a9b296c727beeeb5764a7a1f91307ae">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#a412ce1b38b05ddc762a5f104a63299bd">SoftmaxTestImpl.hpp</a>
</li>
<li>Simple4dSoftmaxUint16Test()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#a5a4c7e3680cee3bb9b8a00aed371ce74">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#a5a4c7e3680cee3bb9b8a00aed371ce74">SoftmaxTestImpl.hpp</a>
</li>
<li>Simple4dSoftmaxUint8Test()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#ab018dc7df739cf10efe0ecb80a68426d">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#ab018dc7df739cf10efe0ecb80a68426d">SoftmaxTestImpl.hpp</a>
</li>
<li>SimpleActivationTest()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a7f39f3c0b73cbfc50b914bc92f9b28aa">ActivationTestImpl.cpp</a>
</li>
<li>SimpleAveragePooling2dInt16Test()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#aeb0f50adb2d9d42bfc469b3c961b344c">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#aeb0f50adb2d9d42bfc469b3c961b344c">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleAveragePooling2dTest()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#ace5d07b4866c0c0a7d6c20a1608c3213">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#ace5d07b4866c0c0a7d6c20a1608c3213">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleAveragePooling2dUint8Test
: <a class="el" href="_neon_layer_tests_8cpp.xhtml#aac92d20f1ce8c5d145326633b6eb5cd8">NeonLayerTests.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#a92b460c3ad7d8ad1e3cc91fca779423f">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#a92b460c3ad7d8ad1e3cc91fca779423f">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleAxisSoftmaxTest()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#ada59563419a522ed58525846a3d45f78">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#affa90ca9b41133a8490ce6b11e23a4b4">SoftmaxTestImpl.hpp</a>
</li>
<li>SimpleConvertFp16ToFp32Test()
: <a class="el" href="_convert_fp16_to_fp32_test_impl_8cpp.xhtml#a4f1046a0d16e2e9c9ecf720879557cd9">ConvertFp16ToFp32TestImpl.cpp</a>
, <a class="el" href="_convert_fp16_to_fp32_test_impl_8hpp.xhtml#a4f1046a0d16e2e9c9ecf720879557cd9">ConvertFp16ToFp32TestImpl.hpp</a>
</li>
<li>SimpleConvertFp32ToFp16Test()
: <a class="el" href="_convert_fp32_to_fp16_test_impl_8cpp.xhtml#a884d2a279334a299bfdb96b123f755fd">ConvertFp32ToFp16TestImpl.cpp</a>
, <a class="el" href="_convert_fp32_to_fp16_test_impl_8hpp.xhtml#a884d2a279334a299bfdb96b123f755fd">ConvertFp32ToFp16TestImpl.hpp</a>
</li>
<li>SimpleConvolution2d3x3NhwcTest()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a4d3ce31fe572451e18fea5add8543bf4">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a4d3ce31fe572451e18fea5add8543bf4">Conv2dTestImpl.hpp</a>
</li>
<li>SimpleConvolution2d3x3NhwcTestCommon()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#afbb87be327f0d9d7d0342ac2681d507c">Conv2dTestImpl.cpp</a>
</li>
<li>SimpleConvolution2d3x3QSymm16Test
: <a class="el" href="_ref_layer_tests_8cpp.xhtml#a67f79a94e82c4c32d59c1250d5af9b66">RefLayerTests.cpp</a>
, <a class="el" href="_conv2d_test_impl_8cpp.xhtml#aebd160fb0c5f5662a1cbaec5974c13ea">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#aebd160fb0c5f5662a1cbaec5974c13ea">Conv2dTestImpl.hpp</a>
</li>
<li>SimpleConvolution2d3x3Stride2x2Test()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#ad232d77972b88a751dbf6ecd594b0faa">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#ad232d77972b88a751dbf6ecd594b0faa">Conv2dTestImpl.hpp</a>
</li>
<li>SimpleConvolution2d3x3Stride2x2TestCommon()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a676232481dc5af6280e8433f0f5397a1">Conv2dTestImpl.cpp</a>
</li>
<li>SimpleConvolution2d3x3Test()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a1c22cdfa99117a1cdbc4b25064fd4c25">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a1c22cdfa99117a1cdbc4b25064fd4c25">Conv2dTestImpl.hpp</a>
</li>
<li>SimpleConvolution2d3x3TestCommon()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#ac51fc577b6324ce88e6d202a5f9be78f">Conv2dTestImpl.cpp</a>
</li>
<li>SimpleConvolution2d3x3Uint8Test()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a9966f7b9070f4eb34deeb8fc3cb3d277">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a9966f7b9070f4eb34deeb8fc3cb3d277">Conv2dTestImpl.hpp</a>
</li>
<li>SimpleConvolution2d3x5QSymm16Test()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a0f6ba53d8a3801fd33288c8a88a55902">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a0f6ba53d8a3801fd33288c8a88a55902">Conv2dTestImpl.hpp</a>
</li>
<li>SimpleConvolution2d3x5Test()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#af541c93dcb094c01b52b99658704c500">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#af541c93dcb094c01b52b99658704c500">Conv2dTestImpl.hpp</a>
</li>
<li>SimpleConvolution2d3x5TestCommon()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a7cd1a185c5b6d578584d353ec976b1d6">Conv2dTestImpl.cpp</a>
</li>
<li>SimpleConvolution2d3x5Uint8Test()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a10aae8f4c0c56c2c3574ca9ddf61a7af">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#a10aae8f4c0c56c2c3574ca9ddf61a7af">Conv2dTestImpl.hpp</a>
</li>
<li>SimpleConvolution2dAsymmetricPaddingTestCommon()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a89cc06d59ab4531aed1df4fa027c4cf7">Conv2dTestImpl.cpp</a>
</li>
<li>SimpleConvolution2dNhwcTestImpl()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a56f561170b575bdb2c808d35155f88c5">Conv2dTestImpl.cpp</a>
</li>
<li>SimpleConvolution2dTestImpl()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a41cfd5f6819a68241342a0f2c8841d86">Conv2dTestImpl.cpp</a>
</li>
<li>SimpleDepthwiseConvolution2d3x3Dilation3x3NhwcTest()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#af089eef6b8fd167fe95899a3af69aa32">Conv2dTestImpl.cpp</a>
, <a class="el" href="_conv2d_test_impl_8hpp.xhtml#af089eef6b8fd167fe95899a3af69aa32">Conv2dTestImpl.hpp</a>
</li>
<li>SimpleDepthwiseConvolution2d3x3Dilation3x3NhwcTestCommon()
: <a class="el" href="_conv2d_test_impl_8cpp.xhtml#a0eed8fa496da4f8825e1d43e84ad3a92">Conv2dTestImpl.cpp</a>
</li>
<li>SimpleFillTest()
: <a class="el" href="_fill_test_impl_8cpp.xhtml#a385b249394b34450d9fa3760a9f5183d">FillTestImpl.cpp</a>
, <a class="el" href="_fill_test_impl_8hpp.xhtml#a385b249394b34450d9fa3760a9f5183d">FillTestImpl.hpp</a>
</li>
<li>SimpleFillTest&lt; armnn::DataType::Float16 &gt;()
: <a class="el" href="_fill_test_impl_8cpp.xhtml#a4e6a04be3be7173641c613766502ec0e">FillTestImpl.cpp</a>
</li>
<li>SimpleFillTest&lt; armnn::DataType::Float32 &gt;()
: <a class="el" href="_fill_test_impl_8cpp.xhtml#a843fda99705309a6605e8271fa87e8e8">FillTestImpl.cpp</a>
</li>
<li>SimpleFillTest&lt; armnn::DataType::Signed32 &gt;()
: <a class="el" href="_fill_test_impl_8cpp.xhtml#a6c808ce012bfdb4038582ddf2c6fc877">FillTestImpl.cpp</a>
</li>
<li>SimpleFloorTest()
: <a class="el" href="_floor_test_impl_8cpp.xhtml#a6b4681f0b4842e80284c5ea398078509">FloorTestImpl.cpp</a>
, <a class="el" href="_floor_test_impl_8hpp.xhtml#a6b4681f0b4842e80284c5ea398078509">FloorTestImpl.hpp</a>
</li>
<li>SimpleFloorTest&lt; armnn::DataType::Float16 &gt;()
: <a class="el" href="_floor_test_impl_8cpp.xhtml#a5010227ef81620ff9737473409c3ac72">FloorTestImpl.cpp</a>
</li>
<li>SimpleFloorTest&lt; armnn::DataType::Float32 &gt;()
: <a class="el" href="_floor_test_impl_8cpp.xhtml#a5a8c52d6494e974dfc0b73fefc6969f8">FloorTestImpl.cpp</a>
</li>
<li>SimpleFloorTest&lt; armnn::DataType::QSymmS16 &gt;()
: <a class="el" href="_floor_test_impl_8cpp.xhtml#a5c44245e978e08da98c737a66243d083">FloorTestImpl.cpp</a>
</li>
<li>SimpleFullyConnectedTestImpl()
: <a class="el" href="_fully_connected_test_impl_8cpp.xhtml#a4e96a07c721329ec7de9e11c2f3097be">FullyConnectedTestImpl.cpp</a>
</li>
<li>SimpleL2Pooling2dInt16Test()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#a8294d39b64461dc8cc264e2090428d8f">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#a8294d39b64461dc8cc264e2090428d8f">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleL2Pooling2dTest()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#aa4bc368a4e78d01a9b7daaad2a2dbd51">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#aa4bc368a4e78d01a9b7daaad2a2dbd51">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleL2Pooling2dUint8Test()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#a3e863f692b93f2f36ae0787a0421c952">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#a3e863f692b93f2f36ae0787a0421c952">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleMaxPooling2dInt16Test()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#ab7a75e53f39941cb732a35a8b2dd6c60">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#ab7a75e53f39941cb732a35a8b2dd6c60">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleMaxPooling2dSize2x2Stride2x2Int16Test
: <a class="el" href="_ref_layer_tests_8cpp.xhtml#a4f8074aa8858b1dcc51da4b6c2ca7389">RefLayerTests.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#afdded119a95bdac07fd8d086b1cc9b5f">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#afdded119a95bdac07fd8d086b1cc9b5f">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleMaxPooling2dSize2x2Stride2x2Test()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#ad18df1220453e97c0686a129b2d2d79b">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#ad18df1220453e97c0686a129b2d2d79b">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleMaxPooling2dSize2x2Stride2x2Uint8Test()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#af1f2a5c336e021b1c1a2cfd9c66644b2">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#af1f2a5c336e021b1c1a2cfd9c66644b2">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleMaxPooling2dSize3x3Stride2x4Int16Test
: <a class="el" href="_ref_layer_tests_8cpp.xhtml#a9196ff0b2a9accd72d53b5a971aaf1fb">RefLayerTests.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#a2fbb1973ecc2c9f0943922e9a122af63">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#a2fbb1973ecc2c9f0943922e9a122af63">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleMaxPooling2dSize3x3Stride2x4Test()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#a15d723fdf9c3c80f6b5deb2e66240622">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#a15d723fdf9c3c80f6b5deb2e66240622">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleMaxPooling2dSize3x3Stride2x4Uint8Test
: <a class="el" href="_cl_layer_tests_8cpp.xhtml#aa6f67b5f6d9881b28c0ad27f3ac28429">ClLayerTests.cpp</a>
, <a class="el" href="_neon_layer_tests_8cpp.xhtml#aa6f67b5f6d9881b28c0ad27f3ac28429">NeonLayerTests.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#a38e23959bb4200e6e019aa490f151e62">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#a38e23959bb4200e6e019aa490f151e62">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleMaxPooling2dTest()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#aa3e57d4e48a91435d73487dabacc091b">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#aa3e57d4e48a91435d73487dabacc091b">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleMaxPooling2dUint8Test()
: <a class="el" href="_pooling2d_test_impl_8cpp.xhtml#a6c607ea3a6688789e82b78298903e5d2">Pooling2dTestImpl.cpp</a>
, <a class="el" href="_pooling2d_test_impl_8hpp.xhtml#a6c607ea3a6688789e82b78298903e5d2">Pooling2dTestImpl.hpp</a>
</li>
<li>SimpleNormalizationAcrossNhwcTest()
: <a class="el" href="_normalization_test_impl_8cpp.xhtml#af7f056114246f292a474bf744668c102">NormalizationTestImpl.cpp</a>
, <a class="el" href="_normalization_test_impl_8hpp.xhtml#af7f056114246f292a474bf744668c102">NormalizationTestImpl.hpp</a>
</li>
<li>SimpleNormalizationAcrossTest()
: <a class="el" href="_normalization_test_impl_8cpp.xhtml#a8129f578b6cd108953ae54a6a7d118f4">NormalizationTestImpl.cpp</a>
, <a class="el" href="_normalization_test_impl_8hpp.xhtml#acfca95325ae325064463d853cea12c58">NormalizationTestImpl.hpp</a>
</li>
<li>SimpleNormalizationWithinTest()
: <a class="el" href="_normalization_test_impl_8cpp.xhtml#a1169ece80ac33a2ebde5f572ee7a7183">NormalizationTestImpl.cpp</a>
, <a class="el" href="_normalization_test_impl_8hpp.xhtml#a0d9be87e1ff99012b91bc90ba8fd42b3">NormalizationTestImpl.hpp</a>
</li>
<li>SimplePermuteTest()
: <a class="el" href="_permute_test_impl_8hpp.xhtml#a381fbeb039dc945ea711c8ecd9beed50">PermuteTestImpl.hpp</a>
</li>
<li>SimplePermuteTestImpl()
: <a class="el" href="_permute_test_impl_8hpp.xhtml#a1c583be1928a32bf56e105aa95a7bf7e">PermuteTestImpl.hpp</a>
</li>
<li>SimpleReshapeTest()
: <a class="el" href="_reshape_test_impl_8cpp.xhtml#abbb388623c736a39bbc9d81e2d54f0c1">ReshapeTestImpl.cpp</a>
, <a class="el" href="_reshape_test_impl_8hpp.xhtml#abbb388623c736a39bbc9d81e2d54f0c1">ReshapeTestImpl.hpp</a>
</li>
<li>SimpleReshapeTest&lt; armnn::DataType::Float32 &gt;()
: <a class="el" href="_reshape_test_impl_8cpp.xhtml#a60ff5bd19bfadd7bc0747845f57d2391">ReshapeTestImpl.cpp</a>
</li>
<li>SimpleReshapeTest&lt; armnn::DataType::QAsymmS8 &gt;()
: <a class="el" href="_reshape_test_impl_8cpp.xhtml#af52fb2b13b5561f0681499bc52e2185d">ReshapeTestImpl.cpp</a>
</li>
<li>SimpleReshapeTest&lt; armnn::DataType::QAsymmU8 &gt;()
: <a class="el" href="_reshape_test_impl_8cpp.xhtml#a32bde6ac6c15e7a4f341d8c4b4ac85da">ReshapeTestImpl.cpp</a>
</li>
<li>SimpleReshapeTest&lt; armnn::DataType::QSymmS16 &gt;()
: <a class="el" href="_reshape_test_impl_8cpp.xhtml#a214c0fa1bb79ad9105ffef1b21a55b70">ReshapeTestImpl.cpp</a>
</li>
<li>SimpleResizeBilinearTest()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#a4119b16ebc3a6d284994fb31bc1bae5c">ResizeTestImpl.cpp</a>
, <a class="el" href="_resize_test_impl_8hpp.xhtml#a4119b16ebc3a6d284994fb31bc1bae5c">ResizeTestImpl.hpp</a>
</li>
<li>SimpleResizeBilinearTest&lt; armnn::DataType::Float16 &gt;()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#ab98410084675e952127b40b5c50e1bdf">ResizeTestImpl.cpp</a>
</li>
<li>SimpleResizeBilinearTest&lt; armnn::DataType::Float32 &gt;()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#a8bebf94b294031933ced9e230e168d15">ResizeTestImpl.cpp</a>
</li>
<li>SimpleResizeBilinearTest&lt; armnn::DataType::QAsymmS8 &gt;()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#a67fba8553e33d71132f5b3a34eedce7c">ResizeTestImpl.cpp</a>
</li>
<li>SimpleResizeBilinearTest&lt; armnn::DataType::QAsymmU8 &gt;()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#ae7854f0a706ecb5cd9272a83261c8aeb">ResizeTestImpl.cpp</a>
</li>
<li>SimpleResizeBilinearTest&lt; armnn::DataType::QSymmS16 &gt;()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#a44c1ef64789291183c3b8c664f8bb2a8">ResizeTestImpl.cpp</a>
</li>
<li>SimpleResizeNearestNeighborTest()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#a2cf15f90d138a0d77b7d1b7f36f16a5e">ResizeTestImpl.cpp</a>
, <a class="el" href="_resize_test_impl_8hpp.xhtml#a2cf15f90d138a0d77b7d1b7f36f16a5e">ResizeTestImpl.hpp</a>
</li>
<li>SimpleResizeNearestNeighborTest&lt; armnn::DataType::Float16 &gt;()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#a576c1ba21b9f95d4b8827241d2c2f0a0">ResizeTestImpl.cpp</a>
</li>
<li>SimpleResizeNearestNeighborTest&lt; armnn::DataType::Float32 &gt;()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#ab2d714caa09d2cbd76254e54ad3e70a7">ResizeTestImpl.cpp</a>
</li>
<li>SimpleResizeNearestNeighborTest&lt; armnn::DataType::QAsymmS8 &gt;()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#a4efb9cb7b4c53f64e1394e8fc043b819">ResizeTestImpl.cpp</a>
</li>
<li>SimpleResizeNearestNeighborTest&lt; armnn::DataType::QAsymmU8 &gt;()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#af61ac3308bf42d7e840977645e76f9df">ResizeTestImpl.cpp</a>
</li>
<li>SimpleResizeNearestNeighborTest&lt; armnn::DataType::QSymmS16 &gt;()
: <a class="el" href="_resize_test_impl_8cpp.xhtml#a7dda642fea9321ae2a2947f922f72c50">ResizeTestImpl.cpp</a>
</li>
<li>SimpleSigmoidInt16Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a52def8ec78955ae882f10fac3b627f58">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#a52def8ec78955ae882f10fac3b627f58">ActivationTestImpl.hpp</a>
</li>
<li>SimpleSigmoidTest()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#acbb4401d3616df08c74c8578d7ed56bb">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#acbb4401d3616df08c74c8578d7ed56bb">ActivationTestImpl.hpp</a>
</li>
<li>SimpleSigmoidTestCommon()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a901a3ece796b742b948398b267299feb">ActivationTestImpl.cpp</a>
</li>
<li>SimpleSigmoidUint8Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#aa56d52a539e33972bb9c9f83be6a3fae">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#aa56d52a539e33972bb9c9f83be6a3fae">ActivationTestImpl.hpp</a>
</li>
<li>SimpleSoftmaxFloat16Test()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#a434b38c0f3a12e1bbd7012d16e7bbc94">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#a434b38c0f3a12e1bbd7012d16e7bbc94">SoftmaxTestImpl.hpp</a>
</li>
<li>SimpleSoftmaxTest()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#a561da5cae6f7d7f9648c94e9807bee19">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#ad12a99e56904f102b2c35ffc1b3763b7">SoftmaxTestImpl.hpp</a>
</li>
<li>SimpleSoftmaxUint16Test()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#aa7d6977cae60f24e609e5d346b0d87c0">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#aa7d6977cae60f24e609e5d346b0d87c0">SoftmaxTestImpl.hpp</a>
</li>
<li>SimpleSoftmaxUint8Test()
: <a class="el" href="_softmax_test_impl_8cpp.xhtml#aa439f3d72fad64e1c0a55874a47a1b89">SoftmaxTestImpl.cpp</a>
, <a class="el" href="_softmax_test_impl_8hpp.xhtml#ab2fec938d04d1ae085a4487a961aff34">SoftmaxTestImpl.hpp</a>
</li>
<li>SimpleTransposeConvolution2dTest()
: <a class="el" href="_transpose_convolution2d_test_impl_8cpp.xhtml#a499f55b0bc3bd9544cc6c0d612101a65">TransposeConvolution2dTestImpl.cpp</a>
, <a class="el" href="_transpose_convolution2d_test_impl_8hpp.xhtml#a499f55b0bc3bd9544cc6c0d612101a65">TransposeConvolution2dTestImpl.hpp</a>
</li>
<li>SimpleTransposeConvolution2dTest&lt; armnn::DataType::Float32, armnn::DataType::Float32 &gt;()
: <a class="el" href="_transpose_convolution2d_test_impl_8cpp.xhtml#a114e89715273119ae4cd31c17c6c9495">TransposeConvolution2dTestImpl.cpp</a>
</li>
<li>SimpleTransposeConvolution2dTest&lt; armnn::DataType::QAsymmS8, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_transpose_convolution2d_test_impl_8cpp.xhtml#a3732d931062891d84e6f11449a646572">TransposeConvolution2dTestImpl.cpp</a>
</li>
<li>SimpleTransposeConvolution2dTest&lt; armnn::DataType::QAsymmU8, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_transpose_convolution2d_test_impl_8cpp.xhtml#a69f9a77bee0748135f790a34d87c8d99">TransposeConvolution2dTestImpl.cpp</a>
</li>
<li>SimpleTransposeConvolution2dTest&lt; armnn::DataType::QSymmS16, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_transpose_convolution2d_test_impl_8cpp.xhtml#a6b0d51b76e69bae50cdfc0d10d9339a2">TransposeConvolution2dTestImpl.cpp</a>
</li>
<li>SimpleTransposeTest()
: <a class="el" href="_transpose_test_impl_8hpp.xhtml#a26fec59856c8f7f494e9687c88e7be83">TransposeTestImpl.hpp</a>
</li>
<li>SimpleTransposeTestImpl()
: <a class="el" href="_transpose_test_impl_8hpp.xhtml#a6ab0e2fd5e224fb32b5c72fccefe8e24">TransposeTestImpl.hpp</a>
</li>
<li>Slice1dFloat32Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#a7863b4d5cf3fa19de7668eb3a4c6191c">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#a7863b4d5cf3fa19de7668eb3a4c6191c">SliceTestImpl.hpp</a>
</li>
<li>Slice1dInt16Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#aec6e28400b64661bbbfe1ad8b98b074c">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#aec6e28400b64661bbbfe1ad8b98b074c">SliceTestImpl.hpp</a>
</li>
<li>Slice1dUint8Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#a0d439b9fd8efd81d1376e1d6e1b6e315">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#a0d439b9fd8efd81d1376e1d6e1b6e315">SliceTestImpl.hpp</a>
</li>
<li>Slice2dFloat32Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#a7c2b08d3b045aac272d320d6279e1dab">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#a7c2b08d3b045aac272d320d6279e1dab">SliceTestImpl.hpp</a>
</li>
<li>Slice2dInt16Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#aa51c5ed7462fcad3fefde55834c25b83">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#aa51c5ed7462fcad3fefde55834c25b83">SliceTestImpl.hpp</a>
</li>
<li>Slice2dUint8Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#acaf2a0cb0375acbad4564aaa511138a5">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#acaf2a0cb0375acbad4564aaa511138a5">SliceTestImpl.hpp</a>
</li>
<li>Slice3dFloat32Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#a65ea4a275066dd49ca9a23185a103b2c">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#a65ea4a275066dd49ca9a23185a103b2c">SliceTestImpl.hpp</a>
</li>
<li>Slice3dInt16Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#a191a47193f192d4aeec276f080e97620">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#a191a47193f192d4aeec276f080e97620">SliceTestImpl.hpp</a>
</li>
<li>Slice3dUint8Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#a3161c1b143650c88d4cc5e3b08a6bcee">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#a3161c1b143650c88d4cc5e3b08a6bcee">SliceTestImpl.hpp</a>
</li>
<li>Slice4dFloat32Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#ae614565a58a085ebea038e705910792d">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#ae614565a58a085ebea038e705910792d">SliceTestImpl.hpp</a>
</li>
<li>Slice4dInt16Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#a114060adaed8f5bbcf16a584eb4193e9">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#a114060adaed8f5bbcf16a584eb4193e9">SliceTestImpl.hpp</a>
</li>
<li>Slice4dUint8Test()
: <a class="el" href="_slice_test_impl_8cpp.xhtml#a08619ae5f9407cabc427aba5049e31ef">SliceTestImpl.cpp</a>
, <a class="el" href="_slice_test_impl_8hpp.xhtml#a08619ae5f9407cabc427aba5049e31ef">SliceTestImpl.hpp</a>
</li>
<li>SoftReLuInt16Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a102ed5f3b12e4d88645c9cc60820554a">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#a102ed5f3b12e4d88645c9cc60820554a">ActivationTestImpl.hpp</a>
</li>
<li>SoftReLuTest()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#ae2d87b32c8fde79841bdd44e5b07b220">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#ae2d87b32c8fde79841bdd44e5b07b220">ActivationTestImpl.hpp</a>
</li>
<li>SoftReLuTestCommon()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#ac1ff1b47192a4ae96deca53703c97d56">ActivationTestImpl.cpp</a>
</li>
<li>SoftReLuUint8Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#abe4ce5ac4300f71f8d1e17df42b73bdf">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#abe4ce5ac4300f71f8d1e17df42b73bdf">ActivationTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiBlockFloat16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a76e326c08bf7b04cde8c364b83b2a150">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a76e326c08bf7b04cde8c364b83b2a150">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiBlockFloat32Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a067fe71e3d2b0989fc0cdb8dc97af04b">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a067fe71e3d2b0989fc0cdb8dc97af04b">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiBlockNhwcFloat16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a1a91d2f9da7084834c6cc292d07267d0">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a1a91d2f9da7084834c6cc292d07267d0">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiBlockNhwcFloat32Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#ac254ad319f8916cc53fb9b1c376d1e94">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#ac254ad319f8916cc53fb9b1c376d1e94">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiBlockNhwcUint16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a5476a255094e1e5278cce1fe9687e993">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a5476a255094e1e5278cce1fe9687e993">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiBlockNhwcUint8Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a5fbe57852fc6c2f2f79cd6d849678ad8">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a5fbe57852fc6c2f2f79cd6d849678ad8">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiBlockUint16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a3899331dff66113a34ca7d6b614d8114">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a3899331dff66113a34ca7d6b614d8114">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiBlockUint8Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#ae5d658100a21ed977774a5c63d807d6e">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#ae5d658100a21ed977774a5c63d807d6e">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiChannelsFloat16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#acdece6808fda810883db4c55e2773303">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#acdece6808fda810883db4c55e2773303">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiChannelsFloat32Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a25d83e467cf12d92fc0fded2ec9c44f2">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a25d83e467cf12d92fc0fded2ec9c44f2">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiChannelsNhwcFloat16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a679926f2f3e5f4544bf10745898fd689">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a679926f2f3e5f4544bf10745898fd689">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiChannelsNhwcFloat32Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a45c6e2d71c3ac4406374e3e59902fd2c">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a45c6e2d71c3ac4406374e3e59902fd2c">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiChannelsNhwcUint16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#ad33c7547005d30c0060ee6f77e1bd260">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#ad33c7547005d30c0060ee6f77e1bd260">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiChannelsNhwcUint8Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a7af707c3a41c369982e8cfb564e1f52a">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a7af707c3a41c369982e8cfb564e1f52a">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiChannelsUint16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a155f63a73b94b1dee86b34bb1bfe3643">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a155f63a73b94b1dee86b34bb1bfe3643">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdMultiChannelsUint8Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a6d16c5d5b4c62bd1a80cd048c0b9bef1">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a6d16c5d5b4c62bd1a80cd048c0b9bef1">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdPaddingFloat16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a51d049470f26b07f91a6833b0465073b">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a51d049470f26b07f91a6833b0465073b">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdPaddingFloat32Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a5e24e02459c6972aec7c7ce135025bc1">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a5e24e02459c6972aec7c7ce135025bc1">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdPaddingNhwcFloat16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#ac04cc4e5ee76add73ea262db1172f50c">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#ac04cc4e5ee76add73ea262db1172f50c">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdPaddingNhwcFloat32Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#adc827a4ccbc19d4fec584120c7b56089">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#adc827a4ccbc19d4fec584120c7b56089">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdPaddingNhwcUint16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#aee5a1973a76aa7e85a4d33b7abff28c7">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#aee5a1973a76aa7e85a4d33b7abff28c7">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdPaddingNhwcUint8Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a08ce8f24f5339c8dd7f88fd6d457f52f">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a08ce8f24f5339c8dd7f88fd6d457f52f">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdPaddingUint16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#aee8c4557ff617379291aef8480156b38">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#aee8c4557ff617379291aef8480156b38">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdPaddingUint8Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#aeee65049ea82a6b08ab70c45e8693973">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#aeee65049ea82a6b08ab70c45e8693973">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdSimpleFloat16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a759b636c004f48221663a3fd921c1ff7">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a759b636c004f48221663a3fd921c1ff7">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdSimpleFloat32Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a6d1ceb4646bbb7aef19c0276b6c823f4">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a6d1ceb4646bbb7aef19c0276b6c823f4">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdSimpleNhwcFloat16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#ac5abf142a7eab88c9d69eaa5ddd0b953">SpaceToBatchNdTestImpl.hpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#ac5abf142a7eab88c9d69eaa5ddd0b953">SpaceToBatchNdTestImpl.cpp</a>
</li>
<li>SpaceToBatchNdSimpleNhwcFloat32Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#ad7fc813bd227163c8d6e4e65c1235048">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#ad7fc813bd227163c8d6e4e65c1235048">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdSimpleNhwcUint16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#aa069c79521d9171685573eeeb546a466">SpaceToBatchNdTestImpl.hpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#aa069c79521d9171685573eeeb546a466">SpaceToBatchNdTestImpl.cpp</a>
</li>
<li>SpaceToBatchNdSimpleNhwcUint8Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#aa10a7740f4cae3a4455e670fd9f3812c">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#aa10a7740f4cae3a4455e670fd9f3812c">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdSimpleUint16Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#a34ed12a5e33e538006580d2188af9b9d">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#a34ed12a5e33e538006580d2188af9b9d">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToBatchNdSimpleUint8Test()
: <a class="el" href="_space_to_batch_nd_test_impl_8cpp.xhtml#ad6cb698b70730378052d3244616c7bd1">SpaceToBatchNdTestImpl.cpp</a>
, <a class="el" href="_space_to_batch_nd_test_impl_8hpp.xhtml#ad6cb698b70730378052d3244616c7bd1">SpaceToBatchNdTestImpl.hpp</a>
</li>
<li>SpaceToDepthInferOutputShapeTest()
: <a class="el" href="_infer_output_tests_8hpp.xhtml#aee284f22b73268f00e5e9f57bc17c525">InferOutputTests.hpp</a>
</li>
<li>SpaceToDepthNchwAsymmQ8Test()
: <a class="el" href="_space_to_depth_test_impl_8hpp.xhtml#ad9f554c96f1a06b7e490a1a881ce127b">SpaceToDepthTestImpl.hpp</a>
, <a class="el" href="_space_to_depth_test_impl_8cpp.xhtml#ad9f554c96f1a06b7e490a1a881ce127b">SpaceToDepthTestImpl.cpp</a>
</li>
<li>SpaceToDepthNchwEndToEndTest1()
: <a class="el" href="_space_to_depth_end_to_end_test_impl_8cpp.xhtml#aa539d7b30c0a8064ab301a61c5a90fed">SpaceToDepthEndToEndTestImpl.cpp</a>
, <a class="el" href="_space_to_depth_end_to_end_test_impl_8hpp.xhtml#aa539d7b30c0a8064ab301a61c5a90fed">SpaceToDepthEndToEndTestImpl.hpp</a>
</li>
<li>SpaceToDepthNchwEndToEndTest2()
: <a class="el" href="_space_to_depth_end_to_end_test_impl_8hpp.xhtml#a00fc587ab0be7b4d988fcc1a9bdf5355">SpaceToDepthEndToEndTestImpl.hpp</a>
, <a class="el" href="_space_to_depth_end_to_end_test_impl_8cpp.xhtml#a00fc587ab0be7b4d988fcc1a9bdf5355">SpaceToDepthEndToEndTestImpl.cpp</a>
</li>
<li>SpaceToDepthNchwFloat16Test()
: <a class="el" href="_space_to_depth_test_impl_8cpp.xhtml#a85727f78246a172e40b0876738183927">SpaceToDepthTestImpl.cpp</a>
, <a class="el" href="_space_to_depth_test_impl_8hpp.xhtml#a85727f78246a172e40b0876738183927">SpaceToDepthTestImpl.hpp</a>
</li>
<li>SpaceToDepthNchwFloat32Test1()
: <a class="el" href="_space_to_depth_test_impl_8hpp.xhtml#a215edf54a620bbc0ce27c3f7cc30ffea">SpaceToDepthTestImpl.hpp</a>
, <a class="el" href="_space_to_depth_test_impl_8cpp.xhtml#a215edf54a620bbc0ce27c3f7cc30ffea">SpaceToDepthTestImpl.cpp</a>
</li>
<li>SpaceToDepthNchwFloat32Test2()
: <a class="el" href="_space_to_depth_test_impl_8cpp.xhtml#a224a9eafb034dc7836a0df0f466026cb">SpaceToDepthTestImpl.cpp</a>
, <a class="el" href="_space_to_depth_test_impl_8hpp.xhtml#a224a9eafb034dc7836a0df0f466026cb">SpaceToDepthTestImpl.hpp</a>
</li>
<li>SpaceToDepthNchwQSymm16Test()
: <a class="el" href="_space_to_depth_test_impl_8cpp.xhtml#a9f8144a24685e25f1051d1ebe94b8cb0">SpaceToDepthTestImpl.cpp</a>
, <a class="el" href="_space_to_depth_test_impl_8hpp.xhtml#a9f8144a24685e25f1051d1ebe94b8cb0">SpaceToDepthTestImpl.hpp</a>
</li>
<li>SpaceToDepthNhwcAsymmQ8Test()
: <a class="el" href="_space_to_depth_test_impl_8cpp.xhtml#a8a2be2a7ee0bc7117052778e88d33445">SpaceToDepthTestImpl.cpp</a>
, <a class="el" href="_space_to_depth_test_impl_8hpp.xhtml#a8a2be2a7ee0bc7117052778e88d33445">SpaceToDepthTestImpl.hpp</a>
</li>
<li>SpaceToDepthNhwcEndToEndTest1()
: <a class="el" href="_space_to_depth_end_to_end_test_impl_8hpp.xhtml#ae2aeba7e1195292ca5a000a81c145629">SpaceToDepthEndToEndTestImpl.hpp</a>
, <a class="el" href="_space_to_depth_end_to_end_test_impl_8cpp.xhtml#ae2aeba7e1195292ca5a000a81c145629">SpaceToDepthEndToEndTestImpl.cpp</a>
</li>
<li>SpaceToDepthNhwcEndToEndTest2()
: <a class="el" href="_space_to_depth_end_to_end_test_impl_8cpp.xhtml#a2da64f8783ac838e5c4aa76c0d2de8cb">SpaceToDepthEndToEndTestImpl.cpp</a>
, <a class="el" href="_space_to_depth_end_to_end_test_impl_8hpp.xhtml#a2da64f8783ac838e5c4aa76c0d2de8cb">SpaceToDepthEndToEndTestImpl.hpp</a>
</li>
<li>SpaceToDepthNhwcFloat16Test()
: <a class="el" href="_space_to_depth_test_impl_8hpp.xhtml#ac2f718f17fcb50a6f55dde72e9997db7">SpaceToDepthTestImpl.hpp</a>
, <a class="el" href="_space_to_depth_test_impl_8cpp.xhtml#ac2f718f17fcb50a6f55dde72e9997db7">SpaceToDepthTestImpl.cpp</a>
</li>
<li>SpaceToDepthNhwcFloat32Test1()
: <a class="el" href="_space_to_depth_test_impl_8cpp.xhtml#aa249e11eff5c350df76595219ca7144c">SpaceToDepthTestImpl.cpp</a>
, <a class="el" href="_space_to_depth_test_impl_8hpp.xhtml#aa249e11eff5c350df76595219ca7144c">SpaceToDepthTestImpl.hpp</a>
</li>
<li>SpaceToDepthNhwcFloat32Test2()
: <a class="el" href="_space_to_depth_test_impl_8hpp.xhtml#af3abba0d43f447a69ea4de9369218f05">SpaceToDepthTestImpl.hpp</a>
, <a class="el" href="_space_to_depth_test_impl_8cpp.xhtml#af3abba0d43f447a69ea4de9369218f05">SpaceToDepthTestImpl.cpp</a>
</li>
<li>SpaceToDepthNhwcQSymm16Test()
: <a class="el" href="_space_to_depth_test_impl_8cpp.xhtml#ac6d2b61b9e9446b45c94427d3038fe7e">SpaceToDepthTestImpl.cpp</a>
, <a class="el" href="_space_to_depth_test_impl_8hpp.xhtml#ac6d2b61b9e9446b45c94427d3038fe7e">SpaceToDepthTestImpl.hpp</a>
</li>
<li>SplitterFloat16Test()
: <a class="el" href="_splitter_test_impl_8cpp.xhtml#a273653c7436f5a92b9e32d15825983f0">SplitterTestImpl.cpp</a>
, <a class="el" href="_splitter_test_impl_8hpp.xhtml#a3b0e76c29b1a16c11e33c4ccae8dc292">SplitterTestImpl.hpp</a>
</li>
<li>SplitterFloat32Test()
: <a class="el" href="_splitter_test_impl_8cpp.xhtml#a65ba472fb1d6550f1ae5fb937b23d0c5">SplitterTestImpl.cpp</a>
, <a class="el" href="_splitter_test_impl_8hpp.xhtml#ae9776e5eacfa84e930e37360085ba492">SplitterTestImpl.hpp</a>
</li>
<li>SplitterInt16Test()
: <a class="el" href="_splitter_test_impl_8hpp.xhtml#a3749192defff68ea558cc116a691ad83">SplitterTestImpl.hpp</a>
, <a class="el" href="_splitter_test_impl_8cpp.xhtml#a0fa291bb2b9b182a286e600a3b990c16">SplitterTestImpl.cpp</a>
</li>
<li>SplitterUint8Test()
: <a class="el" href="_splitter_test_impl_8cpp.xhtml#a10c1752ab78fd2f7fc58fda5e2836015">SplitterTestImpl.cpp</a>
, <a class="el" href="_splitter_test_impl_8hpp.xhtml#afaae5d80b31a8b4fe4792ec52d976132">SplitterTestImpl.hpp</a>
</li>
<li>SqrtInt16Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#ae38ea3540b33a68254857f9031352e71">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#ae38ea3540b33a68254857f9031352e71">ActivationTestImpl.hpp</a>
</li>
<li>SqrtNNTest()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a71ae12f61c946554c49aaa709c81ffa9">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#a71ae12f61c946554c49aaa709c81ffa9">ActivationTestImpl.hpp</a>
</li>
<li>SqrtTest()
: <a class="el" href="_activation_test_impl_8hpp.xhtml#ac9907063df1d7bba86f9f086ecd96810">ActivationTestImpl.hpp</a>
, <a class="el" href="_activation_test_impl_8cpp.xhtml#ac9907063df1d7bba86f9f086ecd96810">ActivationTestImpl.cpp</a>
</li>
<li>SqrtTestCommon()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a6612d7fa4a0b57c9495bc4e1f3a274f3">ActivationTestImpl.cpp</a>
</li>
<li>SqrtUint8Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a95c71d4f833302b14790ce0755cb1103">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#a95c71d4f833302b14790ce0755cb1103">ActivationTestImpl.hpp</a>
</li>
<li>SquareInt16Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#acac16f9bf4a34a7a07b011a22271668a">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#acac16f9bf4a34a7a07b011a22271668a">ActivationTestImpl.hpp</a>
</li>
<li>SquareTest()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a587b1550cc5479deb48bbe14c7eded17">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#a587b1550cc5479deb48bbe14c7eded17">ActivationTestImpl.hpp</a>
</li>
<li>SquareTestCommon()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a89e93214e6dc3c5616b2351467b0abf9">ActivationTestImpl.cpp</a>
</li>
<li>SquareUint8Test()
: <a class="el" href="_activation_test_impl_8cpp.xhtml#a1199022cc4acee1c6fa906b1ec62d4dc">ActivationTestImpl.cpp</a>
, <a class="el" href="_activation_test_impl_8hpp.xhtml#a1199022cc4acee1c6fa906b1ec62d4dc">ActivationTestImpl.hpp</a>
</li>
<li>StackAxis0Float32Test()
: <a class="el" href="_stack_test_impl_8hpp.xhtml#adfe7aa108b8822b9ecbd89c19181d453">StackTestImpl.hpp</a>
, <a class="el" href="_stack_test_impl_8cpp.xhtml#adfe7aa108b8822b9ecbd89c19181d453">StackTestImpl.cpp</a>
</li>
<li>StackAxis0TestImpl()
: <a class="el" href="_stack_test_impl_8cpp.xhtml#a0c69a1a7923839f98d8528d55f9da3d5">StackTestImpl.cpp</a>
</li>
<li>StackFloat16Test()
: <a class="el" href="_stack_test_impl_8cpp.xhtml#ad17f60bbe58795f68f60815f5f12a317">StackTestImpl.cpp</a>
, <a class="el" href="_stack_test_impl_8hpp.xhtml#ad17f60bbe58795f68f60815f5f12a317">StackTestImpl.hpp</a>
</li>
<li>StackInferOutputShapeFromInputsMatchTest()
: <a class="el" href="_infer_output_tests_8hpp.xhtml#abd1bb9e1b7783eccf8dca20d455064a3">InferOutputTests.hpp</a>
</li>
<li>StackInferOutputShapeFromInputsNoMatchTest()
: <a class="el" href="_infer_output_tests_8hpp.xhtml#a9195d0488c41fb4a5967f8a2c5bdb6e9">InferOutputTests.hpp</a>
</li>
<li>StackInferOutputShapeImpl()
: <a class="el" href="_infer_output_tests_8hpp.xhtml#a2985b2f0f61fcad5f75e5119e7b9916e">InferOutputTests.hpp</a>
</li>
<li>StackOutput3DInputs3Float32Test()
: <a class="el" href="_stack_test_impl_8cpp.xhtml#a3b4b3f173b6a4527f576a2ade7eb8458">StackTestImpl.cpp</a>
, <a class="el" href="_stack_test_impl_8hpp.xhtml#a3b4b3f173b6a4527f576a2ade7eb8458">StackTestImpl.hpp</a>
</li>
<li>StackOutput3DInputs3TestImpl()
: <a class="el" href="_stack_test_impl_8cpp.xhtml#a10e9aa6527f51a4c18042f648d8e3be4">StackTestImpl.cpp</a>
</li>
<li>StackOutput4DAxis1Float32Test()
: <a class="el" href="_stack_test_impl_8cpp.xhtml#ad49417dc85c34867037162e3343a84b2">StackTestImpl.cpp</a>
, <a class="el" href="_stack_test_impl_8hpp.xhtml#ad49417dc85c34867037162e3343a84b2">StackTestImpl.hpp</a>
</li>
<li>StackOutput4DAxis1TestImpl()
: <a class="el" href="_stack_test_impl_8cpp.xhtml#a46f7153df5d1c0256b8caff36a20f543">StackTestImpl.cpp</a>
</li>
<li>StackOutput4DAxis2Float32Test()
: <a class="el" href="_stack_test_impl_8cpp.xhtml#acd8d3e699b4f15f0ee82d5bdef47dccf">StackTestImpl.cpp</a>
, <a class="el" href="_stack_test_impl_8hpp.xhtml#acd8d3e699b4f15f0ee82d5bdef47dccf">StackTestImpl.hpp</a>
</li>
<li>StackOutput4DAxis2TestImpl()
: <a class="el" href="_stack_test_impl_8cpp.xhtml#a347abac52a2996998429be987be8565b">StackTestImpl.cpp</a>
</li>
<li>StackOutput4DAxis3Float32Test()
: <a class="el" href="_stack_test_impl_8hpp.xhtml#a2d9926a44fde4b3bd4596b1996ec9c45">StackTestImpl.hpp</a>
, <a class="el" href="_stack_test_impl_8cpp.xhtml#a2d9926a44fde4b3bd4596b1996ec9c45">StackTestImpl.cpp</a>
</li>
<li>StackOutput4DAxis3TestImpl()
: <a class="el" href="_stack_test_impl_8cpp.xhtml#a10e4fe92167c11a2539405d5a006bf84">StackTestImpl.cpp</a>
</li>
<li>StackOutput5DFloat32Test()
: <a class="el" href="_stack_test_impl_8cpp.xhtml#ac1d2db6153cebd24e1b0a7abec6b6796">StackTestImpl.cpp</a>
, <a class="el" href="_stack_test_impl_8hpp.xhtml#ac1d2db6153cebd24e1b0a7abec6b6796">StackTestImpl.hpp</a>
</li>
<li>StackOutput5DTestImpl()
: <a class="el" href="_stack_test_impl_8cpp.xhtml#a5182b0d4d4fd8dbfd562146c06065e59">StackTestImpl.cpp</a>
</li>
<li>StackValidateTensorShapesFromInputsMatchTest()
: <a class="el" href="_infer_output_tests_8hpp.xhtml#a9a2a494f5a3ff1885fa9d62c6c500e52">InferOutputTests.hpp</a>
</li>
<li>StackValidateTensorShapesFromInputsNoMatchTest()
: <a class="el" href="_infer_output_tests_8hpp.xhtml#af061819a84da0c72056b016d02d239f3">InferOutputTests.hpp</a>
</li>
<li>STB_IMAGE_IMPLEMENTATION
: <a class="el" href="_inference_test_image_8cpp.xhtml#a18372412ad2fc3ce1e3240b3cf0efe78">InferenceTestImage.cpp</a>
</li>
<li>STB_IMAGE_RESIZE_IMPLEMENTATION
: <a class="el" href="_inference_test_image_8cpp.xhtml#aa6a7b41350a14f718b619164bc2b8fdf">InferenceTestImage.cpp</a>
</li>
<li>STB_IMAGE_WRITE_IMPLEMENTATION
: <a class="el" href="_inference_test_image_8cpp.xhtml#aefe397a94e8feddc652f92ef40ce9597">InferenceTestImage.cpp</a>
</li>
<li>STR_LIST
: <a class="el" href="_onnx_parser_8cpp.xhtml#a5426a7adb280d1739cc6d66fe9ac1b9c">OnnxParser.cpp</a>
</li>
<li>StridedSlice2dFloat32Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a7a67d0748e00b7fce0afabb2db8ccfb9">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a7a67d0748e00b7fce0afabb2db8ccfb9">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSlice2dInt16Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#ad16f906b0639c9bdcb7475b2f46e2fa3">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#ad16f906b0639c9bdcb7475b2f46e2fa3">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSlice2dReverseFloat32Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a7dc05350adcafeb59f2b886c233f5574">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a7dc05350adcafeb59f2b886c233f5574">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSlice2dReverseInt16Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a68b89db47b231708ef3ba51cc7c8bd71">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a68b89db47b231708ef3ba51cc7c8bd71">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSlice2dReverseUint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a2fd88fdec828db84fbd1cfeae587b15f">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a2fd88fdec828db84fbd1cfeae587b15f">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSlice2dUint8Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a6edf2eff0e61eb4225ccbcb856bc5a3a">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a6edf2eff0e61eb4225ccbcb856bc5a3a">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSlice3dFloat32Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a5f456ed27ee2cf7b8c573e1ecd10954f">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a5f456ed27ee2cf7b8c573e1ecd10954f">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSlice3dInt16Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a9a2c1701ecff8b777a73806c957167a3">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a9a2c1701ecff8b777a73806c957167a3">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSlice3dReverseFloat32Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a29aba9f6379f5751a2697fa103e363dd">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a29aba9f6379f5751a2697fa103e363dd">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSlice3dReverseInt16Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a05b6e1947a79c0ff16529cadac5d4364">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a05b6e1947a79c0ff16529cadac5d4364">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSlice3dReverseUint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a706a85d2963d41f8f1bf2333c92cea20">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a706a85d2963d41f8f1bf2333c92cea20">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSlice3dUint8Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a2dee82ca20c9d28ddf6ef84c5f742d39">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a2dee82ca20c9d28ddf6ef84c5f742d39">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSlice4dFloat32Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a4c7305105ff0e1bffee5620c2a526478">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a4c7305105ff0e1bffee5620c2a526478">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSlice4dInt16Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a317d33dcd347b2cef5eaf9c712b72114">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a317d33dcd347b2cef5eaf9c712b72114">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSlice4dReverseFloat32Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a8d3b2f100fb15428af112ec85184d7f7">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a8d3b2f100fb15428af112ec85184d7f7">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSlice4dReverseInt16Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#ad03d56036d637fa6690fe37cebf6ed8e">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#ad03d56036d637fa6690fe37cebf6ed8e">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSlice4dReverseUint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a9785b1ac7f2ced9f363ef02fa35e7ab3">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a9785b1ac7f2ced9f363ef02fa35e7ab3">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSlice4dUint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#ab3ba59776e40cc99fb573729feb14f57">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#ab3ba59776e40cc99fb573729feb14f57">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0And1And3Float32Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a049aad68ad14b9a35996fb1f3e8e15c1">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a049aad68ad14b9a35996fb1f3e8e15c1">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0And1And3Uint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a750432d87407e86727bdf75a8d6db785">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a750432d87407e86727bdf75a8d6db785">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0And1Float32Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#ac5403385f2ee51c4181f8d29d16d41af">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#ac5403385f2ee51c4181f8d29d16d41af">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0And1Uint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#ae56682dde738ea4c19f615ac8d9c7d57">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#ae56682dde738ea4c19f615ac8d9c7d57">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0And2Float32Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a36771bf29b95121565b31f6fc198cbeb">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a36771bf29b95121565b31f6fc198cbeb">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0And2Uint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#af4c98332c88145ad01fea7a2e0a18937">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#af4c98332c88145ad01fea7a2e0a18937">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0And3Float32Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a6028a25e1e50b8aba0d0f67afd3eebe4">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a6028a25e1e50b8aba0d0f67afd3eebe4">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0And3Uint8Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a4634d963bf040eba3fe4107d889df581">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a4634d963bf040eba3fe4107d889df581">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0Dim3Float32Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a77b1cece2aaacd904283a1f17ed67cbf">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a77b1cece2aaacd904283a1f17ed67cbf">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0Dim3Uint8Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a67be848714d39789245b5d526554bb12">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a67be848714d39789245b5d526554bb12">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0Float32Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#acecd68548cb0db4915cba3f3e07474a5">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#acecd68548cb0db4915cba3f3e07474a5">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition0Uint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#adb38933cffca98d6a43ef4c87aa7a869">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#adb38933cffca98d6a43ef4c87aa7a869">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition1Float32Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a83f1c6962bed25bbad0ff2eb5a0cfd24">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a83f1c6962bed25bbad0ff2eb5a0cfd24">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition1Uint8Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a5a51ed98de719f2d7677d73570e0cfef">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a5a51ed98de719f2d7677d73570e0cfef">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition2Float32Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a016976a68397c0546dc99dcd25aed28b">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a016976a68397c0546dc99dcd25aed28b">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition2Uint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a79a22fee5f4034327913bbe4f5a6b3e3">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a79a22fee5f4034327913bbe4f5a6b3e3">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition3Float32Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#aceb716490f3f119744f06c67b234adbd">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#aceb716490f3f119744f06c67b234adbd">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceShrinkAxisMaskBitPosition3Uint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a1659c97f388b1b2afadc25e716ab53a1">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a1659c97f388b1b2afadc25e716ab53a1">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskCTSFloat32Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a235de40e90991c356897d4b3061ae814">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a235de40e90991c356897d4b3061ae814">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceShrinkAxisMaskFloat32Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a2dec4d947835569aff03a4b7864ba295">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a2dec4d947835569aff03a4b7864ba295">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskInt16Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a35a79071b058f11983d3e7b0522141f3">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a35a79071b058f11983d3e7b0522141f3">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceShrinkAxisMaskUint8Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a4c361c981541c88fd3bfb82e53deb18b">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a4c361c981541c88fd3bfb82e53deb18b">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceSimpleRangeMaskFloat32Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a7c812e6cf305a2bfb0e8251370d00474">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a7c812e6cf305a2bfb0e8251370d00474">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceSimpleRangeMaskInt16Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a9153f614549d02cf4dd028796b0079bd">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a9153f614549d02cf4dd028796b0079bd">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceSimpleRangeMaskUint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#abd791cd48bbef1c52ad52e5fea0bb299">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#abd791cd48bbef1c52ad52e5fea0bb299">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceSimpleStrideFloat32Test()
: <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#af92b9ee5ac2c53128d6e02bb26f7fcb8">StridedSliceTestImpl.hpp</a>
, <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#af92b9ee5ac2c53128d6e02bb26f7fcb8">StridedSliceTestImpl.cpp</a>
</li>
<li>StridedSliceSimpleStrideInt16Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a288fdb13725e66ec6d2bea00eef3c2d4">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a288fdb13725e66ec6d2bea00eef3c2d4">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedSliceSimpleStrideUint8Test()
: <a class="el" href="_strided_slice_test_impl_8cpp.xhtml#a1bda4aafec3a8bd83255d7be85b5908b">StridedSliceTestImpl.cpp</a>
, <a class="el" href="_strided_slice_test_impl_8hpp.xhtml#a1bda4aafec3a8bd83255d7be85b5908b">StridedSliceTestImpl.hpp</a>
</li>
<li>StridedTransposeConvolution2dTest()
: <a class="el" href="_transpose_convolution2d_test_impl_8hpp.xhtml#a422af9587ccbe21c277e63bc81eb84ab">TransposeConvolution2dTestImpl.hpp</a>
, <a class="el" href="_transpose_convolution2d_test_impl_8cpp.xhtml#a422af9587ccbe21c277e63bc81eb84ab">TransposeConvolution2dTestImpl.cpp</a>
</li>
<li>StridedTransposeConvolution2dTest&lt; armnn::DataType::Float32, armnn::DataType::Float32 &gt;()
: <a class="el" href="_transpose_convolution2d_test_impl_8cpp.xhtml#a5d6fe2e9f5402a91f06de10b187620b2">TransposeConvolution2dTestImpl.cpp</a>
</li>
<li>StridedTransposeConvolution2dTest&lt; armnn::DataType::QAsymmS8, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_transpose_convolution2d_test_impl_8cpp.xhtml#a9594c2ded7345d457681624e8ddf5de4">TransposeConvolution2dTestImpl.cpp</a>
</li>
<li>StridedTransposeConvolution2dTest&lt; armnn::DataType::QAsymmU8, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_transpose_convolution2d_test_impl_8cpp.xhtml#aacdf1ddde32357a1a02257ba67ea1b9c">TransposeConvolution2dTestImpl.cpp</a>
</li>
<li>StridedTransposeConvolution2dTest&lt; armnn::DataType::QSymmS16, armnn::DataType::Signed32 &gt;()
: <a class="el" href="_transpose_convolution2d_test_impl_8cpp.xhtml#aae481e07ff28897e58f0307337c9a008">TransposeConvolution2dTestImpl.cpp</a>
</li>
<li>STRINGIFY_MACRO
: <a class="el" href="include_2armnn_2_version_8hpp.xhtml#a6bc878927f8aa6be563c0c5949eec3b8">Version.hpp</a>
</li>
<li>STRINGIFY_VALUE
: <a class="el" href="include_2armnn_2_version_8hpp.xhtml#a50c973b64012b42df2cd1e602dacc0e0">Version.hpp</a>
</li>
<li>StringToSwTraceStringTestHelper()
: <a class="el" href="_profiling_tests_8cpp.xhtml#afbc30a5751c7cc292a235d5d3651a691">ProfilingTests.cpp</a>
</li>
<li>Sub1Vector()
: <a class="el" href="_lstm_utils_8cpp.xhtml#aca7bd1dff180b6a5de894537f8220793">LstmUtils.cpp</a>
, <a class="el" href="_lstm_utils_8hpp.xhtml#aca7bd1dff180b6a5de894537f8220793">LstmUtils.hpp</a>
</li>
<li>SubgraphPtr
: <a class="el" href="_load_model_8cpp.xhtml#a037eb215cd80fff200b7aaa75dbf05de">LoadModel.cpp</a>
</li>
<li>SubtractionBroadcast1ElementFloat16Test()
: <a class="el" href="_subtraction_test_impl_8hpp.xhtml#ac932e0c3ec02ba86e770724c0bbd9225">SubtractionTestImpl.hpp</a>
, <a class="el" href="_subtraction_test_impl_8cpp.xhtml#ac932e0c3ec02ba86e770724c0bbd9225">SubtractionTestImpl.cpp</a>
</li>
<li>SubtractionBroadcast1ElementInt16Test()
: <a class="el" href="_subtraction_test_impl_8hpp.xhtml#a1b7bf3f1985a826cff2520cf3a0e9857">SubtractionTestImpl.hpp</a>
, <a class="el" href="_subtraction_test_impl_8cpp.xhtml#a1b7bf3f1985a826cff2520cf3a0e9857">SubtractionTestImpl.cpp</a>
</li>
<li>SubtractionBroadcast1ElementInt32Test()
: <a class="el" href="_subtraction_test_impl_8hpp.xhtml#a09970b77fb3dd0f031df2ebb4f944a0a">SubtractionTestImpl.hpp</a>
, <a class="el" href="_subtraction_test_impl_8cpp.xhtml#a09970b77fb3dd0f031df2ebb4f944a0a">SubtractionTestImpl.cpp</a>
</li>
<li>SubtractionBroadcast1ElementTest()
: <a class="el" href="_subtraction_test_impl_8cpp.xhtml#a77181b765579ebe9b057f87c3994f472">SubtractionTestImpl.cpp</a>
, <a class="el" href="_subtraction_test_impl_8hpp.xhtml#a77181b765579ebe9b057f87c3994f472">SubtractionTestImpl.hpp</a>
</li>
<li>SubtractionBroadcast1ElementUint8Test()
: <a class="el" href="_subtraction_test_impl_8cpp.xhtml#ab8fecd5082f2af971a2d21444dcb5076">SubtractionTestImpl.cpp</a>
, <a class="el" href="_subtraction_test_impl_8hpp.xhtml#ab8fecd5082f2af971a2d21444dcb5076">SubtractionTestImpl.hpp</a>
</li>
<li>SubtractionBroadcastFloat16Test()
: <a class="el" href="_subtraction_test_impl_8cpp.xhtml#a31cd55cebdd920e49306b6e86d584f2e">SubtractionTestImpl.cpp</a>
, <a class="el" href="_subtraction_test_impl_8hpp.xhtml#a31cd55cebdd920e49306b6e86d584f2e">SubtractionTestImpl.hpp</a>
</li>
<li>SubtractionBroadcastInt16Test()
: <a class="el" href="_subtraction_test_impl_8hpp.xhtml#abab5aa52ccc7d74a296fdf24943d7be5">SubtractionTestImpl.hpp</a>
, <a class="el" href="_subtraction_test_impl_8cpp.xhtml#abab5aa52ccc7d74a296fdf24943d7be5">SubtractionTestImpl.cpp</a>
</li>
<li>SubtractionBroadcastInt32Test()
: <a class="el" href="_subtraction_test_impl_8cpp.xhtml#a3025f1ce891a9c4cead54c3181bc3ce5">SubtractionTestImpl.cpp</a>
, <a class="el" href="_subtraction_test_impl_8hpp.xhtml#a3025f1ce891a9c4cead54c3181bc3ce5">SubtractionTestImpl.hpp</a>
</li>
<li>SubtractionBroadcastTest()
: <a class="el" href="_subtraction_test_impl_8hpp.xhtml#a5826b33b3a2901a1bde281f889877465">SubtractionTestImpl.hpp</a>
, <a class="el" href="_subtraction_test_impl_8cpp.xhtml#a5826b33b3a2901a1bde281f889877465">SubtractionTestImpl.cpp</a>
</li>
<li>SubtractionBroadcastUint8Test()
: <a class="el" href="_subtraction_test_impl_8hpp.xhtml#ae344cdea661f767813ade7bf8206e45b">SubtractionTestImpl.hpp</a>
, <a class="el" href="_subtraction_test_impl_8cpp.xhtml#ae344cdea661f767813ade7bf8206e45b">SubtractionTestImpl.cpp</a>
</li>
<li>SubtractionFloat16Test()
: <a class="el" href="_subtraction_test_impl_8cpp.xhtml#a5a738baddc0102b3c4f325fc6f937a03">SubtractionTestImpl.cpp</a>
, <a class="el" href="_subtraction_test_impl_8hpp.xhtml#a5a738baddc0102b3c4f325fc6f937a03">SubtractionTestImpl.hpp</a>
</li>
<li>SubtractionInt16Test()
: <a class="el" href="_subtraction_test_impl_8hpp.xhtml#a59c7fdb99a5dd06ccdc1873f928f4874">SubtractionTestImpl.hpp</a>
, <a class="el" href="_subtraction_test_impl_8cpp.xhtml#a59c7fdb99a5dd06ccdc1873f928f4874">SubtractionTestImpl.cpp</a>
</li>
<li>SubtractionInt32Test()
: <a class="el" href="_subtraction_test_impl_8cpp.xhtml#af7a6009b41b0e10f92f5cb6a70b36430">SubtractionTestImpl.cpp</a>
, <a class="el" href="_subtraction_test_impl_8hpp.xhtml#af7a6009b41b0e10f92f5cb6a70b36430">SubtractionTestImpl.hpp</a>
</li>
<li>SubtractionTest()
: <a class="el" href="_subtraction_test_impl_8hpp.xhtml#a997567716b084a181a143f5f89eaa8b8">SubtractionTestImpl.hpp</a>
, <a class="el" href="_subtraction_test_impl_8cpp.xhtml#a997567716b084a181a143f5f89eaa8b8">SubtractionTestImpl.cpp</a>
</li>
<li>SubtractionUint8Test()
: <a class="el" href="_subtraction_test_impl_8cpp.xhtml#a3866f2b4ec73327bf8c10ad4a4267790">SubtractionTestImpl.cpp</a>
, <a class="el" href="_subtraction_test_impl_8hpp.xhtml#a3866f2b4ec73327bf8c10ad4a4267790">SubtractionTestImpl.hpp</a>
</li>
<li>SupportedFrontend
: <a class="el" href="_image_tensor_generator_8hpp.xhtml#a7599848540a5f43e977119c054b3563e">ImageTensorGenerator.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>