From 9593bde92b99fb4473611a2a2bb47a8040bfb500 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 25 Oct 2018 19:17:35 +0100 Subject: COMPMID-1674: (3RDPARTY_UPDATE) Add FullyConnectedLayer Dragonbench Change-Id: I3c3e96a743614af4c2c2391780d5de2db6191b0f Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/155318 Tested-by: bsgcomp Reviewed-by: Anthony Barbier Reviewed-by: Pablo Tello --- tests/datasets/DragonBenchDataset.h | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) (limited to 'tests/datasets') diff --git a/tests/datasets/DragonBenchDataset.h b/tests/datasets/DragonBenchDataset.h index 722bd9b77d..799083e4c1 100644 --- a/tests/datasets/DragonBenchDataset.h +++ b/tests/datasets/DragonBenchDataset.h @@ -25,10 +25,6 @@ #ifndef ARM_COMPUTE_DRAGONBENCH_DATASET #define ARM_COMPUTE_DRAGONBENCH_DATASET -#include "utils/TypePrinter.h" - -#include "arm_compute/core/TensorShape.h" - namespace arm_compute { namespace test @@ -55,28 +51,7 @@ public: std::string description() const { - std::stringstream description; - description << "network_name=" << _configs_it->network_name << ":"; - description << "layer_name=" << _configs_it->layer_name << ":"; - description << "id=" << _configs_it->id << ":"; - description << "Input_NCHW=" - << _configs_it->ibatch << ',' - << _configs_it->ch_in << ',' - << _configs_it->dim_in_h << ',' - << _configs_it->dim_in_w << ":"; - description << "Output_NCHW=" - << _configs_it->ibatch << ',' - << _configs_it->ch_out << ',' - << _configs_it->dim_out_h << ',' - << _configs_it->dim_out_w << ":"; - description << "Weights_HW=" - << _configs_it->kern_h << ',' - << _configs_it->kern_w << ":"; - description << "Stride_HW=" - << _configs_it->stride_h << ',' - << _configs_it->stride_w << ":"; - description << "Padding=" << _configs_it->padding << ":"; - return description.str(); + return to_string(*_configs_it); } DragonBenchDataset::type operator*() const -- cgit v1.2.1