From 09daf4ddf5940d18ce95e7dd0859d1dace3b133e Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Thu, 28 Jun 2018 17:07:22 +0100 Subject: 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 Reviewed-by: Georgios Pinitas --- tests/validation/CL/LSTMLayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/validation/CL/LSTMLayer.cpp') 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 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); -- cgit v1.2.1