From 814bddfd92c568cfb0bcfc23537b7658f29628c4 Mon Sep 17 00:00:00 2001 From: Gunes Bayir Date: Wed, 1 Sep 2021 16:20:54 +0100 Subject: Fuse pad layer with subsequent convolution layer Fusing occurs only if - the padding is only for height/width - padding pixel value is 0 - padding node output has no accessors Resolves: COMPMID-4702 Signed-off-by: Gunes Bayir Change-Id: I0755d5fb0bd3a55d9f10b32ce9da44e7c5a25279 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6189 Tested-by: Arm Jenkins Reviewed-by: Pablo Marquez Tello Reviewed-by: Georgios Pinitas Comments-Addressed: Georgios Pinitas --- arm_compute/graph/Utils.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'arm_compute/graph/Utils.h') diff --git a/arm_compute/graph/Utils.h b/arm_compute/graph/Utils.h index 43a8eca9e3..a3d9012ee9 100644 --- a/arm_compute/graph/Utils.h +++ b/arm_compute/graph/Utils.h @@ -132,6 +132,13 @@ size_t get_dimension_idx(DataLayout data_layout, const DataLayoutDimension data_ * @return A list with the driving node of a given node */ std::vector get_driving_nodes(const INode &node); +/** Get the list of driver nodes of a given node + * + * @param[in] node Node to find the driver node of + * + * @return A list with the driver node of a given node + */ +std::vector get_driver_nodes(const INode &node); /** Configures tensor * * @param[in, out] tensor Tensor to configure -- cgit v1.2.1