aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLQLSTMLayer.cpp
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2020-05-21 15:10:25 +0100
committerMichalis Spyrou <michalis.spyrou@arm.com>2020-05-21 15:37:26 +0000
commite6bd70cea8535a4f2127d04f93a77a9f143d4614 (patch)
treea015d5e1f7c61f2b8a1067460496419724b3343d /src/runtime/CL/functions/CLQLSTMLayer.cpp
parent18e20ff8bc31bd835e96b46c0beb5435c76572bd (diff)
downloadComputeLibrary-e6bd70cea8535a4f2127d04f93a77a9f143d4614.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>
Diffstat (limited to 'src/runtime/CL/functions/CLQLSTMLayer.cpp')
-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 a8edd5d98d..524c7b3aae 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,