From 9c45f56439f5a4aef68901dfe4b7b57d2a7ce85e Mon Sep 17 00:00:00 2001 From: Gian Marco Date: Thu, 9 Nov 2017 14:02:20 +0000 Subject: COMPMID-556 - Added 5x5 Direct Convolution benchmark for AlexNet Change-Id: Ib92f62e8982a7f07799083ea41086e652437ab7e Reviewed-on: http://mpd-gerrit.cambridge.arm.com/95100 Tested-by: Kaizen Reviewed-by: Pablo Tello --- tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/datasets/system_tests') 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)); -- cgit v1.2.1