From 4a65b9855f71fff11a4c18d2fa4bccc74303e5c6 Mon Sep 17 00:00:00 2001 From: Michele Di Giorgio Date: Fri, 2 Mar 2018 11:21:38 +0000 Subject: COMPMID-991: Add data layout information to the test framework Change-Id: Iccf66f7476e697e8fdee5a7441cc06b936bbba09 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/122986 Reviewed-by: Michalis Spyrou Tested-by: Jenkins --- tests/RawTensor.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/RawTensor.h') diff --git a/tests/RawTensor.h b/tests/RawTensor.h index 116275d617..6b1b904e13 100644 --- a/tests/RawTensor.h +++ b/tests/RawTensor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 ARM Limited. + * Copyright (c) 2017-2018 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -71,6 +71,7 @@ public: _data_type = tensor._data_type; _num_channels = tensor._num_channels; _fixed_point_position = tensor._fixed_point_position; + _data_layout = tensor._data_layout; } /** Conversion operator to SimpleTensor. @@ -89,6 +90,7 @@ public: cast._data_type = _data_type; cast._num_channels = _num_channels; cast._fixed_point_position = _fixed_point_position; + cast._data_layout = _data_layout; return cast; } -- cgit v1.2.1