aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/utils
diff options
context:
space:
mode:
authorJohn Kesapides <john.kesapides@arm.com>2019-02-19 15:53:59 +0000
committerJohn Kesapides <john.kesapides@arm.com>2019-04-02 11:35:52 +0000
commitcafec8f19ee126b72ba2b0194bd25a5a93727980 (patch)
treefcde0a28d1554e024d8029c81a1c028d3f0444ce /arm_compute/core/utils
parent108a95e046dde880075b6c278b44033d13f55be3 (diff)
downloadComputeLibrary-cafec8f19ee126b72ba2b0194bd25a5a93727980.tar.gz
COMPMID-1024 Investigate concatenation for RNN/LSTM OpenCL
Change-Id: I0cee0853b82a7e4c487989d4a0890d58ec086045 Signed-off-by: John Kesapides <john.kesapides@arm.com> Reviewed-on: https://review.mlplatform.org/c/763 Comments-Addressed: Michele Di Giorgio <michele.digiorgio@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core/utils')
-rw-r--r--arm_compute/core/utils/misc/ShapeCalculator.h5
1 files changed, 2 insertions, 3 deletions
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();
}