aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h
diff options
context:
space:
mode:
authorPablo Tello <pablo.tello@arm.com>2017-12-01 09:58:32 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:41:58 +0000
commit8108d2e3c91f400a28ac6236d8d1548ea94bf2be (patch)
treefc6bf39dde84ac4175db0196112f834a76086d39 /tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h
parent3d4968ac573cc206ac1c6adcfd6f1d4689a715d1 (diff)
downloadComputeLibrary-8108d2e3c91f400a28ac6236d8d1548ea94bf2be.tar.gz
COMPMID-718: Added winograd benchmarking tests.
Change-Id: I2b5fea83eab24471e7e070a09103a350aaada87f Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/111466 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com <bsgcomp@arm.com>
Diffstat (limited to 'tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h')
-rw-r--r--tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h b/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h
index 0b2058896f..034e1bbf89 100644
--- a/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h
+++ b/tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h
@@ -37,6 +37,17 @@ namespace test
{
namespace datasets
{
+class AlexNetWinogradLayerDataset final : public ConvolutionLayerDataset
+{
+public:
+ AlexNetWinogradLayerDataset()
+ {
+ 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));
+ }
+};
+
class AlexNetConvolutionLayerDataset final : public ConvolutionLayerDataset
{
public: