aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/CLSubTensor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/CLSubTensor.cpp')
-rw-r--r--src/runtime/CL/CLSubTensor.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/runtime/CL/CLSubTensor.cpp b/src/runtime/CL/CLSubTensor.cpp
index d0e7d760ff..0f362507cf 100644
--- a/src/runtime/CL/CLSubTensor.cpp
+++ b/src/runtime/CL/CLSubTensor.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2018 ARM Limited.
+ * Copyright (c) 2017-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -58,6 +58,11 @@ const cl::Buffer &CLSubTensor::cl_buffer() const
return _parent->cl_buffer();
}
+CLQuantization CLSubTensor::quantization() const
+{
+ return _parent->quantization();
+}
+
ICLTensor *CLSubTensor::parent()
{
return _parent;