aboutsummaryrefslogtreecommitdiff
path: root/tests/framework
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2018-07-06 15:11:36 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:10 +0000
commit671a11e1c8e1e4db7bcae9ce97b0c97ebcb97464 (patch)
tree6bdeaf330a81e3f4f35c34817fe594d6fbc81897 /tests/framework
parent42a31723ebe79895c9bb2297a9c2ef22c01a6f26 (diff)
downloadComputeLibrary-671a11e1c8e1e4db7bcae9ce97b0c97ebcb97464.tar.gz
COMPMID-1379: Created WindowIterator and TensorAccessor
- WindowIterator: used to iterate over arbitrary positions of a window. (More flexible than execute_window_loop which only can iterate over entire dimensions) - TensorAccessor: RSH's code uses pointers to specialised types and strides in element sizes, this helps interfacing with their code. Change-Id: I8ded8758d345668804873409f949b8cec694d289 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/139082 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'tests/framework')
-rw-r--r--tests/framework/datasets/InitializerListDataset.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/framework/datasets/InitializerListDataset.h b/tests/framework/datasets/InitializerListDataset.h
index f90e0b747a..ec1550df4d 100644
--- a/tests/framework/datasets/InitializerListDataset.h
+++ b/tests/framework/datasets/InitializerListDataset.h
@@ -25,7 +25,7 @@
#define ARM_COMPUTE_TEST_DATASET_LIST
#include "Dataset.h"
-#include "support/ToolchainSupport.h"
+#include "utils/TypePrinter.h"
#include <initializer_list>
#include <string>
@@ -84,8 +84,7 @@ public:
*/
std::string description() const
{
- using support::cpp11::to_string;
- return _name + "=" + to_string(*_iterator);
+ return _name + "=" + arm_compute::to_string(*_iterator);
}
/** Get the current value.