From 4fcda0101ec3d110c1d6d7bee5c83416b645528a Mon Sep 17 00:00:00 2001 From: telsoa01 Date: Fri, 9 Mar 2018 14:13:49 +0000 Subject: Release 18.02 Change-Id: Id3c11dc5ee94ef664374a988fcc6901e9a232fa6 --- src/armnn/InternalTypes.hpp | 48 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/armnn/InternalTypes.hpp (limited to 'src/armnn/InternalTypes.hpp') diff --git a/src/armnn/InternalTypes.hpp b/src/armnn/InternalTypes.hpp new file mode 100644 index 0000000000..8db0da4cf2 --- /dev/null +++ b/src/armnn/InternalTypes.hpp @@ -0,0 +1,48 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// See LICENSE file in the project root for full license information. +// +#pragma once + +#include + +#include + +namespace armnn +{ + +enum class LayerType +{ + FirstLayer, + Activation = FirstLayer, + Addition, + BatchNormalization, + Constant, + Convolution2d, + DepthwiseConvolution2d, + FakeQuantization, + Floor, + FullyConnected, + Input, + L2Normalization, + MemCopy, + Merger, + Multiplication, + Normalization, + Output, + Permute, + Pooling2d, + Reshape, + ResizeBilinear, + Softmax, + // Last layer goes here + LastLayer, + Splitter = LastLayer, +}; + +const char* GetLayerTypeAsCString(LayerType type); + +using Coordinates = std::array; +using Dimensions = std::array; + +} -- cgit v1.2.1