aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/system_tests
diff options
context:
space:
mode:
authorGian Marco <gianmarco.iodice@arm.com>2017-11-09 14:02:20 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit9c45f56439f5a4aef68901dfe4b7b57d2a7ce85e (patch)
tree4c750e589be440017b6e46ed31dbc0850c38ad16 /tests/datasets/system_tests
parentab14c15dc9a0f55664fe523aed072fffa60da420 (diff)
downloadComputeLibrary-9c45f56439f5a4aef68901dfe4b7b57d2a7ce85e.tar.gz
COMPMID-556 - Added 5x5 Direct Convolution benchmark for AlexNet
Change-Id: Ib92f62e8982a7f07799083ea41086e652437ab7e Reviewed-on: http://mpd-gerrit.cambridge.arm.com/95100 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Pablo Tello <pablo.tello@arm.com>
Diffstat (limited to 'tests/datasets/system_tests')
-rw-r--r--tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h b/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h
index c4b98f521a..0b2058896f 100644
--- a/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h
+++ b/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h
@@ -55,6 +55,7 @@ class AlexNetDirectConvolutionLayerDataset final : public ConvolutionLayerDatase
public:
AlexNetDirectConvolutionLayerDataset()
{
+ add_config(TensorShape(27U, 27U, 48U), TensorShape(5U, 5U, 48U, 128U), TensorShape(128U), TensorShape(27U, 27U, 128U), PadStrideInfo(1, 1, 2, 2));
add_config(TensorShape(13U, 13U, 256U), TensorShape(3U, 3U, 256U, 384U), TensorShape(384U), TensorShape(13U, 13U, 384U), PadStrideInfo(1, 1, 1, 1));
add_config(TensorShape(13U, 13U, 192U), TensorShape(3U, 3U, 192U, 192U), TensorShape(192U), TensorShape(13U, 13U, 192U), PadStrideInfo(1, 1, 1, 1));
add_config(TensorShape(13U, 13U, 192U), TensorShape(3U, 3U, 192U, 128U), TensorShape(128U), TensorShape(13U, 13U, 128U), PadStrideInfo(1, 1, 1, 1));