From 087eaf67dc4be4234a7fcfc3b109c1e4f5e7dd5e Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 16 May 2018 15:52:35 +0100 Subject: COMPMID-1176: Adds nodes to the graph. Nodes added: -ChannelShuffle -Resize -Deconvolution -Dummy (used for performance analysis and debugging) Change-Id: Iad19960cbbce6e25532f77bfd34b2292c0ca9781 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/131672 Tested-by: Jenkins Reviewed-by: Pablo Tello Reviewed-by: Anthony Barbier --- arm_compute/graph/Types.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'arm_compute/graph/Types.h') diff --git a/arm_compute/graph/Types.h b/arm_compute/graph/Types.h index d4e4f99377..9cfede9cf3 100644 --- a/arm_compute/graph/Types.h +++ b/arm_compute/graph/Types.h @@ -52,6 +52,7 @@ using arm_compute::PadStrideInfo; using arm_compute::PoolingLayerInfo; using arm_compute::PoolingType; using arm_compute::DimensionRoundingType; +using arm_compute::InterpolationPolicy; /** TODO (geopin01): Make ids strongly typed */ using TensorID = unsigned int; @@ -128,7 +129,9 @@ enum class NodeType { ActivationLayer, BatchNormalizationLayer, + ChannelShuffleLayer, ConvolutionLayer, + DeconvolutionLayer, DepthConcatenateLayer, DepthwiseConvolutionLayer, EltwiseLayer, @@ -137,13 +140,15 @@ enum class NodeType NormalizationLayer, PoolingLayer, ReshapeLayer, - ScaleLayer, + ResizeLayer, SoftmaxLayer, SplitLayer, Input, Output, Const, + + Dummy }; /** Backend Memory Manager affinity **/ -- cgit v1.2.1