From ee33ea5a6e1aa0faac1cc8b5a269bd4f89854821 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 8 Mar 2018 16:01:29 +0000 Subject: COMPMID-996: Add support for grouped convolution. Change-Id: I279e29ce20b3dde57445264dc11491f127b44d70 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/124429 Reviewed-by: Anthony Barbier Tested-by: Jenkins --- arm_compute/graph2/frontend/Layers.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'arm_compute/graph2/frontend/Layers.h') diff --git a/arm_compute/graph2/frontend/Layers.h b/arm_compute/graph2/frontend/Layers.h index 7ea23e0684..779b471b52 100644 --- a/arm_compute/graph2/frontend/Layers.h +++ b/arm_compute/graph2/frontend/Layers.h @@ -187,11 +187,10 @@ public: NodeID create_layer(IStream &s) override { - ARM_COMPUTE_UNUSED(_num_groups); NodeIdxPair input = { s.tail_node(), 0 }; NodeParams common_params = { "", s.hints().target_hint }; return GraphBuilder::add_convolution_node(s.graph(), common_params, input, - Size2D(_conv_width, _conv_height), _ofm, _conv_info, + Size2D(_conv_width, _conv_height), _ofm, _conv_info, _num_groups, s.hints().convolution_method_hint, std::move(_weights), std::move(_bias)); } -- cgit v1.2.1