From 88627fbe2502018f6a93fcfc686b5a7f2d54a2a9 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 26 Feb 2018 20:33:40 +0000 Subject: COMPMID-959: Update valid region in DepthConcatenate Change-Id: I8aaf15a64aab592bfbdb386fdb07631cad933fa6 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/122307 Tested-by: Jenkins Reviewed-by: Anthony Barbier --- src/runtime/NEON/functions/NEDepthConcatenateLayer.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/runtime/NEON/functions/NEDepthConcatenateLayer.cpp') diff --git a/src/runtime/NEON/functions/NEDepthConcatenateLayer.cpp b/src/runtime/NEON/functions/NEDepthConcatenateLayer.cpp index 437c9417ce..930f8d5a26 100644 --- a/src/runtime/NEON/functions/NEDepthConcatenateLayer.cpp +++ b/src/runtime/NEON/functions/NEDepthConcatenateLayer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 ARM Limited. + * Copyright (c) 2017-2018 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -62,6 +62,9 @@ void NEDepthConcatenateLayer::configure(std::vector inputs_vector, IT depth_offset += inputs_vector.at(i)->info()->dimension(2); } + + // Set valid region from shape + output->info()->set_valid_region(ValidRegion(Coordinates(), output_shape)); } void NEDepthConcatenateLayer::run() -- cgit v1.2.1