"git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "efb704c5d37c7c49450244b8a38550f7849c4f41"
Commit 4702c17e authored by Shucai Xiao's avatar Shucai Xiao
Browse files

fixed an error in lstm_implementation.

parent 59f2e8e6
......@@ -872,7 +872,7 @@ void rewrite_rnn::apply_lstm(program& prog, instruction_ref ins) const
while(last_output_it != ins->outputs().end())
{
last_output_it = std::find_if(last_output_it, ins->outputs().end(), [](auto i) {
return i->name() == "lstm_last_output";
return i->name() == "rnn_last_output";
});
if(last_output_it != ins->outputs().end())
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment