From 0cff16365b2ebb4d02929b86a304b91df19a985c Mon Sep 17 00:00:00 2001 From: Derek Lamberti Date: Tue, 18 Sep 2018 16:02:25 +0100 Subject: IVGCVSW-1883 Add support for different memory layouts Change-Id: I6e9973bf25acad980fb4e96af8080ac829db0d28 --- include/armnn/Types.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/armnn') 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, -- cgit v1.2.1