aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/LSTMLayerDataset.h
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-07-16 17:01:20 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commit42447c120809ee6e767cdeda8a2e52d011519b1d (patch)
treeba54497796628cd0c12cc0c461cbf226ec975893 /tests/datasets/LSTMLayerDataset.h
parent6f109bdaed41bf9f37f201189f11ba30c60170fb (diff)
downloadComputeLibrary-42447c120809ee6e767cdeda8a2e52d011519b1d.tar.gz
COMPMID-1188: Fixes LSTM IO dimension requirements.
Change-Id: Iee92ccce6422368c19173174e6f58e7aada12233 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/140143 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'tests/datasets/LSTMLayerDataset.h')
-rw-r--r--tests/datasets/LSTMLayerDataset.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/datasets/LSTMLayerDataset.h b/tests/datasets/LSTMLayerDataset.h
index 51802fd75b..a976caa0ba 100644
--- a/tests/datasets/LSTMLayerDataset.h
+++ b/tests/datasets/LSTMLayerDataset.h
@@ -160,6 +160,7 @@ class SmallLSTMLayerDataset final : public LSTMLayerDataset
public:
SmallLSTMLayerDataset()
{
+ add_config(TensorShape(8U), TensorShape(8U, 16U), TensorShape(16U, 16U), TensorShape(16U), TensorShape(16U), TensorShape(16U), TensorShape(64U), ActivationLayerInfo(), 0.05f, 0.93f);
add_config(TensorShape(8U, 2U), TensorShape(8U, 16U), TensorShape(16U, 16U), TensorShape(16U), TensorShape(16U, 2U), TensorShape(16U, 2U), TensorShape(64U, 2U), ActivationLayerInfo(), 0.05f, 0.93f);
add_config(TensorShape(8U, 2U), TensorShape(8U, 16U), TensorShape(16U, 16U), TensorShape(16U), TensorShape(16U, 2U), TensorShape(16U, 2U), TensorShape(48U, 2U), ActivationLayerInfo(), 0.05f, 0.93f);
}