From 52291fa64cd3fcf3815618e6b4f3283e661f29e3 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Thu, 21 May 2020 15:10:25 +0100 Subject: 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 --- src/runtime/CL/functions/CLQLSTMLayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/CL/functions/CLQLSTMLayer.cpp b/src/runtime/CL/functions/CLQLSTMLayer.cpp index 60e42a500d..8b2142435a 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, -- cgit v1.2.1