aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2019-02-08 11:46:07 +0000
committerMichele Di Giorgio <michele.digiorgio@arm.com>2019-02-08 12:34:01 +0000
commit5d3bb408e0b38ce3be0d32fd887de1aec99f5d50 (patch)
treec61b305bd66d25c1740733f3cab49c536d8cc20c
parent54e98d98fbe082b265b2c4a384eabe0144866bcc (diff)
downloadComputeLibrary-5d3bb408e0b38ce3be0d32fd887de1aec99f5d50.tar.gz
COMPMID-1710: Fix LSTMLayerFixture
Change-Id: I6f9449ace6e54ba094bc5c9201acab5f6f723f54 Signed-off-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-on: https://review.mlplatform.org/646 Reviewed-by: Isabella Gottardi <isabella.gottardi@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--tests/validation/fixtures/LSTMLayerFixture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/fixtures/LSTMLayerFixture.h b/tests/validation/fixtures/LSTMLayerFixture.h
index b0b2a8fae1..b30f1e534b 100644
--- a/tests/validation/fixtures/LSTMLayerFixture.h
+++ b/tests/validation/fixtures/LSTMLayerFixture.h
@@ -415,7 +415,7 @@ protected:
scratch_inputs.emplace_back(std::move(cell_state_out));
scratch_inputs.emplace_back(std::move(forget_gate));
scratch_inputs.emplace_back(std::move(output));
- scratch = reference::widthconcatenate_layer(scratch_inputs);
+ scratch = reference::widthconcatenate_layer(scratch_inputs, scratch);
_reference_scratch = std::move(scratch);
return output_state_out;
}