aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/CL/LSTMLayer.cpp
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2018-06-28 17:07:22 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:10 +0000
commit09daf4ddf5940d18ce95e7dd0859d1dace3b133e (patch)
tree7ef0057264816e17d1c09d4fe64a05a4dd2e5101 /tests/validation/CL/LSTMLayer.cpp
parent9ebd04073f80f88515c4056a9d8bdda2641a4697 (diff)
downloadComputeLibrary-09daf4ddf5940d18ce95e7dd0859d1dace3b133e.tar.gz
COMPMID-1246 Change CLLSTM in order to match android tests
Allow cell to input weights to be nullptr if CIFG and peephole are both enabled. Change-Id: I6df705d69551f0fddeedd41b2044278d4575469c Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/137902 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'tests/validation/CL/LSTMLayer.cpp')
-rw-r--r--tests/validation/CL/LSTMLayer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/CL/LSTMLayer.cpp b/tests/validation/CL/LSTMLayer.cpp
index e1d4cbec49..fba9a88333 100644
--- a/tests/validation/CL/LSTMLayer.cpp
+++ b/tests/validation/CL/LSTMLayer.cpp
@@ -134,7 +134,7 @@ DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(zip(zip(zi
input_info, input_weights_info, recurrent_weights_info, cell_bias_info, projection_bias_info, cell_state_info, output_info, scratch_info, info, expected)
{
LSTMParams<ITensorInfo> lstm_params_info;
- lstm_params_info.set_peephole_params(&cell_bias_info, &cell_bias_info, &cell_bias_info)
+ lstm_params_info.set_peephole_params(&cell_bias_info, &cell_bias_info)
.set_projection_params(&recurrent_weights_info, &projection_bias_info)
.set_cifg_params(&input_weights_info, &recurrent_weights_info, &cell_bias_info, &cell_bias_info);