From 671a11e1c8e1e4db7bcae9ce97b0c97ebcb97464 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Fri, 6 Jul 2018 15:11:36 +0100 Subject: 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 Reviewed-by: Georgios Pinitas --- tests/framework/datasets/InitializerListDataset.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tests/framework') 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 #include @@ -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. -- cgit v1.2.1