We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f9a91a commit 4d373a8Copy full SHA for 4d373a8
lite/kernels/arm/rnn_compute.cc
@@ -801,11 +801,9 @@ void RnnCompute::Run() {
801
}
802
803
804
- lite::arm::math::concat_func<float>(
805
- last_h_unbind_t, stride1.size(), state[0]);
+ lite::arm::math::concat_func<float>(last_h_unbind_t, 0, state[0]);
806
if ("LSTM" == mode) {
807
808
- last_c_unbind_t, stride2.size(), state[1]);
+ lite::arm::math::concat_func<float>(last_c_unbind_t, 0, state[1]);
809
810
811
// output_holder != output
0 commit comments