From cafec8f19ee126b72ba2b0194bd25a5a93727980 Mon Sep 17 00:00:00 2001 From: John Kesapides Date: Tue, 19 Feb 2019 15:53:59 +0000 Subject: COMPMID-1024 Investigate concatenation for RNN/LSTM OpenCL Change-Id: I0cee0853b82a7e4c487989d4a0890d58ec086045 Signed-off-by: John Kesapides Reviewed-on: https://review.mlplatform.org/c/763 Comments-Addressed: Michele Di Giorgio Tested-by: Arm Jenkins Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins --- arm_compute/core/utils/misc/ShapeCalculator.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'arm_compute/core/utils') diff --git a/arm_compute/core/utils/misc/ShapeCalculator.h b/arm_compute/core/utils/misc/ShapeCalculator.h index 7a34b43028..0d07266403 100644 --- a/arm_compute/core/utils/misc/ShapeCalculator.h +++ b/arm_compute/core/utils/misc/ShapeCalculator.h @@ -1162,12 +1162,11 @@ inline TensorShape extract_shape(T *data) return data->info()->tensor_shape(); } -inline TensorShape extract_shape(const ITensorInfo *data) +inline TensorShape extract_shape(ITensorInfo *data) { return data->tensor_shape(); } - -inline TensorShape extract_shape(ITensorInfo *data) +inline TensorShape extract_shape(const ITensorInfo *data) { return data->tensor_shape(); } -- cgit v1.2.1