aboutsummaryrefslogtreecommitdiff
path: root/tests/CL/CLAccessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/CL/CLAccessor.h')
-rw-r--r--tests/CL/CLAccessor.h20
1 files changed, 17 insertions, 3 deletions
diff --git a/tests/CL/CLAccessor.h b/tests/CL/CLAccessor.h
index f2e13f1232..66f3df06af 100644
--- a/tests/CL/CLAccessor.h
+++ b/tests/CL/CLAccessor.h
@@ -44,14 +44,30 @@ public:
*/
CLAccessor(CLTensor &tensor);
+ /** Prevent instances of this class from being copy constructed */
CLAccessor(const CLAccessor &) = delete;
+ /** Prevent instances of this class from being copied */
CLAccessor &operator=(const CLAccessor &) = delete;
- CLAccessor(CLAccessor &&) = default;
+ /** Allow instances of this class to be move constructed */
+ CLAccessor(CLAccessor &&) = default;
+ /** Allow instances of this class to be moved */
CLAccessor &operator=(CLAccessor &&) = default;
/** Destructor that unmaps the CL memory. */
~CLAccessor();
+ /** Get the tensor data.
+ *
+ * @return a constant pointer to the tensor data.
+ */
+ const void *data() const;
+ /** Get the tensor data.
+ *
+ * @return a pointer to the tensor data.
+ */
+ void *data();
+
+ // Inherited method overrides
TensorShape shape() const override;
size_t element_size() const override;
size_t size() const override;
@@ -65,8 +81,6 @@ public:
QuantizationInfo quantization_info() const override;
const void *operator()(const Coordinates &coord) const override;
void *operator()(const Coordinates &coord) override;
- const void *data() const;
- void *data();
private:
CLTensor &_tensor;