aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDerek Lamberti <derek.lamberti@arm.com>2018-09-18 16:02:25 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-10-10 16:16:56 +0100
commit0cff16365b2ebb4d02929b86a304b91df19a985c (patch)
tree98e9cb30daedd0ff8e83abc85cba2991a67732f3 /include
parent58f3919fb34a1aae42857c53360f1d569f5d31f9 (diff)
downloadarmnn-0cff16365b2ebb4d02929b86a304b91df19a985c.tar.gz
IVGCVSW-1883 Add support for different memory layouts
Change-Id: I6e9973bf25acad980fb4e96af8080ac829db0d28
Diffstat (limited to 'include')
-rw-r--r--include/armnn/Types.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/armnn/Types.hpp b/include/armnn/Types.hpp
index 6d89e0ea00..172df1b454 100644
--- a/include/armnn/Types.hpp
+++ b/include/armnn/Types.hpp
@@ -28,6 +28,12 @@ enum class DataType
Signed32 = 3
};
+enum class DataLayout
+{
+ NCHW = 1,
+ NHWC = 2
+};
+
enum class ActivationFunction
{
Sigmoid = 0,