summaryrefslogtreecommitdiff
path: root/documentation/hierarchy.js
blob: 9da671a0d9edb4042fadafdfca3c49f8940c3a1a (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
var hierarchy =
[
    [ "_Unique_if< T >", "structarm__compute_1_1support_1_1cpp14_1_1___unique__if.xhtml", null ],
    [ "_Unique_if< T[]>", "structarm__compute_1_1support_1_1cpp14_1_1___unique__if_3_01_t[]_4.xhtml", null ],
    [ "_Unique_if< T[N]>", "structarm__compute_1_1support_1_1cpp14_1_1___unique__if_3_01_t[_n]_4.xhtml", null ],
    [ "AbsoluteTolerance< T >", "classarm__compute_1_1test_1_1validation_1_1_absolute_tolerance.xhtml", null ],
    [ "AbsoluteTolerance< U >", "classarm__compute_1_1test_1_1validation_1_1_absolute_tolerance.xhtml", null ],
    [ "ActivationLayerInfo", "classarm__compute_1_1_activation_layer_info.xhtml", null ],
    [ "AlexNetNetwork< ITensorType, TensorType, SubTensorType, Accessor, ActivationLayerFunction, ConvolutionLayerFunction, DirectConvolutionLayerFunction, FullyConnectedLayerFunction, NormalizationLayerFunction, PoolingLayerFunction, SoftmaxLayerFunction >", "classarm__compute_1_1test_1_1networks_1_1_alex_net_network.xhtml", null ],
    [ "AlexNetNetwork< ITensorType, TensorType, SubTensorType, arm_compute::test::Accessor, ActivationLayerFunction, ConvolutionLayerFunction, DirectConvolutionLayerFunction, FullyConnectedLayerFunction, NormalizationLayerFunction, PoolingLayerFunction, SoftmaxLayerFunction >", "classarm__compute_1_1test_1_1networks_1_1_alex_net_network.xhtml", null ],
    [ "AssetsLibrary", "classarm__compute_1_1test_1_1_assets_library.xhtml", null ],
    [ "BatchNormalizationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_batch_normalization_layer_dataset.xhtml", [
      [ "GoogLeNetInceptionV4BatchNormalizationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v4_batch_normalization_layer_dataset.xhtml", null ],
      [ "RandomBatchNormalizationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_random_batch_normalization_layer_dataset.xhtml", null ],
      [ "YOLOV2BatchNormalizationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_y_o_l_o_v2_batch_normalization_layer_dataset.xhtml", null ]
    ] ],
    [ "BorderSize", "structarm__compute_1_1_border_size.xhtml", null ],
    [ "CLCoefficientTable", "structarm__compute_1_1_c_l_coefficient_table.xhtml", null ],
    [ "CLKernelLibrary", "classarm__compute_1_1_c_l_kernel_library.xhtml", null ],
    [ "CLLKInternalKeypoint", "structarm__compute_1_1_c_l_l_k_internal_keypoint.xhtml", null ],
    [ "CLOldValue", "structarm__compute_1_1_c_l_old_value.xhtml", null ],
    [ "CLScheduler", "classarm__compute_1_1_c_l_scheduler.xhtml", null ],
    [ "CLSymbols", "classarm__compute_1_1_c_l_symbols.xhtml", null ],
    [ "CommandLineParser", "classarm__compute_1_1test_1_1framework_1_1_command_line_parser.xhtml", null ],
    [ "common_promoted_signed_type< T >", "structarm__compute_1_1test_1_1common__promoted__signed__type.xhtml", null ],
    [ "compare< T >", "structarm__compute_1_1test_1_1validation_1_1compare.xhtml", null ],
    [ "compare_base< T >", "structarm__compute_1_1test_1_1validation_1_1compare__base.xhtml", null ],
    [ "compare_base< AbsoluteTolerance< U > >", "structarm__compute_1_1test_1_1validation_1_1compare__base.xhtml", [
      [ "compare< AbsoluteTolerance< U > >", "structarm__compute_1_1test_1_1validation_1_1compare_3_01_absolute_tolerance_3_01_u_01_4_01_4.xhtml", null ]
    ] ],
    [ "compare_base< RelativeTolerance< U > >", "structarm__compute_1_1test_1_1validation_1_1compare__base.xhtml", [
      [ "compare< RelativeTolerance< U > >", "structarm__compute_1_1test_1_1validation_1_1compare_3_01_relative_tolerance_3_01_u_01_4_01_4.xhtml", null ]
    ] ],
    [ "compare_dimension< T >", "classarm__compute_1_1detail_1_1compare__dimension.xhtml", null ],
    [ "constant_expr< T >", "structarm__compute_1_1test_1_1fixed__point__arithmetic_1_1detail_1_1constant__expr.xhtml", null ],
    [ "ConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_convolution_layer_dataset.xhtml", [
      [ "AlexNetConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_alex_net_convolution_layer_dataset.xhtml", null ],
      [ "AlexNetDirectConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_alex_net_direct_convolution_layer_dataset.xhtml", null ],
      [ "DirectConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_direct_convolution_layer_dataset.xhtml", null ],
      [ "GoogLeNetInceptionV1ConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v1_convolution_layer_dataset.xhtml", null ],
      [ "GoogLeNetInceptionV1DirectConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v1_direct_convolution_layer_dataset.xhtml", null ],
      [ "GoogLeNetInceptionV4ConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v4_convolution_layer_dataset.xhtml", null ],
      [ "GoogLeNetInceptionV4DirectConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v4_direct_convolution_layer_dataset.xhtml", null ],
      [ "LargeConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_large_convolution_layer_dataset.xhtml", null ],
      [ "LeNet5ConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_le_net5_convolution_layer_dataset.xhtml", null ],
      [ "SmallConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_small_convolution_layer_dataset.xhtml", null ],
      [ "SqueezeNetConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_squeeze_net_convolution_layer_dataset.xhtml", null ],
      [ "VGG16ConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_v_g_g16_convolution_layer_dataset.xhtml", null ],
      [ "VGG16DirectConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_v_g_g16_direct_convolution_layer_dataset.xhtml", null ],
      [ "YOLOV2ConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_y_o_l_o_v2_convolution_layer_dataset.xhtml", null ]
    ] ],
    [ "Coordinates2D", "struct_coordinates2_d.xhtml", null ],
    [ "Coordinates2D", "structarm__compute_1_1_coordinates2_d.xhtml", null ],
    [ "Coordinates3D", "structarm__compute_1_1_coordinates3_d.xhtml", null ],
    [ "CounterMapping", "structmali__userspace_1_1_counter_mapping.xhtml", null ],
    [ "CPUInfo", "structarm__compute_1_1_c_p_u_info.xhtml", null ],
    [ "Dataset", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_dataset.xhtml", [
      [ "CartesianProductDataset< T, U >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_cartesian_product_dataset.xhtml", null ],
      [ "JoinDataset< T, U >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_join_dataset.xhtml", null ],
      [ "NamedDataset", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_named_dataset.xhtml", [
        [ "ContainerDataset< T >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_container_dataset.xhtml", [
          [ "DepthConcatenateShapes", "classarm__compute_1_1test_1_1datasets_1_1_depth_concatenate_shapes.xhtml", null ],
          [ "GlobalPoolingShapes", "classarm__compute_1_1test_1_1datasets_1_1_global_pooling_shapes.xhtml", null ],
          [ "Large2DShapes", "classarm__compute_1_1test_1_1datasets_1_1_large2_d_shapes.xhtml", null ],
          [ "Large3DShapes", "classarm__compute_1_1test_1_1datasets_1_1_large3_d_shapes.xhtml", null ],
          [ "Large4DShapes", "classarm__compute_1_1test_1_1datasets_1_1_large4_d_shapes.xhtml", null ],
          [ "LargeShapes", "classarm__compute_1_1test_1_1datasets_1_1_large_shapes.xhtml", null ],
          [ "MediumShapes", "classarm__compute_1_1test_1_1datasets_1_1_medium_shapes.xhtml", null ],
          [ "Small2DShapes", "classarm__compute_1_1test_1_1datasets_1_1_small2_d_shapes.xhtml", null ],
          [ "Small3DShapes", "classarm__compute_1_1test_1_1datasets_1_1_small3_d_shapes.xhtml", null ],
          [ "Small4DShapes", "classarm__compute_1_1test_1_1datasets_1_1_small4_d_shapes.xhtml", null ],
          [ "SmallDirectConvolutionShapes", "classarm__compute_1_1test_1_1datasets_1_1_small_direct_convolution_shapes.xhtml", null ],
          [ "SmallShapes", "classarm__compute_1_1test_1_1datasets_1_1_small_shapes.xhtml", null ]
        ] ],
        [ "InitializerListDataset< T >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_initializer_list_dataset.xhtml", null ],
        [ "RangeDataset< T >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_range_dataset.xhtml", null ],
        [ "SingletonDataset< T >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_singleton_dataset.xhtml", null ],
        [ "ContainerDataset< std::vector< ActivationLayerInfo::ActivationFunction > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_container_dataset.xhtml", [
          [ "ActivationFunctions", "classarm__compute_1_1test_1_1datasets_1_1_activation_functions.xhtml", null ]
        ] ],
        [ "ContainerDataset< std::vector< BorderMode > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_container_dataset.xhtml", [
          [ "BorderModes", "classarm__compute_1_1test_1_1datasets_1_1_border_modes.xhtml", null ]
        ] ],
        [ "ContainerDataset< std::vector< ConvertPolicy > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_container_dataset.xhtml", [
          [ "ConvertPolicies", "classarm__compute_1_1test_1_1datasets_1_1_convert_policies.xhtml", null ]
        ] ],
        [ "ContainerDataset< std::vector< InterpolationPolicy > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_container_dataset.xhtml", [
          [ "InterpolationPolicies", "classarm__compute_1_1test_1_1datasets_1_1_interpolation_policies.xhtml", null ]
        ] ],
        [ "ContainerDataset< std::vector< MatrixPattern > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_container_dataset.xhtml", [
          [ "MatrixPatterns", "classarm__compute_1_1test_1_1datasets_1_1_matrix_patterns.xhtml", null ]
        ] ],
        [ "ContainerDataset< std::vector< NonLinearFilterFunction > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_container_dataset.xhtml", [
          [ "NonLinearFilterFunctions", "classarm__compute_1_1test_1_1datasets_1_1_non_linear_filter_functions.xhtml", null ]
        ] ],
        [ "ContainerDataset< std::vector< NormType > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_container_dataset.xhtml", [
          [ "NormalizationTypes", "classarm__compute_1_1test_1_1datasets_1_1_normalization_types.xhtml", null ]
        ] ],
        [ "ContainerDataset< std::vector< PoolingType > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_container_dataset.xhtml", [
          [ "PoolingTypes", "classarm__compute_1_1test_1_1datasets_1_1_pooling_types.xhtml", null ]
        ] ],
        [ "ContainerDataset< std::vector< ReductionOperation > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_container_dataset.xhtml", [
          [ "ReductionOperations", "classarm__compute_1_1test_1_1datasets_1_1_reduction_operations.xhtml", null ]
        ] ],
        [ "InitializerListDataset< TensorShape >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_initializer_list_dataset.xhtml", null ],
        [ "SingletonDataset< ActivationLayerInfo >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_singleton_dataset.xhtml", null ],
        [ "SingletonDataset< NormalizationLayerInfo >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_singleton_dataset.xhtml", null ],
        [ "SingletonDataset< TensorShape >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_singleton_dataset.xhtml", [
          [ "Small1DShape", "classarm__compute_1_1test_1_1datasets_1_1_small1_d_shape.xhtml", null ]
        ] ]
      ] ],
      [ "ZipDataset< T, U >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_zip_dataset.xhtml", null ],
      [ "CartesianProductDataset< framework::dataset::InitializerListDataset< TensorShape >, framework::dataset::SingletonDataset< ActivationLayerInfo > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_cartesian_product_dataset.xhtml", [
        [ "AlexNetActivationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_alex_net_activation_layer_dataset.xhtml", null ],
        [ "GoogLeNetInceptionV1ActivationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v1_activation_layer_dataset.xhtml", null ],
        [ "GoogLeNetInceptionV4ActivationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v4_activation_layer_dataset.xhtml", null ],
        [ "SqueezeNetActivationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_squeeze_net_activation_layer_dataset.xhtml", null ],
        [ "VGG16ActivationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_v_g_g16_activation_layer_dataset.xhtml", null ],
        [ "YOLOV2ActivationLayerLINEARDataset", "classarm__compute_1_1test_1_1datasets_1_1_y_o_l_o_v2_activation_layer_l_i_n_e_a_r_dataset.xhtml", null ],
        [ "YOLOV2ActivationLayerRELUDataset", "classarm__compute_1_1test_1_1datasets_1_1_y_o_l_o_v2_activation_layer_r_e_l_u_dataset.xhtml", null ]
      ] ],
      [ "CartesianProductDataset< framework::dataset::InitializerListDataset< TensorShape >, framework::dataset::SingletonDataset< NormalizationLayerInfo > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_cartesian_product_dataset.xhtml", [
        [ "AlexNetNormalizationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_alex_net_normalization_layer_dataset.xhtml", null ],
        [ "GoogLeNetInceptionV1NormalizationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v1_normalization_layer_dataset.xhtml", null ]
      ] ],
      [ "CartesianProductDataset< framework::dataset::SingletonDataset< TensorShape >, framework::dataset::SingletonDataset< ActivationLayerInfo > >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_cartesian_product_dataset.xhtml", [
        [ "LeNet5ActivationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_le_net5_activation_layer_dataset.xhtml", null ]
      ] ],
      [ "JoinDataset< YOLOV2ActivationLayerRELUDataset, YOLOV2ActivationLayerLINEARDataset >", "classarm__compute_1_1test_1_1framework_1_1dataset_1_1_join_dataset.xhtml", [
        [ "YOLOV2ActivationLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_y_o_l_o_v2_activation_layer_dataset.xhtml", null ]
      ] ]
    ] ],
    [ "DepthwiseConvolutionDataset", "classarm__compute_1_1test_1_1datasets_1_1_depthwise_convolution_dataset.xhtml", [
      [ "LargeDepthwiseConvolutionDataset", "classarm__compute_1_1test_1_1datasets_1_1_large_depthwise_convolution_dataset.xhtml", null ],
      [ "LargeDepthwiseConvolutionDataset3x3", "classarm__compute_1_1test_1_1datasets_1_1_large_depthwise_convolution_dataset3x3.xhtml", null ],
      [ "MobileNetDepthwiseConvolutionDataset", "classarm__compute_1_1test_1_1datasets_1_1_mobile_net_depthwise_convolution_dataset.xhtml", null ],
      [ "SmallDepthwiseConvolutionDataset", "classarm__compute_1_1test_1_1datasets_1_1_small_depthwise_convolution_dataset.xhtml", null ],
      [ "SmallDepthwiseConvolutionDataset3x3", "classarm__compute_1_1test_1_1datasets_1_1_small_depthwise_convolution_dataset3x3.xhtml", null ]
    ] ],
    [ "DepthwiseSeparableConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_depthwise_separable_convolution_layer_dataset.xhtml", [
      [ "MobileNetDepthwiseSeparableConvolutionLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_mobile_net_depthwise_separable_convolution_layer_dataset.xhtml", null ]
    ] ],
    [ "DetectionWindow", "struct_detection_window.xhtml", null ],
    [ "DetectionWindow", "structarm__compute_1_1_detection_window.xhtml", null ],
    [ "Window::Dimension", "classarm__compute_1_1_window_1_1_dimension.xhtml", null ],
    [ "Dimensions< T >", "classarm__compute_1_1_dimensions.xhtml", null ],
    [ "Dimensions< int >", "classarm__compute_1_1_dimensions.xhtml", [
      [ "Coordinates", "classarm__compute_1_1_coordinates.xhtml", null ]
    ] ],
    [ "Dimensions< size_t >", "classarm__compute_1_1_dimensions.xhtml", [
      [ "Strides", "classarm__compute_1_1_strides.xhtml", null ],
      [ "TensorShape", "classarm__compute_1_1_tensor_shape.xhtml", null ]
    ] ],
    [ "Dimensions< unsigned int >", "classarm__compute_1_1_dimensions.xhtml", [
      [ "Steps", "classarm__compute_1_1_steps.xhtml", null ]
    ] ],
    [ "enable_bitwise_ops< T >", "structarm__compute_1_1enable__bitwise__ops.xhtml", null ],
    [ "enable_bitwise_ops< arm_compute::GPUTarget >", "structarm__compute_1_1enable__bitwise__ops_3_01arm__compute_1_1_g_p_u_target_01_4.xhtml", null ],
    [ "false_type", null, [
      [ "is_container< T >", "structarm__compute_1_1test_1_1framework_1_1dataset_1_1is__container.xhtml", null ],
      [ "is_contained< T, std::tuple<> >", "structarm__compute_1_1traits_1_1is__contained_3_01_t_00_01std_1_1tuple_3_4_01_4.xhtml", null ]
    ] ],
    [ "fixed_point< T >", "classarm__compute_1_1test_1_1fixed__point__arithmetic_1_1fixed__point.xhtml", null ],
    [ "Fixture", "classarm__compute_1_1test_1_1framework_1_1_fixture.xhtml", [
      [ "ActivationLayerFixture< TensorType, Function, Accessor >", "classarm__compute_1_1test_1_1_activation_layer_fixture.xhtml", null ],
      [ "AlexNetFixture< ITensorType, TensorType, SubTensorType, Accessor, ActivationLayerFunction, ConvolutionLayerFunction, DirectConvolutionLayerFunction, FullyConnectedLayerFunction, NormalizationLayerFunction, PoolingLayerFunction, SoftmaxLayerFunction >", "classarm__compute_1_1test_1_1_alex_net_fixture.xhtml", null ],
      [ "BatchNormalizationLayerFixture< TensorType, Function, Accessor >", "classarm__compute_1_1test_1_1_batch_normalization_layer_fixture.xhtml", null ],
      [ "ConvolutionLayerFixture< TensorType, Function, Accessor >", "classarm__compute_1_1test_1_1_convolution_layer_fixture.xhtml", null ],
      [ "DepthwiseConvolutionFixture< TensorType, Function, Accessor >", "classarm__compute_1_1test_1_1_depthwise_convolution_fixture.xhtml", null ],
      [ "DepthwiseSeparableConvolutionLayerFixture< TensorType, Function, Accessor >", "classarm__compute_1_1test_1_1_depthwise_separable_convolution_layer_fixture.xhtml", null ],
      [ "FloorFixture< TensorType, Function, Accessor >", "classarm__compute_1_1test_1_1_floor_fixture.xhtml", null ],
      [ "FullyConnectedLayerFixture< TensorType, Function, Accessor >", "classarm__compute_1_1test_1_1_fully_connected_layer_fixture.xhtml", null ],
      [ "GEMMFixture< TensorType, Function, Accessor >", "classarm__compute_1_1test_1_1_g_e_m_m_fixture.xhtml", null ],
      [ "LeNet5Fixture< TensorType, Accessor, ActivationLayerFunction, ConvolutionLayerFunction, FullyConnectedLayerFunction, PoolingLayerFunction, SoftmaxLayerFunction >", "classarm__compute_1_1test_1_1_le_net5_fixture.xhtml", null ],
      [ "NormalizationLayerFixture< TensorType, Function, Accessor >", "classarm__compute_1_1test_1_1_normalization_layer_fixture.xhtml", null ],
      [ "PoolingLayerFixture< TensorType, Function, Accessor >", "classarm__compute_1_1test_1_1_pooling_layer_fixture.xhtml", null ],
      [ "ROIPoolingLayerFixture< TensorType, Function, Accessor, Array_T, ArrayAccessor >", "classarm__compute_1_1test_1_1_r_o_i_pooling_layer_fixture.xhtml", null ],
      [ "ActivationValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_activation_validation_fixed_point_fixture.xhtml", [
        [ "ActivationValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_activation_validation_fixture.xhtml", null ]
      ] ],
      [ "ArithmeticAdditionValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_arithmetic_addition_validation_fixed_point_fixture.xhtml", [
        [ "ArithmeticAdditionValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_arithmetic_addition_validation_fixture.xhtml", null ]
      ] ],
      [ "ArithmeticSubtractionValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_arithmetic_subtraction_validation_fixed_point_fixture.xhtml", [
        [ "ArithmeticSubtractionValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_arithmetic_subtraction_validation_fixture.xhtml", null ]
      ] ],
      [ "BatchNormalizationLayerValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_batch_normalization_layer_validation_fixed_point_fixture.xhtml", [
        [ "BatchNormalizationLayerValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_batch_normalization_layer_validation_fixture.xhtml", null ]
      ] ],
      [ "BitwiseAndValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_bitwise_and_validation_fixture.xhtml", null ],
      [ "BitwiseNotValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_bitwise_not_validation_fixture.xhtml", null ],
      [ "BitwiseOrValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_bitwise_or_validation_fixture.xhtml", null ],
      [ "BitwiseXorValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_bitwise_xor_validation_fixture.xhtml", null ],
      [ "Box3x3ValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_box3x3_validation_fixture.xhtml", null ],
      [ "ConvolutionValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_convolution_validation_fixed_point_fixture.xhtml", [
        [ "ConvolutionValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_convolution_validation_fixture.xhtml", null ]
      ] ],
      [ "DepthConcatenateValidationFixture< TensorType, ITensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_depth_concatenate_validation_fixture.xhtml", null ],
      [ "DepthConvertValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T1, T2 >", "classarm__compute_1_1test_1_1validation_1_1_depth_convert_validation_fixed_point_fixture.xhtml", [
        [ "DepthConvertValidationFixture< TensorType, AccessorType, FunctionType, T1, T2 >", "classarm__compute_1_1test_1_1validation_1_1_depth_convert_validation_fixture.xhtml", null ],
        [ "DepthConvertValidationFractionalBitsFixture< TensorType, AccessorType, FunctionType, T1, T2 >", "classarm__compute_1_1test_1_1validation_1_1_depth_convert_validation_fractional_bits_fixture.xhtml", null ]
      ] ],
      [ "DepthwiseConvolutionValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_depthwise_convolution_validation_fixture.xhtml", null ],
      [ "DepthwiseSeparableConvolutionValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_depthwise_separable_convolution_validation_fixture.xhtml", null ],
      [ "DequantizationValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_dequantization_validation_fixed_point_fixture.xhtml", [
        [ "DequantizationValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_dequantization_validation_fixture.xhtml", null ]
      ] ],
      [ "DirectConvolutionValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_direct_convolution_validation_fixed_point_fixture.xhtml", [
        [ "DirectConvolutionValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_direct_convolution_validation_fixture.xhtml", null ]
      ] ],
      [ "FlattenLayerValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_flatten_layer_validation_fixture.xhtml", null ],
      [ "FloorValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_floor_validation_fixture.xhtml", null ],
      [ "FullyConnectedLayerValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T, run_interleave >", "classarm__compute_1_1test_1_1validation_1_1_fully_connected_layer_validation_fixed_point_fixture.xhtml", [
        [ "FullyConnectedLayerValidationFixture< TensorType, AccessorType, FunctionType, T, run_interleave >", "classarm__compute_1_1test_1_1validation_1_1_fully_connected_layer_validation_fixture.xhtml", null ]
      ] ],
      [ "Gaussian3x3ValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_gaussian3x3_validation_fixture.xhtml", null ],
      [ "Gaussian5x5ValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_gaussian5x5_validation_fixture.xhtml", null ],
      [ "GEMMValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_g_e_m_m_validation_fixed_point_fixture.xhtml", [
        [ "GEMMValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_g_e_m_m_validation_fixture.xhtml", null ]
      ] ],
      [ "HarrisCornersValidationFixture< TensorType, AccessorType, ArrayType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_harris_corners_validation_fixture.xhtml", null ],
      [ "IntegralImageValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_integral_image_validation_fixture.xhtml", null ],
      [ "L2NormalizeValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_l2_normalize_validation_fixture.xhtml", null ],
      [ "MeanStdDevValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_mean_std_dev_validation_fixture.xhtml", null ],
      [ "MinMaxLocationValidationFixture< TensorType, AccessorType, ArrayType, ArrayAccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_min_max_location_validation_fixture.xhtml", null ],
      [ "NonLinearFilterValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_non_linear_filter_validation_fixture.xhtml", null ],
      [ "NormalizationValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_normalization_validation_fixed_point_fixture.xhtml", [
        [ "NormalizationValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_normalization_validation_fixture.xhtml", null ]
      ] ],
      [ "PoolingLayerValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_pooling_layer_validation_fixed_point_fixture.xhtml", [
        [ "GlobalPoolingLayerValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_global_pooling_layer_validation_fixture.xhtml", null ],
        [ "PoolingLayerValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_pooling_layer_validation_fixture.xhtml", null ]
      ] ],
      [ "QuantizationValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_quantization_validation_fixed_point_fixture.xhtml", [
        [ "QuantizationValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_quantization_validation_fixture.xhtml", null ]
      ] ],
      [ "ReductionOperationValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_reduction_operation_validation_fixture.xhtml", null ],
      [ "ReshapeLayerValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_reshape_layer_validation_fixture.xhtml", null ],
      [ "ScaleValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_scale_validation_fixture.xhtml", null ],
      [ "SobelValidationFixture< TensorType, AccessorType, FunctionType, T, U >", "classarm__compute_1_1test_1_1validation_1_1_sobel_validation_fixture.xhtml", null ],
      [ "SoftmaxValidationFixedPointFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_softmax_validation_fixed_point_fixture.xhtml", [
        [ "SoftmaxValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_softmax_validation_fixture.xhtml", null ]
      ] ],
      [ "TableLookupValidationFixture< TensorType, AccessorType, FunctionType, LutAccessorType, LutType, T >", "classarm__compute_1_1test_1_1validation_1_1_table_lookup_validation_fixture.xhtml", null ],
      [ "ThresholdValidationFixture< TensorType, AccessorType, FunctionType, T >", "classarm__compute_1_1test_1_1validation_1_1_threshold_validation_fixture.xhtml", null ]
    ] ],
    [ "Framework", "classarm__compute_1_1test_1_1framework_1_1_framework.xhtml", null ],
    [ "FullyConnectedLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_fully_connected_layer_dataset.xhtml", [
      [ "AlexNetFullyConnectedLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_alex_net_fully_connected_layer_dataset.xhtml", null ],
      [ "GoogLeNetInceptionV1FullyConnectedLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v1_fully_connected_layer_dataset.xhtml", null ],
      [ "GoogLeNetInceptionV4FullyConnectedLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v4_fully_connected_layer_dataset.xhtml", null ],
      [ "LargeFullyConnectedLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_large_fully_connected_layer_dataset.xhtml", null ],
      [ "LeNet5FullyConnectedLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_le_net5_fully_connected_layer_dataset.xhtml", null ],
      [ "SmallFullyConnectedLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_small_fully_connected_layer_dataset.xhtml", null ],
      [ "VGG16FullyConnectedLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_v_g_g16_fully_connected_layer_dataset.xhtml", null ]
    ] ],
    [ "functions", "structarm__compute_1_1test_1_1fixed__point__arithmetic_1_1detail_1_1functions.xhtml", null ],
    [ "GemmCommon< To, Tr >", "class_gemm_common.xhtml", [
      [ "GemmInterleaved< strategy, To, Tr >", "class_gemm_interleaved.xhtml", null ]
    ] ],
    [ "GEMMDataset", "classarm__compute_1_1test_1_1datasets_1_1_g_e_m_m_dataset.xhtml", [
      [ "GoogleNetGEMMDataset", "classarm__compute_1_1test_1_1datasets_1_1_google_net_g_e_m_m_dataset.xhtml", null ],
      [ "GoogLeNetInceptionV1GEMMDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v1_g_e_m_m_dataset.xhtml", null ],
      [ "LargeGEMMDataset", "classarm__compute_1_1test_1_1datasets_1_1_large_g_e_m_m_dataset.xhtml", null ],
      [ "MatrixMultiplyGEMMDataset", "classarm__compute_1_1test_1_1datasets_1_1_matrix_multiply_g_e_m_m_dataset.xhtml", null ],
      [ "SmallGEMMDataset", "classarm__compute_1_1test_1_1datasets_1_1_small_g_e_m_m_dataset.xhtml", null ]
    ] ],
    [ "gpu_props", "structmali__userspace_1_1gpu__props.xhtml", null ],
    [ "gpu_raw_gpu_props", "structmali__userspace_1_1gpu__raw__gpu__props.xhtml", null ],
    [ "Graph", "classarm__compute_1_1graph_1_1_graph.xhtml", null ],
    [ "HarrisCornersParameters", "structarm__compute_1_1test_1_1validation_1_1_harris_corners_parameters.xhtml", null ],
    [ "HOGInfo", "classarm__compute_1_1_h_o_g_info.xhtml", null ],
    [ "IAccessor", "classarm__compute_1_1test_1_1_i_accessor.xhtml", [
      [ "Accessor", "classarm__compute_1_1test_1_1_accessor.xhtml", null ],
      [ "CLAccessor", "classarm__compute_1_1test_1_1_c_l_accessor.xhtml", null ],
      [ "SimpleTensor< T >", "classarm__compute_1_1test_1_1_simple_tensor.xhtml", null ],
      [ "SimpleTensor< float >", "classarm__compute_1_1test_1_1_simple_tensor.xhtml", null ],
      [ "SimpleTensor< T2 >", "classarm__compute_1_1test_1_1_simple_tensor.xhtml", null ],
      [ "SimpleTensor< uint32_t >", "classarm__compute_1_1test_1_1_simple_tensor.xhtml", null ],
      [ "SimpleTensor< uint8_t >", "classarm__compute_1_1test_1_1_simple_tensor.xhtml", [
        [ "RawTensor", "classarm__compute_1_1test_1_1_raw_tensor.xhtml", null ]
      ] ]
    ] ],
    [ "IAccessWindow", "classarm__compute_1_1_i_access_window.xhtml", [
      [ "AccessWindowAutoPadding", "classarm__compute_1_1_access_window_auto_padding.xhtml", null ],
      [ "AccessWindowRectangle", "classarm__compute_1_1_access_window_rectangle.xhtml", [
        [ "AccessWindowHorizontal", "classarm__compute_1_1_access_window_horizontal.xhtml", null ],
        [ "AccessWindowTranspose", "classarm__compute_1_1_access_window_transpose.xhtml", null ],
        [ "AccessWindowVertical", "classarm__compute_1_1_access_window_vertical.xhtml", null ]
      ] ],
      [ "AccessWindowStatic", "classarm__compute_1_1_access_window_static.xhtml", null ]
    ] ],
    [ "IAllocator", "classarm__compute_1_1_i_allocator.xhtml", [
      [ "Allocator", "classarm__compute_1_1_allocator.xhtml", null ],
      [ "CLBufferAllocator", "classarm__compute_1_1_c_l_buffer_allocator.xhtml", null ]
    ] ],
    [ "IArray< T >", "classarm__compute_1_1_i_array.xhtml", [
      [ "Array< T >", "classarm__compute_1_1_array.xhtml", null ],
      [ "ICLArray< T >", "classarm__compute_1_1_i_c_l_array.xhtml", [
        [ "CLArray< T >", "classarm__compute_1_1_c_l_array.xhtml", null ]
      ] ]
    ] ],
    [ "IArray< NELKInternalKeypoint >", "classarm__compute_1_1_i_array.xhtml", [
      [ "Array< NELKInternalKeypoint >", "classarm__compute_1_1_array.xhtml", null ]
    ] ],
    [ "IArrayAccessor< T >", "classarm__compute_1_1test_1_1_i_array_accessor.xhtml", [
      [ "ArrayAccessor< T >", "classarm__compute_1_1test_1_1_array_accessor.xhtml", null ],
      [ "CLArrayAccessor< T >", "classarm__compute_1_1test_1_1_c_l_array_accessor.xhtml", null ]
    ] ],
    [ "ICLTuner", "classarm__compute_1_1_i_c_l_tuner.xhtml", [
      [ "CLTuner", "classarm__compute_1_1_c_l_tuner.xhtml", null ]
    ] ],
    [ "IDistribution", "classarm__compute_1_1_i_distribution.xhtml", [
      [ "IDistribution1D", "classarm__compute_1_1_i_distribution1_d.xhtml", [
        [ "Distribution1D", "classarm__compute_1_1_distribution1_d.xhtml", null ],
        [ "ICLDistribution1D", "classarm__compute_1_1_i_c_l_distribution1_d.xhtml", [
          [ "CLDistribution1D", "classarm__compute_1_1_c_l_distribution1_d.xhtml", null ]
        ] ]
      ] ]
    ] ],
    [ "IFunction", "classarm__compute_1_1_i_function.xhtml", [
      [ "CLBatchNormalizationLayer", "classarm__compute_1_1_c_l_batch_normalization_layer.xhtml", null ],
      [ "CLCannyEdge", "classarm__compute_1_1_c_l_canny_edge.xhtml", null ],
      [ "CLConvolutionLayer", "classarm__compute_1_1_c_l_convolution_layer.xhtml", null ],
      [ "CLConvolutionLayerReshapeWeights", "classarm__compute_1_1_c_l_convolution_layer_reshape_weights.xhtml", null ],
      [ "CLConvolutionSquare< matrix_size >", "classarm__compute_1_1_c_l_convolution_square.xhtml", null ],
      [ "CLDepthConcatenate", "classarm__compute_1_1_c_l_depth_concatenate.xhtml", null ],
      [ "CLDepthwiseConvolution", "classarm__compute_1_1_c_l_depthwise_convolution.xhtml", null ],
      [ "CLDepthwiseConvolution3x3", "classarm__compute_1_1_c_l_depthwise_convolution3x3.xhtml", null ],
      [ "CLDepthwiseSeparableConvolutionLayer", "classarm__compute_1_1_c_l_depthwise_separable_convolution_layer.xhtml", null ],
      [ "CLDequantizationLayer", "classarm__compute_1_1_c_l_dequantization_layer.xhtml", null ],
      [ "CLDirectConvolutionLayer", "classarm__compute_1_1_c_l_direct_convolution_layer.xhtml", null ],
      [ "CLEqualizeHistogram", "classarm__compute_1_1_c_l_equalize_histogram.xhtml", null ],
      [ "CLFastCorners", "classarm__compute_1_1_c_l_fast_corners.xhtml", null ],
      [ "CLFullyConnectedLayer", "classarm__compute_1_1_c_l_fully_connected_layer.xhtml", null ],
      [ "CLGaussian5x5", "classarm__compute_1_1_c_l_gaussian5x5.xhtml", null ],
      [ "CLGaussianPyramid", "classarm__compute_1_1_c_l_gaussian_pyramid.xhtml", [
        [ "CLGaussianPyramidHalf", "classarm__compute_1_1_c_l_gaussian_pyramid_half.xhtml", null ],
        [ "CLGaussianPyramidOrb", "classarm__compute_1_1_c_l_gaussian_pyramid_orb.xhtml", null ]
      ] ],
      [ "CLGEMM", "classarm__compute_1_1_c_l_g_e_m_m.xhtml", null ],
      [ "CLGEMMLowp", "classarm__compute_1_1_c_l_g_e_m_m_lowp.xhtml", null ],
      [ "CLHarrisCorners", "classarm__compute_1_1_c_l_harris_corners.xhtml", null ],
      [ "CLHistogram", "classarm__compute_1_1_c_l_histogram.xhtml", null ],
      [ "CLHOGDescriptor", "classarm__compute_1_1_c_l_h_o_g_descriptor.xhtml", null ],
      [ "CLHOGDetector", "classarm__compute_1_1_c_l_h_o_g_detector.xhtml", null ],
      [ "CLHOGGradient", "classarm__compute_1_1_c_l_h_o_g_gradient.xhtml", null ],
      [ "CLHOGMultiDetection", "classarm__compute_1_1_c_l_h_o_g_multi_detection.xhtml", null ],
      [ "CLIntegralImage", "classarm__compute_1_1_c_l_integral_image.xhtml", null ],
      [ "CLL2Normalize", "classarm__compute_1_1_c_l_l2_normalize.xhtml", null ],
      [ "CLLaplacianPyramid", "classarm__compute_1_1_c_l_laplacian_pyramid.xhtml", null ],
      [ "CLLaplacianReconstruct", "classarm__compute_1_1_c_l_laplacian_reconstruct.xhtml", null ],
      [ "CLLocallyConnectedLayer", "classarm__compute_1_1_c_l_locally_connected_layer.xhtml", null ],
      [ "CLMeanStdDev", "classarm__compute_1_1_c_l_mean_std_dev.xhtml", null ],
      [ "CLMinMaxLocation", "classarm__compute_1_1_c_l_min_max_location.xhtml", null ],
      [ "CLNormalizationLayer", "classarm__compute_1_1_c_l_normalization_layer.xhtml", null ],
      [ "CLOpticalFlow", "classarm__compute_1_1_c_l_optical_flow.xhtml", null ],
      [ "CLQuantizationLayer", "classarm__compute_1_1_c_l_quantization_layer.xhtml", null ],
      [ "CLReductionOperation", "classarm__compute_1_1_c_l_reduction_operation.xhtml", null ],
      [ "CLSobel5x5", "classarm__compute_1_1_c_l_sobel5x5.xhtml", null ],
      [ "CLSobel7x7", "classarm__compute_1_1_c_l_sobel7x7.xhtml", null ],
      [ "CLSoftmaxLayer", "classarm__compute_1_1_c_l_softmax_layer.xhtml", null ],
      [ "CLMap", "classarm__compute_1_1graph_1_1_c_l_map.xhtml", null ],
      [ "CLUnmap", "classarm__compute_1_1graph_1_1_c_l_unmap.xhtml", null ],
      [ "ICLSimpleFunction", "classarm__compute_1_1_i_c_l_simple_function.xhtml", [
        [ "CLAbsoluteDifference", "classarm__compute_1_1_c_l_absolute_difference.xhtml", null ],
        [ "CLAccumulate", "classarm__compute_1_1_c_l_accumulate.xhtml", null ],
        [ "CLAccumulateSquared", "classarm__compute_1_1_c_l_accumulate_squared.xhtml", null ],
        [ "CLAccumulateWeighted", "classarm__compute_1_1_c_l_accumulate_weighted.xhtml", null ],
        [ "CLActivationLayer", "classarm__compute_1_1_c_l_activation_layer.xhtml", null ],
        [ "CLArithmeticAddition", "classarm__compute_1_1_c_l_arithmetic_addition.xhtml", null ],
        [ "CLArithmeticSubtraction", "classarm__compute_1_1_c_l_arithmetic_subtraction.xhtml", null ],
        [ "CLBitwiseAnd", "classarm__compute_1_1_c_l_bitwise_and.xhtml", null ],
        [ "CLBitwiseNot", "classarm__compute_1_1_c_l_bitwise_not.xhtml", null ],
        [ "CLBitwiseOr", "classarm__compute_1_1_c_l_bitwise_or.xhtml", null ],
        [ "CLBitwiseXor", "classarm__compute_1_1_c_l_bitwise_xor.xhtml", null ],
        [ "CLBox3x3", "classarm__compute_1_1_c_l_box3x3.xhtml", null ],
        [ "CLChannelCombine", "classarm__compute_1_1_c_l_channel_combine.xhtml", null ],
        [ "CLChannelExtract", "classarm__compute_1_1_c_l_channel_extract.xhtml", null ],
        [ "CLColorConvert", "classarm__compute_1_1_c_l_color_convert.xhtml", null ],
        [ "CLConvolution3x3", "classarm__compute_1_1_c_l_convolution3x3.xhtml", null ],
        [ "CLConvolutionRectangle", "classarm__compute_1_1_c_l_convolution_rectangle.xhtml", null ],
        [ "CLDepthConvert", "classarm__compute_1_1_c_l_depth_convert.xhtml", null ],
        [ "CLDerivative", "classarm__compute_1_1_c_l_derivative.xhtml", null ],
        [ "CLDilate", "classarm__compute_1_1_c_l_dilate.xhtml", null ],
        [ "CLErode", "classarm__compute_1_1_c_l_erode.xhtml", null ],
        [ "CLFillBorder", "classarm__compute_1_1_c_l_fill_border.xhtml", null ],
        [ "CLFlattenLayer", "classarm__compute_1_1_c_l_flatten_layer.xhtml", null ],
        [ "CLFloor", "classarm__compute_1_1_c_l_floor.xhtml", null ],
        [ "CLFullyConnectedLayerReshapeWeights", "classarm__compute_1_1_c_l_fully_connected_layer_reshape_weights.xhtml", null ],
        [ "CLGaussian3x3", "classarm__compute_1_1_c_l_gaussian3x3.xhtml", null ],
        [ "CLGEMMInterleave4x4", "classarm__compute_1_1_c_l_g_e_m_m_interleave4x4.xhtml", null ],
        [ "CLGEMMTranspose1xW", "classarm__compute_1_1_c_l_g_e_m_m_transpose1x_w.xhtml", null ],
        [ "CLMagnitude", "classarm__compute_1_1_c_l_magnitude.xhtml", null ],
        [ "CLMedian3x3", "classarm__compute_1_1_c_l_median3x3.xhtml", null ],
        [ "CLNonLinearFilter", "classarm__compute_1_1_c_l_non_linear_filter.xhtml", null ],
        [ "CLNonMaximaSuppression3x3", "classarm__compute_1_1_c_l_non_maxima_suppression3x3.xhtml", null ],
        [ "CLPhase", "classarm__compute_1_1_c_l_phase.xhtml", null ],
        [ "CLPixelWiseMultiplication", "classarm__compute_1_1_c_l_pixel_wise_multiplication.xhtml", null ],
        [ "CLPoolingLayer", "classarm__compute_1_1_c_l_pooling_layer.xhtml", null ],
        [ "CLRemap", "classarm__compute_1_1_c_l_remap.xhtml", null ],
        [ "CLReshapeLayer", "classarm__compute_1_1_c_l_reshape_layer.xhtml", null ],
        [ "CLROIPoolingLayer", "classarm__compute_1_1_c_l_r_o_i_pooling_layer.xhtml", null ],
        [ "CLScale", "classarm__compute_1_1_c_l_scale.xhtml", null ],
        [ "CLScharr3x3", "classarm__compute_1_1_c_l_scharr3x3.xhtml", null ],
        [ "CLSobel3x3", "classarm__compute_1_1_c_l_sobel3x3.xhtml", null ],
        [ "CLTableLookup", "classarm__compute_1_1_c_l_table_lookup.xhtml", null ],
        [ "CLThreshold", "classarm__compute_1_1_c_l_threshold.xhtml", null ],
        [ "CLTranspose", "classarm__compute_1_1_c_l_transpose.xhtml", null ],
        [ "CLWarpAffine", "classarm__compute_1_1_c_l_warp_affine.xhtml", null ],
        [ "CLWarpPerspective", "classarm__compute_1_1_c_l_warp_perspective.xhtml", null ]
      ] ],
      [ "INESimpleFunction", "classarm__compute_1_1_i_n_e_simple_function.xhtml", [
        [ "NEAbsoluteDifference", "classarm__compute_1_1_n_e_absolute_difference.xhtml", null ],
        [ "NEAccumulate", "classarm__compute_1_1_n_e_accumulate.xhtml", null ],
        [ "NEAccumulateSquared", "classarm__compute_1_1_n_e_accumulate_squared.xhtml", null ],
        [ "NEAccumulateWeighted", "classarm__compute_1_1_n_e_accumulate_weighted.xhtml", null ],
        [ "NEActivationLayer", "classarm__compute_1_1_n_e_activation_layer.xhtml", null ],
        [ "NEArithmeticAddition", "classarm__compute_1_1_n_e_arithmetic_addition.xhtml", null ],
        [ "NEArithmeticSubtraction", "classarm__compute_1_1_n_e_arithmetic_subtraction.xhtml", null ],
        [ "NEBitwiseAnd", "classarm__compute_1_1_n_e_bitwise_and.xhtml", null ],
        [ "NEBitwiseNot", "classarm__compute_1_1_n_e_bitwise_not.xhtml", null ],
        [ "NEBitwiseOr", "classarm__compute_1_1_n_e_bitwise_or.xhtml", null ],
        [ "NEBitwiseXor", "classarm__compute_1_1_n_e_bitwise_xor.xhtml", null ],
        [ "NEBox3x3", "classarm__compute_1_1_n_e_box3x3.xhtml", null ],
        [ "NEChannelCombine", "classarm__compute_1_1_n_e_channel_combine.xhtml", null ],
        [ "NEChannelExtract", "classarm__compute_1_1_n_e_channel_extract.xhtml", null ],
        [ "NEColorConvert", "classarm__compute_1_1_n_e_color_convert.xhtml", null ],
        [ "NEConvolution3x3", "classarm__compute_1_1_n_e_convolution3x3.xhtml", null ],
        [ "NEConvolutionRectangle", "classarm__compute_1_1_n_e_convolution_rectangle.xhtml", null ],
        [ "NEDepthConvert", "classarm__compute_1_1_n_e_depth_convert.xhtml", null ],
        [ "NEDilate", "classarm__compute_1_1_n_e_dilate.xhtml", null ],
        [ "NEErode", "classarm__compute_1_1_n_e_erode.xhtml", null ],
        [ "NEFloor", "classarm__compute_1_1_n_e_floor.xhtml", null ],
        [ "NEGaussian3x3", "classarm__compute_1_1_n_e_gaussian3x3.xhtml", null ],
        [ "NEGEMMInterleave4x4", "classarm__compute_1_1_n_e_g_e_m_m_interleave4x4.xhtml", null ],
        [ "NEGEMMTranspose1xW", "classarm__compute_1_1_n_e_g_e_m_m_transpose1x_w.xhtml", null ],
        [ "NEHOGDetector", "classarm__compute_1_1_n_e_h_o_g_detector.xhtml", null ],
        [ "NEIntegralImage", "classarm__compute_1_1_n_e_integral_image.xhtml", null ],
        [ "NEMagnitude", "classarm__compute_1_1_n_e_magnitude.xhtml", null ],
        [ "NEMedian3x3", "classarm__compute_1_1_n_e_median3x3.xhtml", null ],
        [ "NENonLinearFilter", "classarm__compute_1_1_n_e_non_linear_filter.xhtml", null ],
        [ "NENonMaximaSuppression3x3", "classarm__compute_1_1_n_e_non_maxima_suppression3x3.xhtml", null ],
        [ "NEPhase", "classarm__compute_1_1_n_e_phase.xhtml", null ],
        [ "NEPixelWiseMultiplication", "classarm__compute_1_1_n_e_pixel_wise_multiplication.xhtml", null ],
        [ "NEPoolingLayer", "classarm__compute_1_1_n_e_pooling_layer.xhtml", null ],
        [ "NERemap", "classarm__compute_1_1_n_e_remap.xhtml", null ],
        [ "NEReshapeLayer", "classarm__compute_1_1_n_e_reshape_layer.xhtml", null ],
        [ "NEScharr3x3", "classarm__compute_1_1_n_e_scharr3x3.xhtml", null ],
        [ "NESobel3x3", "classarm__compute_1_1_n_e_sobel3x3.xhtml", null ],
        [ "NETableLookup", "classarm__compute_1_1_n_e_table_lookup.xhtml", null ],
        [ "NEThreshold", "classarm__compute_1_1_n_e_threshold.xhtml", null ],
        [ "NETranspose", "classarm__compute_1_1_n_e_transpose.xhtml", null ],
        [ "NEWarpAffine", "classarm__compute_1_1_n_e_warp_affine.xhtml", null ],
        [ "NEWarpPerspective", "classarm__compute_1_1_n_e_warp_perspective.xhtml", null ]
      ] ],
      [ "NEBatchNormalizationLayer", "classarm__compute_1_1_n_e_batch_normalization_layer.xhtml", null ],
      [ "NECannyEdge", "classarm__compute_1_1_n_e_canny_edge.xhtml", null ],
      [ "NEConvolutionLayer", "classarm__compute_1_1_n_e_convolution_layer.xhtml", null ],
      [ "NEConvolutionLayerReshapeWeights", "classarm__compute_1_1_n_e_convolution_layer_reshape_weights.xhtml", null ],
      [ "NEConvolutionSquare< matrix_size >", "classarm__compute_1_1_n_e_convolution_square.xhtml", null ],
      [ "NEDepthConcatenate", "classarm__compute_1_1_n_e_depth_concatenate.xhtml", null ],
      [ "NEDequantizationLayer", "classarm__compute_1_1_n_e_dequantization_layer.xhtml", null ],
      [ "NEDerivative", "classarm__compute_1_1_n_e_derivative.xhtml", null ],
      [ "NEDirectConvolutionLayer", "classarm__compute_1_1_n_e_direct_convolution_layer.xhtml", null ],
      [ "NEEqualizeHistogram", "classarm__compute_1_1_n_e_equalize_histogram.xhtml", null ],
      [ "NEFastCorners", "classarm__compute_1_1_n_e_fast_corners.xhtml", null ],
      [ "NEFillBorder", "classarm__compute_1_1_n_e_fill_border.xhtml", null ],
      [ "NEFullyConnectedLayer", "classarm__compute_1_1_n_e_fully_connected_layer.xhtml", null ],
      [ "NEFullyConnectedLayerReshapeWeights", "classarm__compute_1_1_n_e_fully_connected_layer_reshape_weights.xhtml", null ],
      [ "NEGaussian5x5", "classarm__compute_1_1_n_e_gaussian5x5.xhtml", null ],
      [ "NEGaussianPyramid", "classarm__compute_1_1_n_e_gaussian_pyramid.xhtml", [
        [ "NEGaussianPyramidHalf", "classarm__compute_1_1_n_e_gaussian_pyramid_half.xhtml", null ],
        [ "NEGaussianPyramidOrb", "classarm__compute_1_1_n_e_gaussian_pyramid_orb.xhtml", null ]
      ] ],
      [ "NEGEMM", "classarm__compute_1_1_n_e_g_e_m_m.xhtml", null ],
      [ "NEGEMMLowp", "classarm__compute_1_1_n_e_g_e_m_m_lowp.xhtml", null ],
      [ "NEHarrisCorners", "classarm__compute_1_1_n_e_harris_corners.xhtml", null ],
      [ "NEHistogram", "classarm__compute_1_1_n_e_histogram.xhtml", null ],
      [ "NEHOGDescriptor", "classarm__compute_1_1_n_e_h_o_g_descriptor.xhtml", null ],
      [ "NEHOGGradient", "classarm__compute_1_1_n_e_h_o_g_gradient.xhtml", null ],
      [ "NEHOGMultiDetection", "classarm__compute_1_1_n_e_h_o_g_multi_detection.xhtml", null ],
      [ "NEL2Normalize", "classarm__compute_1_1_n_e_l2_normalize.xhtml", null ],
      [ "NELaplacianPyramid", "classarm__compute_1_1_n_e_laplacian_pyramid.xhtml", null ],
      [ "NELaplacianReconstruct", "classarm__compute_1_1_n_e_laplacian_reconstruct.xhtml", null ],
      [ "NELocallyConnectedLayer", "classarm__compute_1_1_n_e_locally_connected_layer.xhtml", null ],
      [ "NEMeanStdDev", "classarm__compute_1_1_n_e_mean_std_dev.xhtml", null ],
      [ "NEMinMaxLocation", "classarm__compute_1_1_n_e_min_max_location.xhtml", null ],
      [ "NENormalizationLayer", "classarm__compute_1_1_n_e_normalization_layer.xhtml", null ],
      [ "NEOpticalFlow", "classarm__compute_1_1_n_e_optical_flow.xhtml", null ],
      [ "NEQuantizationLayer", "classarm__compute_1_1_n_e_quantization_layer.xhtml", null ],
      [ "NEReductionOperation", "classarm__compute_1_1_n_e_reduction_operation.xhtml", null ],
      [ "NEROIPoolingLayer", "classarm__compute_1_1_n_e_r_o_i_pooling_layer.xhtml", null ],
      [ "NEScale", "classarm__compute_1_1_n_e_scale.xhtml", null ],
      [ "NESobel5x5", "classarm__compute_1_1_n_e_sobel5x5.xhtml", null ],
      [ "NESobel7x7", "classarm__compute_1_1_n_e_sobel7x7.xhtml", null ],
      [ "NESoftmaxLayer", "classarm__compute_1_1_n_e_softmax_layer.xhtml", null ]
    ] ],
    [ "IHOG", "classarm__compute_1_1_i_h_o_g.xhtml", [
      [ "HOG", "classarm__compute_1_1_h_o_g.xhtml", null ],
      [ "ICLHOG", "classarm__compute_1_1_i_c_l_h_o_g.xhtml", [
        [ "CLHOG", "classarm__compute_1_1_c_l_h_o_g.xhtml", null ]
      ] ]
    ] ],
    [ "IKernel", "classarm__compute_1_1_i_kernel.xhtml", [
      [ "ICLKernel", "classarm__compute_1_1_i_c_l_kernel.xhtml", [
        [ "CLAbsoluteDifferenceKernel", "classarm__compute_1_1_c_l_absolute_difference_kernel.xhtml", null ],
        [ "CLActivationLayerKernel", "classarm__compute_1_1_c_l_activation_layer_kernel.xhtml", null ],
        [ "CLArithmeticAdditionKernel", "classarm__compute_1_1_c_l_arithmetic_addition_kernel.xhtml", null ],
        [ "CLArithmeticSubtractionKernel", "classarm__compute_1_1_c_l_arithmetic_subtraction_kernel.xhtml", null ],
        [ "CLBatchNormalizationLayerKernel", "classarm__compute_1_1_c_l_batch_normalization_layer_kernel.xhtml", null ],
        [ "CLBitwiseAndKernel", "classarm__compute_1_1_c_l_bitwise_and_kernel.xhtml", null ],
        [ "CLBitwiseOrKernel", "classarm__compute_1_1_c_l_bitwise_or_kernel.xhtml", null ],
        [ "CLBitwiseXorKernel", "classarm__compute_1_1_c_l_bitwise_xor_kernel.xhtml", null ],
        [ "CLChannelCombineKernel", "classarm__compute_1_1_c_l_channel_combine_kernel.xhtml", null ],
        [ "CLChannelExtractKernel", "classarm__compute_1_1_c_l_channel_extract_kernel.xhtml", null ],
        [ "CLCol2ImKernel", "classarm__compute_1_1_c_l_col2_im_kernel.xhtml", null ],
        [ "CLColorConvertKernel", "classarm__compute_1_1_c_l_color_convert_kernel.xhtml", null ],
        [ "CLConvolutionRectangleKernel", "classarm__compute_1_1_c_l_convolution_rectangle_kernel.xhtml", null ],
        [ "CLCopyToArrayKernel", "classarm__compute_1_1_c_l_copy_to_array_kernel.xhtml", null ],
        [ "CLDepthConcatenateKernel", "classarm__compute_1_1_c_l_depth_concatenate_kernel.xhtml", null ],
        [ "CLDepthwiseConvolution3x3Kernel", "classarm__compute_1_1_c_l_depthwise_convolution3x3_kernel.xhtml", null ],
        [ "CLDepthwiseIm2ColKernel", "classarm__compute_1_1_c_l_depthwise_im2_col_kernel.xhtml", null ],
        [ "CLDepthwiseVectorToTensorKernel", "classarm__compute_1_1_c_l_depthwise_vector_to_tensor_kernel.xhtml", null ],
        [ "CLDepthwiseWeightsReshapeKernel", "classarm__compute_1_1_c_l_depthwise_weights_reshape_kernel.xhtml", null ],
        [ "CLDequantizationLayerKernel", "classarm__compute_1_1_c_l_dequantization_layer_kernel.xhtml", null ],
        [ "CLDerivativeKernel", "classarm__compute_1_1_c_l_derivative_kernel.xhtml", null ],
        [ "CLDirectConvolutionLayerKernel", "classarm__compute_1_1_c_l_direct_convolution_layer_kernel.xhtml", null ],
        [ "CLEdgeNonMaxSuppressionKernel", "classarm__compute_1_1_c_l_edge_non_max_suppression_kernel.xhtml", null ],
        [ "CLEdgeTraceKernel", "classarm__compute_1_1_c_l_edge_trace_kernel.xhtml", null ],
        [ "CLFastCornersKernel", "classarm__compute_1_1_c_l_fast_corners_kernel.xhtml", null ],
        [ "CLFillBorderKernel", "classarm__compute_1_1_c_l_fill_border_kernel.xhtml", null ],
        [ "CLFloorKernel", "classarm__compute_1_1_c_l_floor_kernel.xhtml", null ],
        [ "CLGEMMInterleave4x4Kernel", "classarm__compute_1_1_c_l_g_e_m_m_interleave4x4_kernel.xhtml", null ],
        [ "CLGEMMLowpMatrixMultiplyKernel", "classarm__compute_1_1_c_l_g_e_m_m_lowp_matrix_multiply_kernel.xhtml", null ],
        [ "CLGEMMMatrixAccumulateBiasesKernel", "classarm__compute_1_1_c_l_g_e_m_m_matrix_accumulate_biases_kernel.xhtml", null ],
        [ "CLGEMMMatrixAdditionKernel", "classarm__compute_1_1_c_l_g_e_m_m_matrix_addition_kernel.xhtml", null ],
        [ "CLGEMMMatrixMultiplyKernel", "classarm__compute_1_1_c_l_g_e_m_m_matrix_multiply_kernel.xhtml", null ],
        [ "CLGEMMMatrixVectorMultiplyKernel", "classarm__compute_1_1_c_l_g_e_m_m_matrix_vector_multiply_kernel.xhtml", null ],
        [ "CLGradientKernel", "classarm__compute_1_1_c_l_gradient_kernel.xhtml", null ],
        [ "CLHarrisScoreKernel", "classarm__compute_1_1_c_l_harris_score_kernel.xhtml", null ],
        [ "CLHistogramBorderKernel", "classarm__compute_1_1_c_l_histogram_border_kernel.xhtml", null ],
        [ "CLHistogramKernel", "classarm__compute_1_1_c_l_histogram_kernel.xhtml", null ],
        [ "CLHOGBlockNormalizationKernel", "classarm__compute_1_1_c_l_h_o_g_block_normalization_kernel.xhtml", null ],
        [ "CLHOGDetectorKernel", "classarm__compute_1_1_c_l_h_o_g_detector_kernel.xhtml", null ],
        [ "CLHOGOrientationBinningKernel", "classarm__compute_1_1_c_l_h_o_g_orientation_binning_kernel.xhtml", null ],
        [ "CLIm2ColKernel", "classarm__compute_1_1_c_l_im2_col_kernel.xhtml", null ],
        [ "CLIntegralImageVertKernel", "classarm__compute_1_1_c_l_integral_image_vert_kernel.xhtml", null ],
        [ "CLL2NormalizeKernel", "classarm__compute_1_1_c_l_l2_normalize_kernel.xhtml", null ],
        [ "CLLKTrackerFinalizeKernel", "classarm__compute_1_1_c_l_l_k_tracker_finalize_kernel.xhtml", null ],
        [ "CLLKTrackerInitKernel", "classarm__compute_1_1_c_l_l_k_tracker_init_kernel.xhtml", null ],
        [ "CLLKTrackerStage0Kernel", "classarm__compute_1_1_c_l_l_k_tracker_stage0_kernel.xhtml", null ],
        [ "CLLKTrackerStage1Kernel", "classarm__compute_1_1_c_l_l_k_tracker_stage1_kernel.xhtml", null ],
        [ "CLLocallyConnectedMatrixMultiplyKernel", "classarm__compute_1_1_c_l_locally_connected_matrix_multiply_kernel.xhtml", null ],
        [ "CLLogits1DNormKernel", "classarm__compute_1_1_c_l_logits1_d_norm_kernel.xhtml", null ],
        [ "CLLogits1DShiftExpSumKernel", "classarm__compute_1_1_c_l_logits1_d_shift_exp_sum_kernel.xhtml", null ],
        [ "CLMagnitudePhaseKernel", "classarm__compute_1_1_c_l_magnitude_phase_kernel.xhtml", null ],
        [ "CLMeanStdDevKernel", "classarm__compute_1_1_c_l_mean_std_dev_kernel.xhtml", null ],
        [ "CLMinMaxKernel", "classarm__compute_1_1_c_l_min_max_kernel.xhtml", null ],
        [ "CLMinMaxLayerKernel", "classarm__compute_1_1_c_l_min_max_layer_kernel.xhtml", null ],
        [ "CLMinMaxLocationKernel", "classarm__compute_1_1_c_l_min_max_location_kernel.xhtml", null ],
        [ "CLNormalizationLayerKernel", "classarm__compute_1_1_c_l_normalization_layer_kernel.xhtml", null ],
        [ "CLPixelWiseMultiplicationKernel", "classarm__compute_1_1_c_l_pixel_wise_multiplication_kernel.xhtml", null ],
        [ "CLPoolingLayerKernel", "classarm__compute_1_1_c_l_pooling_layer_kernel.xhtml", null ],
        [ "CLQuantizationLayerKernel", "classarm__compute_1_1_c_l_quantization_layer_kernel.xhtml", null ],
        [ "CLReductionOperationKernel", "classarm__compute_1_1_c_l_reduction_operation_kernel.xhtml", null ],
        [ "CLRemapKernel", "classarm__compute_1_1_c_l_remap_kernel.xhtml", null ],
        [ "CLReshapeLayerKernel", "classarm__compute_1_1_c_l_reshape_layer_kernel.xhtml", null ],
        [ "CLROIPoolingLayerKernel", "classarm__compute_1_1_c_l_r_o_i_pooling_layer_kernel.xhtml", null ],
        [ "CLScharr3x3Kernel", "classarm__compute_1_1_c_l_scharr3x3_kernel.xhtml", null ],
        [ "CLSobel3x3Kernel", "classarm__compute_1_1_c_l_sobel3x3_kernel.xhtml", null ],
        [ "CLSobel5x5HorKernel", "classarm__compute_1_1_c_l_sobel5x5_hor_kernel.xhtml", null ],
        [ "CLSobel5x5VertKernel", "classarm__compute_1_1_c_l_sobel5x5_vert_kernel.xhtml", null ],
        [ "CLSobel7x7HorKernel", "classarm__compute_1_1_c_l_sobel7x7_hor_kernel.xhtml", null ],
        [ "CLSobel7x7VertKernel", "classarm__compute_1_1_c_l_sobel7x7_vert_kernel.xhtml", null ],
        [ "CLWeightsReshapeKernel", "classarm__compute_1_1_c_l_weights_reshape_kernel.xhtml", null ],
        [ "ICLSimpleKernel", "classarm__compute_1_1_i_c_l_simple_kernel.xhtml", [
          [ "CLGaussianPyramidHorKernel", "classarm__compute_1_1_c_l_gaussian_pyramid_hor_kernel.xhtml", null ],
          [ "CLGaussianPyramidVertKernel", "classarm__compute_1_1_c_l_gaussian_pyramid_vert_kernel.xhtml", null ],
          [ "ICLSimple2DKernel", "classarm__compute_1_1_i_c_l_simple2_d_kernel.xhtml", [
            [ "CLAccumulateKernel", "classarm__compute_1_1_c_l_accumulate_kernel.xhtml", null ],
            [ "CLAccumulateSquaredKernel", "classarm__compute_1_1_c_l_accumulate_squared_kernel.xhtml", null ],
            [ "CLAccumulateWeightedKernel", "classarm__compute_1_1_c_l_accumulate_weighted_kernel.xhtml", null ],
            [ "CLBitwiseNotKernel", "classarm__compute_1_1_c_l_bitwise_not_kernel.xhtml", null ],
            [ "CLBox3x3Kernel", "classarm__compute_1_1_c_l_box3x3_kernel.xhtml", null ],
            [ "CLConvolutionKernel< matrix_size >", "classarm__compute_1_1_c_l_convolution_kernel.xhtml", null ],
            [ "CLDepthConvertKernel", "classarm__compute_1_1_c_l_depth_convert_kernel.xhtml", null ],
            [ "CLDilateKernel", "classarm__compute_1_1_c_l_dilate_kernel.xhtml", null ],
            [ "CLErodeKernel", "classarm__compute_1_1_c_l_erode_kernel.xhtml", null ],
            [ "CLGaussian3x3Kernel", "classarm__compute_1_1_c_l_gaussian3x3_kernel.xhtml", null ],
            [ "CLGEMMTranspose1xWKernel", "classarm__compute_1_1_c_l_g_e_m_m_transpose1x_w_kernel.xhtml", null ],
            [ "CLIntegralImageHorKernel", "classarm__compute_1_1_c_l_integral_image_hor_kernel.xhtml", null ],
            [ "CLMedian3x3Kernel", "classarm__compute_1_1_c_l_median3x3_kernel.xhtml", null ],
            [ "CLNonLinearFilterKernel", "classarm__compute_1_1_c_l_non_linear_filter_kernel.xhtml", null ],
            [ "CLNonMaximaSuppression3x3Kernel", "classarm__compute_1_1_c_l_non_maxima_suppression3x3_kernel.xhtml", null ],
            [ "CLScaleKernel", "classarm__compute_1_1_c_l_scale_kernel.xhtml", null ],
            [ "CLSeparableConvolutionHorKernel< matrix_size >", "classarm__compute_1_1_c_l_separable_convolution_hor_kernel.xhtml", [
              [ "CLGaussian5x5HorKernel", "classarm__compute_1_1_c_l_gaussian5x5_hor_kernel.xhtml", null ]
            ] ],
            [ "CLSeparableConvolutionVertKernel< matrix_size >", "classarm__compute_1_1_c_l_separable_convolution_vert_kernel.xhtml", [
              [ "CLGaussian5x5VertKernel", "classarm__compute_1_1_c_l_gaussian5x5_vert_kernel.xhtml", null ]
            ] ],
            [ "CLTableLookupKernel", "classarm__compute_1_1_c_l_table_lookup_kernel.xhtml", null ],
            [ "CLThresholdKernel", "classarm__compute_1_1_c_l_threshold_kernel.xhtml", null ],
            [ "CLTransposeKernel", "classarm__compute_1_1_c_l_transpose_kernel.xhtml", null ],
            [ "CLWarpAffineKernel", "classarm__compute_1_1_c_l_warp_affine_kernel.xhtml", null ],
            [ "CLWarpPerspectiveKernel", "classarm__compute_1_1_c_l_warp_perspective_kernel.xhtml", null ],
            [ "ICLSimple3DKernel", "classarm__compute_1_1_i_c_l_simple3_d_kernel.xhtml", [
              [ "CLLogits1DMaxKernel", "classarm__compute_1_1_c_l_logits1_d_max_kernel.xhtml", null ]
            ] ]
          ] ]
        ] ]
      ] ],
      [ "ICPPKernel", "classarm__compute_1_1_i_c_p_p_kernel.xhtml", [
        [ "CPPCornerCandidatesKernel", "classarm__compute_1_1_c_p_p_corner_candidates_kernel.xhtml", null ],
        [ "CPPDetectionWindowNonMaximaSuppressionKernel", "classarm__compute_1_1_c_p_p_detection_window_non_maxima_suppression_kernel.xhtml", null ],
        [ "CPPSortEuclideanDistanceKernel", "classarm__compute_1_1_c_p_p_sort_euclidean_distance_kernel.xhtml", null ],
        [ "ICPPSimpleKernel", "classarm__compute_1_1_i_c_p_p_simple_kernel.xhtml", [
          [ "NEAccumulateKernel", "classarm__compute_1_1_n_e_accumulate_kernel.xhtml", null ],
          [ "NEAccumulateSquaredKernel", "classarm__compute_1_1_n_e_accumulate_squared_kernel.xhtml", null ],
          [ "NEAccumulateWeightedKernel", "classarm__compute_1_1_n_e_accumulate_weighted_kernel.xhtml", [
            [ "NEAccumulateWeightedFP16Kernel", "classarm__compute_1_1_n_e_accumulate_weighted_f_p16_kernel.xhtml", null ]
          ] ],
          [ "NEBox3x3Kernel", "classarm__compute_1_1_n_e_box3x3_kernel.xhtml", [
            [ "NEBox3x3FP16Kernel", "classarm__compute_1_1_n_e_box3x3_f_p16_kernel.xhtml", null ]
          ] ],
          [ "NEChannelExtractKernel", "classarm__compute_1_1_n_e_channel_extract_kernel.xhtml", null ],
          [ "NEConvolutionKernel< matrix_size >", "classarm__compute_1_1_n_e_convolution_kernel.xhtml", null ],
          [ "NEDilateKernel", "classarm__compute_1_1_n_e_dilate_kernel.xhtml", null ],
          [ "NEErodeKernel", "classarm__compute_1_1_n_e_erode_kernel.xhtml", null ],
          [ "NEFloorKernel", "classarm__compute_1_1_n_e_floor_kernel.xhtml", null ],
          [ "NEGaussian3x3Kernel", "classarm__compute_1_1_n_e_gaussian3x3_kernel.xhtml", null ],
          [ "NEGaussian5x5HorKernel", "classarm__compute_1_1_n_e_gaussian5x5_hor_kernel.xhtml", null ],
          [ "NEGaussian5x5VertKernel", "classarm__compute_1_1_n_e_gaussian5x5_vert_kernel.xhtml", null ],
          [ "NEGaussianPyramidHorKernel", "classarm__compute_1_1_n_e_gaussian_pyramid_hor_kernel.xhtml", null ],
          [ "NEGaussianPyramidVertKernel", "classarm__compute_1_1_n_e_gaussian_pyramid_vert_kernel.xhtml", null ],
          [ "NEGEMMInterleave4x4Kernel", "classarm__compute_1_1_n_e_g_e_m_m_interleave4x4_kernel.xhtml", null ],
          [ "NEGEMMMatrixAdditionKernel", "classarm__compute_1_1_n_e_g_e_m_m_matrix_addition_kernel.xhtml", null ],
          [ "NEGEMMTranspose1xWKernel", "classarm__compute_1_1_n_e_g_e_m_m_transpose1x_w_kernel.xhtml", null ],
          [ "NEIntegralImageKernel", "classarm__compute_1_1_n_e_integral_image_kernel.xhtml", null ],
          [ "NELogits1DMaxKernel", "classarm__compute_1_1_n_e_logits1_d_max_kernel.xhtml", null ],
          [ "NEMedian3x3Kernel", "classarm__compute_1_1_n_e_median3x3_kernel.xhtml", null ],
          [ "NEReshapeLayerKernel", "classarm__compute_1_1_n_e_reshape_layer_kernel.xhtml", null ],
          [ "NESeparableConvolutionHorKernel< matrix_size >", "classarm__compute_1_1_n_e_separable_convolution_hor_kernel.xhtml", null ],
          [ "NESeparableConvolutionVertKernel< matrix_size >", "classarm__compute_1_1_n_e_separable_convolution_vert_kernel.xhtml", null ],
          [ "NETableLookupKernel", "classarm__compute_1_1_n_e_table_lookup_kernel.xhtml", null ]
        ] ],
        [ "INEHarrisScoreKernel", "classarm__compute_1_1_i_n_e_harris_score_kernel.xhtml", [
          [ "NEHarrisScoreFP16Kernel< block_size >", "classarm__compute_1_1_n_e_harris_score_f_p16_kernel.xhtml", null ],
          [ "NEHarrisScoreKernel< block_size >", "classarm__compute_1_1_n_e_harris_score_kernel.xhtml", null ]
        ] ],
        [ "INEWarpKernel", "classarm__compute_1_1_i_n_e_warp_kernel.xhtml", [
          [ "NEWarpAffineKernel< interpolation >", "classarm__compute_1_1_n_e_warp_affine_kernel.xhtml", null ],
          [ "NEWarpPerspectiveKernel< interpolation >", "classarm__compute_1_1_n_e_warp_perspective_kernel.xhtml", null ]
        ] ],
        [ "NEAbsoluteDifferenceKernel", "classarm__compute_1_1_n_e_absolute_difference_kernel.xhtml", null ],
        [ "NEActivationLayerKernel", "classarm__compute_1_1_n_e_activation_layer_kernel.xhtml", null ],
        [ "NEArithmeticAdditionKernel", "classarm__compute_1_1_n_e_arithmetic_addition_kernel.xhtml", null ],
        [ "NEArithmeticSubtractionKernel", "classarm__compute_1_1_n_e_arithmetic_subtraction_kernel.xhtml", null ],
        [ "NEBatchNormalizationLayerKernel", "classarm__compute_1_1_n_e_batch_normalization_layer_kernel.xhtml", null ],
        [ "NEBitwiseAndKernel", "classarm__compute_1_1_n_e_bitwise_and_kernel.xhtml", null ],
        [ "NEBitwiseNotKernel", "classarm__compute_1_1_n_e_bitwise_not_kernel.xhtml", null ],
        [ "NEBitwiseOrKernel", "classarm__compute_1_1_n_e_bitwise_or_kernel.xhtml", null ],
        [ "NEBitwiseXorKernel", "classarm__compute_1_1_n_e_bitwise_xor_kernel.xhtml", null ],
        [ "NEChannelCombineKernel", "classarm__compute_1_1_n_e_channel_combine_kernel.xhtml", null ],
        [ "NECol2ImKernel", "classarm__compute_1_1_n_e_col2_im_kernel.xhtml", null ],
        [ "NEColorConvertKernel", "classarm__compute_1_1_n_e_color_convert_kernel.xhtml", null ],
        [ "NEConvolutionRectangleKernel", "classarm__compute_1_1_n_e_convolution_rectangle_kernel.xhtml", null ],
        [ "NECumulativeDistributionKernel", "classarm__compute_1_1_n_e_cumulative_distribution_kernel.xhtml", null ],
        [ "NEDepthConcatenateKernel", "classarm__compute_1_1_n_e_depth_concatenate_kernel.xhtml", null ],
        [ "NEDepthConvertKernel", "classarm__compute_1_1_n_e_depth_convert_kernel.xhtml", null ],
        [ "NEDequantizationLayerKernel", "classarm__compute_1_1_n_e_dequantization_layer_kernel.xhtml", null ],
        [ "NEDerivativeKernel", "classarm__compute_1_1_n_e_derivative_kernel.xhtml", null ],
        [ "NEDirectConvolutionLayerBiasAccumulateKernel", "classarm__compute_1_1_n_e_direct_convolution_layer_bias_accumulate_kernel.xhtml", null ],
        [ "NEDirectConvolutionLayerKernel", "classarm__compute_1_1_n_e_direct_convolution_layer_kernel.xhtml", null ],
        [ "NEEdgeNonMaxSuppressionKernel", "classarm__compute_1_1_n_e_edge_non_max_suppression_kernel.xhtml", null ],
        [ "NEEdgeTraceKernel", "classarm__compute_1_1_n_e_edge_trace_kernel.xhtml", null ],
        [ "NEFastCornersKernel", "classarm__compute_1_1_n_e_fast_corners_kernel.xhtml", null ],
        [ "NEFillArrayKernel", "classarm__compute_1_1_n_e_fill_array_kernel.xhtml", null ],
        [ "NEFillBorderKernel", "classarm__compute_1_1_n_e_fill_border_kernel.xhtml", null ],
        [ "NEFillInnerBorderKernel", "classarm__compute_1_1_n_e_fill_inner_border_kernel.xhtml", null ],
        [ "NEGEMMAssemblyBaseKernel", "classarm__compute_1_1_n_e_g_e_m_m_assembly_base_kernel.xhtml", [
          [ "NEGEMMAArch32Kernel", "classarm__compute_1_1_n_e_g_e_m_m_a_arch32_kernel.xhtml", null ],
          [ "NEGEMMAArch64Kernel", "classarm__compute_1_1_n_e_g_e_m_m_a_arch64_kernel.xhtml", null ]
        ] ],
        [ "NEGEMMLowpMatrixMultiplyKernel", "classarm__compute_1_1_n_e_g_e_m_m_lowp_matrix_multiply_kernel.xhtml", null ],
        [ "NEGEMMMatrixAccumulateBiasesKernel", "classarm__compute_1_1_n_e_g_e_m_m_matrix_accumulate_biases_kernel.xhtml", null ],
        [ "NEGEMMMatrixMultiplyKernel", "classarm__compute_1_1_n_e_g_e_m_m_matrix_multiply_kernel.xhtml", null ],
        [ "NEGradientKernel", "classarm__compute_1_1_n_e_gradient_kernel.xhtml", [
          [ "NEGradientFP16Kernel", "classarm__compute_1_1_n_e_gradient_f_p16_kernel.xhtml", null ]
        ] ],
        [ "NEHistogramKernel", "classarm__compute_1_1_n_e_histogram_kernel.xhtml", null ],
        [ "NEHOGBlockNormalizationKernel", "classarm__compute_1_1_n_e_h_o_g_block_normalization_kernel.xhtml", null ],
        [ "NEHOGDetectorKernel", "classarm__compute_1_1_n_e_h_o_g_detector_kernel.xhtml", null ],
        [ "NEHOGOrientationBinningKernel", "classarm__compute_1_1_n_e_h_o_g_orientation_binning_kernel.xhtml", null ],
        [ "NEIm2ColKernel", "classarm__compute_1_1_n_e_im2_col_kernel.xhtml", null ],
        [ "NEL2NormalizeKernel", "classarm__compute_1_1_n_e_l2_normalize_kernel.xhtml", null ],
        [ "NELKTrackerKernel", "classarm__compute_1_1_n_e_l_k_tracker_kernel.xhtml", null ],
        [ "NELocallyConnectedMatrixMultiplyKernel", "classarm__compute_1_1_n_e_locally_connected_matrix_multiply_kernel.xhtml", null ],
        [ "NELogits1DNormKernel", "classarm__compute_1_1_n_e_logits1_d_norm_kernel.xhtml", null ],
        [ "NELogits1DShiftExpSumKernel", "classarm__compute_1_1_n_e_logits1_d_shift_exp_sum_kernel.xhtml", null ],
        [ "NEMagnitudePhaseFP16Kernel< mag_type, phase_type >", "classarm__compute_1_1_n_e_magnitude_phase_f_p16_kernel.xhtml", null ],
        [ "NEMagnitudePhaseKernel< mag_type, phase_type >", "classarm__compute_1_1_n_e_magnitude_phase_kernel.xhtml", null ],
        [ "NEMeanStdDevKernel", "classarm__compute_1_1_n_e_mean_std_dev_kernel.xhtml", null ],
        [ "NEMinMaxKernel", "classarm__compute_1_1_n_e_min_max_kernel.xhtml", null ],
        [ "NEMinMaxLayerKernel", "classarm__compute_1_1_n_e_min_max_layer_kernel.xhtml", null ],
        [ "NEMinMaxLocationKernel", "classarm__compute_1_1_n_e_min_max_location_kernel.xhtml", null ],
        [ "NENonLinearFilterKernel", "classarm__compute_1_1_n_e_non_linear_filter_kernel.xhtml", null ],
        [ "NENonMaximaSuppression3x3Kernel", "classarm__compute_1_1_n_e_non_maxima_suppression3x3_kernel.xhtml", [
          [ "NENonMaximaSuppression3x3FP16Kernel", "classarm__compute_1_1_n_e_non_maxima_suppression3x3_f_p16_kernel.xhtml", null ]
        ] ],
        [ "NENormalizationLayerKernel", "classarm__compute_1_1_n_e_normalization_layer_kernel.xhtml", null ],
        [ "NEPixelWiseMultiplicationKernel", "classarm__compute_1_1_n_e_pixel_wise_multiplication_kernel.xhtml", null ],
        [ "NEPoolingLayerKernel", "classarm__compute_1_1_n_e_pooling_layer_kernel.xhtml", null ],
        [ "NEQuantizationLayerKernel", "classarm__compute_1_1_n_e_quantization_layer_kernel.xhtml", null ],
        [ "NEReductionOperationKernel", "classarm__compute_1_1_n_e_reduction_operation_kernel.xhtml", null ],
        [ "NERemapKernel", "classarm__compute_1_1_n_e_remap_kernel.xhtml", null ],
        [ "NEROIPoolingLayerKernel", "classarm__compute_1_1_n_e_r_o_i_pooling_layer_kernel.xhtml", null ],
        [ "NEScaleKernel", "classarm__compute_1_1_n_e_scale_kernel.xhtml", null ],
        [ "NEScharr3x3Kernel", "classarm__compute_1_1_n_e_scharr3x3_kernel.xhtml", null ],
        [ "NESobel3x3Kernel", "classarm__compute_1_1_n_e_sobel3x3_kernel.xhtml", null ],
        [ "NESobel5x5HorKernel", "classarm__compute_1_1_n_e_sobel5x5_hor_kernel.xhtml", null ],
        [ "NESobel5x5VertKernel", "classarm__compute_1_1_n_e_sobel5x5_vert_kernel.xhtml", null ],
        [ "NESobel7x7HorKernel", "classarm__compute_1_1_n_e_sobel7x7_hor_kernel.xhtml", null ],
        [ "NESobel7x7VertKernel", "classarm__compute_1_1_n_e_sobel7x7_vert_kernel.xhtml", null ],
        [ "NEThresholdKernel", "classarm__compute_1_1_n_e_threshold_kernel.xhtml", null ],
        [ "NETransposeKernel", "classarm__compute_1_1_n_e_transpose_kernel.xhtml", null ],
        [ "NEWeightsReshapeKernel", "classarm__compute_1_1_n_e_weights_reshape_kernel.xhtml", null ]
      ] ]
    ] ],
    [ "ILifetimeManager", "classarm__compute_1_1_i_lifetime_manager.xhtml", [
      [ "BlobLifetimeManager", "classarm__compute_1_1_blob_lifetime_manager.xhtml", null ]
    ] ],
    [ "ILut", "classarm__compute_1_1_i_lut.xhtml", [
      [ "ICLLut", "classarm__compute_1_1_i_c_l_lut.xhtml", [
        [ "CLLut", "classarm__compute_1_1_c_l_lut.xhtml", null ]
      ] ],
      [ "Lut", "classarm__compute_1_1_lut.xhtml", null ]
    ] ],
    [ "ILutAccessor< T >", "classarm__compute_1_1test_1_1_i_lut_accessor.xhtml", [
      [ "CLLutAccessor< T >", "classarm__compute_1_1test_1_1_c_l_lut_accessor.xhtml", null ],
      [ "LutAccessor< T >", "classarm__compute_1_1test_1_1_lut_accessor.xhtml", null ],
      [ "RawLutAccessor< T >", "classarm__compute_1_1test_1_1_raw_lut_accessor.xhtml", null ]
    ] ],
    [ "ILutAllocator", "classarm__compute_1_1_i_lut_allocator.xhtml", [
      [ "CLLutAllocator", "classarm__compute_1_1_c_l_lut_allocator.xhtml", null ],
      [ "LutAllocator", "classarm__compute_1_1_lut_allocator.xhtml", null ]
    ] ],
    [ "Image", "struct_image.xhtml", null ],
    [ "IMeasurement", "structarm__compute_1_1test_1_1framework_1_1_i_measurement.xhtml", [
      [ "TypedMeasurement< T >", "structarm__compute_1_1test_1_1framework_1_1_typed_measurement.xhtml", null ],
      [ "TypedMeasurement< double >", "structarm__compute_1_1test_1_1framework_1_1_typed_measurement.xhtml", [
        [ "Measurement", "structarm__compute_1_1test_1_1framework_1_1_measurement.xhtml", null ]
      ] ]
    ] ],
    [ "IMemoryGroup", "classarm__compute_1_1_i_memory_group.xhtml", [
      [ "MemoryGroupBase< typename >", "classarm__compute_1_1_memory_group_base.xhtml", null ],
      [ "MemoryGroupBase< CLTensor >", "classarm__compute_1_1_memory_group_base.xhtml", null ],
      [ "MemoryGroupBase< Tensor >", "classarm__compute_1_1_memory_group_base.xhtml", null ]
    ] ],
    [ "IMemoryManager", "classarm__compute_1_1_i_memory_manager.xhtml", [
      [ "MemoryManagerOnDemand", "classarm__compute_1_1_memory_manager_on_demand.xhtml", null ]
    ] ],
    [ "IMemoryPool", "classarm__compute_1_1_i_memory_pool.xhtml", [
      [ "BlobMemoryPool", "classarm__compute_1_1_blob_memory_pool.xhtml", null ]
    ] ],
    [ "IMultiHOG", "classarm__compute_1_1_i_multi_h_o_g.xhtml", [
      [ "ICLMultiHOG", "classarm__compute_1_1_i_c_l_multi_h_o_g.xhtml", [
        [ "CLMultiHOG", "classarm__compute_1_1_c_l_multi_h_o_g.xhtml", null ]
      ] ],
      [ "MultiHOG", "classarm__compute_1_1_multi_h_o_g.xhtml", null ]
    ] ],
    [ "IMultiImage", "classarm__compute_1_1_i_multi_image.xhtml", [
      [ "ICLMultiImage", "classarm__compute_1_1_i_c_l_multi_image.xhtml", [
        [ "CLMultiImage", "classarm__compute_1_1_c_l_multi_image.xhtml", null ]
      ] ],
      [ "MultiImage", "classarm__compute_1_1_multi_image.xhtml", null ]
    ] ],
    [ "INode", "classarm__compute_1_1graph_1_1_i_node.xhtml", [
      [ "ActivationLayer", "classarm__compute_1_1graph_1_1_activation_layer.xhtml", null ],
      [ "ConvolutionLayer", "classarm__compute_1_1graph_1_1_convolution_layer.xhtml", null ],
      [ "FullyConnectedLayer", "classarm__compute_1_1graph_1_1_fully_connected_layer.xhtml", null ],
      [ "PoolingLayer", "classarm__compute_1_1graph_1_1_pooling_layer.xhtml", null ],
      [ "SoftmaxLayer", "classarm__compute_1_1graph_1_1_softmax_layer.xhtml", null ]
    ] ],
    [ "Instrument", "classarm__compute_1_1test_1_1framework_1_1_instrument.xhtml", [
      [ "MaliCounter", "classarm__compute_1_1test_1_1framework_1_1_mali_counter.xhtml", null ],
      [ "PMUCounter", "classarm__compute_1_1test_1_1framework_1_1_p_m_u_counter.xhtml", null ],
      [ "WallClockTimer", "classarm__compute_1_1test_1_1framework_1_1_wall_clock_timer.xhtml", null ]
    ] ],
    [ "InternalKeypoint", "struct_internal_keypoint.xhtml", null ],
    [ "IOFormatInfo", "structarm__compute_1_1_i_o_format_info.xhtml", null ],
    [ "IPoolManager", "classarm__compute_1_1_i_pool_manager.xhtml", [
      [ "PoolManager", "classarm__compute_1_1_pool_manager.xhtml", null ]
    ] ],
    [ "IPyramid", "classarm__compute_1_1_i_pyramid.xhtml", [
      [ "CLPyramid", "classarm__compute_1_1_c_l_pyramid.xhtml", null ],
      [ "Pyramid", "classarm__compute_1_1_pyramid.xhtml", null ]
    ] ],
    [ "is_contained< T, Tuple >", "structarm__compute_1_1traits_1_1is__contained.xhtml", null ],
    [ "is_contained< T, std::tuple< Ts...> >", "structarm__compute_1_1traits_1_1is__contained.xhtml", [
      [ "is_contained< T, std::tuple< U, Ts...> >", "structarm__compute_1_1traits_1_1is__contained_3_01_t_00_01std_1_1tuple_3_01_u_00_01_ts_8_8_8_4_01_4.xhtml", null ]
    ] ],
    [ "is_floating_point", null, [
      [ "is_floating_point< T >", "structarm__compute_1_1test_1_1validation_1_1is__floating__point.xhtml", null ]
    ] ],
    [ "IScheduler", "classarm__compute_1_1_i_scheduler.xhtml", [
      [ "CPPScheduler", "classarm__compute_1_1_c_p_p_scheduler.xhtml", null ],
      [ "OMPScheduler", "classarm__compute_1_1_o_m_p_scheduler.xhtml", null ],
      [ "SingleThreadScheduler", "classarm__compute_1_1_single_thread_scheduler.xhtml", null ]
    ] ],
    [ "ITensor", "classarm__compute_1_1_i_tensor.xhtml", [
      [ "ICLTensor", "classarm__compute_1_1_i_c_l_tensor.xhtml", [
        [ "CLSubTensor", "classarm__compute_1_1_c_l_sub_tensor.xhtml", null ],
        [ "CLTensor", "classarm__compute_1_1_c_l_tensor.xhtml", null ]
      ] ],
      [ "SubTensor", "classarm__compute_1_1_sub_tensor.xhtml", null ],
      [ "Tensor", "classarm__compute_1_1_tensor.xhtml", null ]
    ] ],
    [ "ITensorAccessor", "classarm__compute_1_1graph_1_1_i_tensor_accessor.xhtml", [
      [ "DummyAccessor", "classarm__compute_1_1graph__utils_1_1_dummy_accessor.xhtml", null ],
      [ "NumPyBinLoader", "classarm__compute_1_1graph__utils_1_1_num_py_bin_loader.xhtml", null ],
      [ "PPMWriter", "classarm__compute_1_1graph__utils_1_1_p_p_m_writer.xhtml", null ]
    ] ],
    [ "ITensorAllocator", "classarm__compute_1_1_i_tensor_allocator.xhtml", [
      [ "CLTensorAllocator", "classarm__compute_1_1_c_l_tensor_allocator.xhtml", null ],
      [ "TensorAllocator", "classarm__compute_1_1_tensor_allocator.xhtml", null ]
    ] ],
    [ "ITensorInfo", "classarm__compute_1_1_i_tensor_info.xhtml", [
      [ "SubTensorInfo", "classarm__compute_1_1_sub_tensor_info.xhtml", null ],
      [ "TensorInfo", "classarm__compute_1_1_tensor_info.xhtml", null ]
    ] ],
    [ "FullyConnectedLayerDataset::iterator", "structarm__compute_1_1test_1_1datasets_1_1_fully_connected_layer_dataset_1_1iterator.xhtml", null ],
    [ "Iterator", "classarm__compute_1_1_iterator.xhtml", null ],
    [ "GEMMDataset::iterator", "structarm__compute_1_1test_1_1datasets_1_1_g_e_m_m_dataset_1_1iterator.xhtml", null ],
    [ "BatchNormalizationLayerDataset::iterator", "structarm__compute_1_1test_1_1datasets_1_1_batch_normalization_layer_dataset_1_1iterator.xhtml", null ],
    [ "ConvolutionLayerDataset::iterator", "structarm__compute_1_1test_1_1datasets_1_1_convolution_layer_dataset_1_1iterator.xhtml", null ],
    [ "DepthwiseConvolutionDataset::iterator", "structarm__compute_1_1test_1_1datasets_1_1_depthwise_convolution_dataset_1_1iterator.xhtml", null ],
    [ "DepthwiseSeparableConvolutionLayerDataset::iterator", "structarm__compute_1_1test_1_1datasets_1_1_depthwise_separable_convolution_layer_dataset_1_1iterator.xhtml", null ],
    [ "PoolingLayerDataset::iterator", "structarm__compute_1_1test_1_1datasets_1_1_pooling_layer_dataset_1_1iterator.xhtml", null ],
    [ "ReshapeLayerDataset::iterator", "structarm__compute_1_1test_1_1datasets_1_1_reshape_layer_dataset_1_1iterator.xhtml", null ],
    [ "ROIPoolingLayerDataset::iterator", "structarm__compute_1_1test_1_1datasets_1_1_r_o_i_pooling_layer_dataset_1_1iterator.xhtml", null ],
    [ "ThresholdDataset::iterator", "structarm__compute_1_1test_1_1datasets_1_1_threshold_dataset_1_1iterator.xhtml", null ],
    [ "ContainerDataset< T >::iterator", "structarm__compute_1_1test_1_1framework_1_1dataset_1_1_container_dataset_1_1iterator.xhtml", null ],
    [ "InitializerListDataset< T >::iterator", "structarm__compute_1_1test_1_1framework_1_1dataset_1_1_initializer_list_dataset_1_1iterator.xhtml", null ],
    [ "JoinDataset< T, U >::iterator", "structarm__compute_1_1test_1_1framework_1_1dataset_1_1_join_dataset_1_1iterator.xhtml", null ],
    [ "RangeDataset< T >::iterator", "structarm__compute_1_1test_1_1framework_1_1dataset_1_1_range_dataset_1_1iterator.xhtml", null ],
    [ "SingletonDataset< T >::iterator", "structarm__compute_1_1test_1_1framework_1_1dataset_1_1_singleton_dataset_1_1iterator.xhtml", null ],
    [ "ZipDataset< T, U >::iterator", "structarm__compute_1_1test_1_1framework_1_1dataset_1_1_zip_dataset_1_1iterator.xhtml", null ],
    [ "CartesianProductDataset< T, U >::iterator", "structarm__compute_1_1test_1_1framework_1_1dataset_1_1_cartesian_product_dataset_1_1iterator.xhtml", null ],
    [ "kbase_hwcnt_reader_metadata", "structmali__userspace_1_1kbase__hwcnt__reader__metadata.xhtml", null ],
    [ "kbase_uk_gpuprops", "structmali__userspace_1_1kbase__uk__gpuprops.xhtml", null ],
    [ "Kernel", "classarm__compute_1_1_kernel.xhtml", null ],
    [ "Keypoint", "struct_keypoint.xhtml", null ],
    [ "KeyPoint", "structarm__compute_1_1_key_point.xhtml", null ],
    [ "LeNet5Network< TensorType, Accessor, ActivationLayerFunction, ConvolutionLayerFunction, FullyConnectedLayerFunction, PoolingLayerFunction, SoftmaxLayerFunction >", "classarm__compute_1_1test_1_1networks_1_1_le_net5_network.xhtml", null ],
    [ "LeNet5Network< TensorType, arm_compute::test::Accessor, ActivationLayerFunction, ConvolutionLayerFunction, FullyConnectedLayerFunction, PoolingLayerFunction, SoftmaxLayerFunction >", "classarm__compute_1_1test_1_1networks_1_1_le_net5_network.xhtml", null ],
    [ "mali_base_gpu_coherent_group", "structmali__userspace_1_1mali__base__gpu__coherent__group.xhtml", null ],
    [ "mali_base_gpu_coherent_group_info", "structmali__userspace_1_1mali__base__gpu__coherent__group__info.xhtml", null ],
    [ "mali_base_gpu_core_props", "structmali__userspace_1_1mali__base__gpu__core__props.xhtml", null ],
    [ "mali_base_gpu_l2_cache_props", "structmali__userspace_1_1mali__base__gpu__l2__cache__props.xhtml", null ],
    [ "mali_base_gpu_props", "structmali__userspace_1_1mali__base__gpu__props.xhtml", null ],
    [ "mali_base_gpu_thread_props", "structmali__userspace_1_1mali__base__gpu__thread__props.xhtml", null ],
    [ "mali_base_gpu_tiler_props", "structmali__userspace_1_1mali__base__gpu__tiler__props.xhtml", null ],
    [ "MinMaxLocationValues< MinMaxType >", "structarm__compute_1_1_min_max_location_values.xhtml", null ],
    [ "MinMaxLocationValues< T >", "structarm__compute_1_1_min_max_location_values.xhtml", null ],
    [ "MinMaxLocationValues< target_type >", "structarm__compute_1_1_min_max_location_values.xhtml", null ],
    [ "MultiImageInfo", "classarm__compute_1_1_multi_image_info.xhtml", null ],
    [ "NELKInternalKeypoint", "structarm__compute_1_1_n_e_l_k_internal_keypoint.xhtml", null ],
    [ "NormalizationLayerInfo", "classarm__compute_1_1_normalization_layer_info.xhtml", null ],
    [ "Option", "classarm__compute_1_1test_1_1framework_1_1_option.xhtml", [
      [ "EnumListOption< T >", "classarm__compute_1_1test_1_1framework_1_1_enum_list_option.xhtml", null ],
      [ "ListOption< T >", "classarm__compute_1_1test_1_1framework_1_1_list_option.xhtml", null ],
      [ "SimpleOption< T >", "classarm__compute_1_1test_1_1framework_1_1_simple_option.xhtml", [
        [ "EnumOption< T >", "classarm__compute_1_1test_1_1framework_1_1_enum_option.xhtml", null ]
      ] ],
      [ "SimpleOption< bool >", "classarm__compute_1_1test_1_1framework_1_1_simple_option.xhtml", [
        [ "ToggleOption", "classarm__compute_1_1test_1_1framework_1_1_toggle_option.xhtml", null ]
      ] ]
    ] ],
    [ "PaddingCalculator", "classarm__compute_1_1test_1_1_padding_calculator.xhtml", null ],
    [ "PadStrideInfo", "classarm__compute_1_1_pad_stride_info.xhtml", null ],
    [ "PixelValue", "classarm__compute_1_1_pixel_value.xhtml", null ],
    [ "PMU", "classarm__compute_1_1test_1_1framework_1_1_p_m_u.xhtml", null ],
    [ "PoolingLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_pooling_layer_dataset.xhtml", [
      [ "AlexNetPoolingLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_alex_net_pooling_layer_dataset.xhtml", null ],
      [ "GoogLeNetInceptionV1PoolingLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v1_pooling_layer_dataset.xhtml", null ],
      [ "GoogLeNetInceptionV4PoolingLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_goog_le_net_inception_v4_pooling_layer_dataset.xhtml", null ],
      [ "LeNet5PoolingLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_le_net5_pooling_layer_dataset.xhtml", null ],
      [ "SqueezeNetPoolingLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_squeeze_net_pooling_layer_dataset.xhtml", null ],
      [ "VGG16PoolingLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_v_g_g16_pooling_layer_dataset.xhtml", null ],
      [ "YOLOV2PoolingLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_y_o_l_o_v2_pooling_layer_dataset.xhtml", null ]
    ] ],
    [ "PoolingLayerInfo", "classarm__compute_1_1_pooling_layer_info.xhtml", null ],
    [ "PPMLoader", "classarm__compute_1_1utils_1_1_p_p_m_loader.xhtml", null ],
    [ "Printer", "classarm__compute_1_1test_1_1framework_1_1_printer.xhtml", [
      [ "JSONPrinter", "classarm__compute_1_1test_1_1framework_1_1_j_s_o_n_printer.xhtml", null ],
      [ "PrettyPrinter", "classarm__compute_1_1test_1_1framework_1_1_pretty_printer.xhtml", null ]
    ] ],
    [ "profiler", "classprofiler.xhtml", null ],
    [ "Profiler", "classarm__compute_1_1test_1_1framework_1_1_profiler.xhtml", null ],
    [ "Program", "classarm__compute_1_1_program.xhtml", null ],
    [ "promote< T >", "structarm__compute_1_1test_1_1traits_1_1promote.xhtml", null ],
    [ "promote< T >", "structarm__compute_1_1test_1_1fixed__point__arithmetic_1_1traits_1_1promote.xhtml", null ],
    [ "promote< float >", "structarm__compute_1_1test_1_1traits_1_1promote_3_01float_01_4.xhtml", null ],
    [ "promote< half >", "structarm__compute_1_1test_1_1traits_1_1promote_3_01half_01_4.xhtml", null ],
    [ "promote< int16_t >", "structarm__compute_1_1test_1_1traits_1_1promote_3_01int16__t_01_4.xhtml", null ],
    [ "promote< int16_t >", "structarm__compute_1_1test_1_1fixed__point__arithmetic_1_1traits_1_1promote_3_01int16__t_01_4.xhtml", null ],
    [ "promote< int32_t >", "structarm__compute_1_1test_1_1fixed__point__arithmetic_1_1traits_1_1promote_3_01int32__t_01_4.xhtml", null ],
    [ "promote< int32_t >", "structarm__compute_1_1test_1_1traits_1_1promote_3_01int32__t_01_4.xhtml", null ],
    [ "promote< int64_t >", "structarm__compute_1_1test_1_1fixed__point__arithmetic_1_1traits_1_1promote_3_01int64__t_01_4.xhtml", null ],
    [ "promote< int8_t >", "structarm__compute_1_1test_1_1traits_1_1promote_3_01int8__t_01_4.xhtml", null ],
    [ "promote< int8_t >", "structarm__compute_1_1test_1_1fixed__point__arithmetic_1_1traits_1_1promote_3_01int8__t_01_4.xhtml", null ],
    [ "promote< uint16_t >", "structarm__compute_1_1test_1_1traits_1_1promote_3_01uint16__t_01_4.xhtml", null ],
    [ "promote< uint16_t >", "structarm__compute_1_1test_1_1fixed__point__arithmetic_1_1traits_1_1promote_3_01uint16__t_01_4.xhtml", null ],
    [ "promote< uint32_t >", "structarm__compute_1_1test_1_1fixed__point__arithmetic_1_1traits_1_1promote_3_01uint32__t_01_4.xhtml", null ],
    [ "promote< uint32_t >", "structarm__compute_1_1test_1_1traits_1_1promote_3_01uint32__t_01_4.xhtml", null ],
    [ "promote< uint64_t >", "structarm__compute_1_1test_1_1fixed__point__arithmetic_1_1traits_1_1promote_3_01uint64__t_01_4.xhtml", null ],
    [ "promote< uint8_t >", "structarm__compute_1_1test_1_1fixed__point__arithmetic_1_1traits_1_1promote_3_01uint8__t_01_4.xhtml", null ],
    [ "promote< uint8_t >", "structarm__compute_1_1test_1_1traits_1_1promote_3_01uint8__t_01_4.xhtml", null ],
    [ "PyramidInfo", "classarm__compute_1_1_pyramid_info.xhtml", null ],
    [ "Rectangle", "structarm__compute_1_1_rectangle.xhtml", null ],
    [ "RelativeTolerance< T >", "classarm__compute_1_1test_1_1validation_1_1_relative_tolerance.xhtml", null ],
    [ "RelativeTolerance< U >", "classarm__compute_1_1test_1_1validation_1_1_relative_tolerance.xhtml", null ],
    [ "ReshapeLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_reshape_layer_dataset.xhtml", [
      [ "SmallReshapeLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_small_reshape_layer_dataset.xhtml", null ]
    ] ],
    [ "ROI", "structarm__compute_1_1_r_o_i.xhtml", null ],
    [ "ROIPoolingLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_r_o_i_pooling_layer_dataset.xhtml", [
      [ "SmallROIPoolingLayerDataset", "classarm__compute_1_1test_1_1datasets_1_1_small_r_o_i_pooling_layer_dataset.xhtml", null ]
    ] ],
    [ "ROIPoolingLayerInfo", "classarm__compute_1_1_r_o_i_pooling_layer_info.xhtml", null ],
    [ "runtime_error", null, [
      [ "FileNotFound", "classarm__compute_1_1test_1_1framework_1_1_file_not_found.xhtml", null ],
      [ "TestError", "classarm__compute_1_1test_1_1framework_1_1_test_error.xhtml", null ]
    ] ],
    [ "Scheduler", "classarm__compute_1_1_scheduler.xhtml", null ],
    [ "Semaphore", "classarm__compute_1_1_semaphore.xhtml", null ],
    [ "Size2D", "classarm__compute_1_1_size2_d.xhtml", null ],
    [ "Tensor", "classarm__compute_1_1graph_1_1_tensor.xhtml", null ],
    [ "Tensor3D", "struct_tensor3_d.xhtml", null ],
    [ "Tensor4D", "struct_tensor4_d.xhtml", null ],
    [ "TensorCache", "classarm__compute_1_1test_1_1_tensor_cache.xhtml", null ],
    [ "TestCase", "classarm__compute_1_1test_1_1framework_1_1_test_case.xhtml", [
      [ "DataTestCase< T >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\", 1)))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\",{4, 8})))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\", 1)))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\",{4, 8})))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\", 1)))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\",{4, 8})))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\", 1)))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\",{4, 8})))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\", 1)))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\",{4, 8})))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::VGG16ActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\", 1)))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::VGG16ActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\",{4, 8})))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\", 1)))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ],
      [ "DataTestCase< decltype(framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(), data_types), framework::dataset::make(\"Batches\",{4, 8})))::type >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case.xhtml", null ]
    ] ],
    [ "TestCaseFactory", "classarm__compute_1_1test_1_1framework_1_1_test_case_factory.xhtml", [
      [ "DataTestCaseFactory< T, D >", "classarm__compute_1_1test_1_1framework_1_1_data_test_case_factory.xhtml", null ],
      [ "SimpleTestCaseFactory< T >", "classarm__compute_1_1test_1_1framework_1_1_simple_test_case_factory.xhtml", null ]
    ] ],
    [ "TestCaseRegistrar< T >", "classarm__compute_1_1test_1_1framework_1_1detail_1_1_test_case_registrar.xhtml", null ],
    [ "TestFilter", "classarm__compute_1_1test_1_1framework_1_1_test_filter.xhtml", null ],
    [ "TestInfo", "structarm__compute_1_1test_1_1framework_1_1_test_info.xhtml", null ],
    [ "TestResult", "structarm__compute_1_1test_1_1framework_1_1_test_result.xhtml", null ],
    [ "TestSuiteRegistrar", "classarm__compute_1_1test_1_1framework_1_1detail_1_1_test_suite_registrar.xhtml", null ],
    [ "ThreadInfo", "structarm__compute_1_1_thread_info.xhtml", null ],
    [ "ThresholdDataset", "classarm__compute_1_1test_1_1datasets_1_1_threshold_dataset.xhtml", [
      [ "MixedThresholdDataset", "classarm__compute_1_1test_1_1datasets_1_1_mixed_threshold_dataset.xhtml", null ]
    ] ],
    [ "TransformImpl< IntBy, BlockBy, Transposed, TOutSize, TInSize >", "struct_transform_impl.xhtml", null ],
    [ "TransposeInterleaveCommon< IntBy, TIn, TOut >", "struct_transpose_interleave_common.xhtml", null ],
    [ "true_type", null, [
      [ "is_container< std::vector< V, A > >", "structarm__compute_1_1test_1_1framework_1_1dataset_1_1is__container_3_01std_1_1vector_3_01_v_00_01_a_01_4_01_4.xhtml", null ],
      [ "is_floating_point< half >", "structarm__compute_1_1test_1_1validation_1_1is__floating__point_3_01half_01_4.xhtml", null ],
      [ "is_contained< T, std::tuple< T, Ts...> >", "structarm__compute_1_1traits_1_1is__contained_3_01_t_00_01std_1_1tuple_3_01_t_00_01_ts_8_8_8_4_01_4.xhtml", null ]
    ] ],
    [ "uk_header", "unionmali__userspace_1_1uk__header.xhtml", null ],
    [ "ValidRegion", "structarm__compute_1_1_valid_region.xhtml", null ],
    [ "Vector", "struct_vector.xhtml", null ],
    [ "WeightsInfo", "classarm__compute_1_1_weights_info.xhtml", null ],
    [ "Window", "classarm__compute_1_1_window.xhtml", null ]
];