aboutsummaryrefslogtreecommitdiff
path: root/tests/IAccessor.h
diff options
context:
space:
mode:
authorAlex Gilday <alexander.gilday@arm.com>2018-03-21 13:54:09 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:49:16 +0000
commitc357c47be8a3f210f9eee9a05cc13f1051b036d3 (patch)
treea88ac857150da970a0862a3479b78c616d8aa1d3 /tests/IAccessor.h
parent724079d6fce3bf6a05cd6c7b4884b132b27e9e90 (diff)
downloadComputeLibrary-c357c47be8a3f210f9eee9a05cc13f1051b036d3.tar.gz
COMPMID-1008: Fix Doxygen issues
Change-Id: Ie73d8771f85d1f5b059f3a56f1bbd73c98e94a38 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/124723 Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/IAccessor.h')
-rw-r--r--tests/IAccessor.h55
1 files changed, 44 insertions, 11 deletions
diff --git a/tests/IAccessor.h b/tests/IAccessor.h
index 6170bc0ba1..609eafec13 100644
--- a/tests/IAccessor.h
+++ b/tests/IAccessor.h
@@ -40,37 +40,70 @@ public:
/** Virtual destructor. */
virtual ~IAccessor() = default;
- /** Shape of the tensor. */
+ /** Shape of the tensor.
+ *
+ * @return the shape of the tensor.
+ */
virtual TensorShape shape() const = 0;
- /** Size of each element in the tensor in bytes. */
+ /** Size of each element in the tensor in bytes.
+ *
+ * @return the size of each element in the tensor in bytes.
+ */
virtual size_t element_size() const = 0;
- /** Total size of the tensor in bytes. */
+ /** Total size of the tensor in bytes.
+ *
+ * @return the total size of the tensor in bytes.
+ */
virtual size_t size() const = 0;
- /** Image format of the tensor. */
+ /** Image format of the tensor.
+ *
+ * @return the format of the tensor.
+ */
virtual Format format() const = 0;
- /** Data layout of the tensor. */
+ /** Data layout of the tensor.
+ *
+ * @return the data layout of the tensor.
+ */
virtual DataLayout data_layout() const = 0;
- /** Data type of the tensor. */
+ /** Data type of the tensor.
+ *
+ * @return the data type of the tensor.
+ */
virtual DataType data_type() const = 0;
- /** Number of channels of the tensor. */
+ /** Number of channels of the tensor.
+ *
+ * @return the number of channels of the tensor.
+ */
virtual int num_channels() const = 0;
- /** Number of elements of the tensor. */
+ /** Number of elements of the tensor.
+ *
+ * @return the number of elements of the tensor.
+ */
virtual int num_elements() const = 0;
- /** Available padding around the tensor. */
+ /** Available padding around the tensor.
+ *
+ * @return the available padding around the tensor.
+ */
virtual PaddingSize padding() const = 0;
- /** Number of bits for the fractional part. */
+ /** Number of bits for the fractional part.
+ *
+ * @return the number of bits for the fractional part.
+ */
virtual int fixed_point_position() const = 0;
- /** Quantization info in case of asymmetric quantized type */
+ /** Quantization info in case of asymmetric quantized type
+ *
+ * @return
+ */
virtual QuantizationInfo quantization_info() const = 0;
/** Read only access to the specified element.