From 57c48243af8fd4b503fe629166531299c1b083d3 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 2 Aug 2018 13:41:49 +0100 Subject: MLCE-37: Adds PermuteNode support in graph Change-Id: Iaa93a497e7913c27f2fd09e974125cda5f04bc4b Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/142463 Reviewed-by: Anthony Barbier Tested-by: Jenkins --- arm_compute/graph/GraphBuilder.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'arm_compute/graph/GraphBuilder.h') diff --git a/arm_compute/graph/GraphBuilder.h b/arm_compute/graph/GraphBuilder.h index a2f7618876..43670f4022 100644 --- a/arm_compute/graph/GraphBuilder.h +++ b/arm_compute/graph/GraphBuilder.h @@ -239,6 +239,18 @@ public: * @return Node ID of the created node, EmptyNodeID in case of error */ static NodeID add_normalization_node(Graph &g, NodeParams params, NodeIdxPair input, NormalizationLayerInfo norm_info); + /** Adds a permute layer node to the graph + * + * @param[in] g Graph to add the node to + * @param[in] params Common node parameters + * @param[in] input Input to the reshape layer node as a NodeID-Index pair + * @param[in] perm Permutation vector + * @param[in] layout (Optional) Data layout to assign to permuted tensor. + * If UNKNOWN then the input's layout will be used. + * + * @return Node ID of the created node, EmptyNodeID in case of error + */ + static NodeID add_permute_node(Graph &g, NodeParams params, NodeIdxPair input, PermutationVector perm, DataLayout layout = DataLayout::UNKNOWN); /** Adds a pooling layer node to the graph * * @param[in] g Graph to add the node to -- cgit v1.2.1