aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2017-08-30 16:13:58 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitde12af4e62ca7c177464773620a0b82097529368 (patch)
treea6ffc06be287983c91a5abc99fc571f9f67bb165 /tests
parent4ffe3e292dba342c26808fc57670f5c1b8502de0 (diff)
downloadComputeLibrary-de12af4e62ca7c177464773620a0b82097529368.tar.gz
COMPMID-417 Remove spaces in DepthwiseSeparable arguments
Change-Id: Ia19bdfef6a9850017d22a4cb35031aae4bbee244 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/85807 Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h b/tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h
index b60002c844..4391379833 100644
--- a/tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h
+++ b/tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h
@@ -66,12 +66,12 @@ public:
std::stringstream description;
description << "In=" << *_src_it << ":";
description << "Filter=" << *_filter_it << ":";
- description << "Depthwise Out=" << *_depthwise_out_it << ":";
+ description << "DepthwiseOut=" << *_depthwise_out_it << ":";
description << "Weights=" << *_weights_it << ":";
description << "Biases=" << *_biases_it << ":";
description << "Out=" << *_dst_it << ":";
- description << "Depthwise Info=" << *_depthwise_infos_it;
- description << "Pointwise Info=" << *_pointwise_infos_it;
+ description << "DepthwiseInfo=" << *_depthwise_infos_it << ":";
+ description << "PointwiseInfo=" << *_pointwise_infos_it;
return description.str();
}