aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2020-05-21 15:10:25 +0100
committerManuel Bottini <manuel.bottini@arm.com>2020-05-21 16:43:15 +0100
commit52291fa64cd3fcf3815618e6b4f3283e661f29e3 (patch)
tree0c9bed514a90e8f668bc4142f9eb84011e173ec6
parent03ac862653fca2784ce9366e9324e91c0f42440d (diff)
downloadComputeLibrary-52291fa64cd3fcf3815618e6b4f3283e661f29e3.tar.gz
COMPMID-3069: Fix CLQLSTM configure argument order
Change-Id: I5f56d65df38e9ac035a27dd2b15925c576cc3932 Signed-off-by: Michalis Spyrou <michalis.spyrou@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3242 Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--src/runtime/CL/functions/CLQLSTMLayer.cpp2
1 files changed, 1 insertions, 1 deletions
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,