From 8ed39ae450a077c7e4d672b5f05ff1d68ee67aab Mon Sep 17 00:00:00 2001 From: Narumol Prangnawarat Date: Thu, 15 Jul 2021 16:16:25 +0100 Subject: MLCE-530 Add front end support for UnidirectionalSequenceLstm on ArmNN Signed-off-by: Narumol Prangnawarat Change-Id: I57bcbdec3eb0155f41af0fe7d6abf9bac2ec86eb --- include/armnn/Types.hpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'include/armnn/Types.hpp') diff --git a/include/armnn/Types.hpp b/include/armnn/Types.hpp index e7c17608ca..056aa83d2f 100644 --- a/include/armnn/Types.hpp +++ b/include/armnn/Types.hpp @@ -333,7 +333,6 @@ using InferenceTimingPair = std::pair; X(ArgMinMax) \ X(BatchNormalization) \ X(BatchToSpaceNd) \ - X(Cast) \ X(Comparison) \ X(Concat) \ X(Constant) \ @@ -382,7 +381,6 @@ using InferenceTimingPair = std::pair; X(Rank) \ X(Resize) \ X(Reduce) \ - X(Shape) \ X(Slice) \ X(Softmax) \ X(SpaceToBatchNd) \ @@ -396,6 +394,11 @@ using InferenceTimingPair = std::pair; X(Transpose) \ X(TransposeConvolution2d) \ X(Unmap) \ + X(Cast) \ + X(Shape) \ + X(UnidirectionalSequenceLstm) \ + +// New layers should be added at last to minimize instability. /// When adding a new layer, adapt also the LastLayer enum value in the /// enum class LayerType below @@ -405,7 +408,7 @@ enum class LayerType LIST_OF_LAYER_TYPE #undef X FirstLayer = Activation, - LastLayer = Unmap + LastLayer = UnidirectionalSequenceLstm }; const char* GetLayerTypeAsCString(LayerType type); -- cgit v1.2.1