aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/SmallConvolutionLayerDataset.h
diff options
context:
space:
mode:
authorPablo Tello <pablo.tello@arm.com>2017-11-17 11:52:36 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:41:58 +0000
commit8951933e5dd7be8d922affea3cc23a48a05b694d (patch)
tree7d4e32169713fafe3442ca5e880b4aac3c3f04c2 /tests/datasets/SmallConvolutionLayerDataset.h
parent2995f5b6449f041d93a0e0cfb9f516ba957e3c40 (diff)
downloadComputeLibrary-8951933e5dd7be8d922affea3cc23a48a05b694d.tar.gz
COMPMID-687: Winograd layer.
Change-Id: Ica682d08e851491bf4a26b8d17908c014844055e Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/110990 Reviewed-by: Anthony Barbier <anthony.barbier@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/SmallConvolutionLayerDataset.h')
-rw-r--r--tests/datasets/SmallConvolutionLayerDataset.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/datasets/SmallConvolutionLayerDataset.h b/tests/datasets/SmallConvolutionLayerDataset.h
index aa9d9f8899..ccdd6e16af 100644
--- a/tests/datasets/SmallConvolutionLayerDataset.h
+++ b/tests/datasets/SmallConvolutionLayerDataset.h
@@ -37,6 +37,18 @@ namespace test
{
namespace datasets
{
+class SmallWinogradLayerDataset final : public ConvolutionLayerDataset
+{
+public:
+ SmallWinogradLayerDataset()
+ {
+ // Batch size 1
+ add_config(TensorShape(8U, 8U, 2U), TensorShape(3U, 3U, 2U, 1U), TensorShape(1U), TensorShape(6U, 6U, 1U), PadStrideInfo(1, 1, 0, 0));
+ // Batch size 4
+ add_config(TensorShape(23U, 27U, 5U, 4U), TensorShape(3U, 3U, 5U, 21U), TensorShape(21U), TensorShape(21U, 25U, 21U, 4U), PadStrideInfo(1, 1, 0, 0));
+ }
+};
+
class SmallConvolutionLayerDataset final : public ConvolutionLayerDataset
{
public: