From c357c47be8a3f210f9eee9a05cc13f1051b036d3 Mon Sep 17 00:00:00 2001 From: Alex Gilday Date: Wed, 21 Mar 2018 13:54:09 +0000 Subject: COMPMID-1008: Fix Doxygen issues Change-Id: Ie73d8771f85d1f5b059f3a56f1bbd73c98e94a38 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/124723 Reviewed-by: Michalis Spyrou Tested-by: Jenkins --- tests/IAccessor.h | 55 ++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 44 insertions(+), 11 deletions(-) (limited to 'tests/IAccessor.h') 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. -- cgit v1.2.1