aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/DescriptorsFwd.hpp
blob: 58b4bcc62641259095460cf3904ab0c35d5f23e2 (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
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//
#pragma once

namespace armnn
{
struct ActivationDescriptor;
struct BatchNormalizationDescriptor;
struct Convolution2dDescriptor;
struct DepthwiseConvolution2dDescriptor;
struct FakeQuantizationDescriptor;
struct FullyConnectedDescriptor;
struct PermuteDescriptor;
struct NormalizationDescriptor;
struct Pooling2dDescriptor;
struct ReshapeDescriptor;
struct ResizeBilinearDescriptor;
struct SoftmaxDescriptor;
struct OriginsDescriptor;
struct ViewsDescriptor;

using MergerDescriptor = OriginsDescriptor;
using SplitterDescriptor = ViewsDescriptor;
}