From: Michalis Spyrou Date: Thu, 21 May 2020 14:10:25 +0000 (+0100) Subject: COMPMID-3069: Fix CLQLSTM configure argument order X-Git-Tag: submit/tizen/20200730.023729~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=52291fa64cd3fcf3815618e6b4f3283e661f29e3;p=platform%2Fupstream%2Farmcl.git COMPMID-3069: Fix CLQLSTM configure argument order Change-Id: I5f56d65df38e9ac035a27dd2b15925c576cc3932 Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3242 Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- diff --git a/src/runtime/CL/functions/CLQLSTMLayer.cpp b/src/runtime/CL/functions/CLQLSTMLayer.cpp index 60e42a500..8b2142435 100644 --- a/src/runtime/CL/functions/CLQLSTMLayer.cpp +++ b/src/runtime/CL/functions/CLQLSTMLayer.cpp @@ -119,7 +119,7 @@ void CLQLSTMLayer::configure(const ICLTensor *input, { configure(CLKernelLibrary::get().get_compile_context(), input, input_to_forget_weights, input_to_cell_weights, input_to_output_weights, recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights, forget_gate_bias, cell_bias, output_gate_bias, - cell_state_in, output_state_in, cell_state_out, output, output_state_out, lstm_params); + cell_state_in, output_state_in, cell_state_out, output_state_out, output, lstm_params); } void CLQLSTMLayer::configure(const CLCompileContext &compile_context, const ICLTensor *input,