aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/InternalTypes.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/InternalTypes.hpp')
-rw-r--r--src/armnn/InternalTypes.hpp48
1 files changed, 48 insertions, 0 deletions
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 <armnn/Types.hpp>
+
+#include <array>
+
+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<unsigned int, MaxNumOfTensorDimensions>;
+using Dimensions = std::array<unsigned int, MaxNumOfTensorDimensions>;
+
+}