From acce504ec4aebe5e5da470c1cfc3cee401ff11f3 Mon Sep 17 00:00:00 2001 From: giuros01 Date: Thu, 21 Feb 2019 17:32:34 +0000 Subject: COMPMID-1740: Fuse batch normalization with Convolution Layer at graph level Change-Id: I77ca51c2c72783cc26a099a6a9c3210cdbbe822d Signed-off-by: giuros01 Reviewed-on: https://review.mlplatform.org/c/797 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Reviewed-by: Georgios Pinitas --- arm_compute/graph/mutators/NodeFusionMutator.h | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'arm_compute/graph/mutators/NodeFusionMutator.h') diff --git a/arm_compute/graph/mutators/NodeFusionMutator.h b/arm_compute/graph/mutators/NodeFusionMutator.h index 8f16c65dfa..b9ca464822 100644 --- a/arm_compute/graph/mutators/NodeFusionMutator.h +++ b/arm_compute/graph/mutators/NodeFusionMutator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 ARM Limited. + * Copyright (c) 2018-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -24,21 +24,13 @@ #ifndef __ARM_COMPUTE_GRAPH_NODE_FUSION_MUTATOR_H__ #define __ARM_COMPUTE_GRAPH_NODE_FUSION_MUTATOR_H__ +#include "arm_compute/graph/Graph.h" #include "arm_compute/graph/IGraphMutator.h" namespace arm_compute { namespace graph { -namespace detail -{ -/** Fused batch normalization with activation - * - * @param[in] g Graph to perform operation fusion on - */ -void fuse_batch_norm_with_activation(Graph &g); -} // namespace detail - /** Mutation pass to fuss nodes */ class NodeFusionMutator final : public IGraphMutator { -- cgit v1.2.1