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 --- src/graph2/mutators/DepthConcatSubTensorMutator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/graph2/mutators/DepthConcatSubTensorMutator.cpp') diff --git a/src/graph2/mutators/DepthConcatSubTensorMutator.cpp b/src/graph2/mutators/DepthConcatSubTensorMutator.cpp index cc8de6bb1b..ea3743bf21 100644 --- a/src/graph2/mutators/DepthConcatSubTensorMutator.cpp +++ b/src/graph2/mutators/DepthConcatSubTensorMutator.cpp @@ -70,7 +70,7 @@ void DepthConcatSubTensorMutator::mutate(Graph &g) const auto input_shape = input_tensor->desc().shape; auto backend = backends::BackendRegistry::get().find_backend(input_tensor->desc().target); - auto handle = backend->create_subtensor(output_tensor->handle(), input_shape, Coordinates(0, 0, depth)); + auto handle = backend->create_subtensor(output_tensor->handle(), input_shape, Coordinates(0, 0, depth), false); input_tensor->set_handle(std::move(handle)); depth += input_shape.z(); -- cgit v1.2.1